Hello community,

here is the log from the commit of package docbook_5 for openSUSE:Factory 
checked in at 2020-09-03 01:13:36
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/docbook_5 (Old)
 and      /work/SRC/openSUSE:Factory/.docbook_5.new.3399 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "docbook_5"

Thu Sep  3 01:13:36 2020 rev:29 rq:830837 version:5.2b10a2

Changes:
--------
--- /work/SRC/openSUSE:Factory/docbook_5/docbook_5.changes      2017-12-10 
18:16:32.749764346 +0100
+++ /work/SRC/openSUSE:Factory/.docbook_5.new.3399/docbook_5.changes    
2020-09-03 01:14:34.596479874 +0200
@@ -1,0 +2,28 @@
+Mon Aug 31 13:45:10 UTC 2020 - Thomas Schraitle <thomas.schrai...@suse.com> - 
5.2b10a2
+
+- Spec improvements:
+  move creating of compatibility links (5.2b10a2 -> 5.2) from spec
+  file into Makefile
+
+-------------------------------------------------------------------
+Thu Aug  6 12:51:10 UTC 2020 - mmuschner <mmuschner@localhost>  - 5.2b10a2
+
+Update to version 5.2b10a2:
+ - Added a transform attribute to the resource element (as an alternative to 
grammar).
+ - Removed the grammar attribute from output.
+ - Added a danger admonition.
+ - Added a legalsection sectioning element. Allow legalsection in legalnotice.
+ - Added an otherclass attribute to article as an alternative to the 
enumerated class values.
+ - Added a formalgroup element to contain several formal objects (for example, 
subfigures in a figure).
+ - Relaxed the content model of abstract to include non-paragraph block 
elements.
+ - Added multimediaparams to imagedata.
+ - Added a buildtarget inline.
+ - Allow funcdef to contain an explicit void.
+ - Allow paramdef to contain modifiers.
+ - Allow fieldsynopsis, methodsynopsis, and methodparam to contain more than 
one type.
+ - Extended the content model of type so that it can represent union and 
intersection types. Added a class attribute to type.
+ - Allow numbered sections (sect1, sect2, etc.) to contain refentry.
+ - Added interface to the enumerated values in the class attribute of 
systemitem.- 
+ - Fix XML catalog to allow both www.docbook.org and docbook.org as URIs.
+
+-------------------------------------------------------------------

New:
----
  docbook_5.2b10a2.tar.bz2

++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Other differences:
------------------
++++++ docbook_5.spec ++++++
--- /var/tmp/diff_new_pack.K42qmJ/_old  2020-09-03 01:14:36.236480478 +0200
+++ /var/tmp/diff_new_pack.K42qmJ/_new  2020-09-03 01:14:36.240480479 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package docbook_5
 #
-# Copyright (c) 2017 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2020 SUSE LLC
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -12,35 +12,35 @@
 # license that conforms to the Open Source Definition (Version 1.9)
 # published by the Open Source Initiative.
 
-# Please submit bugfixes or comments via http://bugs.opensuse.org/
+# Please submit bugfixes or comments via https://bugs.opensuse.org/
 #
 
 
-%define schemaversions 5.0 5.1
-%define lastschemaversion 5.1
+%define schemaversions 5.0 5.1 5.2b10a2
+%define lastschemaversion 5.2b10a2
 #
 Name:           docbook_5
-Version:        5.1.0
+Version:        5.2b10a2
 Release:        0
 Summary:        DocBook Schemas (DTD, RELAX NG, W3C Schema) for Version 5.x
 License:        SUSE-Oasis-Specification-Notice
 Group:          Productivity/Publishing/DocBook
-Url:            http://www.oasis-open.org/docbook/
+URL:            https://www.oasis-open.org/docbook/
 # XML Catalog Entry
 Source1:        %{name}.xml
 Source2:        %{name}-README.SUSE
 # DocBook Sources
 Source3:        docbook-5.0-docs.tar.bz2
 Source4:        docbook-5.1-docs.tar.bz2
-Source5:        Makefile
+Source6:        Makefile
 # DB 5.0
 Source500:      docbook-5.0.tar.bz2
 # DB 5.1
 Source510:      docbook-5.1.tar.bz2
 #
+Source520:      docbook_5.2b10a2.tar.bz2
 # PATCH-FIX-OPENSUSE docbook_5-nvdl.patch change path to schema files
 Patch501:       %{name}-nvdl.patch
