summaryrefslogtreecommitdiffstats
path: root/DOCS
diff options
context:
space:
mode:
authorlumag <lumag@b3059339-0415-0410-9bf9-f77b7e298cf2>2003-09-21 13:01:25 +0000
committerlumag <lumag@b3059339-0415-0410-9bf9-f77b7e298cf2>2003-09-21 13:01:25 +0000
commit0633af5e3be577b0af825e5d921f0bd55d991c8a (patch)
tree28bcd8f67d055c6e0eaffbd0e25dca78df6783d2 /DOCS
parentbdce2705e1bc3bec79104ee7f855b61288f92cbb (diff)
downloadmpv-0633af5e3be577b0af825e5d921f0bd55d991c8a.tar.bz2
mpv-0633af5e3be577b0af825e5d921f0bd55d991c8a.tar.xz
Update readme's. Remove incorrect bug :)
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@10912 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'DOCS')
-rw-r--r--DOCS/xml/BUGS9
-rw-r--r--DOCS/xml/README6
-rw-r--r--DOCS/xml/README.maintainers7
3 files changed, 10 insertions, 12 deletions
diff --git a/DOCS/xml/BUGS b/DOCS/xml/BUGS
deleted file mode 100644
index 7c53ea6492..0000000000
--- a/DOCS/xml/BUGS
+++ /dev/null
@@ -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?
diff --git a/DOCS/xml/README b/DOCS/xml/README
index 09b6f999e9..290363946c 100644
--- a/DOCS/xml/README
+++ b/DOCS/xml/README
@@ -13,8 +13,10 @@ ones successfully, so they are required:
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
diff --git a/DOCS/xml/README.maintainers b/DOCS/xml/README.maintainers
index 5456ad851a..9bbce4c015 100644
--- a/DOCS/xml/README.maintainers
+++ b/DOCS/xml/README.maintainers
@@ -31,8 +31,13 @@ Adding new translations
'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.