buildframework/helium/tools/common/templates/diamonds/publish.xml.ftl
changeset 628 7c4a911dc066
child 645 b8d81fa19e7d
equal deleted inserted replaced
588:c7c26511138f 628:7c4a911dc066
       
     1 <#--
       
     2 ============================================================================ 
       
     3 Name        : .xml.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 "diamonds_header.ftl">
       
    23 <#if ant?keys?seq_contains("diamonds.files")>
       
    24 <files>
       
    25     <#list ant['diamonds.files']?split(" ") as line>
       
    26         <#if line?split(".")?last == "fpsx">
       
    27     <file>
       
    28         <name>${line?split("\\")?last}</name>
       
    29         <url>${line}</url>
       
    30         <type>flash_image</type>
       
    31     </file>
       
    32         </#if>
       
    33         <#if line?split(".")?last == "html" || line?split(".")?last == "log">
       
    34     <file>
       
    35         <name>${line?split("\\")?last}</name>
       
    36         <url>${line}</url>
       
    37         <type>log</type>
       
    38     </file>
       
    39         </#if>
       
    40     </#list>
       
    41 </files> 
       
    42 </#if>
       
    43 <#include "diamonds_footer.ftl">