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 as project>
|
|
25 |
<@pp.changeOutputFile name="project-${project.name}.html" />
|
|
26 |
|
|
27 |
<@helium_api_header title="Project ${project.name}"/>
|
|
28 |
|
|
29 |
|
|
30 |
|
|
31 |
<h2>Project ${project.name}</h2>
|
|
32 |
|
|
33 |
<p><b>Location</b></p>
|
|
34 |
<#if (project[".//target"]?size > 0)>
|
|
35 |
<p><@helium_project_path location="${project.target[0].location}"/></p>
|
|
36 |
</#if>
|
|
37 |
<h3>Description</h3>
|
|
38 |
<p>
|
|
39 |
${project.description}
|
|
40 |
</p>
|
|
41 |
<p/>
|
|
42 |
<hr/>
|
|
43 |
|
|
44 |
|
|
45 |
<h3>Targets</h3>
|
|
46 |
<table class="docutils">
|
|
47 |
<tr>
|
|
48 |
<th class="head">Target name</th>
|
|
49 |
<th class="head">Description</th>
|
|
50 |
</tr>
|
|
51 |
<#assign targetInfo = {}>
|
|
52 |
<#list project.target as target>
|
|
53 |
<#assign targetInfo = targetInfo + {target.name: target.summary}>
|
|
54 |
</#list>
|
|
55 |
<#list targetInfo?keys?sort as name>
|
|
56 |
<tr>
|
|
57 |
<td><a href="target-${name}.html" target="classframe">${name}</a></td>
|
|
58 |
<td><#recurse targetInfo[name]></td>
|
|
59 |
</tr>
|
|
60 |
</#list>
|
|
61 |
</table>
|
|
62 |
|
|
63 |
<h3>Properties</h3>
|
|
64 |
|
|
65 |
<#assign propertymodel=doc.antDatabase.project.property>
|
|
66 |
<#assign propertylist=project.property>
|
|
67 |
<#list propertymodel as propertyInModel>
|
|
68 |
<#list propertylist as propertyvar>
|
|
69 |
<#if propertyvar.name == propertyInModel.name>
|
|
70 |
<font class="frameitemfont">
|
|
71 |
<a href="property-${propertyvar.name}.html" title="${propertyvar.name}" target="classframe">${propertyvar.name}</a>
|
|
72 |
</font>
|
|
73 |
<br/>
|
|
74 |
</#if>
|
|
75 |
</#list>
|
|
76 |
</#list>
|
|
77 |
|
|
78 |
<h3>Project dependencies</h3>
|
|
79 |
<#assign filelist = project.projectDependency>
|
|
80 |
<#list filelist as filelistvar>
|
|
81 |
<font class="frameitemfont">
|
|
82 |
${filelistvar}
|
|
83 |
</font>
|
|
84 |
<br/>
|
|
85 |
</#list>
|
|
86 |
|
|
87 |
<#--<h3>Python Modules</h3>
|
|
88 |
<#assign pymodulelist=project.pythonDependency>
|
|
89 |
<#list pymodulelist.module as pymodulevar>
|
|
90 |
<#if pymodulevar?size > 0>
|
|
91 |
<font class="frameitemfont">
|
|
92 |
${pymodulevar}
|
|
93 |
</font>
|
|
94 |
</#if>
|
|
95 |
<br/>
|
|
96 |
</#list>-->
|
|
97 |
|
|
98 |
|
|
99 |
|
|
100 |
<@helium_api_html_footer/>
|
|
101 |
|
|
102 |
</#list>
|
|
103 |
|
|
104 |
|