217
|
1 |
<#--
|
|
2 |
============================================================================
|
|
3 |
Name :
|
|
4 |
Part of : Helium
|
|
5 |
|
|
6 |
Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
|
|
7 |
All rights reserved.
|
|
8 |
This component and the accompanying materials are made available
|
|
9 |
under the terms of the License "Eclipse Public License v1.0"
|
|
10 |
which accompanies this distribution, and is available
|
|
11 |
at the URL "http://www.eclipse.org/legal/epl-v10.html".
|
|
12 |
|
|
13 |
Initial Contributors:
|
|
14 |
Nokia Corporation - initial contribution.
|
|
15 |
|
|
16 |
Contributors:
|
|
17 |
|
|
18 |
Description:
|
|
19 |
|
|
20 |
============================================================================
|
|
21 |
-->
|
|
22 |
<#include "api.ftllib"/>
|
|
23 |
|
|
24 |
<#list doc.antDatabase.package as package>
|
|
25 |
<@pp.changeOutputFile name="package-${package.name}.html" />
|
|
26 |
|
|
27 |
<@helium_api_header title="package ${package.name}"/>
|
|
28 |
|
|
29 |
|
|
30 |
<h2>package ${package.name}</h2>
|
|
31 |
|
|
32 |
|
|
33 |
<h3>Documentation</h3>
|
|
34 |
<p>
|
|
35 |
${package.documentation}
|
|
36 |
</p>
|
|
37 |
|
|
38 |
|
|
39 |
<h3>Projects</h3>
|
|
40 |
<table class="docutils">
|
|
41 |
<tr>
|
|
42 |
<th class="head">Project name</th>
|
|
43 |
<th class="head">Description</th>
|
|
44 |
</tr>
|
|
45 |
<#assign projectInfo = {}>
|
|
46 |
<#list package.projectRef as projectRef>
|
|
47 |
<#assign projectInfo = projectInfo + {projectRef.name: doc["antDatabase/project[name='${projectRef.name}']"].summary}>
|
|
48 |
</#list>
|
|
49 |
<#list projectInfo?keys?sort as name>
|
|
50 |
<tr>
|
|
51 |
<td><a href="project-${name}.html" project="classframe">${name}</a></td>
|
|
52 |
<td><#recurse projectInfo[name]></td>
|
|
53 |
</tr>
|
|
54 |
</#list>
|
|
55 |
</table>
|
|
56 |
|
|
57 |
|
|
58 |
<@helium_api_html_footer/>
|
|
59 |
|
|
60 |
</#list>
|
|
61 |
|
|
62 |
|