diff options
author | Johnathan Corgan <johnathan@corganlabs.com> | 2015-04-05 16:24:41 -0700 |
---|---|---|
committer | Johnathan Corgan <johnathan@corganlabs.com> | 2015-04-05 16:24:41 -0700 |
commit | a8f603f23fcb2fce7eaa21cec0753d8393748afb (patch) | |
tree | 57ce0d3d0800f45ec353846067bd4811b89617e2 /docs/doxygen/doxyxml/example/xml/combine.xslt | |
parent | 61c4e2f62d18b3b2f0663b8c0a54a105d3896883 (diff) | |
parent | 4ed2622bf4f2a566dbcd22d78ac2e3ab528ceb33 (diff) |
Merge branch 'master' into next
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> |