+platform
[www.jankratochvil.net.git] / project / ppp9k / ListItem.pm
index 0c1a9e5..f99e47f 100755 (executable)
 # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
 
 
-package My::Project::ppp9k;
+package project::ppp9k::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 Communicator Leased Line",
+
+our @ListItem=(
+               "name"=>"ppp9k",
+               "platform"=>"unixuser",
                "priority"=>6,
-               "download"=>"http://cvs.jankratochvil.net/viewcvs/*checkout*/nethome/home/lace/bin/ppp9k?rev=HEAD",
-               "summary"=>"Communication script",
+               # FIXME: 'http://cvs.jankratochvil.net/viewcvs/' -> $W->{"project_viewcvs"}
+               "download"=>'http://cvs.jankratochvil.net/viewcvs/'."*checkout*/nethome/home/lace/bin/ppp9k?rev=HEAD",
+               "summary"=>"Connect device (Nokia Communicator) by serial PPP to your LAN",
                "license"=>"PD",
-               "maintenance"=>"finished",
+               "maintenance"=>"ready",
                "language"=>"bash",
-               "description"=>""
-                               .'<p>Script will connect Nokia Communicator <a href="http://www.nokia.com/phones/9000i">9000i</a>'
-                               .' or <a href="http://www.nokia.com/phones/9110i">9110i</a> through'
-                               .' your local GNU/Linux PC Internet connection. You will also need'
-                               .' Nokia Communicator utility <a href="http://www.mgroeber.de/nokia.htm">Advanced PPP Settings</a>.'
+               "description"=><<"HERE",
+<p>Script will connect Nokia Communicator @{[ a_href 'http://www.nokia.com/phones/9000i','9000i' ]}
+or @{[ a_href 'http://www.nokia.com/phones/9110i','9110i' ]} through
+your local GNU/Linux PC Internet connection. You will also need
+Nokia Communicator utility @{[ a_href 'http://www.mgroeber.de/nokia.htm','Advanced PPP Settings' ]}.
+HERE
                );
 
 1;