-
 #
 BuildRequires:  fdupes
 BuildRequires:  sgml-skel
@@ -83,11 +83,12 @@
 %prep
 %setup -q -n %{name} -c -T
 # Copy catalog, README, and Makefile
-cp -p %{SOURCE1} %{SOURCE2} %{SOURCE5} .
+cp -p %{SOURCE1} %{SOURCE2} %{SOURCE6} .
 
 # Unpack the sources:
 tar -xf %{SOURCE500}
 tar -xf %{SOURCE510}
+tar -xf %{SOURCE520}
 # Unpack the documentation:
 tar -xf %{SOURCE3}
 tar -xf %{SOURCE4}
@@ -131,9 +132,17 @@
 %{xml_docbook_xsd_dir}/5.0
 %{xml_docbook_nvdl_dir}/5.0
 # 5.1
-%{xml_docbook_rng_dir}/%{lastschemaversion}
+%{xml_docbook_rng_dir}/5.1
+%{xml_docbook_sch_dir}/5.1
+%{xml_docbook_nvdl_dir}/5.1
+#5.2b10a2
 %{xml_docbook_sch_dir}/%{lastschemaversion}
+%{xml_docbook_rng_dir}/%{lastschemaversion}
 %{xml_docbook_nvdl_dir}/%{lastschemaversion}
+#5.2
+%{xml_docbook_sch_dir}/5.2
+%{xml_docbook_rng_dir}/5.2
+%{xml_docbook_nvdl_dir}/5.2
 # Upgrade stylesheet
 %{xml_docbook_style_dir}/upgrade
 #

++++++ Makefile ++++++
--- /var/tmp/diff_new_pack.K42qmJ/_old  2020-09-03 01:14:36.280480494 +0200
+++ /var/tmp/diff_new_pack.K42qmJ/_new  2020-09-03 01:14:36.280480494 +0200
@@ -11,8 +11,8 @@
 
 SHELL         := /bin/bash
 PACKAGE       := docbook_5
-VERSION       := 5.1
-DB_VERSIONS   := 5.0 5.1
+VERSION       := 5.2b10a2
+DB_VERSIONS   := 5.0 5.1 5.2b10a2
 LAST_VER      := $(lastword $(DB_VERSIONS))
 CDIR          := $(shell pwd)
 #
@@ -69,6 +69,7 @@
 #
 LINKS          := $(foreach v,$(DB_VERSIONS),$(NVDL_PATH)/$(v)/docbook.rng \
                     $(NVDL_PATH)/$(v)/docbook.sch)
+COMPAT_LINKS   := $(NVDL_PATH)/5.2  $(RNG_PATH)/5.2  $(SCH_PATH)/5.2
 ALL_DB_SCHEMAS :=  $(DTD_SCHEMAS) $(XSD_SCHEMAS) \
                   $(RNG_SCHEMAS) $(SCH_SCHEMAS) $(NVDL_SCHEMAS) \
                   $(LINKS)
@@ -85,6 +86,7 @@
 install: $(BINDIR)/db4-entities.pl
 install: $(XSLT_PATH)/db4-upgrade.xsl
 install: $(ALL_DB_SCHEMAS)
+install: $(COMPAT_LINKS)
 install: | $(INST_DIRECTORIES)
        @echo "Ready."
 
@@ -101,6 +103,10 @@
 $(RNG_PATH)/5.1/%: docbook-5.1/rng/% | $(DB_RNG_PATHS)
        @echo "### Installing RNG 5.1 $<"
        install -m644 $< $@
+       
+$(RNG_PATH)/$(LAST_VER)/%: docbook-$(LAST_VER)/rng/% | $(DB_RNG_PATHS)
+       @echo "### Installing RNG $(LAST_VER) $<"
+       install -m644 $< $@
 
 $(SCH_PATH)/5.0/%: docbook-5.0/sch/% | $(DB_SCH_PATHS)
        @echo "### Installing Schematron 5.0 $<"
@@ -108,6 +114,10 @@
 $(SCH_PATH)/5.1/%: docbook-5.1/sch/% | $(DB_SCH_PATHS)
        @echo "### Installing Schematron 5.1 $<"
        install -m644 $< $@
