bldsystemtools/sysdeftools/joinsysdef.xsl
changeset 0 83f4b4db085c
child 18 99082257a271
equal deleted inserted replaced
-1:000000000000 0:83f4b4db085c
       
     1 <?xml version="1.0"?>
       
     2 <xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
       
     3 <!--Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
       
     4 	All rights reserved.
       
     5 	This component and the accompanying materials are made available
       
     6 	under the terms of the License "Eclipse Public License v1.0"
       
     7 	which accompanies this distribution, and is available
       
     8 	at the URL "http://www.eclipse.org/legal/epl-v10.html".
       
     9 
       
    10 	Initial Contributors:
       
    11 	Nokia Corporation - initial contribution.
       
    12 	Contributors:
       
    13 	Description:
       
    14 	Create a stand-alone sysdef from a linked set of fragments
       
    15 -->
       
    16  	<xsl:output method="xml" indent="yes"/>
       
    17 
       
    18 <xsl:param name="path">/os/deviceplatformrelease/foundation_system/system_model/system_definition.xml</xsl:param>
       
    19 
       
    20 <xsl:template match="/*">
       
    21 	<xsl:apply-templates select="." mode="join"/>
       
    22 </xsl:template>
       
    23 
       
    24 
       
    25 <xsl:template match="/SystemDefinition[systemModel]">
       
    26 <xsl:apply-templates select="." mode="join">
       
    27 	<xsl:with-param name="filename" select="$path"/>
       
    28 </xsl:apply-templates>
       
    29 </xsl:template>
       
    30 
       
    31 
       
    32 
       
    33 
       
    34 <xsl:include href="joinsysdef-module.xsl"/>
       
    35 
       
    36 </xsl:stylesheet>