summaryrefslogtreecommitdiff
path: root/schema
diff options
context:
space:
mode:
authorMichael Stahl <Michael.Stahl@cib.de>2018-07-03 14:58:25 +0200
committerMichael Stahl <Michael.Stahl@cib.de>2018-07-03 15:05:20 +0200
commitfb84f580025503673ba45684b7c18c41b27c2a06 (patch)
treeba2ea3ce606c2e38036be7eb3bac141909c5b5a1 /schema
parentcd718dcdd2261b06f6f1bfa8be2a37c365304c1c (diff)
schema: add README, as requested by Noel
Change-Id: If3270ad1d20002dc39a5b4326b0cb42753112e93 Reviewed-on: https://gerrit.libreoffice.org/56868 Reviewed-by: Michael Stahl <Michael.Stahl@cib.de> Tested-by: Michael Stahl <Michael.Stahl@cib.de>
Diffstat (limited to 'schema')
-rw-r--r--schema/README47
1 files changed, 47 insertions, 0 deletions
diff --git a/schema/README b/schema/README
new file mode 100644
index 000000000000..393039b3d030
--- /dev/null
+++ b/schema/README
@@ -0,0 +1,47 @@
+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
+- liberoffice: 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
+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
+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
+add another attribute like this:
+
+ <rng:define name="draw-enhanced-geometry-attlist" combine="interleave">
+ <rng:optional>
+ <rng:attribute name="drawooo:sub-view-size">
+ <rng:ref name="string"/>
+ </rng:attribute>
+ </rng:optional>
+ </rng:define>
+
+Currently only the features that are actually exported in the unit tests have
+been added to the schema; there is still some work to do here to add
+everything; the crashtesting script also does ODF validation of all files and
+now also uses the custom schema.
+
+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
+