1
0
mirror of https://github.com/samba-team/samba.git synced 2025-02-14 01:57:53 +03:00

Fix smbconfsection output

This commit is contained in:
Jelmer Vernooij 2005-03-21 10:31:57 +00:00 committed by Gerald W. Carter
parent 3aa353c0e4
commit 60ce39300d
2 changed files with 3 additions and 3 deletions

View File

@ -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

View File

@ -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>