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 |
<#list doc.antDatabase.project.target as target>
|
|
25 |
<@pp.changeOutputFile name="target-${target.name}.html" />
|
|
26 |
|
|
27 |
<@helium_api_header title="Target ${target.name}"/>
|
|
28 |
|
|
29 |
|
|
30 |
|
|
31 |
<h2>Target ${target.name}</h2>
|
|
32 |
|
|
33 |
<b>Scope: </b>${target.scope}<br/>
|
|
34 |
|
|
35 |
<p><b>Description</b></p>
|
|
36 |
<p>${target.description}</p>
|
|
37 |
|
|
38 |
<p><b>Location</b></p>
|
|
39 |
<p><@helium_api_location_path location="${target.location}"/></p>
|
|
40 |
|
|
41 |
<p><b>Conditional execution</b></p>
|
|
42 |
<#if target.ifDependency?length > 0>
|
|
43 |
<p>Target <b>is</b> run if property defined: <code>${target.ifDependency}</code></p>
|
|
44 |
</#if>
|
|
45 |
<#if target.unlessDependency?length > 0>
|
|
46 |
<p>Target <b>is not</b> run if property defined: <code>${target.unlessDependency}</code></p>
|
|
47 |
</#if>
|
|
48 |
<#if target.ifDependency?length == 0 && target.unlessDependency?length == 0>
|
|
49 |
<p>No conditions on target execution.</p>
|
|
50 |
</#if>
|
|
51 |
|
|
52 |
<#if target.deprecated?length > 0>
|
|
53 |
<h3>Deprecated :</h3>
|
|
54 |
<p>
|
|
55 |
${target.deprecated}
|
|
56 |
</p>
|
|
57 |
</#if>
|
|
58 |
<hr/>
|
|
59 |
|
|
60 |
|
|
61 |
<h3>Documentation</h3>
|
|
62 |
<p>
|
|
63 |
<#recurse target.documentation>
|
|
64 |
</p>
|
|
65 |
<p/>
|
|
66 |
<hr/>
|
|
67 |
|
|
68 |
|
|
69 |
<#assign executableList=target.executable?sort>
|
|
70 |
<#if executableList?size > 0>
|
|
71 |
<h3>Target external Dependency</h3>
|
|
72 |
<p>
|
|
73 |
<table class="docutils" width="50%">
|
|
74 |
<tr>
|
|
75 |
<th class="head">Name</th>
|
|
76 |
</tr>
|
|
77 |
<#list executableList as excutable>
|
|
78 |
<tr>
|
|
79 |
<td>${excutable}</td>
|
|
80 |
</tr>
|
|
81 |
</#list>
|
|
82 |
</table>
|
|
83 |
</p>
|
|
84 |
</#if>
|
|
85 |
|
|
86 |
|
|
87 |
<h3>Property dependencies</h3>
|
|
88 |
|
|
89 |
<#assign propertyList=target.propertyDependency?sort>
|
|
90 |
<ul>
|
|
91 |
<#list propertyList as property>
|
|
92 |
<li>${property}</li>
|
|
93 |
</#list>
|
|
94 |
</ul>
|
|
95 |
<hr/>
|
|
96 |
|
|
97 |
|
|
98 |
<h3>Target dependencies</h3>
|
|
99 |
<p align="center">
|
|
100 |
<img src="target-${target.name}.dot.png" alt="${target.name} dependencies" usemap="#dependencies"
|
|
101 |
style="border-style: none"/>
|
|
102 |
<map name="dependencies" id="dependencies">
|
|
103 |
<#attempt>
|
|
104 |
<#include "target-${target.name}.dot.cmap"/>
|
|
105 |
<#recover>
|
|
106 |
</#attempt>
|
|
107 |
</map>
|
|
108 |
</p>
|
|
109 |
<hr/>
|
|
110 |
|
|
111 |
|
|
112 |
<h3>Source code</h3>
|
|
113 |
<pre>
|
|
114 |
${target.source?html}
|
|
115 |
</pre>
|
|
116 |
|
|
117 |
|
|
118 |
<@helium_api_html_footer/>
|
|
119 |
|
|
120 |
</#list>
|
|
121 |
|
|
122 |
|