+       
+$(SCH_PATH)/$(LAST_VER)/%: docbook-$(LAST_VER)/sch/%| $(DB_SCH_PATHS)
+       @echo "### Installing Schematron $(LAST_VER) $<"
+       install -m644 $< $@     
 
 $(NVDL_PATH)/5.0/%: docbook-5.0/% | $(DB_NVDL_PATHS)
        @echo "### Installing NVDL 5.0 $<"
@@ -115,6 +125,10 @@
 $(NVDL_PATH)/5.1/%: docbook-5.1/% | $(DB_NVDL_PATHS)
        @echo "### Installing NVDL 5.1 $<"
        install -m644 $< $@
+       
+$(NVDL_PATH)/$(LAST_VER)/%: docbook-$(LAST_VER)/% | $(DB_NVDL_PATHS)
+       @echo "### Installing NVDL $(LAST_VER) $<"
+       install -m644 $< $@     
 
 define NVDL_LINK_tmpl =
 $(NVDL_PATH)/$(1)/docbook.$(3): $(2)/$(1)/docbook.$(3)
@@ -129,16 +143,27 @@
        @echo "### Installing XML Catalog..."
        install -m644 $< $@
 
-
-$(BINDIR)/db4-entities.pl: docbook-$(LAST_VER)/tools/db4-entities.pl | 
$(BINDIR)
+$(BINDIR)/db4-entities.pl: docbook-5.1/tools/db4-entities.pl | $(BINDIR)
        @echo "### Installing script db4-entities.pl"
        install -m755 $< $@
-
-$(XSLT_PATH)/db4-upgrade.xsl: docbook-$(LAST_VER)/tools/db4-upgrade.xsl | 
$(XSLT_PATH)
+       
+$(XSLT_PATH)/db4-upgrade.xsl: docbook-5.1/tools/db4-upgrade.xsl | $(XSLT_PATH)
        @echo "### Installing upgrade stylesheet..."
        install -m644 $< $@
 
+$(NVDL_PATH)/5.2: $(NVDL_PATH)/$(LAST_VER) | $(DB_NVDL_PATHS)
+       @echo "### Creating a link to $(NVDL_PATH)/5.2"
+       ln -sv --relative $< $@
+
+$(RNG_PATH)/5.2: $(RNG_PATH)/$(LAST_VER) | $(DB_RNG_PATHS)
+       @echo "### Creating a link to $(RNG_PATH)/5.2"
+       ln -sv --relative $< $@
+
+$(SCH_PATH)/5.2: $(SCH_PATH)/$(LAST_VER) | $(DB_SCH_PATHS)
+       @echo "### Creating a link to $(SCH_PATH)/5.2"
+       ln -sv --relative $< $@
 
+       
 # create needed directories
 #
 $(INST_DIRECTORIES):

++++++ docbook_5.xml ++++++
--- /var/tmp/diff_new_pack.K42qmJ/_old  2020-09-03 01:14:36.324480510 +0200
+++ /var/tmp/diff_new_pack.K42qmJ/_new  2020-09-03 01:14:36.328480511 +0200
@@ -1,56 +1,99 @@
 <?xml version="1.0"?>
-<!DOCTYPE catalog PUBLIC "-//OASIS//DTD Entity Resolution XML Catalog 
V1.0//EN" "http://www.oasis-open.org/committees/entity/release/1.0/catalog.dtd";>
+<!DOCTYPE catalog PUBLIC
+  "-//OASIS//DTD Entity Resolution XML Catalog V1.0//EN"
+  "http://www.oasis-open.org/committees/entity/release/1.0/catalog.dtd";>
+
 <catalog xmlns="urn:oasis:names:tc:entity:xmlns:xml:catalog">
   <group id="docbook_5">
+
+    <!-- Version 5.0 -->
     <public publicId="-//OASIS//DTD DocBook XML 5.0//EN" 
uri="file:///usr/share/xml/docbook/schema/dtd/5.0/docbook.dtd"/>
     <rewriteSystem 
systemIdStartString="http://www.oasis-open.org/docbook/xml/5.0"; 
rewritePrefix="file:///usr/share/xml/docbook/schema/dtd/5.0"/>
-    <rewriteURI uriStartString="http://www.oasis-open.org/docbook/xml/5.0"; 
rewritePrefix="file:///usr/share/xml/docbook/schema/dtd/5.0"/>
+
+    <rewriteURI         
uriStartString="http://www.oasis-open.org/docbook/xml/5.0";      
rewritePrefix="file:///usr/share/xml/docbook/schema/dtd/5.0"/>
     <rewriteSystem 
