+platform
[www.jankratochvil.net.git] / project / doswatch / ListItem.pm
index 7b55e21..c48e8bc 100755 (executable)
 # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
 
 
-package My::Project::doswatch;
+package project::doswatch::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"=>"DOSWatcher - DOS File Access Snooper",
+
+our @ListItem=(
+               "name"=>"DOSWatcher",
+               "platform"=>"dos",
+               "priority"=>3,
                "download"=>"doswatch.zip",
-               "summary"=>"DOS files snooper",
+               "summary"=>"DOS files access strace(1) equivalent",
                "license"=>"PD",
-               "maintenance"=>"finished",
+               "maintenance"=>"ready",
                "language"=>"i386 asm",
-               "description"=>""
-                               .'<p>Resident program which displays all the file (and other) DOS function'
-                               .' calls access on the secondary console. Useful for many failure discoveries'
-                               .' for weird software packages with broken file/directory access.</p>'
-                               .' <ul>'
-                               .'      <li>Requires MDA/Hercules secondary adapter to be usable'
-                               .'      <li>Contains also MDABIOS, generic secondary adapter display layer'
-                               .'      <li>Can be run on primary-only VGA (with not much comfort, indeed)'
-                               .' </ul>'
+               "description"=><<"HERE",
+<p>Resident program which displays all the file (and other) DOS function
+calls access on the secondary console. Useful for many failure discoveries
+for weird software packages with broken file/directory access.</p>
+<ul>
+       <li>MDA/Hercules secondary adapter recommended for DOSWATCH</li>
+       <li>Package contains also MDABIOS - generic secondary adapter driver</li>
+       <li>MDABIOS features DOS commands accessible device "mda$"</li>
+       <li>DOSWATCH can be run on single VGA card (with not much comfort, indeed)</li
+</ul>
+HERE
                );
 
 1;