modperl branch collapsed back to MAIN trunk, man!
[www.jankratochvil.net.git] / project / d1xnet / ListItem.pm
index 2ec7cfe..20a86b7 100755 (executable)
 # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
 
 
-package My::Project::d1xnet;
+package project::d1xnet::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"=>"<a href=\"http://d1x.warpcore.org/\">D1X</a> native TCP/IP support patch",
-               "priority"=>2,
+
+our @ListItem=(
+               "name"=>a_href('http://d1x.warpcore.org/','D1X').' TCP/IP',
+               "platform"=>"patch",
+               "priority"=>200,
+               "icon"=>"exit03.jpeg",
                "download"=>"d1x-tcpip-0.99.1.diff.gz",
-               "summary"=>"Network patch",
+               "summary"=>a_href('http://d1x.warpcore.org/','D1X').' native TCP/IP support patch',
                "license"=>"PD",
                "maintenance"=>"accepted",
                "language"=>"C module",
-               "description"=>""
-                               .'<p>No further mess with <a href="ftp://linux.kali.net/outgoing/kalinix/">KaliNix</a>,'
-                               .' KIX or any other IPX layer convertor. This patch adds true TCP/IP networking'
-                               .' capability to <a href="http://d1x.warpcore.org/">D1X</a> version 1.30.</p>'
+               "description"=><<"HERE",
+<p>No further mess with @{[ a_href 'ftp://linux.kali.net/outgoing/kalinix/','KaliNix' ]},
+KIX or any other IPX layer convertor. This patch adds true TCP/IP networking
+capability to @{[ a_href 'http://d1x.warpcore.org/','D1X' ]} version 1.30.</p>
+HERE
                );
 
 1;