+platform
[www.jankratochvil.net.git] / project / ircon / ListItem.pm
index 1672fef..6e2803b 100755 (executable)
 # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
 
 
-package My::Project::ircon;
+package project::ircon::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"=>"IRCon - Infrared Remote Control",
+
+our @ListItem=(
+               "name"=>"IRCon",
+               "platform"=>"unixuser",
+               "priority"=>5,
                "download"=>"ircon.tar.gz",
                "link-index of scanned images"=>"ircon-img/",
                "download-all scanned images"=>"ircon-img.tar",
-               "summary"=>"InfraRed control",
+               "summary"=>"InfraRed remote control hardware",
                "license"=>"PD",
-               "maintenance"=>"obsolete",
-               "obsoleted"=>"Linux kernel driver no longer maintained. Superseded by <a href=\"http://www.lirc.org/\">LIRC</a>",
+               "maintenance"=>"obsolete-Superseded by ".a_href('http://www.lirc.org/','LIRC'),
                "language"=>"C, Java",
-               "description"=>""
-                               .'<p>Software package for custom simple hardware connected to PC parallel port'
-                               .' and transmitting infrared singals to fake real remote TV/video controllers. Hardware'
-                               .' is also equipped with receiver which is only used during development to grab and decode'
-                               .' original signals.</p>'
+               "description"=><<"HERE",
+<p>Software package for custom simple hardware connected to PC parallel port
+and transmitting infrared singals to fake real remote TV/video controllers. Hardware
+is also equipped with receiver which is only used during development to grab and decode
+original signals.</p>
+HERE
                );
 
 1;