Author: crossley
Date: Sat Apr 7 07:01:42 2007
New Revision: 526435
URL: http://svn.apache.org/viewvc?view=rev&rev=526435
Log:
Fix collapsed space in xsl:text following xmlformat.
Modified:
forrest/trunk/plugins/org.apache.forrest.plugin.input.dtdx/resources/stylesheets/flat-to-document.xsl
Modified:
forrest/trunk/plugins/org.apache.forrest.plugin.input.dtdx/resources/stylesheets/flat-to-document.xsl
URL:
http://svn.apache.org/viewvc/forrest/trunk/plugins/org.apache.forrest.plugin.input.dtdx/resources/stylesheets/flat-to-document.xsl?view=diff&rev=526435&r1=526434&r2=526435
==============================================================================
---
forrest/trunk/plugins/org.apache.forrest.plugin.input.dtdx/resources/stylesheets/flat-to-document.xsl
(original)
+++
forrest/trunk/plugins/org.apache.forrest.plugin.input.dtdx/resources/stylesheets/flat-to-document.xsl
Sat Apr 7 07:01:42 2007
@@ -127,12 +127,12 @@
<xsl:text> )</xsl:text>
</xsl:template>
<xsl:template match="separator">
- <xsl:text></xsl:text>
+ <xsl:text> </xsl:text>
<xsl:value-of select="@type"/>
- <xsl:text></xsl:text>
+ <xsl:text> </xsl:text>
</xsl:template>
<xsl:template match="occurrence">
- <xsl:text></xsl:text>
+ <xsl:text> </xsl:text>
<xsl:value-of select="@type"/>
</xsl:template>
<xsl:template match="attlist">
@@ -174,7 +174,7 @@
<xsl:if test="enumeration">
possible values: <xsl:for-each select="enumeration">
<xsl:value-of select="@value"/>
- <xsl:text></xsl:text>
+ <xsl:text> </xsl:text>
</xsl:for-each>
<br/>
</xsl:if>