X-Git-Url: http://git.jankratochvil.net/?p=www.jankratochvil.net.git;a=blobdiff_plain;f=project%2Fpatchd2%2FIndex.pm;fp=project%2Fpatchd2%2FListItem.pm;h=e22cc7c49b68ca41fbd847b266838c1c86b93623;hp=6d2dad109a32d1a8e7d509318cdf62005639581d;hb=19c5ad8e26ac320516b8427c416a9195ce4fea48;hpb=4df4c5409020cd58d7dd7f98a88653c96e860dfb diff --git a/project/patchd2/ListItem.pm b/project/patchd2/Index.pm old mode 100755 new mode 100644 similarity index 72% rename from project/patchd2/ListItem.pm rename to project/patchd2/Index.pm index 6d2dad1..e22cc7c --- a/project/patchd2/ListItem.pm +++ b/project/patchd2/Index.pm @@ -1,8 +1,6 @@ -#! /usr/bin/perl -# # $Id$ -# Definition of 'My::Project::patchd2' for list.cgi.pl -# Copyright (C) 2003 Jan Kratochvil +# Main page of 'My::Project::patchd2' +# 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::patchd2::ListItem; +package project::patchd2::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,22 +24,30 @@ use strict; use warnings; use My::Web; +Wuse 'project::Lib'; our @ListItem=( - "name"=>a_href('http://www.descent2.com/','Descent 2').' no-CD', + "name"=>sub { return a_href('http://www.descent2.com/','Descent 2').' no-CD'; }, "platform"=>"dos", "priority"=>160, "icon"=>"d2-icon.jpeg", "download"=>"patchd2.zip", - "summary"=>a_href('http://www.descent2.com/','Descent 2').' patch to avoid CD-ROM requirement', + "summary"=>sub { return a_href('http://www.descent2.com/','Descent 2').' patch to avoid CD-ROM requirement'; }, "license"=>"PD", "maintenance"=>"ready", "language"=>"i386 asm patch", - "description"=><<"HERE", + "description"=>sub { return <<"HERE"; },

Use this @{[ a_href 'http://www.calderathin.com/products/drdos/','DOS' ]} program to patch/unpatch Descent 2 to not require CD-ROM to run.

HERE ); +sub handler +{ +project::Lib->init(); + + +My::Web->footer(); +} 1;