modperl branch collapsed back to MAIN trunk, man!
[www.jankratochvil.net.git] / project / Nokia61 / ListItem.pm
index 6ce277b..d5b717a 100755 (executable)
 # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
 
 
-package My::Project::Nokia61;
+package project::Nokia61::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"=>"Nokia Game "Rotation"",
-               "priority"=>7,
+
+our @ListItem=(
+               "name"=>"Rotation",
+               "platform"=>"web",
+               "priority"=>480,
+               "icon"=>"Nokia61-icon.jpeg",
                "download"=>"Nokia61.c",
-               "summary"=>"Logical game solver",
+               "summary"=>"Nokia logical game "Rotation" solver",
                "license"=>"PD",
-               "maintenance"=>"finished",
+               "maintenance"=>"ready",
                "language"=>"C, PHP",
-               "description"=>""
-                               .'<p>At least Nokia 3210 offers game <b>Rotation</b>, this little software will'
-                               .' tell you the optimal solution steps for the given game board situation.'
-                               .' The goal is to get board with'
-                               .' <b>1&nbsp;2&nbsp;3</b>, <b>4&nbsp;5&nbsp;6</b>, <b>7&nbsp;8&nbsp;9</b>,'
-                               .' in rows.</p>'
+               "description"=><<"HERE",
+<p>At least Nokia 3210 offers game <b>Rotation</b>, this little software will
+tell you the optimal solution steps for the given game board situation.
+The goal is to get board with
+<b>1&nbsp;2&nbsp;3</b>, <b>4&nbsp;5&nbsp;6</b>, <b>7&nbsp;8&nbsp;9</b>,
+in rows.</p>
+HERE
                );
 
 1;