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="Index (Helium API)"/>
|
|
25 |
|
|
26 |
|
|
27 |
|
|
28 |
<h1>Index</h1>
|
|
29 |
<dl>
|
|
30 |
<#assign indexlist = {}>
|
|
31 |
<#list doc.antDatabase.project.property.name as propertyName>
|
|
32 |
<#assign indexlist = indexlist + {propertyName: "property"}>
|
|
33 |
</#list>
|
|
34 |
<#list doc.antDatabase.project.target.name as targetName>
|
|
35 |
<#assign indexlist = indexlist + {targetName: "target"}>
|
|
36 |
</#list>
|
|
37 |
|
|
38 |
<#assign alphabetlist = ['a', 'b', 'c', 'd', 'e', 'f', 'g', 'h', 'i', 'j', 'k', 'l', 'm', 'n', 'o', 'p', 'q', 'r', 's', 't', 'u', 'v', 'w', 'x', 'y', 'z']>
|
|
39 |
<#list alphabetlist as letter>
|
|
40 |
<a href="#${letter}">${letter?upper_case}</a>
|
|
41 |
</#list>
|
|
42 |
|
|
43 |
<#list alphabetlist as letter>
|
|
44 |
<h2><a name="${letter}">${letter?upper_case}</a></h2>
|
|
45 |
<#list indexlist?keys?sort as element>
|
|
46 |
<#if element?starts_with(letter)>
|
|
47 |
<dt><a href="${indexlist[element]}-${element}.html">${element}</a></dt>
|
|
48 |
</#if>
|
|
49 |
</#list>
|
|
50 |
<p/>
|
|
51 |
</#list>
|
|
52 |
</dl>
|
|
53 |
|
|
54 |
|
|
55 |
<@helium_api_html_footer/>
|