jkj Mon Aug 13 11:11:06 2001 EDT
Removed files:
/phpdoc chunk-filename.xsl
Modified files:
/phpdoc README.xsl bightml.xsl.in configure.in html.xsl.in
htmlhelp.xsl.in
Log:
Update XSL stuff to reflect latest XSL DocBook stylesheets.
Index: phpdoc/README.xsl
diff -u phpdoc/README.xsl:1.4 phpdoc/README.xsl:1.5
--- phpdoc/README.xsl:1.4 Sun Aug 5 05:24:09 2001
+++ phpdoc/README.xsl Mon Aug 13 11:11:06 2001
@@ -62,12 +62,6 @@
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:
---------------------
@@ -82,9 +76,9 @@
------------
Not all customization from DSSSL are backported to XSL, so some things
-does not work for now. Hope, this will change in the near future.
+as pretty as in DSSSL output. Hope, this will change in the near future.
Jirka Kosek <[EMAIL PROTECTED]>
-Last modified $Date: 2001/08/05 09:24:09 $
+Last modified $Date: 2001/08/13 15:11:06 $
Index: phpdoc/bightml.xsl.in
diff -u phpdoc/bightml.xsl.in:1.2 phpdoc/bightml.xsl.in:1.3
--- phpdoc/bightml.xsl.in:1.2 Sun Feb 11 16:51:24 2001
+++ phpdoc/bightml.xsl.in Mon Aug 13 11:11:06 2001
@@ -2,15 +2,17 @@
HTML specific stylesheet
- $Id: bightml.xsl.in,v 1.2 2001/02/11 21:51:24 jkj Exp $
+ $Id: bightml.xsl.in,v 1.3 2001/08/13 15:11:06 jkj Exp $
-->
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
- version="1.0">
+ version="1.0"
+ xmlns:saxon="http://icl.com/saxon"
+ extension-element-prefixes="saxon">
<xsl:import href="@DOCBOOKXSL_BIGHTML@"/>
<xsl:include href="html-common.xsl"/>
-<xsl:output method="html" encoding="@ENCODING@"/>
+<xsl:output method="html" encoding="@ENCODING@"
+saxon:character-representation="native"/>
</xsl:stylesheet>
Index: phpdoc/configure.in
diff -u phpdoc/configure.in:1.73 phpdoc/configure.in:1.74
--- phpdoc/configure.in:1.73 Sat Aug 11 11:54:05 2001
+++ phpdoc/configure.in Mon Aug 13 11:11:06 2001
@@ -1,4 +1,4 @@
-dnl $Id: configure.in,v 1.73 2001/08/11 15:54:05 goba Exp $
+dnl $Id: configure.in,v 1.74 2001/08/13 15:11:06 jkj Exp $
AC_INIT(global.ent)
@@ -108,7 +108,7 @@
if test -d "$dir"; then
DOCBOOKXSL_BIGHTML=$dir/html/docbook.xsl
DOCBOOKXSL_HTML=$dir/html/chunk.xsl
- DOCBOOKXSL_HTMLHELP=$dir/contrib/htmlhelp/htmlhelp.xsl
+ DOCBOOKXSL_HTMLHELP=$dir/htmlhelp/htmlhelp.xsl
DOCBOOKXSL_PRINT=$dir/fo/docbook.xsl
AC_MSG_RESULT(autodetected: $dir)
@@ -119,7 +119,7 @@
if test -z "$DOCBOOKXSL_BIGHTML"; then
DOCBOOKXSL_BIGHTML=../phpdoc-tools/xsl/html/docbook.xsl
DOCBOOKXSL_HTML=../phpdoc-tools/xsl/html/chunk.xsl
- DOCBOOKXSL_HTMLHELP=../phpdoc-tools/xsl/contrib/htmlhelp/htmlhelp.xsl
+ DOCBOOKXSL_HTMLHELP=../phpdoc-tools/xsl/htmlhelp/htmlhelp.xsl
DOCBOOKXSL_PRINT=../phpdoc-tools/xsl/fo/docbook.xsl
AC_MSG_RESULT(not found, defaulting)
fi
Index: phpdoc/html.xsl.in
diff -u phpdoc/html.xsl.in:1.3 phpdoc/html.xsl.in:1.4
--- phpdoc/html.xsl.in:1.3 Sun Feb 11 16:53:17 2001
+++ phpdoc/html.xsl.in Mon Aug 13 11:11:06 2001
@@ -2,19 +2,18 @@
HTML specific stylesheet
- $Id: html.xsl.in,v 1.3 2001/02/11 21:53:17 jkj Exp $
+ $Id: html.xsl.in,v 1.4 2001/08/13 15:11:06 jkj Exp $
-->
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
version="1.0">
<xsl:import href="@DOCBOOKXSL_HTML@"/>
-<xsl:import href="chunk-filename.xsl"/>
<xsl:include href="html-common.xsl"/>
-<xsl:output method="html" encoding="@ENCODING@"/>
-
<xsl:param name="base.dir" select="'html/'"/>
<xsl:param name="use.id.as.filename" select="1"/>
+<xsl:param name="default.encoding" select="'@ENCODING@'"/>
+<xsl:param name="saxon.character.representation" select="'native'"/>
</xsl:stylesheet>
Index: phpdoc/htmlhelp.xsl.in
diff -u phpdoc/htmlhelp.xsl.in:1.1 phpdoc/htmlhelp.xsl.in:1.2
--- phpdoc/htmlhelp.xsl.in:1.1 Mon Feb 19 06:52:11 2001
+++ phpdoc/htmlhelp.xsl.in Mon Aug 13 11:11:06 2001
@@ -2,24 +2,19 @@
HTML Help specific stylesheet
- $Id: htmlhelp.xsl.in,v 1.1 2001/02/19 11:52:11 jkj Exp $
+ $Id: htmlhelp.xsl.in,v 1.2 2001/08/13 15:11:06 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="@DOCBOOKXSL_HTMLHELP@"/>
-<xsl:import href="chunk-filename.xsl"/>
<xsl:include href="html-common.xsl"/>
-<xsl:output method="html" encoding="@HTMLHELP_ENCODING@"
- 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="'@HTMLHELP_ENCODING@'"/>
-<xsl:param name="html.encoding" select="'@HTMLHELP_ENCODING@'"/>
+<xsl:param name="default.encoding" select="'@HTMLHELP_ENCODING@'"/>
+<xsl:param name="saxon.character.representation" select="'native'"/>
</xsl:stylesheet>