Initial mod_perl-2.0 port.
[www.jankratochvil.net.git] / project / patchd2 / Index.pm
old mode 100755 (executable)
new mode 100644 (file)
similarity index 72%
rename from project/patchd2/ListItem.pm
rename to project/patchd2/Index.pm
index 6d2dad1..e22cc7c
@@ -1,8 +1,6 @@
-#! /usr/bin/perl
-# 
 # $Id$
-# Definition of 'My::Project::patchd2' for list.cgi.pl
-# Copyright (C) 2003 Jan Kratochvil <project-www.jankratochvil.net@jankratochvil.net>
+# Main page of 'My::Project::patchd2'
+# Copyright (C) 2003-2005 Jan Kratochvil <project-www.jankratochvil.net@jankratochvil.net>
 # 
 # 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"; },
 <p>Use this @{[ a_href 'http://www.calderathin.com/products/drdos/','DOS' ]}
 program to patch/unpatch Descent 2 to not require CD-ROM to run.</p>
 HERE
                );
 
+sub handler
+{
+project::Lib->init();
+
+
+My::Web->footer();
+}
 1;