[PHP-DOC] cvs: phpdoc / README.xsl htmlhelp.xsl.in From: Jirka Kosek (jirka <email protected>)
Date: 02/19/01

jkj Mon Feb 19 03:52:11 2001 EDT

  Added files:
    /phpdoc htmlhelp.xsl.in

  Modified files:
    /phpdoc README.xsl
  Log:
  - added HTML Help support
  
  
Index: phpdoc/README.xsl
diff -u phpdoc/README.xsl:1.1 phpdoc/README.xsl:1.2
--- phpdoc/README.xsl:1.1 Sun Feb 11 13:51:24 2001
+++ phpdoc/README.xsl Mon Feb 19 03:52:11 2001
@@ -50,6 +50,10 @@
         saxon manual.xml html.xsl
                 - to get HTML version of documentation
 
+ saxon manual.xml htmlhelp.xsl
+ - to get HTML Help version of documentation
+ - after processing you must run HTML Help compiler
+
         saxon -o bigmanual.html manual.xml bightml.xsl
                 - to get whole documentation in one large HTML file
 
@@ -58,6 +62,12 @@
 
 For getting PDF from FO file you must run some FO processor on FO file.
 
+Current HTML Help support uses slightly updated version of HTML Help
+stylesheets. Download file http://www.kosek.cz/temp/htmlhelp.zip and
+place its content over directory contrib/htmlhelp in standard
+stylesheets distribution. In near future, this modification will be
+part of standard XSL stylesheet distribution.
+
 
 PERFORMANCE COMMENTS:
 ---------------------
@@ -65,8 +75,7 @@
 Generating bigmanual.html with Saxon (under JDK 1.3) takes about two
 minutes on Celeron 400 computer. Generating FO files takes about two
 times more + plus time required to run FO processor. Generating
-chunked version of manual is on my machine approximately two times
-slower than with Jade.
+chunked version or HTML Help vesrion of manual takes about 60 minutes.
 
 
 LIMITATIONS:
@@ -78,4 +87,4 @@
 
 
 Jirka Kosek <jirka <email protected>>
-Last modified $Date: 2001/02/11 21:51:24 $
+Last modified $Date: 2001/02/19 11:52:11 $

Index: phpdoc/htmlhelp.xsl.in
+++ phpdoc/htmlhelp.xsl.in
<!--

  HTML Help specific stylesheet

  $Id: htmlhelp.xsl.in,v 1.1 2001/02/19 11:52:11 jkj Exp $

-->
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
                xmlns:saxon="http://icl.com/saxon"
                extension-element-prefixes="saxon"
                version="1.0">

<xsl:import href=" <email protected>@"/>
<xsl:import href="chunk-filename.xsl"/>
<xsl:include href="html-common.xsl"/>

<xsl:output method="html" encoding=" <email protected>@"
            saxon:character-representation="native"/>

<xsl:param name="base.dir" select="'html/'"/>
<xsl:param name="use.id.as.filename" select="1"/>
<xsl:param name="htmlhelp.encoding" select="' <email protected>@'"/>
<xsl:param name="html.encoding" select="' <email protected>@'"/>

</xsl:stylesheet>