dita2html-base_template.xsl 2.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  1. <?xml version="1.0" encoding="UTF-8" ?>
  2. <!-- This file is part of the DITA Open Toolkit project hosted on
  3. Sourceforge.net. See the accompanying license.txt file for
  4. applicable licenses.-->
  5. <!-- (c) Copyright IBM Corp. 2004, 2005 All Rights Reserved. -->
  6. <xsl:stylesheet version="2.0"
  7. xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
  8. >
  9. <!-- idit2htm.xsl main stylesheet
  10. | Convert DITA topic to HTML; "single topic to single web page"-level view
  11. |
  12. -->
  13. <!-- stylesheet imports -->
  14. <!-- the main dita to xhtml converter -->
  15. <xsl:import href="xslhtml/dita2htmlImpl.xsl"/>
  16. <!-- the dita to xhtml converter for concept documents -->
  17. <xsl:import href="xslhtml/conceptdisplay.xsl"/>
  18. <!-- the dita to xhtml converter for glossentry documents -->
  19. <xsl:import href="xslhtml/glossdisplay.xsl"/>
  20. <!-- the dita to xhtml converter for task documents -->
  21. <xsl:import href="xslhtml/taskdisplay.xsl"/>
  22. <!-- the dita to xhtml converter for reference documents -->
  23. <xsl:import href="xslhtml/refdisplay.xsl"/>
  24. <!-- user technologies domain -->
  25. <xsl:import href="xslhtml/ut-d.xsl"/>
  26. <!-- software domain -->
  27. <xsl:import href="xslhtml/sw-d.xsl"/>
  28. <!-- programming domain -->
  29. <xsl:import href="xslhtml/pr-d.xsl"/>
  30. <!-- ui domain -->
  31. <xsl:import href="xslhtml/ui-d.xsl"/>
  32. <!-- highlighting domain -->
  33. <xsl:import href="xslhtml/hi-d.xsl"/>
  34. <!-- abbreviated-form domain -->
  35. <xsl:import href="xslhtml/abbrev-d.xsl"/>
  36. <xsl:import href="xslhtml/markup-d.xsl"/>
  37. <xsl:import href="xslhtml/xml-d.xsl"/>
  38. <!-- Integrate support for flagging with dita-ot pseudo-domain -->
  39. <xsl:import href="xslhtml/htmlflag.xsl"/>
  40. <dita:extension id="dita.xsl.xhtml" behavior="org.dita.dost.platform.ImportXSLAction" xmlns:dita="http://dita-ot.sourceforge.net"/>
  41. <!-- the dita to xhtml converter for element reference documents - not used now -->
  42. <!--<xsl:import href="elementrefdisp.xsl"/>-->
  43. <!-- root rule -->
  44. <xsl:template match="/">
  45. <xsl:apply-templates/>
  46. </xsl:template>
  47. </xsl:stylesheet>