diff options
author | Johnathan Corgan <johnathan@corganlabs.com> | 2015-04-05 16:19:06 -0700 |
---|---|---|
committer | Johnathan Corgan <johnathan@corganlabs.com> | 2015-04-05 16:19:06 -0700 |
commit | ed4771a282fa287a50df45cb286fa10711cf88d9 (patch) | |
tree | 4f4e6943bd2160e0a8a935e383d90ffd9b368ae3 /docs/doxygen/doxyxml/example/xml/combine.xslt | |
parent | c07d8b36039b79a9b3a67e03c9e3f00b24f652ad (diff) | |
parent | 848f58a4920bc6f51068a4048e814c6f7dbd5b13 (diff) |
Merge remote-tracking branch 'mmueller/remove_aadvarkness'
Diffstat (limited to 'docs/doxygen/doxyxml/example/xml/combine.xslt')
-rw-r--r-- | docs/doxygen/doxyxml/example/xml/combine.xslt | 15 |
1 files changed, 0 insertions, 15 deletions
diff --git a/docs/doxygen/doxyxml/example/xml/combine.xslt b/docs/doxygen/doxyxml/example/xml/combine.xslt deleted file mode 100644 index 6de203a2b0..0000000000 --- a/docs/doxygen/doxyxml/example/xml/combine.xslt +++ /dev/null @@ -1,15 +0,0 @@ -<!-- 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="yes" 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> |