modperl branch collapsed back to MAIN trunk, man!
[www.jankratochvil.net.git] / project / checkstatic / ListItem.pm
index 91f0d26..c400142 100755 (executable)
 # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
 
 
-package My::Project::checkstatic;
+package project::checkstatic::ListItem;
 require 5.6.0; # at least 'use warnings;' but we need some 5.6.0+ modules anyway
-use vars qw($VERSION $CVS_ID);
-$VERSION=do { my @r=(q$Revision$=~/\d+/g); sprintf "%d.".("%03d"x$#r),@r; };
-$CVS_ID=q$Id$;
+our $VERSION=do { my @r=(q$Revision$=~/\d+/g); sprintf "%d.".("%03d"x$#r),@r; };
+our $CVS_ID=q$Id$;
 use strict;
 use warnings;
 
+use My::Web;
 
-our %ListItem=(
-               "name"=>"C Sources Symbol Attributes Checker",
-               "priority"=>7,
-               "download"=>"http://cvs.jankratochvil.net/viewcvs/*checkout*/nethome/home/lace/bin/checkstatic?rev=HEAD",
-               "summary"=>"Development tool",
+
+our @ListItem=(
+               "name"=>"checkstatic",
+               "platform"=>"unixdevel",
+               "priority"=>510,
+               # FIXME: 'http://cvs.jankratochvil.net/viewcvs/' -> $W->{"project_viewcvs"}
+               "download"=>'http://cvs.jankratochvil.net/viewcvs/'."*checkout*/nethome/home/lace/bin/checkstatic?rev=HEAD",
+               "summary"=>"C sources symbol attributes checker",
                "license"=>"PD",
-               "maintenance"=>"finished",
+               "maintenance"=>"ready",
                "language"=>"Perl",
-               "description"=>""
-                               .'<p>Gives additional warnings not provided by GNU C Compiler'
-                               .' such as dead code declared as <code>global</code> in separate file,'
-                               .' missing <code>static</code> keywords etc.</p>'
-                               .' <p>It can get very valuable during stripping functionality off of'
-                               .' a big package for embedded resource-limited machines.</p>'
+               "description"=><<"HERE",
+<p>Scripts gives additional warnings not provided by GNU C Compiler
+such as dead code declared as <code>global</code> in separate file,
+missing <code>static</code> keywords etc.</p>
+<p>It can get very valuable during stripping functionality off of
+a big package for embedded resource-limited machines.</p>
+HERE
                );
 
 1;