systemIdStartString="http://www.oasis-open.org/docbook/xml/5.0/rng/"; 
rewritePrefix="file:///usr/share/xml/docbook/schema/rng/5.0/"/>
-    <rewriteURI 
uriStartString="http://www.oasis-open.org/docbook/xml/5.0/rng/"; 
rewritePrefix="file:///usr/share/xml/docbook/schema/rng/5.0/"/>
+    <rewriteURI         
uriStartString="http://www.oasis-open.org/docbook/xml/5.0/rng/"; 
rewritePrefix="file:///usr/share/xml/docbook/schema/rng/5.0/"/>
     <rewriteSystem 
systemIdStartString="http://www.oasis-open.org/docbook/xml/5.0/xsd/"; 
rewritePrefix="file:///usr/share/xml/docbook/schema/xsd/5.0/"/>
-    <rewriteURI 
uriStartString="http://www.oasis-open.org/docbook/xml/5.0/xsd/"; 
rewritePrefix="file:///usr/share/xml/docbook/schema/xsd/5.0/"/>
+    <rewriteURI         
uriStartString="http://www.oasis-open.org/docbook/xml/5.0/xsd/"; 
rewritePrefix="file:///usr/share/xml/docbook/schema/xsd/5.0/"/>
     <rewriteSystem 
systemIdStartString="http://www.oasis-open.org/docbook/xml/5.0/sch/"; 
rewritePrefix="file:///usr/share/xml/docbook/schema/sch/5.0/"/>
-    <rewriteURI 
uriStartString="http://www.oasis-open.org/docbook/xml/5.0/sch/"; 
rewritePrefix="file:///usr/share/xml/docbook/schema/sch/5.0/"/>
-    <rewriteSystem systemIdStartString="http://www.docbook.org/xml/5.0"; 
rewritePrefix="file:///usr/share/xml/docbook/schema/dtd/5.0"/>
-    <rewriteURI uriStartString="http://www.docbook.org/xml/5.0"; 
rewritePrefix="file:///usr/share/xml/docbook/schema/dtd/5.0"/>
+    <rewriteURI         
uriStartString="http://www.oasis-open.org/docbook/xml/5.0/sch/"; 
rewritePrefix="file:///usr/share/xml/docbook/schema/sch/5.0/"/>
+
+    <rewriteSystem systemIdStartString="http://www.docbook.org/xml/5.0";      
rewritePrefix="file:///usr/share/xml/docbook/schema/dtd/5.0"/>
+    <rewriteURI         uriStartString="http://www.docbook.org/xml/5.0";      
rewritePrefix="file:///usr/share/xml/docbook/schema/dtd/5.0"/>
     <rewriteSystem systemIdStartString="http://www.docbook.org/xml/5.0/rng/"; 
rewritePrefix="file:///usr/share/xml/docbook/schema/rng/5.0/"/>
-    <rewriteURI uriStartString="http://www.docbook.org/xml/5.0/rng/"; 
rewritePrefix="file:///usr/share/xml/docbook/schema/rng/5.0/"/>
+    <rewriteURI         uriStartString="http://www.docbook.org/xml/5.0/rng/"; 
rewritePrefix="file:///usr/share/xml/docbook/schema/rng/5.0/"/>
     <rewriteSystem systemIdStartString="http://www.docbook.org/xml/5.0/xsd/"; 
rewritePrefix="file:///usr/share/xml/docbook/schema/xsd/5.0/"/>
-    <rewriteURI uriStartString="http://www.docbook.org/xml/5.0/xsd/"; 
rewritePrefix="file:///usr/share/xml/docbook/schema/xsd/5.0/"/>
+    <rewriteURI         uriStartString="http://www.docbook.org/xml/5.0/xsd/"; 
rewritePrefix="file:///usr/share/xml/docbook/schema/xsd/5.0/"/>
     <rewriteSystem systemIdStartString="http://www.docbook.org/xml/5.0/sch/"; 
