X-Git-Url: http://git.jankratochvil.net/?a=blobdiff_plain;f=project%2FNokia61%2FListItem.pm;h=d5b717a43a8b92d1e6dbab8d6079d620be1195ac;hb=edd751ab0449b6117afdd9c496af762008c40351;hp=f5d13fd340b1473aa764d7f5f5653152c7d78e80;hpb=023bd9615484000eec756de502600995e7b75fe8;p=www.jankratochvil.net.git diff --git a/project/Nokia61/ListItem.pm b/project/Nokia61/ListItem.pm index f5d13fd..d5b717a 100755 --- a/project/Nokia61/ListItem.pm +++ b/project/Nokia61/ListItem.pm @@ -18,28 +18,33 @@ # 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"", + +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"=>"" - .'

At least Nokia 3210 offers game Rotation, this little software will' - .' tell you the optimal solution steps for the given game board situation.' - .' The goal is to get board with' - .' 1 2 3, 4 5 6, 7 8 9,' - .' in rows.

' + "description"=><<"HERE", +

At least Nokia 3210 offers game Rotation, this little software will +tell you the optimal solution steps for the given game board situation. +The goal is to get board with +1 2 3, 4 5 6, 7 8 9, +in rows.

+HERE ); 1;