[svnbook commit] r1181 - trunk/src/tools

sunny256 at red-bean.com sunny256 at red-bean.com
Sat Mar 19 22:07:55 CST 2005


Author: sunny256
Date: Sat Mar 19 22:07:53 2005
New Revision: 1181

Modified:
   trunk/src/tools/chunk-stylesheet.xsl
   trunk/src/tools/html-stylesheet.xsl
Log:
Change the xsl stylesheets in tools/ so xsltproc generates XHTML instead 
of HTML. Default character set is now UTF-8 instead of ISO-8859-1 and 
contains a proper DOCTYPE declaration, which the previous HTML version 
lacked.

* src/tools/html-stylesheet.xsl
  Change <xsl:import href> to "xsl/xhtml/docbook.xsl".

* src/tools/chunk-stylesheet.xsl
  Change <xsl:import href> to "xsl/xhtml/chunk.xsl".

Patch by Marcus Rueckert <darix at irssi.org>.


Modified: trunk/src/tools/chunk-stylesheet.xsl
==============================================================================
--- trunk/src/tools/chunk-stylesheet.xsl	(original)
+++ trunk/src/tools/chunk-stylesheet.xsl	Sat Mar 19 22:07:53 2005
@@ -1,6 +1,6 @@
 <xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version='1.0'>
 
-  <xsl:import href="xsl/html/chunk.xsl"/>
+  <xsl:import href="xsl/xhtml/chunk.xsl"/>
 
   <xsl:param name="html.stylesheet">styles.css</xsl:param>
   <xsl:param name="toc.section.depth">3</xsl:param>

Modified: trunk/src/tools/html-stylesheet.xsl
==============================================================================
--- trunk/src/tools/html-stylesheet.xsl	(original)
+++ trunk/src/tools/html-stylesheet.xsl	Sat Mar 19 22:07:53 2005
@@ -1,6 +1,6 @@
 <xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version='1.0'>
 
-  <xsl:import href="xsl/html/docbook.xsl"/>
+  <xsl:import href="xsl/xhtml/docbook.xsl"/>
 
   <xsl:param name="html.stylesheet">styles.css</xsl:param>
   <xsl:param name="toc.section.depth">3</xsl:param>



More information about the svnbook-dev mailing list