summaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorCorey Farrell <git@cfware.com>2016-08-15 16:29:53 -0400
committerCorey Farrell <git@cfware.com>2016-08-15 19:02:04 -0400
commitf4e28b3a09d3223fad1c736d59f06abf0667b5fa (patch)
tree3616d3e96226b4ea8ca88599463d5d152a422c11 /doc
parent8cc34aa48071257c467bf87307f3f9e630a9d37f (diff)
Refactor usage pattern of xmldoc info tag.
This updates func_channel.c and main/message.c to use a generic xpointer include instead of including info from each channel driver. Now the name attribute of info is CHANNEL or CHANNEL_EXAMPLES to be included in documentation for func_channel. Setting the name attribute of info to MessageToInfo or MessageFromInfo causes it to be included in the MessageSend application and AMI action. Change-Id: I89fd8276a3250824241a618009714267d3a8d1ea
Diffstat (limited to 'doc')
-rw-r--r--doc/appdocsxml.xslt5
1 files changed, 4 insertions, 1 deletions
diff --git a/doc/appdocsxml.xslt b/doc/appdocsxml.xslt
index 6e4c5ac50..f067decae 100644
--- a/doc/appdocsxml.xslt
+++ b/doc/appdocsxml.xslt
@@ -6,7 +6,10 @@
<xsl:template match="node()|@*">
<xsl:copy>
- <xsl:apply-templates select="node()|@*"/>
+ <xsl:for-each select="node()|@*">
+ <xsl:sort select="@tech"/>
+ <xsl:apply-templates select="."/>
+ </xsl:for-each>
</xsl:copy>
</xsl:template>