equal
deleted
inserted
replaced
|
1 <#-- |
|
2 ============================================================================ |
|
3 Name : package.rst.ftl |
|
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.package as package> |
|
25 <@pp.changeOutputFile name="package-${package.name}.rst" /> |
|
26 |
|
27 .. index:: |
|
28 ${package.name} |
|
29 |
|
30 ========================================================== |
|
31 Package ${package.name} |
|
32 ========================================================== |
|
33 |
|
34 .. toctree:: |
|
35 :maxdepth: 2 |
|
36 |
|
37 <#assign projectList=package.projectRef.name?sort> |
|
38 <#list projectList as project> |
|
39 project-${project} |
|
40 </#list> |
|
41 <#assign antlibList=package.antlibRef.name?sort> |
|
42 <#list antlibList as antlib> |
|
43 antlib-${antlib} |
|
44 </#list> |
|
45 |
|
46 |
|
47 </#list> |
|
48 |
|
49 |