PortalGen.xsl 1.7 KB

1234567891011121314151617181920212223242526272829303132333435363738
  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. $: PortalGen.xsl : 2017-09-23 16:20:PanaG :$
  10. ********************************************************************
  11. This file is used to generate HTML Files intended for the Web Portal.
  12. It is based on the (EclipseHelp) XSL DocBook
  13. Stylesheet distribution from Norman Walsh.
  14. Modified and customized for HPCC Systems by GPanagiotatos - 2013,2017
  15. ******************************************************************** -->
  16. <!-- Import docbook XSL and other resources from Jenk-Build locale -->
  17. <xsl:import href="../resources/docbook-xsl/eclipse/profile-eclipse.xsl"/>
  18. <xsl:param name="img.src.path">../</xsl:param>
  19. <xsl:param name="html.stylesheet">eclipsehelp.css</xsl:param>
  20. <xsl:param name="use.id.as.filename" select="1" />
  21. <xsl:param name="chapter.autolabel" select="0" />
  22. <xsl:param name="suppress.navigation" select="1" />
  23. <xsl:param name="section.autolabel" select="0" />
  24. <xsl:param name="chunk.section.depth" select="2" />
  25. <xsl:param name="toc.section.depth">2</xsl:param>
  26. <xsl:param name="variablelist.as.table" select="1" />
  27. <xsl:param name="generate.toc">book toc</xsl:param>
  28. <!-- Custom HTML specific processing instruction rules -->
  29. <xsl:template match="processing-instruction('linebreak')">
  30. <BR/>
  31. </xsl:template>
  32. </xsl:stylesheet>