X-Git-Url: http://git.jankratochvil.net/?p=www.jankratochvil.net.git;a=blobdiff_plain;f=project%2Fd1xnet%2FIndex.pm;fp=project%2Fd1xnet%2FListItem.pm;h=afb7a7d8d8e892c7043754d388ae031dd8413a9a;hp=20a86b72ffc4c922f2a9d445be7243a780b29359;hb=19c5ad8e26ac320516b8427c416a9195ce4fea48;hpb=4df4c5409020cd58d7dd7f98a88653c96e860dfb diff --git a/project/d1xnet/ListItem.pm b/project/d1xnet/Index.pm old mode 100755 new mode 100644 similarity index 74% rename from project/d1xnet/ListItem.pm rename to project/d1xnet/Index.pm index 20a86b7..afb7a7d --- a/project/d1xnet/ListItem.pm +++ b/project/d1xnet/Index.pm @@ -1,8 +1,6 @@ -#! /usr/bin/perl -# # $Id$ -# Definition of 'My::Project::d1xnet' for list.cgi.pl -# Copyright (C) 2003 Jan Kratochvil +# Main page of 'My::Project::d1xnet' +# Copyright (C) 2003-2005 Jan Kratochvil # # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by @@ -18,7 +16,7 @@ # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA -package project::d1xnet::ListItem; +package project::d1xnet::Index; require 5.6.0; # at least 'use warnings;' but we need some 5.6.0+ modules anyway our $VERSION=do { my @r=(q$Revision$=~/\d+/g); sprintf "%d.".("%03d"x$#r),@r; }; our $CVS_ID=q$Id$; @@ -26,23 +24,31 @@ use strict; use warnings; use My::Web; +Wuse 'project::Lib'; our @ListItem=( - "name"=>a_href('http://d1x.warpcore.org/','D1X').' TCP/IP', + "name"=>sub { return 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"=>a_href('http://d1x.warpcore.org/','D1X').' native TCP/IP support patch', + "summary"=>sub { return a_href('http://d1x.warpcore.org/','D1X').' native TCP/IP support patch'; }, "license"=>"PD", "maintenance"=>"accepted", "language"=>"C module", - "description"=><<"HERE", + "description"=>sub { return <<"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 ); +sub handler +{ +project::Lib->init(); + + +My::Web->footer(); +} 1;