587
|
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 |
<@helium_api_header title="Helium API"/>
|
|
25 |
|
|
26 |
|
|
27 |
<center>
|
|
28 |
<h1>Helium API</h1>
|
|
29 |
</center>
|
|
30 |
|
|
31 |
<p>
|
|
32 |
This is the API specification for the Helium build toolkit.
|
|
33 |
</p>
|
|
34 |
|
|
35 |
<ul>
|
|
36 |
<li><a href="#packages">Packages</a></li>
|
|
37 |
<li><a href="#projects">Projects</a></li>
|
|
38 |
</ul>
|
|
39 |
|
|
40 |
<h2><a name="packages">Packages</a></h2>
|
|
41 |
<p>
|
|
42 |
Helium Ant project files are grouped into packages of related functionality.
|
|
43 |
</p>
|
|
44 |
<table class="docutils">
|
|
45 |
<tr>
|
|
46 |
<th class="head">Package</th>
|
|
47 |
<th class="head">Projects</th>
|
|
48 |
<th class="head">Description</th>
|
|
49 |
</tr>
|
|
50 |
<#assign packageInfo = {}>
|
|
51 |
<#list doc.antDatabase.package as package>
|
|
52 |
<#assign packageInfo = packageInfo + {package.name: package}>
|
|
53 |
</#list>
|
|
54 |
<#list packageInfo?keys?sort as name>
|
|
55 |
<tr>
|
|
56 |
<td valign="top"><a href="package-${name}.html" target="classframe">${name}</a></td>
|
|
57 |
<td>
|
|
58 |
<#assign projectInfo = {}>
|
|
59 |
<#list packageInfo[name].projectRef as projectRef>
|
|
60 |
<#assign projectInfo = projectInfo + {projectRef.name: doc["antDatabase/project[name='${projectRef.name}']"].summary}>
|
|
61 |
</#list>
|
|
62 |
<#list projectInfo?keys?sort as name>
|
|
63 |
<a href="project-${name}.html" project="classframe">${name}</a><br/>
|
|
64 |
</#list>
|
|
65 |
</td>
|
|
66 |
<td><#recurse packageInfo[name].summary></td>
|
|
67 |
</tr>
|
|
68 |
</#list>
|
|
69 |
</table>
|
|
70 |
<br/>
|
|
71 |
|
|
72 |
<#--<h2><a name="projects">Projects</a></h2>
|
|
73 |
<p>
|
|
74 |
Helium is configured into a set of Ant project files that group related functionality.
|
|
75 |
</p>
|
|
76 |
<table class="docutils">
|
|
77 |
<tr>
|
|
78 |
<th class="head">Project name</th>
|
|
79 |
<th class="head">Description</th>
|
|
80 |
</tr>
|
|
81 |
<#assign projectInfo = {}>
|
|
82 |
<#list doc.antDatabase.project as project>
|
|
83 |
<#assign projectInfo = projectInfo + {project.name: project}>
|
|
84 |
</#list>
|
|
85 |
<#list projectInfo?keys?sort as name>
|
|
86 |
<tr>
|
|
87 |
<td><a href="project-${name}.html" target="classframe">${name}</a></td>
|
|
88 |
<td><#recurse projectInfo[name]></td>
|
|
89 |
</tr>
|
|
90 |
</#list>
|
|
91 |
</table>
|
|
92 |
<br/>-->
|
|
93 |
|
|
94 |
<@helium_api_html_footer/>
|
|
95 |
|
|
96 |
|