[Refdb-cvs] CVS: refdb/xsl/refdb/docbk-refdb-xsl/docbk-fo docbk-refdb-fo.xsl.in,1.8,1.9
Status: Beta
Brought to you by:
mhoenicka
From: Markus H. <mho...@us...> - 2004-04-28 03:06:13
|
Update of /cvsroot/refdb/refdb/xsl/refdb/docbk-refdb-xsl/docbk-fo In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv8855/docbk-fo Modified Files: docbk-refdb-fo.xsl.in Log Message: prevent entity conversion Index: docbk-refdb-fo.xsl.in =================================================================== RCS file: /cvsroot/refdb/refdb/xsl/refdb/docbk-refdb-xsl/docbk-fo/docbk-refdb-fo.xsl.in,v retrieving revision 1.8 retrieving revision 1.9 diff -u -U2 -r1.8 -r1.9 --- docbk-refdb-fo.xsl.in 30 Mar 2004 23:55:26 -0000 1.8 +++ docbk-refdb-fo.xsl.in 28 Apr 2004 03:06:04 -0000 1.9 @@ -404,44 +404,44 @@ <xsl:when test="$style='ULINE'"> <fo:inline text-decoration="underline"> - <xsl:value-of select="$string"/> + <xsl:value-of select="$string" disable-output-escaping="yes"/> </fo:inline> </xsl:when> <xsl:when test="$style='ITULINE'"> <fo:inline text-decoration="underline" font-style="italic"> - <xsl:value-of select="$string"/> + <xsl:value-of select="$string" disable-output-escaping="yes"/> </fo:inline> </xsl:when> <xsl:when test="$style='BOLDULINE'"> <fo:inline text-decoration="underline" font-weight="bold"> - <xsl:value-of select="$string"/> + <xsl:value-of select="$string" disable-output-escaping="yes"/> </fo:inline> </xsl:when> <xsl:when test="$style='BOLDITULINE'"> <fo:inline text-decoration="underline" font-style="italic" font-weight="bold"> - <xsl:value-of select="$string"/> + <xsl:value-of select="$string" disable-output-escaping="yes"/> </fo:inline> </xsl:when> <xsl:when test="$style='BOLD'"> <fo:inline font-weight="bold"> - <xsl:value-of select="$string"/> + <xsl:value-of select="$string" disable-output-escaping="yes"/> </fo:inline> </xsl:when> <xsl:when test="$style='ITALIC'"> <fo:inline font-style="italic"> - <xsl:value-of select="$string"/> + <xsl:value-of select="$string" disable-output-escaping="yes"/> </fo:inline> </xsl:when> <xsl:when test="$style='SUB'"> <fo:inline vertical-align="sub"> - <xsl:value-of select="$string"/> + <xsl:value-of select="$string" disable-output-escaping="yes"/> </fo:inline> </xsl:when> <xsl:when test="$style='SUPER'"> <fo:inline vertical-align="super"> - <xsl:value-of select="$string"/> + <xsl:value-of select="$string" disable-output-escaping="yes"/> </fo:inline> </xsl:when> <xsl:otherwise> - <xsl:value-of select="$string"/> + <xsl:value-of select="$string" disable-output-escaping="yes"/> </xsl:otherwise> </xsl:choose> |