buildframework/helium/tools/preparation/bom/bom_delta.txt.ftl
changeset 1 be27ed110b50
equal deleted inserted replaced
0:044383f39525 1:be27ed110b50
       
     1 <#--
       
     2 ============================================================================ 
       
     3 Name        : bom_delta.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 Bill Of Materials
       
    23 =================
       
    24 
       
    25 Build from: ${doc.bomDelta.buildFrom}
       
    26 Build to:   ${doc.bomDelta.buildTo}
       
    27 
       
    28 
       
    29 Baselines
       
    30 ---------
       
    31 <#list doc.bomDelta.content.baseline as baseline>
       
    32 <#if baseline.@status == "added">
       
    33 + ${baseline}
       
    34 </#if>
       
    35 <#if baseline.@status == "deleted">
       
    36 - ${baseline}
       
    37 </#if>
       
    38 </#list>
       
    39 
       
    40 Tasks
       
    41 -----
       
    42 <#list doc.bomDelta.content.task as task>
       
    43 <#if task.@status == "added">
       
    44 + ${task}
       
    45 </#if>
       
    46 <#if task.@status == "deleted">
       
    47 - ${task}
       
    48 </#if>
       
    49 </#list>
       
    50