dita2docbook.xsl 1.2 KB

1234567891011121314151617181920212223242526272829303132
  1. <?xml version="1.0" encoding="UTF-8"?><!-- (c) Copyright IBM Corp. 2004, 2005 All Rights Reserved. d on
  2. Sourceforge.net. See the accompanying license.txt file for
  3. applicable licenses.--><!-- (c) Copyright IBM Corp. 2004, 2005 All Rights Reserved. --><xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="2.0">
  4. <xsl:import href="docbook/util.xsl"/>
  5. <xsl:import href="docbook/topic2db.xsl"/>
  6. <xsl:import href="docbook/highlight2db.xsl"/>
  7. <xsl:import href="docbook/programming2db.xsl"/>
  8. <xsl:import href="docbook/software2db.xsl"/>
  9. <xsl:import href="docbook/ui2db.xsl"/>
  10. <xsl:output xmlns:dita="http://dita-ot.sourceforge.net" method="xml" indent="yes" omit-xml-declaration="no" standalone="no" doctype-public="-//OASIS//DTD DocBook XML V4.2//EN" doctype-system="http://www.oasis-open.org/docbook/xml/4.2/docbookx.dtd"/>
  11. <!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  12. - DOCUMENT
  13. - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->
  14. <xsl:template match="/">
  15. <xsl:apply-templates/>
  16. </xsl:template>
  17. <xsl:template match="dita">
  18. <section>
  19. <title/>
  20. <xsl:apply-templates/>
  21. </section>
  22. </xsl:template>
  23. </xsl:stylesheet>