modperl branch collapsed back to MAIN trunk, man!
[www.jankratochvil.net.git] / project / redirector_ad / ListItem.pm
index a1efd03..17c9e6f 100755 (executable)
 # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
 
 
-package My::Project::redirector_ad;
+package project::redirector_ad::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"=>"Banner Killer as 'squid redirector'",
-               "priority"=>7,
-               "link-CVS download"=>"http://cvs.jankratochvil.net/viewcvs/redirector-ad/redirector-ad.tar.gz?tarball=1",
-               "summary"=>"Banner killer",
+
+our @ListItem=(
+               "name"=>"redirector-ad",
+               "platform"=>"unixuser",
+               "priority"=>340,
+               "icon"=>"cnet-icon",
+               "cvs"=>"redirector-ad",
+               "summary"=>'Banner killer as '.a_href('http://www.squid-cache.org/','Squid').' redirector filter',
+               # FIXME: 'http://cvs.jankratochvil.net/viewcvs/' -> $W->{"project_viewcvs"}
+               "link-README"=>'http://cvs.jankratochvil.net/viewcvs/'."*checkout*/redirector-ad/README?rev=HEAD",
                "license"=>"PD",
-               "maintenance"=>"finished",
+               "maintenance"=>"ready",
                "language"=>"Perl",
-               "description"=>""
-                               .'<p>Scripts that will simply discard graphical images referenced'
-                               .' from web pages.  Unlike other such packages it:</p>'
-                               .' <ul>'
-                               .' <li>Does not need separate administration of another daemon</li>'
-                               .' <li>Does not do any page contents filtering (popups will still pass through!)</li>'
-                               .' </ul>'
+               "description"=><<"HERE",
+<p>Scripts discarding specified graphical images (read 'ads') referenced
+from web pages. Unlike zillions of other such packages there
+is no need for separate administration of another daemon.</p>
+HERE
                );
 
 1;