summaryrefslogtreecommitdiff
path: root/doxygen/xml/combine.xslt
diff options
context:
space:
mode:
Diffstat (limited to 'doxygen/xml/combine.xslt')
-rw-r--r--doxygen/xml/combine.xslt15
1 files changed, 15 insertions, 0 deletions
diff --git a/doxygen/xml/combine.xslt b/doxygen/xml/combine.xslt
new file mode 100644
index 0000000..c148ee4
--- /dev/null
+++ b/doxygen/xml/combine.xslt
@@ -0,0 +1,15 @@
+<!-- XSLT script to combine the generated output into a single file.
+ If you have xsltproc you could use:
+ xsltproc combine.xslt index.xml >all.xml
+-->
+<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0">
+ <xsl:output method="xml" version="1.0" indent="no" standalone="yes" />
+ <xsl:template match="/">
+ <doxygen version="{doxygenindex/@version}">
+ <!-- Load all doxgen generated xml files -->
+ <xsl:for-each select="doxygenindex/compound">
+ <xsl:copy-of select="document( concat( @refid, '.xml' ) )/doxygen/*" />
+ </xsl:for-each>
+ </doxygen>
+ </xsl:template>
+</xsl:stylesheet>