Update name vs. summary
[www.jankratochvil.net.git] / project / mod_auth_tacacs / ListItem.pm
index cf2ed85..6d11773 100755 (executable)
 # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
 
 
-package My::Project::mod_auth_tacacs;
+package project::mod_auth_tacacs::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"=>"<a href=\"http://sourceforge.net/projects/mod-auth-tacacs/\">mod_auth_tacacs</a> TACACS+ test client",
+
+our @ListItem=(
+               "name"=>a_href('http://sourceforge.net/projects/mod-auth-tacacs/','mod_auth_tacacs').' client',
+               "priority"=>2,
                "download"=>"mod_auth_tacacs-2.0.2-gts1-checkout.diff.gz",
                "link-mod_auth_tacacs homepage"=>"http://sourceforge.net/projects/mod-auth-tacacs/",
-               "summary"=>"Network server security",
+               "summary"=>'Testing/debugging Cisco TACACS+ client for '
+                               .a_href('http://sourceforge.net/projects/mod-auth-tacacs/','mod_auth_tacacs'),
                "license"=>"PD",
                "maintenance"=>"accepted",
                "language"=>"C patch",
-               "description"=>""
-                               .'Patch implements: command-line client, <code>dropped Makefile.in</code>'
-                               .' in favor of <code>Makefile.am</code>, <code>--with-apache</code> works now'
-                               .' (whole <code>configure.in</code> rewritten)'
+               "description"=><<"HERE",
+Patch implements: command-line client, <code>dropped Makefile.in</code>
+in favor of <code>Makefile.am</code>, <code>--with-apache</code> works now
+(whole <code>configure.in</code> rewritten)
+HERE
                );
 
 1;