buildframework/helium/doc/api/overview-summary.html.ftl
author Bob Rosenberg <bob.rosenberg@nokia.com>
Mon, 13 Sep 2010 13:52:18 +0100
changeset 656 88e01c8f013e
parent 587 85df38eb4012
permissions -rw-r--r--
Fix merging bug where downstream items somtimes got ignored if they appear after an upstream-only item. Also, reduce the severity of the validation error if a tech-domain is not recognised on a non-Foundation package.

<#--
============================================================================ 
Name        : 
Part of     : Helium 

Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
All rights reserved.
This component and the accompanying materials are made available
under the terms of the License "Eclipse Public License v1.0"
which accompanies this distribution, and is available
at the URL "http://www.eclipse.org/legal/epl-v10.html".

Initial Contributors:
Nokia Corporation - initial contribution.

Contributors:

Description:

============================================================================
-->
<#include "api.ftllib"/>

<@helium_api_header title="Helium API"/>


    <center>
        <h1>Helium API</h1>
    </center>
    
    <p>
    This is the API specification for the Helium build toolkit.
    </p>
    
    <ul>
        <li><a href="#packages">Packages</a></li>
        <li><a href="#projects">Projects</a></li>
    </ul>
    
    <h2><a name="packages">Packages</a></h2>
    <p>
    Helium Ant project files are grouped into packages of related functionality.
    </p>
    <table class="docutils">
        <tr>
            <th class="head">Package</th>
            <th class="head">Projects</th>
            <th class="head">Description</th>
        </tr>
        <#assign packageInfo = {}>
        <#list doc.antDatabase.package as package>
            <#assign packageInfo = packageInfo + {package.name: package}>
        </#list>
        <#list packageInfo?keys?sort as name>
            <tr>
                <td valign="top"><a href="package-${name}.html" target="classframe">${name}</a></td>
                <td>
                    <#assign projectInfo = {}>
                    <#list packageInfo[name].projectRef as projectRef>
                        <#assign projectInfo = projectInfo + {projectRef.name: doc["antDatabase/project[name='${projectRef.name}']"].summary}>
                    </#list>
                    <#list projectInfo?keys?sort as name>
                        <a href="project-${name}.html" project="classframe">${name}</a><br/>
                    </#list>
                </td>
                <td><#recurse packageInfo[name].summary></td>
            </tr>
        </#list>
    </table>
    <br/>
    
    <#--<h2><a name="projects">Projects</a></h2>
    <p>
    Helium is configured into a set of Ant project files that group related functionality.
    </p>
    <table class="docutils">
        <tr>
            <th class="head">Project name</th>
            <th class="head">Description</th>
        </tr>
        <#assign projectInfo = {}>
        <#list doc.antDatabase.project as project>
            <#assign projectInfo = projectInfo + {project.name: project}>
        </#list>
        <#list projectInfo?keys?sort as name>
            <tr>
                <td><a href="project-${name}.html" target="classframe">${name}</a></td>
                <td><#recurse projectInfo[name]></td>
            </tr>
        </#list>
    </table>
    <br/>-->

<@helium_api_html_footer/>