| 1234567891011121314151617181920212223242526272829303132 |
- <?xml version="1.0" encoding="UTF-8"?><!-- (c) Copyright IBM Corp. 2004, 2005 All Rights Reserved. d on
- Sourceforge.net. See the accompanying license.txt file for
- 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">
- <xsl:import href="docbook/util.xsl"/>
- <xsl:import href="docbook/topic2db.xsl"/>
- <xsl:import href="docbook/highlight2db.xsl"/>
- <xsl:import href="docbook/programming2db.xsl"/>
- <xsl:import href="docbook/software2db.xsl"/>
- <xsl:import href="docbook/ui2db.xsl"/>
- <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"/>
- <!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- - DOCUMENT
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->
- <xsl:template match="/">
- <xsl:apply-templates/>
- </xsl:template>
- <xsl:template match="dita">
- <section>
- <title/>
- <xsl:apply-templates/>
- </section>
- </xsl:template>
- </xsl:stylesheet>
|