[Openvas-commits] r9487 - in trunk/openvas-manager: . src/report_formats/LaTeX

scm-commit@wald.intevation.org scm-commit at wald.intevation.org
Fri Nov 19 21:20:09 CET 2010


Author: mattm
Date: 2010-11-19 21:20:09 +0100 (Fri, 19 Nov 2010)
New Revision: 9487

Modified:
   trunk/openvas-manager/ChangeLog
   trunk/openvas-manager/src/report_formats/LaTeX/latex.xsl
Log:
	* src/report_formats/LaTeX/latex.xsl
	(latex-replace-backslash-dollar): Correct template name.

Modified: trunk/openvas-manager/ChangeLog
===================================================================
--- trunk/openvas-manager/ChangeLog	2010-11-19 20:17:29 UTC (rev 9486)
+++ trunk/openvas-manager/ChangeLog	2010-11-19 20:20:09 UTC (rev 9487)
@@ -1,5 +1,10 @@
 2010-11-19  Matthew Mundell <matthew.mundell at greenbone.net>
 
+	* src/report_formats/LaTeX/latex.xsl
+	(latex-replace-backslash-dollar): Correct template name.
+
+2010-11-19  Matthew Mundell <matthew.mundell at greenbone.net>
+
 	Speed up row wrapping in the LaTeX report XSLT.
 
 	* src/report_formats/LaTeX/latex.xsl (wrap-row-indented): New template.

Modified: trunk/openvas-manager/src/report_formats/LaTeX/latex.xsl
===================================================================
--- trunk/openvas-manager/src/report_formats/LaTeX/latex.xsl	2010-11-19 20:17:29 UTC (rev 9486)
+++ trunk/openvas-manager/src/report_formats/LaTeX/latex.xsl	2010-11-19 20:20:09 UTC (rev 9487)
@@ -247,14 +247,14 @@
           <xsl:when test="string-length($before_backslash) &gt; 0">
             <!-- Only \ is occuring -->
             <xsl:value-of select="concat(substring-before($string, '\'),'$\backslash$')"/>
-            <xsl:call-template name="latex-replace-backslash">
+            <xsl:call-template name="latex-replace-backslash-dollar">
               <xsl:with-param name="string" select="substring-after($string, '\')"/>
             </xsl:call-template>
           </xsl:when>
           <xsl:otherwise>
             <!-- Only $ is occuring -->
             <xsl:value-of select="concat(substring-before($string, '$'),'\$')"/>
-            <xsl:call-template name="latex-replace-backslash">
+            <xsl:call-template name="latex-replace-backslash-dollar">
               <xsl:with-param name="string" select="substring-after($string, '$')"/>
             </xsl:call-template>
           </xsl:otherwise>



More information about the Openvas-commits mailing list