summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJelmer Vernooij <jelmer@samba.org>2005-03-21 10:31:57 +0000
committerGerald W. Carter <jerry@samba.org>2008-04-23 08:46:23 -0500
commit8ee9f6806b3cd2519d3a4afe4b254689b2006325 (patch)
treedc6586aaf11456e0d9a6b8705b33a394ee926a09
parent995aeb00afcc37f2b42fc41f7998264664c3c1c7 (diff)
downloadsamba-8ee9f6806b3cd2519d3a4afe4b254689b2006325.tar.gz
samba-8ee9f6806b3cd2519d3a4afe4b254689b2006325.tar.bz2
samba-8ee9f6806b3cd2519d3a4afe4b254689b2006325.zip
Fix smbconfsection output
(This used to be commit 60ce39300d498bc5b14da534658f9f26c61c72b2)
-rw-r--r--docs/Makefile2
-rw-r--r--docs/xslt/expand-sambadoc.xsl4
2 files changed, 3 insertions, 3 deletions
diff --git a/docs/Makefile b/docs/Makefile
index 35e5f2fd87..1a9ac767ea 100644
--- a/docs/Makefile
+++ b/docs/Makefile
@@ -82,7 +82,7 @@ $(DOCBOOKDIR)/%.xml: $(MANPAGEDIR)/%.xml xslt/expand-sambadoc.xsl
$(DOCBOOKDIR)/manpages.xml: $(MANPAGES) xslt/manpage-summary.xsl
mkdir -p $(@D)
echo "<article><variablelist>" > $@
- for I in $(MANPAGES); do $(XSLTPROC) xslt/manpage-summary.xsl $$I >> $@; done
+ $(XSLTPROC) xslt/manpage-summary.xsl $(MANPAGES) >> $@
echo "</variablelist></article>" >> $@
# HTML docs
diff --git a/docs/xslt/expand-sambadoc.xsl b/docs/xslt/expand-sambadoc.xsl
index 6633f34887..f74d14c66b 100644
--- a/docs/xslt/expand-sambadoc.xsl
+++ b/docs/xslt/expand-sambadoc.xsl
@@ -113,7 +113,7 @@
</xsl:element>
<xsl:element name="member">
<xsl:element name="parameter">
- <xsl:apply-templates/>
+ <xsl:value-of select="@name"/>
</xsl:element>
</xsl:element>
</xsl:template>
@@ -201,7 +201,7 @@
<xsl:template match="smbconfsection">
<xsl:element name="parameter">
- <xsl:apply-templates/>
+ <xsl:value-of select="@name"/>
</xsl:element>
</xsl:template>