rewritePrefix="file:///usr/share/xml/docbook/schema/sch/5.0/"/>
-    <rewriteURI uriStartString="http://www.docbook.org/xml/5.0/sch/"; 
rewritePrefix="file:///usr/share/xml/docbook/schema/sch/5.0/"/>
-    <rewriteSystem systemIdStartString="http://docbook.org/xml/5.0"; 
rewritePrefix="file:///usr/share/xml/docbook/schema/dtd/5.0"/>
-    <rewriteURI uriStartString="http://docbook.org/xml/5.0"; 
rewritePrefix="file:///usr/share/xml/docbook/schema/dtd/5.0"/>
-    <rewriteSystem systemIdStartString="http://docbook.org/xml/5.0/rng/"; 
rewritePrefix="file:///usr/share/xml/docbook/schema/rng/5.0/"/>
-    <rewriteURI uriStartString="http://docbook.org/xml/5.0/rng/"; 
rewritePrefix="file:///usr/share/xml/docbook/schema/rng/5.0/"/>
-    <rewriteSystem systemIdStartString="http://docbook.org/xml/5.0/xsd/"; 
rewritePrefix="file:///usr/share/xml/docbook/schema/xsd/5.0/"/>
-    <rewriteURI uriStartString="http://docbook.org/xml/5.0/xsd/"; 
rewritePrefix="file:///usr/share/xml/docbook/schema/xsd/5.0/"/>
-    <rewriteSystem systemIdStartString="http://docbook.org/xml/5.0/sch/"; 
rewritePrefix="file:///usr/share/xml/docbook/schema/sch/5.0/"/>
-    <rewriteURI uriStartString="http://docbook.org/xml/5.0/sch/"; 
rewritePrefix="file:///usr/share/xml/docbook/schema/sch/5.0/"/>
-    <public publicId="-//OASIS//DTD DocBook XML 5.1//EN" 
uri="file:///usr/share/xml/docbook/schema/dtd/5.1/docbook.dtd"/>
-    <rewriteSystem 
systemIdStartString="http://www.oasis-open.org/docbook/xml/5.1"; 
rewritePrefix="file:///usr/share/xml/docbook/schema/dtd/5.1"/>
-    <rewriteURI uriStartString="http://www.oasis-open.org/docbook/xml/5.1"; 
rewritePrefix="file:///usr/share/xml/docbook/schema/dtd/5.1"/>
+    <rewriteURI         uriStartString="http://www.docbook.org/xml/5.0/sch/"; 
rewritePrefix="file:///usr/share/xml/docbook/schema/sch/5.0/"/>
+    <rewriteSystem systemIdStartString="http://docbook.org/xml/5.0";          
rewritePrefix="file:///usr/share/xml/docbook/schema/dtd/5.0"/>
+    <rewriteURI         uriStartString="http://docbook.org/xml/5.0";          
rewritePrefix="file:///usr/share/xml/docbook/schema/dtd/5.0"/>
+    <rewriteSystem systemIdStartString="http://docbook.org/xml/5.0/rng/";     
rewritePrefix="file:///usr/share/xml/docbook/schema/rng/5.0/"/>
+    <rewriteURI         uriStartString="http://docbook.org/xml/5.0/rng/";     
rewritePrefix="file:///usr/share/xml/docbook/schema/rng/5.0/"/>
+    <rewriteSystem systemIdStartString="http://docbook.org/xml/5.0/xsd/";     
rewritePrefix="file:///usr/share/xml/docbook/schema/xsd/5.0/"/>
+    <rewriteURI         uriStartString="http://docbook.org/xml/5.0/xsd/";     
rewritePrefix="file:///usr/share/xml/docbook/schema/xsd/5.0/"/>
+    <rewriteSystem systemIdStartString="http://docbook.org/xml/5.0/sch/";     
rewritePrefix="file:///usr/share/xml/docbook/schema/sch/5.0/"/>
+    <rewriteURI         uriStartString="http://docbook.org/xml/5.0/sch/";     
rewritePrefix="file:///usr/share/xml/docbook/schema/sch/5.0/"/>
+
+    <system systemId="http://www.oasis-open.org/docbook/xml/5.0/docbook.nvdl"; 
uri="file:///usr/share/xml/docbook/schema/nvdl/5.0/docbook.nvdl"/>
+    <system systemId="http://docbook.org/xml/5.0/docbook.nvdl";                
uri="file:///usr/share/xml/docbook/schema/nvdl/5.0/docbook.nvdl"/>
+    <system systemId="http://www.docbook.org/xml/5.0/docbook.nvdl";            
uri="file:///usr/share/xml/docbook/schema/nvdl/5.0/docbook.nvdl"/>
+
+
+    <!-- Version 5.1 -->
     <rewriteSystem 
