goba Sat Feb 9 19:30:31 2002 EDT
Modified files:
/phpdoc/xsl htmlhelp.xsl.in
Log:
Only add content, after attributes are ready
Index: phpdoc/xsl/htmlhelp.xsl.in
diff -u phpdoc/xsl/htmlhelp.xsl.in:1.10 phpdoc/xsl/htmlhelp.xsl.in:1.11
--- phpdoc/xsl/htmlhelp.xsl.in:1.10 Sat Feb 9 17:41:30 2002
+++ phpdoc/xsl/htmlhelp.xsl.in Sat Feb 9 19:30:31 2002
@@ -3,7 +3,7 @@
HTML Help specific stylesheet
- $Id: htmlhelp.xsl.in,v 1.10 2002/02/09 22:41:30 goba Exp $
+ $Id: htmlhelp.xsl.in,v 1.11 2002/02/10 00:30:31 goba Exp $
-->
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
@@ -16,10 +16,10 @@
<xsl:param name="use.id.as.filename" select="1"/>
<xsl:param name="htmlhelp.encoding" select="'@HTMLHELP_ENCODING@'"/>
<xsl:param name="default.encoding" select="'@HTMLHELP_ENCODING@'"/>
-<xsl:param name="htmlhelp.chm" select="'html/php_manual_@LANG@.chm'"/>
-<xsl:param name="htmlhelp.hhp" select="'html/php_manual_@LANG@.hhp'"/>
-<xsl:param name="htmlhelp.hhc" select="'html/php_manual_@LANG@.hhc'"/>
-<xsl:param name="htmlhelp.hhk" select="'html/php_manual_@LANG@.hhk'"/>
+<xsl:param name="htmlhelp.chm" select="'php_manual_@LANG@.chm'"/>
+<xsl:param name="htmlhelp.hhp" select="'php_manual_@LANG@.hhp'"/>
+<xsl:param name="htmlhelp.hhc" select="'php_manual_@LANG@.hhc'"/>
+<xsl:param name="htmlhelp.hhk" select="'php_manual_@LANG@.hhk'"/>
<xsl:param name="saxon.character.representation" select="'native'"/>
<xsl:param name="ulink.target" select="'_blank'"/>
@@ -142,7 +142,6 @@
print out a » HTML entity before the link -->
<xsl:template match="ulink" name="ulink">
<a>
- <xsl:text disable-output-escaping="yes">&raquo; </xsl:text>
<xsl:if test="@id">
<xsl:attribute name="name">
<xsl:value-of select="@id"/>
@@ -154,6 +153,7 @@
<xsl:value-of select="$ulink.target"/>
</xsl:attribute>
</xsl:if>
+ <xsl:text disable-output-escaping="yes">&raquo; </xsl:text>
<xsl:choose>
<xsl:when test="count(child::node())=0">
<xsl:value-of select="@url"/>