modperl branch collapsed back to MAIN trunk, man!
[www.jankratochvil.net.git] / project / oslik / ListItem.pm
index deff81b..3f18c9c 100755 (executable)
 # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
 
 
-package My::Project::oslik;
+package project::oslik::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"=>"Logical Puzzle in Prolog",
-               "priority"=>5,
+
+our @ListItem=(
+               "name"=>"oslik",
+               "platform"=>"unixdevel",
+               "trivia"=>1,
+               "priority"=>70,
                "download"=>"oslik/oslik.zip",
-               "summary"=>"Prolog example",
+               "summary"=>"Prolog example solving logical puzzle Oslik",
                "license"=>"PD",
-               "maintenance"=>"finished",
+               "maintenance"=>"ready",
                "language"=>"Prolog",
-               "description"=>""
-                               .'<p>This is no game, just solution of one specific mathematical problem'
-                               .' consisting of simple state search. Software is written equivalentnly'
-                               .' both in <strong>C</strong> and <strong>Prolog</strong> for comparation.</p>'
+               "description"=><<"HERE",
+<p>Solution calculator of a logical game / mathematical problem
+consisting of simple state search. Software is written equivalentnly
+both in <strong>C</strong> and <strong>Prolog</strong> for comparation.</p>
+HERE
                );
 
 1;