mpv/DOCS/xml
lumag b4545e0ba8 Sync
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@10258 b3059339-0415-0410-9bf9-f77b7e298cf2
2003-06-07 17:23:29 +00:00
..
en sync 2003-06-07 14:34:39 +00:00
es New files and updates by Andoni Zubimendi <andoni@lpsat.net>. 2003-06-05 00:57:35 +00:00
fr sync 2003-06-07 14:34:39 +00:00
ru Sync 2003-06-07 17:23:29 +00:00
xsl XML version of MPlayer's doc 2003-03-23 23:35:12 +00:00
BUGS XML version of MPlayer's doc 2003-03-23 23:26:55 +00:00
Makefile fr version added 2003-05-16 13:23:03 +00:00
Makefile.inc Add support for the Saxon XSLT Processor. 2003-04-30 16:41:14 +00:00
README Add support for the Saxon XSLT Processor. 2003-04-30 16:41:14 +00:00
README.maintainers typos 2003-04-21 00:06:41 +00:00
default.css XML version of MPlayer's doc 2003-03-23 23:26:55 +00:00
gen-html.xsl.sh XML version of MPlayer's doc 2003-03-23 23:26:55 +00:00
html-common.xsl Generate more links for Site navigation Bar. 2003-05-20 07:11:33 +00:00
ldp.dsl XML version of MPlayer's doc 2003-03-23 23:26:55 +00:00

README

Tools required for building the documentation
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

* DocBook 4.1.2 or later
* The DocBook XML DTD (also known as DocBk XML)
* DocBook XSL stylesheets -- version 1.50.0 or later is recommended.

I am not quite sure which tools work, but I used the following
ones successfully, so they are required:

* xmllint (part of libxml2) is used for validation.
* xsltproc (part of libxslt1) is used for transforming XML files into HTML
  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.


Building the documentation
~~~~~~~~~~~~~~~~~~~~~~~~~~

1) Before trying to build the documentation, run

	make test

   to see if everything is set up properly.  If something goes wrong,
   check the Configuration section of the toplevel Makefile and adjust
   the variables.


2) Now simply run

	make all

   to build the documentation.


A few words about SGML catalog files
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

As far as I know, the document type declaration in XML files requires
both a public and a system identifier.  For example:

<!DOCTYPE book PUBLIC "-//OASIS//DTD DocBook XML V4.1.2//EN"
	"/usr/share/sgml/docbook/dtd/xml/4.1.2/docbookx.dtd">

where

	"-//OASIS//DTD DocBook XML V4.1.2//EN"

is the public, and

	"/usr/share/sgml/docbook/dtd/xml/4.1.2/docbookx.dtd"

is the system identifier.

The problem is that the system identifier is most probably system-dependent.
To avoid the need to manually fix the system identifiers before building the
documentation, I've decided to use SGML catalogs.  If you have your catalogs
set up correctly, xmllint and xsltproc will use them to find the DTDs
based on the public identifiers.

Note that this works only if public identifiers override system identifiers
(i.e. the catalog file must contain 'OVERRIDE YES').  (I had no problem with
these on my system, since the Debian people took care of everything. ;-))


--
Andras Mohari