systemIdStartString="http://www.oasis-open.org/docbook/xml/5.1/rng/"; 
rewritePrefix="file:///usr/share/xml/docbook/schema/rng/5.1/"/>
-    <rewriteURI 
uriStartString="http://www.oasis-open.org/docbook/xml/5.1/rng/"; 
rewritePrefix="file:///usr/share/xml/docbook/schema/rng/5.1/"/>
-    <rewriteSystem 
systemIdStartString="http://www.oasis-open.org/docbook/xml/5.1/xsd/"; 
rewritePrefix="file:///usr/share/xml/docbook/schema/xsd/5.1/"/>
-    <rewriteURI 
uriStartString="http://www.oasis-open.org/docbook/xml/5.1/xsd/"; 
rewritePrefix="file:///usr/share/xml/docbook/schema/xsd/5.1/"/>
+    <rewriteURI         
uriStartString="http://www.oasis-open.org/docbook/xml/5.1/rng/"; 
rewritePrefix="file:///usr/share/xml/docbook/schema/rng/5.1/"/>
     <rewriteSystem 
systemIdStartString="http://www.oasis-open.org/docbook/xml/5.1/sch/"; 
rewritePrefix="file:///usr/share/xml/docbook/schema/sch/5.1/"/>
-    <rewriteURI 
uriStartString="http://www.oasis-open.org/docbook/xml/5.1/sch/"; 
rewritePrefix="file:///usr/share/xml/docbook/schema/sch/5.1/"/>
-    <rewriteSystem systemIdStartString="http://www.docbook.org/xml/5.1"; 
rewritePrefix="file:///usr/share/xml/docbook/schema/dtd/5.1"/>
-    <rewriteURI uriStartString="http://www.docbook.org/xml/5.1"; 
rewritePrefix="file:///usr/share/xml/docbook/schema/dtd/5.1"/>
-    <rewriteSystem systemIdStartString="http://www.docbook.org/xml/5.1/rng/"; 
rewritePrefix="file:///usr/share/xml/docbook/schema/rng/5.1/"/>
-    <rewriteURI uriStartString="http://www.docbook.org/xml/5.1/rng/"; 
rewritePrefix="file:///usr/share/xml/docbook/schema/rng/5.1/"/>
-    <rewriteSystem systemIdStartString="http://www.docbook.org/xml/5.1/xsd/"; 
rewritePrefix="file:///usr/share/xml/docbook/schema/xsd/5.1/"/>
-    <rewriteURI uriStartString="http://www.docbook.org/xml/5.1/xsd/"; 
rewritePrefix="file:///usr/share/xml/docbook/schema/xsd/5.1/"/>
-    <rewriteSystem systemIdStartString="http://www.docbook.org/xml/5.1/sch/"; 
rewritePrefix="file:///usr/share/xml/docbook/schema/sch/5.1/"/>
-    <rewriteURI uriStartString="http://www.docbook.org/xml/5.1/sch/"; 
rewritePrefix="file:///usr/share/xml/docbook/schema/sch/5.1/"/>
-    <rewriteSystem systemIdStartString="http://docbook.org/xml/5.1"; 
rewritePrefix="file:///usr/share/xml/docbook/schema/dtd/5.1"/>
-    <rewriteURI uriStartString="http://docbook.org/xml/5.1"; 
rewritePrefix="file:///usr/share/xml/docbook/schema/dtd/5.1"/>
-    <rewriteSystem systemIdStartString="http://docbook.org/xml/5.1/rng/"; 
rewritePrefix="file:///usr/share/xml/docbook/schema/rng/5.1/"/>
-    <rewriteURI uriStartString="http://docbook.org/xml/5.1/rng/"; 
rewritePrefix="file:///usr/share/xml/docbook/schema/rng/5.1/"/>
-    <rewriteSystem systemIdStartString="http://docbook.org/xml/5.1/xsd/"; 
rewritePrefix="file:///usr/share/xml/docbook/schema/xsd/5.1/"/>
-    <rewriteURI uriStartString="http://docbook.org/xml/5.1/xsd/"; 
rewritePrefix="file:///usr/share/xml/docbook/schema/xsd/5.1/"/>
-    <rewriteSystem systemIdStartString="http://docbook.org/xml/5.1/sch/"; 
rewritePrefix="file:///usr/share/xml/docbook/schema/sch/5.1/"/>
-    <rewriteURI uriStartString="http://docbook.org/xml/5.1/sch/"; 
rewritePrefix="file:///usr/share/xml/docbook/schema/sch/5.1/"/>
+    <rewriteURI         
uriStartString="http://www.oasis-open.org/docbook/xml/5.1/sch/"; 
rewritePrefix="file:///usr/share/xml/docbook/schema/sch/5.1/"/>
+
+    <rewriteSystem systemIdStartString="http://www.docbook.org/xml/5.1/rng/";   
         rewritePrefix="file:///usr/share/xml/docbook/schema/rng/5.1/"/>
