X-Git-Url: https://git.jankratochvil.net/?p=www.jankratochvil.net.git;a=blobdiff_plain;f=project%2Fd1xnet%2FListItem.pm;h=20a86b72ffc4c922f2a9d445be7243a780b29359;hp=2ec7cfe9f22c9390bb98429e2be4b74b51695fd6;hb=b4ddfba5b53a40e47285f8851e1ff7bb5419909b;hpb=d33b43a5557132098003a232b6c209abd3e4d135 diff --git a/project/d1xnet/ListItem.pm b/project/d1xnet/ListItem.pm index 2ec7cfe..20a86b7 100755 --- a/project/d1xnet/ListItem.pm +++ b/project/d1xnet/ListItem.pm @@ -18,27 +18,31 @@ # 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", - "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"=>"" - .'

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;