summaryrefslogtreecommitdiff
path: root/gr-howto-write-a-block/docs/doxygen/doxyxml/example/xml/combine.xslt
diff options
context:
space:
mode:
authorJohnathan Corgan <johnathan@corganlabs.com>2013-03-27 20:41:40 -0700
committerJohnathan Corgan <johnathan@corganlabs.com>2013-03-27 20:41:40 -0700
commit2caaabf8e1dd771174fd42e51c8c8090864638e6 (patch)
treee58fe2bc53120acfd11aa6687fe5fa0aaa58ca71 /gr-howto-write-a-block/docs/doxygen/doxyxml/example/xml/combine.xslt
parent40ab0030dbe821c9ed475a0b73898040f4af581c (diff)
parentd7cde125dc3661a62e1013a4a017f0f1efa46e6e (diff)
Merge branch 'runtime-3.7' into next
Diffstat (limited to 'gr-howto-write-a-block/docs/doxygen/doxyxml/example/xml/combine.xslt')
-rw-r--r--gr-howto-write-a-block/docs/doxygen/doxyxml/example/xml/combine.xslt15
1 files changed, 0 insertions, 15 deletions
diff --git a/gr-howto-write-a-block/docs/doxygen/doxyxml/example/xml/combine.xslt b/gr-howto-write-a-block/docs/doxygen/doxyxml/example/xml/combine.xslt
deleted file mode 100644
index 6de203a2b0..0000000000
--- a/gr-howto-write-a-block/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>