Hi,

It seems like the svn2cl fix in 1.6.6dfsg-1 only fixed the text
(ChangeLog) output format, not the html one.

The following patch seems to fix it here:

--- svn2html.xsl.orig   2009-12-15 14:36:21.000000000 +0100
+++ svn2html.xsl        2009-12-15 14:35:17.000000000 +0100
@@ -48,7 +48,6 @@
 -->
 
 <!DOCTYPE xsl:stylesheet [
- <!ENTITY newl "&#38;#xA;">
  <!ENTITY space "&#32;">
 ]>
 
@@ -189,14 +188,14 @@
  <xsl:template name="newlinestobr">
   <xsl:param name="txt" />
   <xsl:choose>
-   <xsl:when test="contains($txt,'&newl;')">
+   <xsl:when test="contains($txt,'&#xA;')">
     <!-- text contains newlines, do the first line -->
-    <xsl:value-of select="substring-before($txt,'&newl;')" />
+    <xsl:value-of select="substring-before($txt,'&#xA;')" />
     <!-- print new line -->
     <br />
     <!-- wrap the rest of the text -->
     <xsl:call-template name="newlinestobr">
-     <xsl:with-param name="txt" select="substring-after($txt,'&newl;')" />
+     <xsl:with-param name="txt" select="substring-after($txt,'&#xA;')" />
     </xsl:call-template>
    </xsl:when>
    <xsl:otherwise>

-- 
Bye, Peter Korsgaard



-- 
To UNSUBSCRIBE, email to [email protected]
with a subject of "unsubscribe". Trouble? Contact [email protected]

Reply via email to