equal
deleted
inserted
replaced
|
1 <?xml version="1.0"?> |
|
2 <xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform"> |
|
3 <xsl:output method="xml" indent="yes"/> |
|
4 <!-- create a stand-alone sysdef from a linked set of fragments --> |
|
5 |
|
6 <xsl:param name="path">/os/deviceplatformrelease/foundation_system/system_model/system_definition.xml</xsl:param> |
|
7 |
|
8 <xsl:template match="/*"> |
|
9 <xsl:apply-templates select="." mode="join"/> |
|
10 </xsl:template> |
|
11 |
|
12 |
|
13 <xsl:template match="/SystemDefinition[systemModel]"> |
|
14 <xsl:apply-templates select="." mode="join"> |
|
15 <xsl:with-param name="filename" select="$path"/> |
|
16 </xsl:apply-templates> |
|
17 </xsl:template> |
|
18 |
|
19 |
|
20 |
|
21 |
|
22 <xsl:include href="joinsysdef-module.xsl"/> |
|
23 |
|
24 </xsl:stylesheet> |