+    <rewriteURI         uriStartString="http://www.docbook.org/xml/5.1/rng/";   
         rewritePrefix="file:///usr/share/xml/docbook/schema/rng/5.1/"/>
+    <rewriteSystem systemIdStartString="http://www.docbook.org/xml/5.1/sch/";   
         rewritePrefix="file:///usr/share/xml/docbook/schema/sch/5.1/"/>
+    <rewriteURI         uriStartString="http://www.docbook.org/xml/5.1/sch/";   
         rewritePrefix="file:///usr/share/xml/docbook/schema/sch/5.1/"/>
+    <rewriteSystem systemIdStartString="http://docbook.org/xml/5.1/rng/";       
         rewritePrefix="file:///usr/share/xml/docbook/schema/rng/5.1/"/>
+    <rewriteURI         uriStartString="http://docbook.org/xml/5.1/rng/";       
         rewritePrefix="file:///usr/share/xml/docbook/schema/rng/5.1/"/>
+    <rewriteSystem systemIdStartString="http://docbook.org/xml/5.1/sch/";       
         rewritePrefix="file:///usr/share/xml/docbook/schema/sch/5.1/"/>
+    <rewriteURI         uriStartString="http://docbook.org/xml/5.1/sch/";       
         rewritePrefix="file:///usr/share/xml/docbook/schema/sch/5.1/"/>
+
+    <system systemId="http://www.oasis-open.org/docbook/xml/5.1/docbook.nvdl";  
         uri="file:///usr/share/xml/docbook/schema/nvdl/5.1/docbook.nvdl"/>
+    <system systemId="http://docbook.org/xml/5.1/docbook.nvdl";                 
         uri="file:///usr/share/xml/docbook/schema/nvdl/5.1/docbook.nvdl"/>
+    <system systemId="http://www.docbook.org/xml/5.1/docbook.nvdl";             
         uri="file:///usr/share/xml/docbook/schema/nvdl/5.1/docbook.nvdl"/>
+
+
+    <!-- Version 5.2 -->
+    <rewriteSystem 
systemIdStartString="http://www.oasis-open.org/docbook/xml/5.2/rng/"; 
rewritePrefix="file:///usr/share/xml/docbook/schema/rng/5.2/"/>
+    <rewriteURI         
uriStartString="http://www.oasis-open.org/docbook/xml/5.2/rng/"; 
rewritePrefix="file:///usr/share/xml/docbook/schema/rng/5.2/"/>
+    <rewriteSystem 
systemIdStartString="http://www.oasis-open.org/docbook/xml/5.2/sch/"; 
rewritePrefix="file:///usr/share/xml/docbook/schema/sch/5.2/"/>
+
+    <rewriteSystem systemIdStartString="http://www.docbook.org/xml/5.2/rng/";   
         rewritePrefix="file:///usr/share/xml/docbook/schema/rng/5.2/"/>
+    <rewriteURI         uriStartString="http://www.docbook.org/xml/5.2/rng/";   
         rewritePrefix="file:///usr/share/xml/docbook/schema/rng/5.2/"/>
+    <rewriteSystem systemIdStartString="http://www.docbook.org/xml/5.2/sch/";   
         rewritePrefix="file:///usr/share/xml/docbook/schema/sch/5.2/"/>
+    <rewriteURI         uriStartString="http://www.docbook.org/xml/5.2/sch/";   
         rewritePrefix="file:///usr/share/xml/docbook/schema/sch/5.2/"/>
+    <rewriteSystem systemIdStartString="http://docbook.org/xml/5.2/rng/";       
         rewritePrefix="file:///usr/share/xml/docbook/schema/rng/5.2/"/>
