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 |
<#list doc.antDatabase.package as package>
|
|
23 |
<@pp.changeOutputFile name="package-frame-${package.name}.html" />
|
|
24 |
<?xml version="1.0" encoding="utf-8"?>
|
|
25 |
<!DOCTYPE HTML PUBLIC "-//w3c//dtd xhtml 1.0 strict//en"
|
|
26 |
"http://www.w3.org/tr/xhtml1/dtd/xhtml1-strict.dtd">
|
|
27 |
<html xmlns="http://www.w3.org/1999/xhtml">
|
|
28 |
|
|
29 |
<#include "api.ftllib"/>
|
|
30 |
|
|
31 |
<@helium_api_head_section title="package (Helium API)"/>
|
|
32 |
|
|
33 |
<body>
|
|
34 |
<table border="0" width="100%" summary="">
|
|
35 |
<tr>
|
|
36 |
<td style="white-space: nowrap">
|
|
37 |
<font size="+1" class="frameheadingfont">Projects</font> 
|
|
38 |
<font class="frameitemfont">
|
|
39 |
<br/>
|
|
40 |
|
|
41 |
<#assign projectlist=package.projectRef.name?sort>
|
|
42 |
<#list projectlist as project>
|
|
43 |
<a href="project-${project}.html" title="" target="classframe">${project}</a>
|
|
44 |
<br/>
|
|
45 |
</#list>
|
|
46 |
</font>
|
|
47 |
</td>
|
|
48 |
</tr>
|
|
49 |
</table>
|
|
50 |
</body>
|
|
51 |
|
|
52 |
</html>
|
|
53 |
|
|
54 |
</#list> |