587
|
1 |
<?xml version="1.0" encoding="utf-8"?>
|
|
2 |
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
|
3 |
##
|
|
4 |
## This is an Velocity template for generating an HTML index
|
|
5 |
## of the Ant "categories" (antlibs)
|
|
6 |
##
|
|
7 |
## Objects expected in context:
|
|
8 |
##
|
|
9 |
## $title - Project title (of type String)
|
|
10 |
## $antroot - (of type AntRoot)
|
|
11 |
##
|
|
12 |
<html>
|
|
13 |
<head>
|
|
14 |
<title>$title Ant Libraries</title>
|
|
15 |
<link rel="stylesheet" type="text/css" href="style.css" />
|
|
16 |
</head>
|
|
17 |
<body>
|
|
18 |
|
|
19 |
<div id="navigation">
|
|
20 |
|
|
21 |
<a href="overview.html" target="task">
|
|
22 |
<h2>$title Ant Libs</h2>
|
|
23 |
</a>
|
|
24 |
<p>
|
|
25 |
## Iterate through the Categories
|
|
26 |
#foreach( $category in $antroot.getCategories() )
|
|
27 |
<a href="index.${category}.html" target="taskindex">
|
|
28 |
$category
|
|
29 |
</a><br />
|
|
30 |
#end
|
|
31 |
</p>
|
|
32 |
|
|
33 |
<a href="index.all.html" target="taskindex">
|
|
34 |
<i>all</i>
|
|
35 |
</a><br />
|
|
36 |
</div>
|
|
37 |
</body>
|
|
38 |
</html>
|