EclipseHelp.xsl.in 1.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940
  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 to generate HTML based Eclispe Help Files.
  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">${DOC_IMAGES}</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="variablelist.as.table" select="1" />
  26. <xsl:param name="chunk.section.depth" select="1" />
  27. <xsl:param name="toc.section.depth">1</xsl:param>
  28. <xsl:param name="generate.toc">book toc</xsl:param>
  29. <!--FIX-HPCC-15278-GP-3-17-->
  30. <xsl:template match="processing-instruction('linebreak')">
  31. <BR/>
  32. </xsl:template>
  33. </xsl:stylesheet>