[Mplayer-cvslog] CVS: main/DOCS/xml/pl Makefile,NONE,1.1 audio.xml,NONE,1.1 bugreports.xml,NONE,1.1 documentation.xml,NONE,1.1 features.xml,NONE,1.1 html.xsl,NONE,1.1 mail-lists.xml,NONE,1.1 patches.xml,NONE,1.1 ports.xml,NONE,1.1

Torinthiel torinthiel at wp.pl
Thu Oct 16 11:43:25 CEST 2003


On Thu, Oct 16, 2003 at 07:07:50AM +0200, Torinthiel wrote:
> have configure generate a file like
> <quote>
> <?xml version="1.0" encoding="iso-8859-1" standalone="no"?>
> <!-- $Revision$ -->
> <!DOCTYPE book PUBLIC "-//OASIS//DTD DocBook XML V4.1.2//EN"
>   "proper/path/here"
> [
> <!ENTITY documentation.xml      SYSTEM "documentation.xml">
> ]>
> &documentation.xml;
> </quote>
> 
> and Makefile.inc copy this to each language subdirectory.
> 
> I'm not sure if it will work and don't have time now to try it.
> But it could do.
Damn, won't work. No start tag. And the start tag is language dependent.

Ok, take a look at this patch. Works for me, but:
1) somebody should check if the configure conforms to the standards
2) and add some more standart dtd locations
3) and add .cvsignore containing main.xml to all language subdirectories
4) if it's pretty enough

if desired I can also make the main.xml generation such that there are
added entities for all .xml files in en subdirectory (or in every
different subdirectory, but that is IMHO too much) so that newer xml
files are easier added. In both situations adding a new file would
require re-running configure, but with or without changing it.
> 
> > Diego
> Torinthiel
Torinthiel


-- 
 Waclaw "Torinthiel" Schiller       GG#: 542916, 3075312
   torinthiel(at)wp(dot)pl
   gpg: B06901F1 fpr: FAA3 559F CAE9 34DE CDC8  7346 2B6E 39F2 B069 01F1
 "No classmates may be used during this examination"
-------------- next part --------------
? en/.cvsignore
? es/.cvsignore
? fr/.cvsignore
? pl/.cvsignore
? ru/.cvsignore
Index: .cvsignore
===================================================================
RCS file: /cvsroot/mplayer/main/DOCS/xml/.cvsignore,v
retrieving revision 1.1
diff -u -r1.1 .cvsignore
--- .cvsignore	18 Jun 2003 17:37:36 -0000	1.1
+++ .cvsignore	16 Oct 2003 09:45:02 -0000
@@ -1,3 +1,4 @@
 html.xsl
 xsltproc.sh
 xmllint.sh
+main.xml
Index: Makefile.inc
===================================================================
RCS file: /cvsroot/mplayer/main/DOCS/xml/Makefile.inc,v
retrieving revision 1.5
diff -u -r1.5 Makefile.inc
--- Makefile.inc	8 Oct 2003 02:00:15 -0000	1.5
+++ Makefile.inc	16 Oct 2003 09:45:02 -0000
@@ -15,7 +15,7 @@
 HTML_STYLESHEET ?= ../default.css
 
 # This is the main target...
