mirror of
https://github.com/boostorg/boostbook.git
synced 2025-05-09 15:03:57 +00:00
- Use arabic numbering for semantic clauses collect.xsl: - Accept the input directory as a stylesheet parameter doxygen2boostbook.xsl: - Update for recent changes in the BoostBook XML format [SVN r18242]
17 lines
623 B
XML
17 lines
623 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<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:param name="doxygen.xml.path">./</xsl:param>
|
|
|
|
<xsl:template match="/">
|
|
<doxygen version="{doxygen/@version}">
|
|
<!-- Load all doxgen generated xml files -->
|
|
<xsl:for-each select="doxygen/compound">
|
|
<xsl:copy-of select="document( concat($doxygen.xml.path, '/',
|
|
@refid, '.xml' ) )/doxygen/*" />
|
|
</xsl:for-each>
|
|
</doxygen>
|
|
</xsl:template>
|
|
</xsl:stylesheet>
|