1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
|
#include 'head.wml'
#use wml::std::tags
<perl>
sub print_li_header {
my $page = $_[0];
my $path = $_[1];
my $name = $_[2];
my $_name;
if ($page ne $name) {
$_name =~ s/\s/_/g;
print "<li id=\"tab$_name\"><a href=\"$path\">$name</a></li>\n";
} else {
print "<li id=\"joinfsftab\"><a href=\"$path\">$name</a></li>\n";
}
return;
}
</perl>
<!--<div id="null-wrapper"> -->
<!-- begin of body-include-2 -->
<div id="header">
<div class="inner" style="position: relative;">
<table width="100%" class="transparent">
<tr><td>
<a href="$(path)gnutls-logo.html">
<img alt="Gnutls Logo" src="$(path)graphics/gnutls-logo.png" align="Left" border="0" />
</a>
</td>
<td>
<h1>The GnuTLS Transport Layer Security Library</h1>
</td>
</tr>
</table>
</div>
</div>
<div id="navigation">
<div class="inner">
<ul>
<:= &print_li_header("$(page)","$(path)index.html","Overview") :>
<:= &print_li_header("$(page)","$(path)news.html","News") :>
<!-- <:= &print_li_header("$(page)","$(path)soc.html","Summer of code") :> -->
<:= &print_li_header("$(page)","$(path)download.html","Download") :>
<:= &print_li_header("$(page)","$(path)support.html","Support") :>
<:= &print_li_header("$(page)","$(path)devel.html","Development") :>
<:= &print_li_header("$(page)","$(path)documentation.html","Documentation") :>
<:= &print_li_header("$(page)","$(path)security.html","Security advisories") :>
<!-- <:= &print_li_header("$(page)","$(path)commercial.html","Commercial support") :>-->
<:= &print_li_header("$(page)","$(path)contrib.html","Authors") :>
</ul>
</div><!-- /inner -->
</div><!-- /navigation -->
<div id="content" class="inner">
|