EclipseHelp.xsl 1.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. <?xml version="1.0"?>
  2. <xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
  3. xmlns:doc="http://nwalsh.com/xsl/documentation/1.0"
  4. xmlns:exsl="http://exslt.org/common"
  5. xmlns:set="http://exslt.org/sets"
  6. version="1.0"
  7. exclude-result-prefixes="doc exsl set">
  8. <!-- ********************************************************************
  9. $: EclipseHelp.xsl 1676 2013-09-23 16:20:PanaG :$
  10. ********************************************************************
  11. This file is used by EclipseHelp Intended to generate Eclispe Help.
  12. It is based on the XSL DocBook Stylesheet distribution from Norman Walsh.
  13. Modified and customized for HPCC Systems by GPanagiotatos - 2013
  14. ******************************************************************** -->
  15. <!-- Import docbook XSL and other resources from Jenk-Build locale -->
  16. <xsl:import href="../docbook-xsl/eclipse/profile-eclipse.xsl"/>
  17. <xsl:param name="img.src.path">../</xsl:param>
  18. <xsl:param name="html.stylesheet">eclipsehelp.css</xsl:param>
  19. <xsl:param name="use.id.as.filename" select="1" />
  20. <xsl:param name="chapter.autolabel" select="0" />
  21. <xsl:param name="eclipse.plugin.id" select="ECLR.Eclipse.plugin" />
  22. <xsl:param name="eclipse.plugin.name" select="ECLR.for.Eclipse" />
  23. <xsl:param name="eclipse.plugin.provider" select="HPCC Systems" />
  24. <xsl:param name="section.autolabel" select="0" />
  25. <xsl:param name="chunk.section.depth" select="1" />
  26. <xsl:param name="toc.section.depth">1</xsl:param>
  27. <xsl:param name="variablelist.as.table" select="1" />
  28. <xsl:param name="generate.toc">book toc</xsl:param>
  29. <!--HPCC-15278-GP-3-17-PI-HTML-HACK-->
  30. <xsl:template match="processing-instruction('linebreak')">
  31. <BR/>
  32. </xsl:template>
  33. </xsl:stylesheet>