587
|
1 |
<#--
|
|
2 |
============================================================================
|
|
3 |
Name : documentation.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 |
.. index::
|
|
23 |
module: Documentation
|
|
24 |
|
|
25 |
###################
|
|
26 |
Documentation
|
|
27 |
###################
|
|
28 |
|
|
29 |
|
|
30 |
.. contents::
|
|
31 |
|
|
32 |
|
|
33 |
APIs
|
|
34 |
====
|
|
35 |
|
|
36 |
* `Helium API`_
|
|
37 |
|
|
38 |
The `Helium API`_ specifies all the available Ant_ targets and their
|
|
39 |
required properties. The API is the number one resource to use when
|
|
40 |
building up a Helium configuration.
|
|
41 |
|
|
42 |
.. _`Helium API`: ../api/helium/index.html
|
|
43 |
.. _Ant: http://ant.apache.org
|
|
44 |
|
|
45 |
* `Helium Antlib`_
|
|
46 |
|
|
47 |
.. _`Helium Antlib`: ../helium-antlib/index.html
|
|
48 |
|
645
|
49 |
<#if !(ant?keys?seq_contains("sf"))>
|
|
50 |
|
587
|
51 |
* `Ant Tasks`_
|
|
52 |
|
645
|
53 |
.. _`Ant Tasks`: ../api/doclet/index.html
|
587
|
54 |
|
|
55 |
Customer APIs
|
|
56 |
-------------
|
|
57 |
|
|
58 |
* `IDO API`_
|
|
59 |
* `DFS70501 API`_
|
|
60 |
|
645
|
61 |
.. _`IDO API`: http://helium.nmp.nokia.com/doc/ido/api/helium/index.html
|
|
62 |
.. _`DFS70501 API`: http://helium.nmp.nokia.com/doc/dfs70501/api/helium/index.html
|
587
|
63 |
</#if>
|
|
64 |
|
|
65 |
Building custom documentation
|
|
66 |
=============================
|
|
67 |
|
|
68 |
Documentation for any Helium configuration can be built using ``hlm docs``. The paths to RST documentation source directories must be defined using either a property for a single path or a resources element for multiple paths::
|
|
69 |
|
|
70 |
<property name="doc.src.dir" location="basedir_path/docs/src" />
|
|
71 |
|
|
72 |
<resources id="textdoc.paths">
|
|
73 |
<path>
|
|
74 |
<pathelement path="basedir_path/docs/src"/>
|
|
75 |
<pathelement path="basedir_path/docs/src2"/>
|
|
76 |
</path>
|
|
77 |
</resources>
|
|
78 |
|
|
79 |
|
|
80 |
|