+platform
[www.jankratochvil.net.git] / project / timeplan / ListItem.pm
index 3f8d927..1341a9c 100755 (executable)
 # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
 
 
-package My::Project::timeplan;
+package project::timeplan::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"=>"Time Log Summarizer",
+
+our @ListItem=(
+               "name"=>"timeplan",
+               "platform"=>"unixuser",
+               "priority"=>6,
                "download"=>"timeplan-1.0.1.tar.gz",
-               "summary"=>"Time management",
+               "cvs"=>"timeplan",
+               "summary"=>"Calculate statistics from your personal time tracking notes",
                "license"=>"PD",
-               "maintenance"=>"finished",
+               "maintenance"=>"ready",
                "language"=>"C",
-               "description"=>""
-                               .'<p>Software to do summaries of time log - what have you spent much time on.'
-                               .' The greatest effect to me was just the writing of such time log: Consecutively'
-                               .' you do not spend such time on useless issues as you would be forced to write'
-                               .' such event to your log.</p>'
+               "description"=><<"HERE",
+<p>Software to do summaries of time log - what have you spent much time on.
+The greatest effect to me was just the writing of such time log: Consecutively
+you do not spend such time on useless issues as you would be forced to write
+such event to your log.</p>
+HERE
                );
 
 1;