buildframework/helium/doc/src/api/propertygroup.html.ftl
author raptorbot <raptorbot@systemstesthead.symbian.intra>
Fri, 18 Dec 2009 19:57:42 +0000
branchwip
changeset 117 ecf683438dc6
parent 1 be27ed110b50
child 217 0f5e3a7fb6af
permissions -rw-r--r--
Don't mess around with EPOCROOT until actually entering raptor so we know what the original was Put the original epocroot back on the front of the whatcomp output. This allows what output to be either relative or absolute depending on what your epocroot is.

<#--
============================================================================ 
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"/>

<#list data.heliumDataModel.group as group>
<@pp.changeOutputFile name="propertygroup-${group.name}.html" />

<@helium_api_header title="Property group ${group.name}"/>



<h2>Property group ${group.name}</h2>

<h3>Description </h3>
<p>
${group.description}
</p>

<h3>Properties</h3>
<#assign propertyList=group.propertyRef?sort>
<p> 
<table class="docutils" width="50%">
    <tr>
        <th class="head">Name</th>
        <th class="head">Edit status</th>
        <th class="head">Deprecated</th>
    </tr>
    <tr>
        <td colspan="3">User editable properties</td>
    </tr>
    <#list propertyList as property>
        <#list data.heliumDataModel.property as propDataModel>
            <#if property == propDataModel.name>
                <#if propDataModel.editStatus == "must" || propDataModel.editStatus == "recommended" || propDataModel.editStatus == "allowed">
                    <tr>
                        <td><a href="property-${property}.html" title="${propDataModel.description}" target="classframe"><tt class="docutils literal">${property}</tt></a></td>
                        <td><a href="help.html" title="Help" target="classframe">${propDataModel.editStatus}</a></td>
                        <td>
                            <#if propDataModel.deprecated?size &gt; 0>
                                ${propDataModel.deprecated}
                            </#if>
                        </td>
                    </tr>
                </#if>
            </#if>
        </#list>
    </#list>
    <tr>
        <td colspan="3">Internal properties</td>
    </tr>
    <#list propertyList as property>
        <#list data.heliumDataModel.property as propDataModel>
            <#if property == propDataModel.name>
                <#if propDataModel.editStatus == "never" || propDataModel.editStatus == "discouraged">
                    <tr>
                        <td><a href="property-${property}.html" title="${propDataModel.description}" target="classframe"><tt class="docutils literal">${property}</tt></a></td>
                        <td><a href="help.html" title="Help" target="classframe">${propDataModel.editStatus}</a></td>
                        <td>
                            <#if propDataModel.deprecated?size &gt; 0>
                                ${propDataModel.deprecated}
                            </#if>
                        </td>
                    </tr>
                </#if>
            </#if>
        </#list>
    </#list>
</table>
</p>



<@helium_api_html_footer/>

</#list>