diff options
author | Alexander Bokovoy <ab@samba.org> | 2007-06-06 15:46:26 +0000 |
---|---|---|
committer | Gerald W. Carter <jerry@samba.org> | 2008-04-23 08:47:33 -0500 |
commit | 3d1943ad5ea5bec5d43bd984653bd1ebe0511bc7 (patch) | |
tree | db8691c1d332c10d2b760b769be1b9795a3ab419 /docs/xslt | |
parent | 586de38b133b617aa09de599c64ba138dd6763b5 (diff) | |
download | samba-3d1943ad5ea5bec5d43bd984653bd1ebe0511bc7.tar.gz samba-3d1943ad5ea5bec5d43bd984653bd1ebe0511bc7.tar.bz2 samba-3d1943ad5ea5bec5d43bd984653bd1ebe0511bc7.zip |
And more fixes for slashes: use <literal/> in <command/> and <value/> automatically
(This used to be commit 587b3b5f6f6b1258415aded70ef6e84e811d25bf)
Diffstat (limited to 'docs/xslt')
-rw-r--r-- | docs/xslt/expand-smbconfdoc.xsl | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/docs/xslt/expand-smbconfdoc.xsl b/docs/xslt/expand-smbconfdoc.xsl index 6162f73169..8cad9b8328 100644 --- a/docs/xslt/expand-smbconfdoc.xsl +++ b/docs/xslt/expand-smbconfdoc.xsl @@ -12,7 +12,9 @@ <xsl:template match="description"><xsl:apply-templates/></xsl:template> - <xsl:template match="value"><xsl:apply-templates/></xsl:template> + <xsl:template match="value"><xsl:element name="literal"><xsl:apply-templates/></xsl:element></xsl:template> + + <xsl:template match="command"><xsl:element name="literal"><xsl:apply-templates/></xsl:element></xsl:template> <xsl:template match="synonym"><xsl:apply-templates/></xsl:template> |