sync
[www.jankratochvil.net.git] / project / tac_plus / Index.pm
1 # $Id$
2 # Main page of 'My::Project::tac_plus'
3 # Copyright (C) 2003-2005 Jan Kratochvil <project-www.jankratochvil.net@jankratochvil.net>
4
5 # This program is free software; you can redistribute it and/or modify
6 # it under the terms of the GNU General Public License as published by
7 # the Free Software Foundation; exactly version 2 of June 1991 is required
8
9 # This program is distributed in the hope that it will be useful,
10 # but WITHOUT ANY WARRANTY; without even the implied warranty of
11 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12 # GNU General Public License for more details.
13
14 # You should have received a copy of the GNU General Public License
15 # along with this program; if not, write to the Free Software
16 # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
17
18
19 package project::tac_plus::Index;
20 require 5.6.0;  # at least 'use warnings;' but we need some 5.6.0+ modules anyway
21 our $VERSION=do { my @r=(q$Revision$=~/\d+/g); sprintf "%d.".("%03d"x$#r),@r; };
22 our $CVS_ID=q$Id$;
23 use strict;
24 use warnings;
25
26 use My::Web;
27 Wuse 'project::Lib';
28
29
30 our @ListItem=(
31                 "name"=>"tac_plus auth",
32                 "platform"=>"unixuser",
33                 "priority"=>270,
34                 "icon"=>"cisco-icon.jpeg",
35                 "download-GTS rel.4 diff for TACACS+ v4.0.3"=>"tac_plus-F4.0.3.alpha.8.gts4.diff.gz",
36                 "download-TACACS+ v4.0.3, Devrim Seral rel.8"=>"http://www.gazi.edu.tr/tacacs/index.php?page=download",
37                 "cvs"=>"tac_plus",
38                 "link-Freshmeat"=>sub {
39                                 return a_href('http://freshmeat.net/branches/18747/','Tacacs+ - Authorization by NAS host patch branch');
40                                 },
41                 "summary"=>sub {
42                                 return a_href('http://www.cisco.com/warp/public/614/7.html','Cisco TACACS+').' NAS host based authorization';
43                                 },
44                 "license"=>"PD",
45                 "maintenance"=>"pending",
46                 "language"=>"C patch",
47                 "sponsorship"=>sub { return a_href('http://www.gtsgroup.cz/'.'GTS'); },
48                 "description"=><<"HERE",
49 <p>Patch provides complete freedom of specifying any
50 configuration changes depending on the specific NAS the user is being logged
51 on. This involves different enable password, NAS keys but now also: various
52 specific commands, permitted services etc.</p>
53 HERE
54                 );
55
56 sub handler
57 {
58 project::Lib->init();
59
60
61 print <<'HERE';
62 <p>Supplied new version is a radical update from the coding view, major updates
63 include:</p>
64 <ul>
65 <li>multiple "<code>member</code>" keyword memberships supported</li>
66 <li>"<code>host</code>" entity unified with "<code>user</code>"/"<code>group</code>" entities</li>
67 <li>"<code>when</code>" blocks implemented for NAS host based configuration</li>
68 <li>all <code><a href="http://git.jankratochvil.net/?p=tac_plus.git;a=blob_plain;hb=HEAD;f=Makefile.in">Makefile.in</a></code> options moved to
69     <code><a href="http://git.jankratochvil.net/?p=tac_plus.git;a=blob_plain;hb=HEAD;f=configure.in">configure.in</a></code></li>
70 <li><code><a href="http://git.jankratochvil.net/?p=tac_plus.git;a=blob_plain;hb=HEAD;f=Makefile.in">Makefile.in</a></code> rewritten to
71     <i><a href="http://www.gnu.org/software/automake/automake.html">automake</a></i>
72     <code><a href="http://git.jankratochvil.net/?p=tac_plus.git;a=blob_plain;hb=HEAD;f=Makefile.am">Makefile.am</a></code></li>
73 </ul>
74 HERE
75
76
77 exit;
78 }
79 1;