sysmodelgen/src/old/svg/output-sysdef.xsl
author Simon Howkins <simonh@symbian.org>
Thu, 10 Jun 2010 16:30:35 +0100
branchHighFidelityModel
changeset 283 7b6dfbac0dd3
parent 152 5acf50bbb618
permissions -rw-r--r--
Change the order of tests in sub GetXsltDir, so that it tests relative to the root directory before using the current dir (which will always exist) Improved debug output when unable to open some of the files.

<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
	<xsl:output method="xml" indent="yes"/>
<!-- strip out build-related stuff and just leave the model + added attributes -->

<xsl:template match="component|component/*">
	<xsl:copy>
		<xsl:apply-templates select="@*|node()"/>
	</xsl:copy>
</xsl:template>

<xsl:template match="component/*/* | @*"> <!-- no rules, so just copy -->
	<xsl:copy-of select="."/>
</xsl:template>

<xsl:template match="@mrp|@bldFile">
	<xsl:attribute name="{name()}">
		<xsl:value-of select="translate(.,'\','/')"/>
	</xsl:attribute>
</xsl:template>

<xsl:template match="@schema[starts-with(.,'1.')]">
	<xsl:attribute name="{name()}">2.0.0</xsl:attribute> <!-- upgrade syntax -->
</xsl:template>

<xsl:template match="@abbrev|@generator-border|@generator-overlay|@align"/>

<xsl:template match="generator-color|generator-style|component/text()" priority="1"/>

<xsl:template match="layer|block|subblock|collection">
	<xsl:copy>
		<xsl:apply-templates select="@*"/>
		<xsl:apply-templates select="*"/>
	</xsl:copy>
</xsl:template>

<xsl:template match="SystemDefinition">
	<xsl:copy>
		<xsl:apply-templates select="@name|@schema"/>
		<xsl:apply-templates select="systemModel"/>
	</xsl:copy>
</xsl:template>

<xsl:template match="systemModel">
	<xsl:copy><xsl:apply-templates select="layer"/></xsl:copy>
</xsl:template>


</xsl:stylesheet>