+platform
[www.jankratochvil.net.git] / project / cvsbranchdiff / ListItem.pm
index 6e66bc3..0b7cfb6 100755 (executable)
 # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
 
 
-package My::Project::cvsbranchdiff;
+package project::cvsbranchdiff::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"=>"CVS Branching Utility",
+
+our @ListItem=(
+               "name"=>"cvsbranchdiff",
+               "platform"=>"unixdevel",
                "priority"=>6,
-               "download"=>"http://cvs.jankratochvil.net/viewcvs/*checkout*/nethome/home/lace/bin/cvsbranchdiff?rev=HEAD",
-               "summary"=>"CVS addon",
+               # FIXME: 'http://cvs.jankratochvil.net/viewcvs/' -> $W->{"project_viewcvs"}
+               "download"=>'http://cvs.jankratochvil.net/viewcvs/'."*checkout*/nethome/home/lace/bin/cvsbranchdiff?rev=HEAD",
+               "summary"=>"CVS Branching Utility",
                "license"=>"PD",
-               "maintenance"=>"finished",
+               "maintenance"=>"ready",
                "language"=>"bash",
-               "description"=>""
-                               .'<p>During patching of foreign CVS trees you have to regularly import them'
-                               .' as CVS does not support multiple repositories. There is a problem with'
-                               .' new or removed files, this simple tool will take care of them.</p>'
+               "description"=><<"HERE",
+<p>During patching of foreign CVS trees you have to regularly import them
+as CVS does not support multiple repositories. There is a problem with
+new or removed files, this simple tool will take care of them.</p>
+HERE
                );
 
 1;