+platform
[www.jankratochvil.net.git] / project / line9k / ListItem.pm
index 6b60251..733a2de 100755 (executable)
 # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
 
 
-package My::Project::line9k;
+package project::line9k::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"=>"Modem / Nokia 9110 GSM data gate",
+
+our @ListItem=(
+               "name"=>"line9k",
+               "platform"=>"unixuser",
                "priority"=>7,
-               "download"=>"http://cvs.jankratochvil.net/viewcvs/*checkout*/nethome/usr/local/sbin/line9k?rev=HEAD",
-               "summary"=>"pppd(8) script, charger scheme",
+               # FIXME: 'http://cvs.jankratochvil.net/viewcvs/' -> $W->{"project_viewcvs"}
+               "download"=>'http://cvs.jankratochvil.net/viewcvs/'."*checkout*/nethome/usr/local/sbin/line9k?rev=HEAD",
+               "summary"=>"Modem / Nokia 9110 GSM data gateway control, charger",
                "license"=>"PD",
-               "maintenance"=>"finished",
+               "maintenance"=>"ready",
                "language"=>"bash, hardware",
-               "description"=>""
-                               .'<p>Waits for incoming PPP data connection, authorizes it and answers it.</p>'
-                               .'<p>Scheme of computer controllde hardware charger for Nokia Communicator 9110 is supplied.'
-                               .'It keeps the Nokia battery fit by automatically controlled battery charging cycles.</p>'
+               "description"=><<"HERE",
+<p>Waits for incoming PPP data connection, authorizes it and answers it.</p>
+<p>Scheme of computer controllde hardware charger for Nokia Communicator 9110 is supplied.
+It keeps the Nokia battery fit by automatically controlled battery charging cycles.</p>
+HERE
                );
 
 1;