Sha256: d8ad3f33b5820892b7d67aa9b8d0066eebeb3962795df3d7b5f65ff0e496cf82

Contents?: true

Size: 646 Bytes

Versions: 11

Compression:

Stored size: 646 Bytes

Contents

<!-- 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>

Version data entries

11 entries across 11 versions & 1 rubygems

Version Path
dub-1.0.0 test/fixtures/app/xml/combine.xslt
dub-0.7.0 test/fixtures/app/xml/combine.xslt
dub-0.6.6 test/fixtures/app/xml/combine.xslt
dub-0.6.5 test/fixtures/app/xml/combine.xslt
dub-0.6.4 test/fixtures/app/xml/combine.xslt
dub-0.6.3 test/fixtures/app/xml/combine.xslt
dub-0.6.2 test/fixtures/app/xml/combine.xslt
dub-0.6.1 test/fixtures/app/xml/combine.xslt
dub-0.6.0 test/fixtures/app/xml/combine.xslt
dub-0.5.1 test/fixtures/app/xml/combine.xslt
dub-0.5.0 test/fixtures/app/xml/combine.xslt