summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorJelmer Vernooij <jelmer@samba.org>2005-03-14 17:53:01 +0000
committerGerald W. Carter <jerry@samba.org>2008-04-23 08:46:21 -0500
commit411cbc70303daf872ac92913208cb51dca19bfef (patch)
treee4549104c93d19f94b334d3746be20c4c0608aec /docs
parent920aad521553b6fad8faf9ea45f7f473a0eedc5b (diff)
downloadsamba-411cbc70303daf872ac92913208cb51dca19bfef.tar.gz
samba-411cbc70303daf872ac92913208cb51dca19bfef.tar.bz2
samba-411cbc70303daf872ac92913208cb51dca19bfef.zip
Fix links for smbconfoptions.
(This used to be commit e4364d2c28dddcc07b32e3d0b681a62bf1545dd8)
Diffstat (limited to 'docs')
-rw-r--r--docs/xslt/expand-sambadoc.xsl8
1 files changed, 4 insertions, 4 deletions
diff --git a/docs/xslt/expand-sambadoc.xsl b/docs/xslt/expand-sambadoc.xsl
index cd0b9a0daa..aa7d54c0f7 100644
--- a/docs/xslt/expand-sambadoc.xsl
+++ b/docs/xslt/expand-sambadoc.xsl
@@ -133,13 +133,13 @@
<xsl:attribute name="moreinfo">
<xsl:text>none</xsl:text>
</xsl:attribute>
- <xsl:value-of select="name"/>
+ <xsl:value-of select="@name"/>
</xsl:element>
<xsl:choose>
- <xsl:when test="value != ''">
+ <xsl:when test="text() != ''">
<xsl:text> = </xsl:text>
- <xsl:value-of select="value"/>
+ <xsl:value-of select="text()"/>
</xsl:when>
</xsl:choose>
</xsl:variable>
@@ -151,7 +151,7 @@
<xsl:otherwise>
<xsl:element name="link">
<xsl:attribute name="linkend">
- <xsl:value-of select="translate(translate(string(name),' ',''),'abcdefghijklmnopqrstuvwxyz','ABCDEFGHIJKLMNOPQRSTUVWXYZ')"/>
+ <xsl:value-of select="translate(translate(string(@name),' ',''),'abcdefghijklmnopqrstuvwxyz','ABCDEFGHIJKLMNOPQRSTUVWXYZ')"/>
</xsl:attribute>
<xsl:value-of select="$linkcontent"/>
</xsl:element>