dita2html-base.xsl 1.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  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. <!-- idit2htm.xsl main stylesheet
  5. | Convert DITA topic to HTML; "single topic to single web page"-level view
  6. |
  7. -->
  8. <!-- stylesheet imports -->
  9. <!-- the main dita to xhtml converter -->
  10. <xsl:import href="xslhtml/dita2htmlImpl.xsl"/>
  11. <!-- the dita to xhtml converter for concept documents -->
  12. <xsl:import href="xslhtml/conceptdisplay.xsl"/>
  13. <!-- the dita to xhtml converter for glossentry documents -->
  14. <xsl:import href="xslhtml/glossdisplay.xsl"/>
  15. <!-- the dita to xhtml converter for task documents -->
  16. <xsl:import href="xslhtml/taskdisplay.xsl"/>
  17. <!-- the dita to xhtml converter for reference documents -->
  18. <xsl:import href="xslhtml/refdisplay.xsl"/>
  19. <!-- user technologies domain -->
  20. <xsl:import href="xslhtml/ut-d.xsl"/>
  21. <!-- software domain -->
  22. <xsl:import href="xslhtml/sw-d.xsl"/>
  23. <!-- programming domain -->
  24. <xsl:import href="xslhtml/pr-d.xsl"/>
  25. <!-- ui domain -->
  26. <xsl:import href="xslhtml/ui-d.xsl"/>
  27. <!-- highlighting domain -->
  28. <xsl:import href="xslhtml/hi-d.xsl"/>
  29. <!-- abbreviated-form domain -->
  30. <xsl:import href="xslhtml/abbrev-d.xsl"/>
  31. <xsl:import href="xslhtml/markup-d.xsl"/>
  32. <xsl:import href="xslhtml/xml-d.xsl"/>
  33. <!-- Integrate support for flagging with dita-ot pseudo-domain -->
  34. <xsl:import href="xslhtml/htmlflag.xsl"/>
  35. <!-- the dita to xhtml converter for element reference documents - not used now -->
  36. <!--<xsl:import href="elementrefdisp.xsl"/>-->
  37. <!-- root rule -->
  38. <xsl:template xmlns:dita="http://dita-ot.sourceforge.net" match="/">
  39. <xsl:apply-templates/>
  40. </xsl:template>
  41. </xsl:stylesheet>