X-Git-Url: http://git.jankratochvil.net/?a=blobdiff_plain;f=project%2Fd1xnet%2FListItem.pm;h=80fcdf87af0988e10eea3cb5a3e211dcb4a2ac5b;hb=dd8c6d6f376afc2f7a33118154707cc8e9e9059e;hp=a343241b55c1c605eb6a657e2ca9424548096ae9;hpb=023bd9615484000eec756de502600995e7b75fe8;p=www.jankratochvil.net.git diff --git a/project/d1xnet/ListItem.pm b/project/d1xnet/ListItem.pm index a343241..80fcdf8 100755 --- a/project/d1xnet/ListItem.pm +++ b/project/d1xnet/ListItem.pm @@ -18,26 +18,30 @@ # 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"=>"D1X native TCP/IP support patch", + +our @ListItem=( + "name"=>a_href('http://d1x.warpcore.org/','D1X').' TCP/IP', + "platform"=>"patch", + "priority"=>2, "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"=>"" - .'

No further mess with KaliNix,' - .' KIX or any other IPX layer convertor. This patch adds true TCP/IP networking' - .' capability to D1X version 1.30.

' + "description"=><<"HERE", +

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.

+HERE ); 1;