buildframework/helium/tools/common/templates/help_text.txt.ftl
changeset 1 be27ed110b50
child 628 7c4a911dc066
equal deleted inserted replaced
0:044383f39525 1:be27ed110b50
       
     1 <#--
       
     2 ============================================================================ 
       
     3 Name        : help_text.txt.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 <#list xml["//target[name='${helpTarget}']"] as target>
       
    23 
       
    24 Target ${target.name}:
       
    25 -----------------------------
       
    26 Location: ${target.location}
       
    27 
       
    28 <#if target.description?length &gt; 0>
       
    29 Description:
       
    30 ${target.description}
       
    31 </#if>
       
    32 Documentation:<#recurse target.documentation>
       
    33 
       
    34 Property dependencies:
       
    35 <#list target.propertyDependency as property>
       
    36 * ${property}
       
    37 </#list>
       
    38 </#list>
       
    39 
       
    40 <#macro tt> "<#recurse>" </#macro>
       
    41 
       
    42 <#macro p>
       
    43 
       
    44 <#recurse></#macro>
       
    45 
       
    46 <#macro ul>
       
    47 
       
    48 <#recurse></#macro>
       
    49 
       
    50 <#macro li> * <#recurse>
       
    51 </#macro>
       
    52 
       
    53 <#macro b><#recurse>*</#macro>
       
    54 
       
    55 <#macro @text>${.node?trim}</#macro>
       
    56