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 |
<#list doc['antDatabase/*/macro'] as macro>
|
|
24 |
<@pp.changeOutputFile name="macro-${macro.name}.html" />
|
|
25 |
|
|
26 |
<@helium_api_header title="Macro ${macro.name}"/>
|
|
27 |
|
|
28 |
|
|
29 |
|
|
30 |
<h2>Macro ${macro.name}</h2>
|
|
31 |
|
|
32 |
<b>Scope: </b>${macro.scope}<br/>
|
|
33 |
|
|
34 |
<p><b>Description</b></p>
|
|
35 |
<p>${macro.description}</p>
|
|
36 |
|
|
37 |
<p><b>Location</b></p>
|
|
38 |
<p><@helium_api_location_path location="${macro.location}"/></p>
|
|
39 |
|
|
40 |
<hr/>
|
|
41 |
|
|
42 |
<h3>Documentation</h3>
|
|
43 |
<p>
|
|
44 |
<#recurse macro.documentation>
|
|
45 |
</p>
|
|
46 |
<p/>
|
|
47 |
|
|
48 |
<p>Example: <pre>${macro.usage}</pre></p>
|
|
49 |
|
|
50 |
<hr/>
|
|
51 |
|
|
52 |
<h3>Source code</h3>
|
|
53 |
<pre>
|
|
54 |
${macro.source?html}
|
|
55 |
</pre>
|
|
56 |
|
|
57 |
<@helium_api_html_footer/>
|
|
58 |
|
|
59 |
</#list>
|
|
60 |
|
|
61 |
|