buildframework/helium/config/helium_data_model.xsl
changeset 1 be27ed110b50
equal deleted inserted replaced
0:044383f39525 1:be27ed110b50
       
     1 <xsl:stylesheet version="1.0"
       
     2                 xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
       
     3 <!-- 
       
     4 ============================================================================ 
       
     5 Name        : helium_data_model.xml 
       
     6 Part of     : Helium 
       
     7 
       
     8 Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
       
     9 All rights reserved.
       
    10 This component and the accompanying materials are made available
       
    11 under the terms of the License "Eclipse Public License v1.0"
       
    12 which accompanies this distribution, and is available
       
    13 at the URL "http://www.eclipse.org/legal/epl-v10.html".
       
    14 
       
    15 Initial Contributors:
       
    16 Nokia Corporation - initial contribution.
       
    17 
       
    18 Contributors:
       
    19 
       
    20 Description:
       
    21 
       
    22 ============================================================================
       
    23 -->
       
    24 <!--
       
    25 
       
    26 This describes the allowed values for some of the fields:
       
    27 
       
    28 property:
       
    29 - editStatus: [must, recommended, allowed, discouraged, never] 
       
    30   type: [string, boolean, integer]
       
    31 
       
    32 -->
       
    33 <xsl:output method="xml" indent="yes"/>
       
    34 
       
    35 <xsl:template match="/">
       
    36     <heliumDataModel xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="..\tools\common\schema\helium_data_model.xsd">
       
    37         <xsl:copy-of select="//property"/>
       
    38         <xsl:copy-of select="//group"/>
       
    39     </heliumDataModel>
       
    40 </xsl:template>
       
    41 </xsl:stylesheet>