changeset 10911:a2b9b13af73f

Update readme's. Remove incorrect bug :)
author lumag
date Sun, 21 Sep 2003 13:01:25 +0000
parents eb339c10228e
children 6ec6b4a91003
files DOCS/xml/BUGS DOCS/xml/README DOCS/xml/README.maintainers
diffstat 3 files changed, 10 insertions(+), 12 deletions(-) [+]
line wrap: on
line diff
--- a/DOCS/xml/BUGS	Sun Sep 21 12:59:13 2003 +0000
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,9 +0,0 @@
-* Can't change output encoding...it's always ISO-8859-1. :-(
-  Should figure out a way to change it...
-  
-  <xsl:output encoding="..."/> does not seem to work with xsltproc.
-  
-  <xsl:param name="chunker.output.encoding" select="'...'"/> seems not to
-  work either.
-  
-  Is it a limitation of xsltproc?
--- a/DOCS/xml/README	Sun Sep 21 12:59:13 2003 +0000
+++ b/DOCS/xml/README	Sun Sep 21 13:01:25 2003 +0000
@@ -13,8 +13,10 @@
   files.  Version 1.0.18 or later is recommended.
 
 Also it's possible to use the Saxon XSLT Processor. Russian translator
-used it (version 6.4.4) for a while. To enable it change USE_SAXON to 1 in
-the Makefile.
+used it (version 6.4.4) for a while. If you have suitable JavaVM and a saxon.jar
+installed somewhere, configure will try to detect them. If autodetection fails,
+try to tweak DOCS/xml/configure to get it working and send us a patch :)
+
 
 
 Installing the required tools from source
--- a/DOCS/xml/README.maintainers	Sun Sep 21 12:59:13 2003 +0000
+++ b/DOCS/xml/README.maintainers	Sun Sep 21 13:01:25 2003 +0000
@@ -31,8 +31,13 @@
    'html.xsl'.  And do not forget to import the toplevel XSL file:
 
 	<xsl:import href="../html.xsl"/>
+5) If you wish to change output encoding of generated files, create html.xsl
+   as suggested in step 4) and add somwhere after <xsl:import .../> such string:
 
-5) If you are using your own HTML stylesheet, edit your Makefile and set
+      <xsl:param name="chunker.output.encoding" select="'your_encoding'"/>
+      
+   Use ru/html.xsl as example.
+6) If you are using your own HTML stylesheet, edit your Makefile and set
    the HTML_STYLESHEET variable to its name.
    
 That's all, in theory.