-$(HTMLDIR)/index.html: documentation.xml $(XSL_DEPS)
+$(HTMLDIR)/index.html: main.xml $(XSL_DEPS)
 	@if test "$(HTMLDIR)" = "" ; then echo "Error: HTMLDIR not set!!!"; echo "Typically this means, that you've run make from subdir of DOCS/xml. Don't do this!" ; false; fi
 	if test "$(USE_SYMLINKS)" = "yes" ; then for file in ../en/*.xml ; do if ! test -r `basename $$file` ; then ln -s $$file `basename $$file` ; fi ; done ; fi
 	-rm -f $(HTMLDIR)/*
@@ -23,7 +23,10 @@
 	cp $(HTML_STYLESHEET) $(HTMLDIR)/
 	../xsltproc.sh $(HTMLDIR)/ $(HTML_XSL) $<
 
-../html.xsl:
+main.xml: ../main.xml
+	@sed -e 's/xx/$(XML_LANG)/' ../main.xml>main.xml
+
+../html.xsl ../main.xml:
 	cd .. && sh configure
 
 distclean:
Index: README.maintainers
===================================================================
RCS file: /cvsroot/mplayer/main/DOCS/xml/README.maintainers,v
retrieving revision 1.6
diff -u -r1.6 README.maintainers
--- README.maintainers	15 Oct 2003 20:54:38 -0000	1.6
+++ README.maintainers	16 Oct 2003 09:45:02 -0000
@@ -25,7 +25,7 @@
 1) Create a new subdirectory and copy the XML files there.
 2) Make sure to create a 'Makefile' for the translation -- you can
    use 'en/Makefile' as an example.
-3) Set <book lang="XX"> to your language code if the DocBook XSL
+3) Set XML_LANG=XX in the Makefile to your language code if the DocBook XSL 
    stylesheets support it.
 4) If you want to use a customized XSL stylesheet, create one and name it
    'html.xsl'.  And do not forget to import the toplevel XSL file:
Index: configure
===================================================================
RCS file: /cvsroot/mplayer/main/DOCS/xml/configure,v
retrieving revision 1.4
diff -u -r1.4 configure
--- configure	5 Oct 2003 01:06:30 -0000	1.4
+++ configure	16 Oct 2003 09:45:02 -0000
@@ -58,7 +58,57 @@
 </xsl:stylesheet>
 EOF
 
+echo "Searching for dtd..."
+for _try_dtd in /usr/share/sgml/docbook/dtd/xml/4.1.2/docbookx.dtd /usr/share/docbook-xml42/docbookx.dtd 
+do
+  if test -f "$_try_dtd"
+  then
+    _dtd=$_try_dtd
+    break
+  fi
+done
 
+if test -z "$_dtd"
+then
+  _dtd=/usr/share/sgml/docbook/dtd/xml/4.1.2/docbookx.dtd
+  echo "Not found. Using default ($_dtd)"
+  _fake_chunk_xsl=yes
+else
+  echo "Found docbook.dtd at $_dtd"
+fi
+
+cat > main.xml << EOF
+<?xml version="1.0" encoding="iso-8859-1" standalone="no"?>
+<!DOCTYPE book PUBLIC "-//OASIS//DTD DocBook XML V4.1.2//EN"
+    "$_dtd"
+[ 
+<!ENTITY documentation.xml      SYSTEM "documentation.xml">
+<!ENTITY audio.xml      SYSTEM "audio.xml">
+<!ENTITY bugreports.xml     SYSTEM "bugreports.xml">
+<!ENTITY bugs.xml       SYSTEM "bugs.xml">
+<!ENTITY cd-dvd.xml     SYSTEM "cd-dvd.xml">
+<!ENTITY codecs.xml     SYSTEM "codecs.xml">
+<!ENTITY edl.xml        SYSTEM "edl.xml">
+<!ENTITY faq.xml        SYSTEM "faq.xml">
+<!ENTITY features.xml       SYSTEM "features.xml">
+<!ENTITY formats.xml        SYSTEM "formats.xml">
+<!ENTITY history.xml        SYSTEM "history.xml">
+<!ENTITY install.xml        SYSTEM "install.xml">
+<!ENTITY mail-lists.xml     SYSTEM "mail-lists.xml">
+<!ENTITY mencoder.xml       SYSTEM "mencoder.xml">
+<!ENTITY patches.xml        SYSTEM "patches.xml">
+<!ENTITY ports.xml      SYSTEM "ports.xml">
+<!ENTITY skin.xml       SYSTEM "skin.xml">
+<!ENTITY tvinput.xml        SYSTEM "tvinput.xml">
+<!ENTITY usage.xml      SYSTEM "usage.xml">
+<!ENTITY users-vs-dev.xml   SYSTEM "users-vs-dev.xml">
+<!ENTITY video-filters.xml  SYSTEM "video-filters.xml">
+<!ENTITY video.xml      SYSTEM "video.xml">
+]>
+<book id="index" lang="xx">
+&documentation.xml;
+</book>
+EOF
 
 echo "Looking for a valid XSLT processor..."
 # Checks for xsltproc, then checks for the Saxon processor (it needs Java).
Index: en/Makefile
===================================================================
RCS file: /cvsroot/mplayer/main/DOCS/xml/en/Makefile,v
retrieving revision 1.2
diff -u -r1.2 Makefile
--- en/Makefile	8 Oct 2003 02:00:55 -0000	1.2
+++ en/Makefile	16 Oct 2003 09:45:02 -0000
@@ -3,6 +3,9 @@
 # Set if you are using your own HTML stylesheet...
 #HTML_STYLESHEET = mystyle.css
 
+# Set to the xml language code of your language
+XML_LANG = en
+
 # Change to yes to enable symlinking missing files to English master versions
 USE_SYMLINKS = no
 
Index: en/documentation.xml
===================================================================
RCS file: /cvsroot/mplayer/main/DOCS/xml/en/documentation.xml,v
retrieving revision 1.6
diff -u -r1.6 documentation.xml
--- en/documentation.xml	21 Sep 2003 13:05:42 -0000	1.6
+++ en/documentation.xml	16 Oct 2003 09:45:03 -0000
@@ -1,32 +1,6 @@
-<?xml version="1.0" encoding="iso-8859-1" standalone="no"?>
+<?xml version="1.0" encoding="iso-8859-1"?>
 <!-- $Revision: 1.6 $ -->
-<!DOCTYPE book PUBLIC "-//OASIS//DTD DocBook XML V4.1.2//EN"
-	"/usr/share/sgml/docbook/dtd/xml/4.1.2/docbookx.dtd"
-[
-<!ENTITY audio.xml		SYSTEM "audio.xml">
-<!ENTITY bugreports.xml		SYSTEM "bugreports.xml">
-<!ENTITY bugs.xml		SYSTEM "bugs.xml">
-<!ENTITY cd-dvd.xml		SYSTEM "cd-dvd.xml">
-<!ENTITY codecs.xml		SYSTEM "codecs.xml">
-<!ENTITY edl.xml		SYSTEM "edl.xml">
-<!ENTITY faq.xml		SYSTEM "faq.xml">
-<!ENTITY features.xml		SYSTEM "features.xml">
-<!ENTITY formats.xml		SYSTEM "formats.xml">
-<!ENTITY history.xml		SYSTEM "history.xml">
-<!ENTITY install.xml		SYSTEM "install.xml">
-<!ENTITY mail-lists.xml		SYSTEM "mail-lists.xml">
-<!ENTITY mencoder.xml		SYSTEM "mencoder.xml">
-<!ENTITY patches.xml		SYSTEM "patches.xml">
-<!ENTITY ports.xml		SYSTEM "ports.xml">
-<!ENTITY skin.xml		SYSTEM "skin.xml">
-<!ENTITY tvinput.xml		SYSTEM "tvinput.xml">
-<!ENTITY usage.xml		SYSTEM "usage.xml">
-<!ENTITY users-vs-dev.xml	SYSTEM "users-vs-dev.xml">
-<!ENTITY video-filters.xml	SYSTEM "video-filters.xml">
-<!ENTITY video.xml		SYSTEM "video.xml">
-]>
 
-<book id="index" lang="en">
 <bookinfo id="toc">
 <title>MPlayer - The Movie Player for LINUX</title>
 <subtitle><ulink url="http://www.mplayerhq.hu"></ulink></subtitle>
@@ -208,4 +182,3 @@
 &skin.xml;
 &users-vs-dev.xml;
 &patches.xml;
-</book>
Index: es/Makefile
===================================================================
RCS file: /cvsroot/mplayer/main/DOCS/xml/es/Makefile,v
retrieving revision 1.3
diff -u -r1.3 Makefile
--- es/Makefile	12 Oct 2003 23:25:59 -0000	1.3
+++ es/Makefile	16 Oct 2003 09:45:03 -0000
@@ -3,6 +3,9 @@
 # Set if you are using your own HTML stylesheet...
 #HTML_STYLESHEET = mystyle.css
 
+# Set to the xml language code of your language
+XML_LANG = es
+
 # Change to yes to enable symlinking missing files to English master versions
 USE_SYMLINKS = no
 
Index: es/documentation.xml
===================================================================
RCS file: /cvsroot/mplayer/main/DOCS/xml/es/documentation.xml,v
retrieving revision 1.6
diff -u -r1.6 documentation.xml
--- es/documentation.xml	8 Oct 2003 01:06:50 -0000	1.6
+++ es/documentation.xml	16 Oct 2003 09:45:03 -0000
@@ -1,32 +1,6 @@
-<?xml version="1.0" encoding="iso-8859-1" standalone="no"?>
+<?xml version="1.0" encoding="iso-8859-1"?>
 <!-- synced with 1.6 -->
-<!DOCTYPE book PUBLIC "-//OASIS//DTD DocBook XML V4.1.2//EN"
-	"/usr/share/sgml/docbook/dtd/xml/4.1.2/docbookx.dtd"
-[
-<!ENTITY audio.xml		SYSTEM "audio.xml">
-<!ENTITY bugreports.xml		SYSTEM "bugreports.xml">
-<!ENTITY bugs.xml		SYSTEM "bugs.xml">
-<!ENTITY cd-dvd.xml		SYSTEM "cd-dvd.xml">
-<!ENTITY codecs.xml		SYSTEM "codecs.xml">
-<!ENTITY edl.xml		SYSTEM "edl.xml">
-<!ENTITY faq.xml		SYSTEM "faq.xml">
-<!ENTITY features.xml		SYSTEM "features.xml">
-<!ENTITY formats.xml		SYSTEM "formats.xml">
-<!ENTITY history.xml		SYSTEM "history.xml">
-<!ENTITY install.xml		SYSTEM "install.xml">
-<!ENTITY mail-lists.xml		SYSTEM "mail-lists.xml">
-<!ENTITY mencoder.xml		SYSTEM "mencoder.xml">
-<!ENTITY patches.xml		SYSTEM "patches.xml">
-<!ENTITY ports.xml		SYSTEM "ports.xml">
-<!ENTITY skin.xml		SYSTEM "skin.xml">
-<!ENTITY tvinput.xml		SYSTEM "tvinput.xml">
-<!ENTITY usage.xml		SYSTEM "usage.xml">
-<!ENTITY users-vs-dev.xml	SYSTEM "users-vs-dev.xml">
-<!ENTITY video-filters.xml	SYSTEM "video-filters.xml">
-<!ENTITY video.xml		SYSTEM "video.xml">
-]>
 
-<book lang="es">
 <bookinfo id="toc">
 <title>MPlayer - El reproductor de Películas para LINUX</title>
 <subtitle><ulink url="http://www.mplayerhq.hu"></ulink></subtitle>
@@ -210,4 +184,3 @@
 &skin.xml;
 &users-vs-dev.xml;
 &patches.xml;
-</book>
Index: fr/Makefile
===================================================================
RCS file: /cvsroot/mplayer/main/DOCS/xml/fr/Makefile,v
retrieving revision 1.2
diff -u -r1.2 Makefile
--- fr/Makefile	8 Oct 2003 02:00:58 -0000	1.2
+++ fr/Makefile	16 Oct 2003 09:45:03 -0000
@@ -3,6 +3,9 @@
 # Set if you are using your own HTML stylesheet...
 #HTML_STYLESHEET = mystyle.css
 
+# Set to the xml language code of your language
+XML_LANG = fr
+
 # Change to yes to enable symlinking missing files to English master versions
 USE_SYMLINKS = no
 
Index: fr/documentation.xml
===================================================================
RCS file: /cvsroot/mplayer/main/DOCS/xml/fr/documentation.xml,v
retrieving revision 1.5
diff -u -r1.5 documentation.xml
--- fr/documentation.xml	12 Oct 2003 09:46:57 -0000	1.5
+++ fr/documentation.xml	16 Oct 2003 09:45:03 -0000
@@ -1,32 +1,6 @@
-<?xml version="1.0" encoding="iso-8859-1" standalone="no"?>
+<?xml version="1.0" encoding="iso-8859-1"?>
 <!-- synced with 1.6 -->
-<!DOCTYPE book PUBLIC "-//OASIS//DTD DocBook XML V4.1.2//EN"
-	"/usr/share/sgml/docbook/dtd/xml/4.1.2/docbookx.dtd"
-[
-<!ENTITY audio.xml		SYSTEM "audio.xml">
-<!ENTITY bugreports.xml		SYSTEM "bugreports.xml">
-<!ENTITY bugs.xml		SYSTEM "bugs.xml">
-<!ENTITY cd-dvd.xml		SYSTEM "cd-dvd.xml">
-<!ENTITY codecs.xml		SYSTEM "codecs.xml">
-<!ENTITY edl.xml		SYSTEM "edl.xml">
-<!ENTITY faq.xml		SYSTEM "faq.xml">
-<!ENTITY features.xml		SYSTEM "features.xml">
-<!ENTITY formats.xml		SYSTEM "formats.xml">
-<!ENTITY history.xml		SYSTEM "history.xml">
-<!ENTITY install.xml		SYSTEM "install.xml">
-<!ENTITY mail-lists.xml		SYSTEM "mail-lists.xml">
-<!ENTITY mencoder.xml		SYSTEM "mencoder.xml">
-<!ENTITY patches.xml		SYSTEM "patches.xml">
-<!ENTITY ports.xml		SYSTEM "ports.xml">
-<!ENTITY skin.xml		SYSTEM "skin.xml">
-<!ENTITY tvinput.xml		SYSTEM "tvinput.xml">
-<!ENTITY usage.xml		SYSTEM "usage.xml">
-<!ENTITY users-vs-dev.xml	SYSTEM "users-vs-dev.xml">
-<!ENTITY video-filters.xml	SYSTEM "video-filters.xml">
-<!ENTITY video.xml		SYSTEM "video.xml">
-]>
 
-<book id="index" lang="fr">
 <bookinfo id="toc">
 <title>MPlayer - Le lecteur vidéo pour LINUX</title>
 <subtitle><ulink url="http://www.mplayerhq.hu"></ulink></subtitle>
@@ -204,4 +178,3 @@
 &skin.xml;
 &users-vs-dev.xml;
 &patches.xml;
-</book>
Index: pl/Makefile
===================================================================
RCS file: /cvsroot/mplayer/main/DOCS/xml/pl/Makefile,v
retrieving revision 1.1
diff -u -r1.1 Makefile
--- pl/Makefile	15 Oct 2003 16:37:42 -0000	1.1
+++ pl/Makefile	16 Oct 2003 09:45:03 -0000
@@ -3,6 +3,9 @@
 # Set if you are using your own HTML stylesheet...
 #HTML_STYLESHEET = mystyle.css
 
+# Set to the xml language code of your language
+XML_LANG = pl
+
 # Change to yes to enable symlinking missing files to English master versions
 USE_SYMLINKS = yes
 
Index: pl/documentation.xml
===================================================================
RCS file: /cvsroot/mplayer/main/DOCS/xml/pl/documentation.xml,v
retrieving revision 1.1
diff -u -r1.1 documentation.xml
--- pl/documentation.xml	15 Oct 2003 16:37:42 -0000	1.1
+++ pl/documentation.xml	16 Oct 2003 09:45:03 -0000
@@ -1,32 +1,6 @@
-<?xml version="1.0" encoding="iso-8859-2" standalone="no"?>
+<?xml version="1.0" encoding="iso-8859-2"?>
 <!-- synced with 1.6 -->
-<!DOCTYPE book PUBLIC "-//OASIS//DTD DocBook XML V4.1.2//EN"
-	"/usr/share/sgml/docbook/dtd/xml/4.1.2/docbookx.dtd"
-[
-<!ENTITY audio.xml		SYSTEM "audio.xml">
-<!ENTITY bugreports.xml		SYSTEM "bugreports.xml">
-<!ENTITY bugs.xml		SYSTEM "bugs.xml">
-<!ENTITY cd-dvd.xml		SYSTEM "cd-dvd.xml">
-<!ENTITY codecs.xml		SYSTEM "codecs.xml">
-<!ENTITY edl.xml		SYSTEM "edl.xml">
-<!ENTITY faq.xml		SYSTEM "faq.xml">
-<!ENTITY features.xml		SYSTEM "features.xml">
-<!ENTITY formats.xml		SYSTEM "formats.xml">
-<!ENTITY history.xml		SYSTEM "history.xml">
-<!ENTITY install.xml		SYSTEM "install.xml">
-<!ENTITY mail-lists.xml		SYSTEM "mail-lists.xml">
-<!ENTITY mencoder.xml		SYSTEM "mencoder.xml">
-<!ENTITY patches.xml		SYSTEM "patches.xml">
-<!ENTITY ports.xml		SYSTEM "ports.xml">
-<!ENTITY skin.xml		SYSTEM "skin.xml">
-<!ENTITY tvinput.xml		SYSTEM "tvinput.xml">
-<!ENTITY usage.xml		SYSTEM "usage.xml">
-<!ENTITY users-vs-dev.xml	SYSTEM "users-vs-dev.xml">
-<!ENTITY video-filters.xml	SYSTEM "video-filters.xml">
-<!ENTITY video.xml		SYSTEM "video.xml">
-]>
 
-<book id="index" lang="pl">
 <bookinfo id="toc">
 <title>MPlayer - Odtwarzacz filmów dla LINUKSA</title>
 <subtitle><ulink url="http://www.mplayerhq.hu"></ulink></subtitle>
@@ -216,4 +190,3 @@
 &skin.xml;
 &users-vs-dev.xml;
 &patches.xml;
-</book>
Index: ru/Makefile
===================================================================
RCS file: /cvsroot/mplayer/main/DOCS/xml/ru/Makefile,v
retrieving revision 1.2
diff -u -r1.2 Makefile
--- ru/Makefile	8 Oct 2003 02:00:59 -0000	1.2
+++ ru/Makefile	16 Oct 2003 09:45:03 -0000
@@ -3,6 +3,9 @@
 # Set if you are using your own HTML stylesheet...
 #HTML_STYLESHEET = mystyle.css
 
+# Set to the xml language code of your language
+XML_LANG = ru
+
 # Change to yes to enable symlinking missing files to English master versions
 USE_SYMLINKS = yes
 
Index: ru/documentation.xml
===================================================================
RCS file: /cvsroot/mplayer/main/DOCS/xml/ru/documentation.xml,v
retrieving revision 1.9
diff -u -r1.9 documentation.xml
--- ru/documentation.xml	8 Oct 2003 01:40:57 -0000	1.9
+++ ru/documentation.xml	16 Oct 2003 09:45:03 -0000
@@ -1,31 +1,6 @@
-<?xml version="1.0" encoding="KOI8-R" standalone="no"?>
+<?xml version="1.0" encoding="KOI8-R"?>
 <!-- synced with 1.6 -->
-<!DOCTYPE book PUBLIC "-//OASIS//DTD DocBook XML V4.1.2//EN"
-	"/usr/share/sgml/docbook/dtd/xml/4.1.2/docbookx.dtd"
-[
-<!ENTITY audio.xml		SYSTEM "audio.xml">
-<!ENTITY bugreports.xml		SYSTEM "bugreports.xml">
-<!ENTITY bugs.xml		SYSTEM "bugs.xml">
-<!ENTITY cd-dvd.xml		SYSTEM "cd-dvd.xml">
-<!ENTITY codecs.xml		SYSTEM "codecs.xml">
-<!ENTITY edl.xml		SYSTEM "edl.xml">
-<!ENTITY faq.xml		SYSTEM "faq.xml">
-<!ENTITY features.xml		SYSTEM "features.xml">
-<!ENTITY formats.xml		SYSTEM "formats.xml">
-<!ENTITY history.xml		SYSTEM "history.xml">
-<!ENTITY install.xml		SYSTEM "install.xml">
-<!ENTITY mail-lists.xml		SYSTEM "mail-lists.xml">
-<!ENTITY mencoder.xml		SYSTEM "mencoder.xml">
-<!ENTITY patches.xml		SYSTEM "patches.xml">
-<!ENTITY ports.xml		SYSTEM "ports.xml">
-<!ENTITY skin.xml		SYSTEM "skin.xml">
-<!ENTITY tvinput.xml		SYSTEM "tvinput.xml">
-<!ENTITY usage.xml		SYSTEM "usage.xml">
-<!ENTITY users-vs-dev.xml	SYSTEM "users-vs-dev.xml">
-<!ENTITY video-filters.xml	SYSTEM "video-filters.xml">
-<!ENTITY video.xml		SYSTEM "video.xml">
-]>
-<book id="index" lang="ru">
+
 <bookinfo id="toc">
 <title>MPlayer - The Movie Player for LINUX</title>
 <subtitle><ulink url="http://www.mplayerhq.hu"></ulink></subtitle>
@@ -210,4 +185,3 @@
 &skin.xml;
 &users-vs-dev.xml;
 &patches.xml;
-</book>
-------------- next part --------------
A non-text attachment was scrubbed...
Name: not available
Type: application/pgp-signature
Size: 189 bytes
Desc: not available
URL: <http://lists.mplayerhq.hu/pipermail/mplayer-cvslog/attachments/20031016/1b024af5/attachment.pgp>


More information about the MPlayer-cvslog mailing list