projects sorted
[www.jankratochvil.net.git] / project / winvnc / ListItem.pm
index b677286..8bf0773 100755 (executable)
 # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
 
 
-package My::Project::winvnc;
+package project::winvnc::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"=>"Patch for Secret WinVNC Server Run",
-               "priority"=>6,
+
+our @ListItem=(
+               "name"=>"WinVNC hide",
+               "platform"=>"w32",
+               "priority"=>560,
+               "icon"=>"nowinvnc",
                "download-already patched version 3.3.3r9"=>"vnc-3.3.3r9_x86_win32-exe-SECRET.zip",
                "download-original version 3.3.3r9"=>"http://www.uk.research.att.com/vnc/dist/vnc-3.3.3r9_x86_win32.zip",
                "download-already patched version 3.3.3r7"=>"vnc-3.3.3r7_x86_win32-exe-SECRET.zip",
                "download-original version 3.3.3r7"=>"http://www.uk.research.att.com/vnc/dist/vnc-3.3.3r7_x86_win32.zip",
                "link-VNC Homepage"=>"http://www.uk.research.att.com/vnc/",
-               "summary"=>"Patch to hide WinVNC",
+               "summary"=>"Hide running WinVNC server",
                "license"=>"PD",
-               "maintenance"=>"finished",
+               "maintenance"=>"ready",
                "language"=>"i386 asm patch",
-               "description"=>""
-                               .'<p>If you install <i>WinVNC</i> in'
-                               .' <a href="http://www.microsoft.com/">MS</a>&nbsp;<a href="http://www.microsoft.com/windows/">Windows</a>'
-                               .' environment, you will notice that it creates its own small icon in <i>System Tray</i>.'
-                               .' Sometimes you want to get rid of this visible icon and you cannot remove it by any configuration'
-                               .' settings.</p>'
+               "description"=><<"HERE",
+<p>If you install <i>WinVNC</i> in
+@{[ a_href 'http://www.microsoft.com/','MS' ]}&nbsp;@{[ a_href 'http://www.microsoft.com/windows/','Windows' ]}
+environment, you will notice that it creates its own small icon in <i>System Tray</i>.
+Sometimes you want to get rid of this visible icon and you cannot remove it by any configuration
+settings.</p>
+HERE
                );
 
 1;