bagder: curl-www/docs vulntable.pl,1.2,1.3
| Newsgroups | gmane.comp.web.curl.www.cvs |
|---|---|
| Message-ID | <[email protected]> |
Update of /cvsroot/curl/curl-www/docs
In directory labb:/tmp/cvs-serv29811
Modified Files:
vulntable.pl
Log Message:
narrower version of the table headers
Index: vulntable.pl
===================================================================
RCS file: /cvsroot/curl/curl-www/docs/vulntable.pl,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -d -r1.2 -r1.3
--- vulntable.pl 21 Mar 2006 10:24:43 -0000 1.2
+++ vulntable.pl 10 Jul 2007 21:39:27 -0000 1.3
@@ -21,10 +21,12 @@
print "<table>";
sub head {
print "<tr class=\"tabletop\"><th>Version</th>";
+ my $v=1;
for(@vuln) {
my ($id, $start, $stop)=split('\|');
$id =~ s/ //;
- print "<th><a href=\"/docs/security.html\#$id\">$id</a></th>";
+ print "<th title=\"$id\"><a href=\"/docs/security.html\#$id\">#$v</a></th>";
+ $v++;
}
print "</tr>\n";
}