aboutsummaryrefslogtreecommitdiffstats
path: root/doc
diff options
context:
space:
mode:
authorNeels Hofmeyr <neels@hofmeyr.de>2017-12-09 05:48:43 +0100
committerHarald Welte <laforge@gnumonks.org>2017-12-10 13:34:36 +0000
commita73656501a21c42223abdecc4c5df7bbe62c802c (patch)
treee74d00b918b5e7dc2810b36d03a9cb9f4ee31c79 /doc
parent3b6815715f119e7c12c710deda6bc57738d46e37 (diff)
vty reference: merge_doc.xsl: do not omit description tag
vty_additions.xml files provide <description>s for <node> tags, but for unknown reasons, merge_doc.xsl explicitly omits description tags. Do not omit <description>s so that they show up in the merged document. This will take effect when next building the osmo-gsm-manuals using this file. Change-Id: I418e61705043d4df047d8038c5d61623ba64f2e0
Diffstat (limited to 'doc')
-rw-r--r--doc/vty/merge_doc.xsl4
1 files changed, 1 insertions, 3 deletions
diff --git a/doc/vty/merge_doc.xsl b/doc/vty/merge_doc.xsl
index adbc1c14..d75c4994 100644
--- a/doc/vty/merge_doc.xsl
+++ b/doc/vty/merge_doc.xsl
@@ -18,9 +18,7 @@
<xsl:copy>
<xsl:apply-templates select="@*|node()" />
<xsl:for-each select="$info/*">
- <xsl:if test="not($info/vty:description)">
- <xsl:copy-of select="." />
- </xsl:if>
+ <xsl:copy-of select="." />
</xsl:for-each>
</xsl:copy>
</xsl:if>