summaryrefslogtreecommitdiff
path: root/schema
diff options
context:
space:
mode:
authorHossein <hossein.ir@gmail.com>2021-03-29 21:55:26 +0430
committerAdolfo Jayme Barrientos <fitojb@ubuntu.com>2021-04-07 17:47:16 +0200
commitea5641baeef73af60d025d185901a303844e2d85 (patch)
tree94b343b35e7b8805beb9a1745fe1de2f382574fb /schema
parent33da78c21f4243a3e469fb7df79ed1745df70078 (diff)
Updated README.md files to represent current code / use Markdown format
Previously, all of the README files have been renamed to README.md and now, the contents of these files were changed to use Markdown format. Other than format inconsistency, some README.md files lacked information about modules, or were out of date. By using LibreOffice / OpenOffice wiki and other documentation websites, these files were updated. Now every README.md file has a title, and some description. The top-level README.md file is changed to add links to the modules. The result of processing the Markdown format README.md files can be seen at: https://docs.libreoffice.org/ Change-Id: Ic3b0c3c064a2498d6a435253b041df010cd7797a Reviewed-on: https://gerrit.libreoffice.org/c/core/+/113424 Tested-by: Jenkins Reviewed-by: Michael Stahl <michael.stahl@allotropia.de> Reviewed-by: Adolfo Jayme Barrientos <fitojb@ubuntu.com>
Diffstat (limited to 'schema')
-rw-r--r--schema/README.md25
1 files changed, 14 insertions, 11 deletions
diff --git a/schema/README.md b/schema/README.md
index f32038ed82c8..0df864e087b3 100644
--- a/schema/README.md
+++ b/schema/README.md
@@ -1,20 +1,23 @@
-schemas that can be used for validating ODF files
+# Schemas for Validating ODF Files
+
+Schemas that can be used for validating ODF files
subdirs:
-- mathml2: W3C MathML 2.0 XML Schema (needed for Math embedded objects)
-- odf1.0, odf1.1, odf1.2: official OASIS RelaxNG schemas
-- odf1.3: current OASIS draft ODF 1.3 RelaxNG schema
-- libreoffice: draft ODF schema, with additional LO extensions
-The extension schema in "libreoffice/" is used by all unit tests if
---with-export-validation is given, which is the default.
+- `mathml2`: W3C MathML 2.0 XML Schema (needed for Math embedded objects)
+- `odf1.0`, `odf1.1`, `odf1.2`: official OASIS RelaxNG schemas
+- `odf1.3`: current OASIS draft ODF 1.3 RelaxNG schema
+- `libreoffice`: draft ODF schema, with additional LO extensions
+
+The extension schema in `libreoffice/` is used by all unit tests if
+`--with-export-validation` is given, which is the default.
Notably this means that if you add a new feature to the ODF filters and you add
the required unit test for the new feature, then most likely the test will fail
with a complaint from the validator; in this case the schema needs to be
updated to contain the new elements and attributes.
-The extension schema uses the RelaxNG "include" feature to refer to the ODF
+The extension schema uses the `RelaxNG` "`include`" feature to refer to the ODF
schema; this means that it only contains those parts of the schema that
actually need to be changed - this works well in many cases because the ODF
schema is quite well structured with many named patterns, but unfortunately
@@ -22,7 +25,7 @@ there are a few places where that isn't the case and large chunks needed to be
copied to override them.
In the easy case, to add an attribute you just want to search for the
-corresponding element, which will have a "foo-attlist" named pattern, and then
+corresponding element, which will have a "`foo-attlist`" named pattern, and then
add another attribute like this:
<rng:define name="draw-enhanced-geometry-attlist" combine="interleave">
@@ -42,6 +45,6 @@ Unfortunately it turned out that there are a lot of extensions already for
which no proposal exists [1], and in many cases not even an entry on the Wiki
[2], so clearly something like this extension schema is needed.
-[1] git grep TODO schema/libreoffice
-[2] https://wiki.documentfoundation.org/Development/ODF_Implementer_Notes/List_of_LibreOffice_ODF_Extensions
+[1] `git grep TODO schema/libreoffice`
+[2] <https://wiki.documentfoundation.org/Development/ODF_Implementer_Notes/List_of_LibreOffice_ODF_Extensions>