diff options
| author | Yasuhiro KIMURA | 2020-11-01 14:01:31 +0100 |
|---|---|---|
| committer | Lars Ingebrigtsen | 2020-11-01 14:01:31 +0100 |
| commit | 43a1b79f56cb1ac6530e8b41f3c329890a00a8f6 (patch) | |
| tree | 238a12d03e960183ae3d530c7343eb1cd1578b27 | |
| parent | 7a3d8559c9abac17c4ef2b951554912a87a9995d (diff) | |
| download | emacs-43a1b79f56cb1ac6530e8b41f3c329890a00a8f6.tar.gz emacs-43a1b79f56cb1ac6530e8b41f3c329890a00a8f6.zip | |
Recover the contents of the schemas.xml file
* etc/schema/schemas.xml: Recover the file, which was apparently
(mostly) removed by mistake by commit 165f738382 (bug#42851).
Copyright-paperwork-exempt: yes
| -rw-r--r-- | etc/schema/schemas.xml | 58 |
1 files changed, 58 insertions, 0 deletions
diff --git a/etc/schema/schemas.xml b/etc/schema/schemas.xml index f1e0ed7856f..40175b056b1 100644 --- a/etc/schema/schemas.xml +++ b/etc/schema/schemas.xml | |||
| @@ -1,7 +1,65 @@ | |||
| 1 | <?xml version="1.0"?> | 1 | <?xml version="1.0"?> |
| 2 | <!-- Copyright (C) 2003-2004, 2007-2020 Free Software Foundation, Inc. | ||
| 3 | |||
| 4 | This file is part of GNU Emacs. | ||
| 5 | |||
| 6 | GNU Emacs is free software: you can redistribute it and/or modify | ||
| 7 | it under the terms of the GNU General Public License as published by | ||
| 8 | the Free Software Foundation, either version 3 of the License, or | ||
| 9 | (at your option) any later version. | ||
| 10 | |||
| 11 | GNU Emacs is distributed in the hope that it will be useful, | ||
| 12 | but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
| 13 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
| 14 | GNU General Public License for more details. | ||
| 15 | |||
| 16 | You should have received a copy of the GNU General Public License | ||
| 17 | along with GNU Emacs. If not, see <https://www.gnu.org/licenses/>. --> | ||
| 18 | |||
| 2 | <locatingRules xmlns="http://thaiopensource.com/ns/locating-rules/1.0"> | 19 | <locatingRules xmlns="http://thaiopensource.com/ns/locating-rules/1.0"> |
| 20 | <transformURI fromPattern="*.xml" toPattern="*.rnc"/> | ||
| 21 | |||
| 22 | <uri pattern="*.xsl" typeId="XSLT"/> | ||
| 23 | <uri pattern="*.html" typeId="XHTML"/> | ||
| 24 | <uri pattern="*.rng" typeId="RELAX NG"/> | ||
| 25 | <uri pattern="*.rdf" typeId="RDF"/> | ||
| 26 | <uri pattern="*.dbk" typeId="DocBook"/> | ||
| 27 | |||
| 28 | <namespace ns="http://www.w3.org/1999/XSL/Transform" typeId="XSLT"/> | ||
| 29 | <namespace ns="http://www.w3.org/1999/02/22-rdf-syntax-ns#" typeId="RDF"/> | ||
| 30 | <namespace ns="http://www.w3.org/1999/xhtml" typeId="XHTML"/> | ||
| 31 | <namespace ns="http://relaxng.org/ns/structure/1.0" typeId="RELAX NG"/> | ||
| 32 | <namespace ns="http://thaiopensource.com/ns/locating-rules/1.0" | ||
| 33 | uri="locate.rnc"/> | ||
| 34 | |||
| 35 | <documentElement localName="stylesheet" typeId="XSLT"/> | ||
| 36 | <documentElement prefix="xsl" localName="transform" typeId="XSLT"/> | ||
| 37 | |||
| 38 | <documentElement localName="html" typeId="XHTML"/> | ||
| 39 | |||
| 40 | <documentElement localName="grammar" typeId="RELAX NG"/> | ||
| 41 | |||
| 42 | <documentElement prefix="" localName="article" typeId="DocBook"/> | ||
| 43 | <documentElement prefix="" localName="book" typeId="DocBook"/> | ||
| 44 | <documentElement prefix="" localName="chapter" typeId="DocBook"/> | ||
| 45 | <documentElement prefix="" localName="part" typeId="DocBook"/> | ||
| 46 | <documentElement prefix="" localName="refentry" typeId="DocBook"/> | ||
| 47 | <documentElement prefix="" localName="section" typeId="DocBook"/> | ||
| 48 | |||
| 49 | <documentElement localName="RDF" typeId="RDF"/> | ||
| 50 | <documentElement prefix="rdf" typeId="RDF"/> | ||
| 51 | |||
| 52 | <documentElement localName="locatingRules" uri="locate.rnc"/> | ||
| 53 | |||
| 54 | <typeId id="XSLT" uri="xslt.rnc"/> | ||
| 55 | <typeId id="RELAX NG" uri="relaxng.rnc"/> | ||
| 56 | <typeId id="XHTML" uri="xhtml.rnc"/> | ||
| 57 | <typeId id="DocBook" uri="docbook.rnc"/> | ||
| 58 | <typeId id="RDF" uri="rdfxml.rnc"/> | ||
| 59 | |||
| 3 | <documentElement prefix="office" typeId="OpenDocument"/> | 60 | <documentElement prefix="office" typeId="OpenDocument"/> |
| 4 | <documentElement prefix="manifest" localName="manifest" typeId="OpenDocument Manifest"/> | 61 | <documentElement prefix="manifest" localName="manifest" typeId="OpenDocument Manifest"/> |
| 5 | <typeId id="OpenDocument" uri="od-schema-v1.2-os.rnc"/> | 62 | <typeId id="OpenDocument" uri="od-schema-v1.2-os.rnc"/> |
| 6 | <typeId id="OpenDocument Manifest" uri="od-manifest-schema-v1.2-os.rnc"/> | 63 | <typeId id="OpenDocument Manifest" uri="od-manifest-schema-v1.2-os.rnc"/> |
| 64 | |||
| 7 | </locatingRules> | 65 | </locatingRules> |