Fix for bug in joining sysdef fragments HighFidelityModel
authorBob Rosenberg <bob.rosenberg@nokia.com>
Tue, 01 Jun 2010 16:17:50 +0100
branchHighFidelityModel
changeset 264 1742dcffa186
parent 259 fbf606da2044
child 265 a2b996399a2f
Fix for bug in joining sysdef fragments
sysdeftools/joinsysdef-module.xsl
--- a/sysdeftools/joinsysdef-module.xsl	Tue Jun 01 13:15:51 2010 +0100
+++ b/sysdeftools/joinsysdef-module.xsl	Tue Jun 01 16:17:50 2010 +0100
@@ -21,12 +21,12 @@
 
 <xsl:template match="/*" mode="join">
 	<xsl:param name="filename"/>
-	<xsl:message terminate="yes">ERROR: Cannot process this document<xsl:if test="$filename !=''"> (<xsl:value-of select="$filename)</xsl:if>
+	<xsl:message terminate="yes">ERROR: Cannot process this document<xsl:if test="$filename !=''"> (<xsl:value-of select="$filename"/>)</xsl:if>
 		<xsl:choose>
 			<xsl:when test="self::SystemDefinition/@schema">. Unrecognised syntax schema="<xsl:value-of select="@schema"/>"</xsl:when>
 			<xsl:when test="self::SystemDefinition">. Missing schema</xsl:when>
 			<xsl:otherwise>. Invalid file type: <xsl:value-of select="name()"/></xsl:otherwise>
-		<xsl:choose>
+		</xsl:choose>
 	</xsl:message>
 </xsl:template>