+    <rewriteURI         uriStartString="http://docbook.org/xml/5.2/rng/";       
         rewritePrefix="file:///usr/share/xml/docbook/schema/rng/5.2/"/>
+    <rewriteSystem systemIdStartString="http://docbook.org/xml/5.2/sch/";       
         rewritePrefix="file:///usr/share/xml/docbook/schema/sch/5.2/"/>
+    <rewriteURI         uriStartString="http://docbook.org/xml/5.2/sch/";       
         rewritePrefix="file:///usr/share/xml/docbook/schema/sch/5.2/"/>
+
+    <system systemId="http://www.oasis-open.org/docbook/xml/5.2/docbook.nvdl";  
         uri="file:///usr/share/xml/docbook/schema/nvdl/5.2/docbook.nvdl"/>
+    <system systemId="http://docbook.org/xml/5.2/docbook.nvdl";                 
         uri="file:///usr/share/xml/docbook/schema/nvdl/5.2/docbook.nvdl"/>
+    <system systemId="http://www.docbook.org/xml/5.2/docbook.nvdl";             
         uri="file:///usr/share/xml/docbook/schema/nvdl/5.2/docbook.nvdl"/>
+
+    <!-- Version 5.2b10a2 -->
+    <rewriteSystem 
systemIdStartString="http://www.oasis-open.org/docbook/xml/5.2b10a2/rng/"; 
rewritePrefix="file:///usr/share/xml/docbook/schema/rng/5.2b10a2/"/>
+    <rewriteURI         
uriStartString="http://www.oasis-open.org/docbook/xml/5.2b10a2/rng/"; 
rewritePrefix="file:///usr/share/xml/docbook/schema/rng/5.2b10a2/"/>
+    <rewriteSystem 
systemIdStartString="http://www.oasis-open.org/docbook/xml/5.2b10a2/sch/"; 
rewritePrefix="file:///usr/share/xml/docbook/schema/sch/5.2b10a2/"/>
+    <rewriteSystem 
systemIdStartString="http://www.docbook.org/xml/5.2b10a2/rng/";            
rewritePrefix="file:///usr/share/xml/docbook/schema/rng/5.2b10a2/"/>
+    <rewriteURI         
uriStartString="http://www.docbook.org/xml/5.2b10a2/rng/";            
rewritePrefix="file:///usr/share/xml/docbook/schema/rng/5.2b10a2/"/>
+    <rewriteSystem 
systemIdStartString="http://www.docbook.org/xml/5.2b10a2/sch/";            
rewritePrefix="file:///usr/share/xml/docbook/schema/sch/5.2b10a2/"/>
+    <rewriteURI         
uriStartString="http://www.docbook.org/xml/5.2b10a2/sch/";            
rewritePrefix="file:///usr/share/xml/docbook/schema/sch/5.2b10a2/"/>
+    <rewriteSystem systemIdStartString="http://docbook.org/xml/5.2b10a2/rng/";  
              
rewritePrefix="file:///usr/share/xml/docbook/schema/rng/5.2b10a2/"/>
+    <rewriteURI         uriStartString="http://docbook.org/xml/5.2b10a2/rng/";  
              
rewritePrefix="file:///usr/share/xml/docbook/schema/rng/5.2b10a2/"/>
+    <rewriteSystem systemIdStartString="http://docbook.org/xml/5.2b10a2/sch/";  
              
rewritePrefix="file:///usr/share/xml/docbook/schema/sch/5.2b10a2/"/>
+    <rewriteURI         uriStartString="http://docbook.org/xml/5.2b10a2/sch/";  
              
rewritePrefix="file:///usr/share/xml/docbook/schema/sch/5.2b10a2/"/>
+
+    <system 
systemId="http://www.oasis-open.org/docbook/xml/5.2b10a2/docbook.nvdl";          
 uri="file:///usr/share/xml/docbook/schema/nvdl/5.2b10a2/docbook.nvdl"/>
+    <system systemId="http://docbook.org/xml/5.2b10a2/docbook.nvdl";            
              
uri="file:///usr/share/xml/docbook/schema/nvdl/5.2b10a2/docbook.nvdl"/>
+    <system systemId="http://www.docbook.org/xml/5.2b10a2/docbook.nvdl";        
              
uri="file:///usr/share/xml/docbook/schema/nvdl/5.2b10a2/docbook.nvdl"/>
+
   </group>
 </catalog>


Reply via email to