From 0cc327f796ecd27191b3666b2e3620d612bead43 Mon Sep 17 00:00:00 2001 From: Svante Schubert Date: Tue, 27 Sep 2022 11:29:34 +0200 Subject: [PATCH 1/4] Adding MSV visitor descendants to HTML functionality for ODF reference in HTML - requires MSV prefixes from branch namespace-prefix2 of github.com/xmlark/msv --- ...ressionVisitorDescendantsAsHTMLString.java | 634 ++++++++++++++++++ .../grammar/TinkerPopGraph.java | 2 +- .../schema2template/grammar/XMLModel.java | 53 +- .../grammar/MSVDescendantsToHTMLTest.java | 132 ++++ .../grammar/MSVRunTimeDumpTest.java | 2 +- 5 files changed, 814 insertions(+), 9 deletions(-) create mode 100644 generator/schema2template/src/main/java/schema2template/grammar/MSVExpressionVisitorDescendantsAsHTMLString.java create mode 100644 generator/schema2template/src/test/java/schema2template/grammar/MSVDescendantsToHTMLTest.java diff --git a/generator/schema2template/src/main/java/schema2template/grammar/MSVExpressionVisitorDescendantsAsHTMLString.java b/generator/schema2template/src/main/java/schema2template/grammar/MSVExpressionVisitorDescendantsAsHTMLString.java new file mode 100644 index 0000000000..f4e334f02c --- /dev/null +++ b/generator/schema2template/src/main/java/schema2template/grammar/MSVExpressionVisitorDescendantsAsHTMLString.java @@ -0,0 +1,634 @@ +/** + * ********************************************************************** + * + *

DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER + * + *

Copyright 2009, 2010 Oracle and/or its affiliates. All rights reserved. + * + *

Use is subject to license terms. + * + *

Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file + * except in compliance with the License. You may obtain a copy of the License at + * http://www.apache.org/licenses/LICENSE-2.0. You can also obtain a copy of the License at + * http://odftoolkit.org/docs/license.txt + * + *

Unless required by applicable law or agreed to in writing, software distributed under the + * License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either + * express or implied. + * + *

See the License for the specific language governing permissions and limitations under the + * License. + * + *

********************************************************************** + */ +package schema2template.grammar; + +import com.sun.msv.datatype.SerializationContext; +import com.sun.msv.datatype.xsd.*; +import com.sun.msv.grammar.*; +import com.sun.msv.grammar.util.ExpressionWalker; +import java.util.*; +import org.relaxng.datatype.Datatype; +import org.relaxng.datatype.ValidationContext; + +/** + * This visitor visits an Expression and returns an HTML String with its children (or descendants) + * relationship as brief pseudo reg-ex for documentation purpose. + * + *

Usage example: (String) myExpression.visit(myMSVExpressionVisitorDescendantsAsHTMLString, + * XMLModel.getHeadsOfIslands(grammar), 1) + * + *

The HeadOfIslands are necessary to avoid endless loops, where islands are parts of the grammar + * that are being reused/referenced multiple times. The final parameter express how many child + * element level can be found before stopping. 1 will stop right after writing the name of the first + * encountered child element. + * + *

Please note that you do not use any method of this class directly! + */ +public class MSVExpressionVisitorDescendantsAsHTMLString extends ExpressionWalker { + + // ExpressionWalker class traverses expressions in depth-first order. + // So this invocation traverses the all reachable expressions from + // the top level expression. + public MSVExpressionVisitorDescendantsAsHTMLString( + StringBuilder builder, Set headsOfIslands) { + this(builder, headsOfIslands, 1); + } + + public MSVExpressionVisitorDescendantsAsHTMLString( + StringBuilder builder, Set headsOfIslands, int maxElementDepth) { + this.builder = builder; + this.maxElementDepth = maxElementDepth; + // an island is a sub(tree) of the grammar being reused and should be written only once to avoid + // endless-loops + this.headsOfIslands = headsOfIslands; + } + + StringBuilder builder = null; + int maxElementDepth = 1; + int currentElementDepth = 0; + final Set headsOfIslands; + final Set islandHeadPassed = new HashSet(); + + boolean isWithinAttributeValue = false; + + public void onElement(ElementExp exp) { + String elementName = evaluateNameClass(exp.getNameClass()); + builder.append("<" + elementName + " "); + // prevent infinite loops by marking earlier multiple used/referenced expression (being + // elements/references) as "head of islands" + boolean isIslandHead = headsOfIslands.contains(exp); + if ((!isIslandHead || (isIslandHead && !islandHeadPassed.contains(exp))) + && (maxElementDepth > currentElementDepth)) { + currentElementDepth++; + if (isIslandHead) { + // making sure that an island is only entered once + islandHeadPassed.add(exp); + } + visitUnary(exp.contentModel); + } else { + builder.append(" ... "); + } + builder.append(">"); + } + + public void onEpsilon() { + builder.append("EMPTY"); + } + + public void onNullSet() { + builder.append("\nEXPR_notAllowed"); + } + + public void onAnyString() { + builder.append("TEXT"); + } + + public void onInterleave(InterleaveExp exp) { + visitBinExp("interleave", exp, InterleaveExp.class); + } + + public void onConcur(ConcurExp exp) { + throw new IllegalArgumentException("the grammar includes concur, which is not supported"); + } + + public void onList(ListExp exp) { + builder.append("\nSTART_list"); + visitUnary(exp.exp); + builder.append("\nEND_list"); + } + + protected void onOptional(Expression exp) { + if (exp instanceof OneOrMoreExp) { + // (X+)? == X* + onZeroOrMore((OneOrMoreExp) exp); + return; + } + if (isWithinAttributeValue) { + builder.append("("); + } else { + builder.append(" ("); + } + visitUnary(exp); + // context/state driven layout + if (isWithinAttributeValue) { + builder.append(")?"); + } else { + builder.append(")?\n\t"); + } + } + + public void onChoice(ChoiceExp exp) { + // use optional instead of p + if (exp.exp1 == Expression.epsilon) { + onOptional(exp.exp2); + return; + } + if (exp.exp2 == Expression.epsilon) { + onOptional(exp.exp1); + return; + } + + Expression[] children = exp.getChildren(); + for (int i = 0; i < children.length; i++) { + children[i].visit(this); + if ((i + 1) < children.length) { + builder.append(" | "); + } + } + } + + public void onSequence(SequenceExp exp) { + builder.append("\n\t("); + visitBinExp("group", exp, SequenceExp.class); + builder.append(")"); + } + + public void visitBinExp(String elementName, BinaryExp exp, Class type) { + // since AGM is binarized, + // a b c is represented as + // a b c + // this method print them as a b c + // builder.append("\nSTART: " + elementName); + Expression[] children = exp.getChildren(); + for (int i = 0; i < children.length; i++) children[i].visit(this); + // builder.append("\nEND: " + elementName); + } + + public void onMixed(MixedExp exp) { + builder.append(""); + visitUnary(exp.exp); + builder.append(""); + } + + public void onOneOrMore(OneOrMoreExp exp) { + builder.append("("); + visitUnary(exp.exp); + builder.append(")+ "); + } + + protected void onZeroOrMore(OneOrMoreExp exp) { + // note that this method is not a member of TREXPatternVisitor. + builder.append("("); + visitUnary(exp.exp); + builder.append(")* "); + } + + public void onAttribute(AttributeExp exp) { + builder.append(evaluateNameClass(exp.nameClass) + "=\""); + isWithinAttributeValue = true; + visitUnary(exp.exp); + builder.append("\" "); + isWithinAttributeValue = false; + } + + /** print expression but suppress unnecessary sequence. */ + public void visitUnary(Expression exp) { + // TREX treats p q + // as p q + // This method tries to exploit this property to + // simplify the result. + if (exp instanceof SequenceExp) { + SequenceExp seq = (SequenceExp) exp; + visitUnary(seq.exp1); + seq.exp2.visit(this); + } else { + exp.visit(this); + } + } + + public void onValue(ValueExp exp) { + if (exp.dt instanceof XSDatatypeImpl) { + XSDatatypeImpl base = (XSDatatypeImpl) exp.dt; + + final List ns = new ArrayList(); + + String lex = + base.convertToLexicalValue( + exp.value, + new SerializationContext() { + public String getNamespacePrefix(String namespaceURI) { + int cnt = ns.size() / 2; + ns.add("xmlns:ns" + cnt); + ns.add(namespaceURI); + return "ns" + cnt; + } + }); + + if (base != TokenType.theInstance) { + // if the type is token, we don't need @type. + // builder.append("\ntype: " + base.getName()); + builder.append(base.getName()); + } + builder.append(lex); + // builder.append("\nEND_value"); + return; + } + + throw new UnsupportedOperationException(exp.dt.getClass().getName()); + } + + public void onData(DataExp exp) { + Datatype dt = exp.dt; + + if (dt instanceof XSDatatypeImpl) { + XSDatatypeImpl dti = (XSDatatypeImpl) dt; + if (isPrimitiveDatatypeType(dti.getName()) || isDerivedDataType(dti.getName())) { + builder.append( + "<" + + dti.getName() + + ">"); + } else if (exp.name.equals("anyIRI")) { + builder.append("<anyIRI\">"); + } else if (isPredefinedType(dt)) { + // it's a pre-defined types. + builder.append(""); + } else { + serializeDataType(dti); + } + return; + } + + // unknown datatype + builder.append("\nEXPR_data-unknown: " + "class " + dt.getClass().getName()); + } + + public void onOther(OtherExp exp) { + exp.exp.visit(this); // ignore otherexp + } + + public void onRef(ReferenceExp exp) { + // prevent infinite loops by marking earlier multiple used/referenced expression (being + // elements/references) as "head of islands" + boolean isIslandHead = headsOfIslands.contains(exp); + if (!isIslandHead || (isIslandHead && !islandHeadPassed.contains(exp))) { + if (isIslandHead) { + // making sure that an island is only entered once + islandHeadPassed.add(exp); + } + // this expression will not be written as a named pattern. + if (isPrimitiveDatatypeType(exp.name) || isDerivedDataType(exp.name)) { + builder.append( + "<" + + exp.name + + ">"); + } else if (exp.name.equals("anyIRI")) { + builder.append("<anyIRI>"); + } else { + exp.exp.visit(this); + } + if (isIslandHead) { + // if the ref was left, we can re-enter it + islandHeadPassed.remove(exp); + } + } else { + if (isPrimitiveDatatypeType(exp.name) || isDerivedDataType(exp.name)) { + builder.append( + "<" + + exp.name + + ">"); + } else if (exp.name.equals("anyIRI")) { + builder.append("<anyIRI>"); + } else { + builder.append("<xsd:ref name=\"" + exp.name + "\"/>"); + } + } + } + + /** if XML Schema primitive datatypes https://www.w3.org/TR/xmlschema-2/#built-in-datatypes */ + private static boolean isPrimitiveDatatypeType(String s) { + return (s.equals("string") + || s.equals("boolean") + || s.equals("decimal") + || s.equals("float") + || s.equals("double") + || s.equals("duration") + || s.equals("dateTime") + || s.equals("time") + || s.equals("date") + || s.equals("gYearMonth") + || s.equals("gYear") + || s.equals("gMonthDay") + || s.equals("gDay") + || s.equals("gMonth") + || s.equals("hexBinary") + || s.equals("base64Binary") + || s.equals("anyURI") + || s.equals("QName") + || s.equals("NOTATION")); + } + + /** if XML Schema primitive datatypes https://www.w3.org/TR/xmlschema-2/#built-in-datatypes */ + private static boolean isDerivedDataType(String s) { + return s.equals("normalizedString") + || s.equals("token") + || s.equals("language") + || s.equals("NMTOKEN") + || s.equals("NMTOKENS") + || s.equals("Name") + || s.equals("NCName") + || s.equals("ID") + || s.equals("IDREF") + || s.equals("IDREFS") + || s.equals("ENTITY") + || s.equals("ENTITIES") + || s.equals("integer") + || s.equals("nonPositiveInteger") + || s.equals("negativeInteger") + || s.equals("long") + || s.equals("int") + || s.equals("short") + || s.equals("byte") + || s.equals("nonNegativeInteger") + || s.equals("unsignedLong") + || s.equals("unsignedInt") + || s.equals("unsignedShort") + || s.equals("unsignedByte") + || s.equals("positiveInteger"); + } + + private static String evaluateNameClass(NameClass nc) { + String elementName = ""; + if ((nc instanceof SimpleNameClass) + || (nc instanceof AnyNameClass) + || (nc instanceof ChoiceNameClass)) { + String elementPrefix = null; + if ((nc instanceof SimpleNameClass)) { + elementName = ((SimpleNameClass) nc).localName; + // the feature below works only with the namespace-prefix2 branch on MSV + elementPrefix = ((SimpleNameClass) nc).prefix; + if (elementPrefix != null && !elementPrefix.isEmpty()) { + elementName = elementPrefix.concat(":").concat(elementName); + } + } else if (nc instanceof AnyNameClass) { + elementName = "*:*"; + } else if (nc instanceof ChoiceNameClass) { + elementName = "CHOICE_NAME_CLASS"; + } + if (elementName.equals("ExtensionContent")) { + elementName = "ExtensionContent"; + } + } + return elementName; + } + + /** + * serializes the given datatype. + * + *

The caller should generate events for <simpleType> element if necessary. + */ + protected void serializeDataType(XSDatatype dt) { + + if (dt instanceof UnionType) { + serializeUnionType((UnionType) dt); + return; + } + + // store names of the applied facets into this set + Set appliedFacets = new HashSet(); + + // store effective facets (those which are not shadowed by another facet). + Vector effectiveFacets = new Vector(); + + XSDatatype x = dt; + while (x instanceof DataTypeWithFacet || x instanceof FinalComponent) { + + if (x instanceof FinalComponent) { + // skip FinalComponent + x = x.getBaseType(); + continue; + } + + String facetName = ((DataTypeWithFacet) x).facetName; + + if (facetName.equals(XSDatatypeImpl.FACET_ENUMERATION)) { + // if it contains enumeration, then we will serialize this + // by using s. + serializeEnumeration((XSDatatypeImpl) dt, (EnumerationFacet) x); + return; + } + + if (facetName.equals(XSDatatypeImpl.FACET_WHITESPACE)) { + System.err.println("warning: unsupported whiteSpace facet is ignored"); + x = x.getBaseType(); + continue; + } + + // find the same facet twice. + // pattern is allowed more than once. + if (!appliedFacets.contains(facetName) + || appliedFacets.equals(XSDatatypeImpl.FACET_PATTERN)) { + + appliedFacets.add(facetName); + effectiveFacets.add(x); + } + + x = ((DataTypeWithFacet) x).baseType; + } + + if (x instanceof ListType) { + // the base type is list. + serializeListType((XSDatatypeImpl) dt); + return; + } + + // it cannot be the union type. Union type cannot be derived by + // restriction. + + // so this must be one of the pre-defined types. + if (!(x instanceof ConcreteType)) throw new Error(x.getClass().getName()); + + if (x instanceof com.sun.msv.grammar.relax.EmptyStringType) { + // empty string + builder.append("\"\""); + return; + } + if (x instanceof com.sun.msv.grammar.relax.NoneType) { + // "none" is equal to + builder.append("notAllowed"); + return; + } + + builder.append(x.getName()); + + // serialize effective facets + for (int i = effectiveFacets.size() - 1; i >= 0; i--) { + DataTypeWithFacet dtf = (DataTypeWithFacet) effectiveFacets.get(i); + + if (dtf instanceof LengthFacet) { + param("length", Long.toString(((LengthFacet) dtf).length)); + } else if (dtf instanceof MinLengthFacet) { + param("minLength", Long.toString(((MinLengthFacet) dtf).minLength)); + } else if (dtf instanceof MaxLengthFacet) { + param("maxLength", Long.toString(((MaxLengthFacet) dtf).maxLength)); + } else if (dtf instanceof PatternFacet) { + String pattern = ""; + PatternFacet pf = (PatternFacet) dtf; + for (int j = 0; j < pf.getRegExps().length; j++) { + if (pattern.length() != 0) pattern += "|"; + pattern += pf.patterns[j]; + } + param("pattern", pattern); + } else if (dtf instanceof TotalDigitsFacet) { + param("totalDigits", Long.toString(((TotalDigitsFacet) dtf).precision)); + } else if (dtf instanceof FractionDigitsFacet) { + param("fractionDigits", Long.toString(((FractionDigitsFacet) dtf).scale)); + } else if (dtf instanceof RangeFacet) { + param(dtf.facetName, dtf.convertToLexicalValue(((RangeFacet) dtf).limitValue, null)); + // we don't need to pass SerializationContext because it is only + // for QName. + } else if (dtf instanceof WhiteSpaceFacet) {; // do nothing. + } else + // undefined facet type + throw new Error(); + } + + builder.append("]"); + } + + protected void param(String name, String value) { + /*2DO + writer.start("param", new String[] { "name", name }); + writer.characters(value); + writer.end("param"); + + */ + } + + /** returns true if the specified type is a pre-defined XSD type without any facet. */ + protected boolean isPredefinedType(Datatype x) { + return !(x instanceof DataTypeWithFacet + || x instanceof UnionType + || x instanceof ListType + || x instanceof FinalComponent + || x instanceof com.sun.msv.grammar.relax.EmptyStringType + || x instanceof com.sun.msv.grammar.relax.NoneType); + } + + /** serializes a union type. this method is called by serializeDataType method. */ + protected void serializeUnionType(UnionType dt) { + // serialize member types. + for (int i = 0; i < dt.memberTypes.length; i++) serializeDataType(dt.memberTypes[i]); + } + + /** serializes a list type. this method is called by serializeDataType method. */ + protected void serializeListType(XSDatatypeImpl dt) { + + ListType base = (ListType) dt.getConcreteType(); + + if (dt.getFacetObject(XSDatatype.FACET_LENGTH) != null) { + // with the length facet. + int len = ((LengthFacet) dt.getFacetObject(XSDatatype.FACET_LENGTH)).length; + builder.append(""); + for (int i = 0; i < len; i++) serializeDataType(base.itemType); + builder.append(""); + + return; + } + + if (dt.getFacetObject(XSDatatype.FACET_MAXLENGTH) != null) + throw new UnsupportedOperationException( + "warning: maxLength facet to list type is not properly converted."); + + MinLengthFacet minLength = (MinLengthFacet) dt.getFacetObject(XSDatatype.FACET_MINLENGTH); + + builder.append(""); + if (minLength != null) { + // list n times + for (int i = 0; i < minLength.minLength; i++) serializeDataType(base.itemType); + } + builder.append(""); + serializeDataType(base.itemType); + builder.append(""); + builder.append(""); + } + + /** serializes a type with enumeration. this method is called by serializeDataType method. */ + protected void serializeEnumeration(XSDatatypeImpl dt, EnumerationFacet enums) { + + Object[] values = enums.values.toArray(); + + if (values.length > 1) builder.append("rng:choice"); + + for (int i = 0; i < values.length; i++) { + final Vector ns = new Vector(); + + String lex = + dt.convertToLexicalValue( + values[i], + new SerializationContext() { + public String getNamespacePrefix(String namespaceURI) { + int cnt = ns.size() / 2; + ns.add("xmlns:ns" + cnt); + ns.add(namespaceURI); + return "ns" + cnt; + } + }); + + // make sure that the converted lexical value is allowed by this type. + // sometimes, facets that are added later rejects some of + // enumeration values. + + boolean allowed = + dt.isValid( + lex, + new ValidationContext() { + + public String resolveNamespacePrefix(String prefix) { + if (!prefix.startsWith("ns")) return null; + int i = Integer.parseInt(prefix.substring(2)); + return (String) ns.get(i * 2 + 1); + } + + public boolean isUnparsedEntity(String name) { + return true; + } + + public boolean isNotation(String name) { + return true; + } + + public String getBaseUri() { + return null; + } + }); + + ns.add("type"); + ns.add(dt.getConcreteType().getName()); + + if (allowed) { + builder.append(""); + builder.append(lex); + builder.append(""); + } + } + + if (values.length > 1) builder.append(""); + } +} diff --git a/generator/schema2template/src/main/java/schema2template/grammar/TinkerPopGraph.java b/generator/schema2template/src/main/java/schema2template/grammar/TinkerPopGraph.java index f88cfa8143..3bead667a4 100644 --- a/generator/schema2template/src/main/java/schema2template/grammar/TinkerPopGraph.java +++ b/generator/schema2template/src/main/java/schema2template/grammar/TinkerPopGraph.java @@ -108,8 +108,8 @@ private static Graph buildGraph( v = createVertex(g, exp); } - // stop building the graph after first element and attribtue children addGraphProperties(g, v, parentV, exp, parentExp); + // stop building the graph after first element and attribute children if (!(exp instanceof NameClassAndExpression) || parentExp == null) { List children = (List) exp.visit(CHILD_VISITOR); Integer newChildNo = 0; diff --git a/generator/schema2template/src/main/java/schema2template/grammar/XMLModel.java b/generator/schema2template/src/main/java/schema2template/grammar/XMLModel.java index 346e76e8ce..c523a5cab9 100644 --- a/generator/schema2template/src/main/java/schema2template/grammar/XMLModel.java +++ b/generator/schema2template/src/main/java/schema2template/grammar/XMLModel.java @@ -23,19 +23,16 @@ */ package schema2template.grammar; +import com.sun.msv.grammar.ElementExp; import com.sun.msv.grammar.Expression; import com.sun.msv.grammar.Grammar; +import com.sun.msv.grammar.ReferenceExp; +import com.sun.msv.grammar.util.ExpressionWalker; import com.sun.msv.reader.trex.ng.RELAXNGReader; import com.sun.msv.reader.xmlschema.XMLSchemaReader; import com.sun.msv.writer.relaxng.RELAXNGWriter; import java.io.File; -import java.util.Collection; -import java.util.HashMap; -import java.util.Map; -import java.util.Set; -import java.util.SortedSet; -import java.util.StringTokenizer; -import java.util.TreeSet; +import java.util.*; import java.util.logging.Level; import java.util.logging.Logger; import javax.xml.parsers.SAXParserFactory; @@ -565,4 +562,46 @@ public static String extractLocalName(String name) { public static String extractLocalName(PuzzleComponent def) { return extractLocalName(def.getQName()); } + + /** + * Identifies heads of islands of grammars, which are multiple used and must be identified to + * avoid infinite loops when traversing the grammar + */ + public static Set getHeadsOfIslands(Grammar grammar) { + // collect all reachable ElementExps and ReferenceExps. + final Set nodes = new HashSet(); + // ElementExps and ReferenceExps who are referenced more than once. + final Set heads = new HashSet(); + + grammar + .getTopLevel() + .visit( + new ExpressionWalker() { + // ExpressionWalker class traverses expressions in depth-first order. + // So this invokation traverses the all reachable expressions from + // the top level expression. + + // Whenever visiting elements and RefExps, they are memorized + // to identify head of islands. + public void onElement(ElementExp exp) { + if (nodes.contains(exp)) { + heads.add(exp); + return; // prevent infinite recursion. + } + nodes.add(exp); + super.onElement(exp); + } + + public void onRef(ReferenceExp exp) { + if (nodes.contains(exp)) { + heads.add(exp); + return; // prevent infinite recursion. + } + nodes.add(exp); + super.onRef(exp); + } + }); + + return heads; + } } diff --git a/generator/schema2template/src/test/java/schema2template/grammar/MSVDescendantsToHTMLTest.java b/generator/schema2template/src/test/java/schema2template/grammar/MSVDescendantsToHTMLTest.java new file mode 100644 index 0000000000..41a21c1fd8 --- /dev/null +++ b/generator/schema2template/src/test/java/schema2template/grammar/MSVDescendantsToHTMLTest.java @@ -0,0 +1,132 @@ +/** + * ********************************************************************** + * + *

DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER + * + *

Copyright 2009, 2010 Oracle and/or its affiliates. All rights reserved. + * + *

Use is subject to license terms. + * + *

Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file + * except in compliance with the License. You may obtain a copy of the License at + * http://www.apache.org/licenses/LICENSE-2.0. You can also obtain a copy of the License at + * http://odftoolkit.org/docs/license.txt + * + *

Unless required by applicable law or agreed to in writing, software distributed under the + * License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either + * express or implied. + * + *

See the License for the specific language governing permissions and limitations under the + * License. + * + *

********************************************************************* + */ +package schema2template.grammar; + +import com.sun.msv.grammar.*; +import java.io.File; +import java.io.FileWriter; +import java.io.PrintWriter; +import java.util.*; +import java.util.logging.Level; +import java.util.logging.Logger; +import org.junit.Assert; +import org.junit.Before; +import org.junit.Test; + +/** + * MSVDescendantsToHTMLTest is able to dump for each XML element and XML attribute its content as a + * string expressing choice, sequence, etc. with regular expression syntax. + */ +public class MSVDescendantsToHTMLTest { + + private static final Logger LOG = Logger.getLogger(MSVDescendantsToHTMLTest.class.getName()); + + private static final String CHILD_DESC_DIRECTORY = "childDesc"; + + @Before + public void intialize() { + new File(ConstantsBuildEnv.TARGET_BASE_DIR + CHILD_DESC_DIRECTORY).mkdirs(); + } + + /** + * This test iterates over all ODF grammars loads them into the MSV Validator and dumps the + * run-time model (ExpressionTree) into a file. + */ + @Test + public void testMSVExpressionTree() { + try { + for (ConstantsOdf.OdfSpecificationPart specPart : + ConstantsOdf.OdfSpecificationPart.values()) { + if (specPart.grammarID.equals(ConstantsOdf.GrammarID.ODF_SCHEMA.ID) + && specPart.grammarVersion.equals( + ConstantsOdf.OdfSpecificationPart.ODF_1_3_SCHEMA.grammarVersion)) { + LOG.info( + "\n\nNew ODF grammar runtime serialization (MSV dump) for regression test:" + + "\n\tgrammarVersion " + + specPart.grammarVersion + + "\n\tgrammarID: " + + specPart.grammarID + + "\n\tgrammarPath: " + + specPart.grammarPath + + "\n\ttargetDirPath: " + + ConstantsBuildEnv.TARGET_BASE_DIR + + CHILD_DESC_DIRECTORY); + Grammar xmlGrammar = XMLModel.loadSchema(specPart.grammarPath); + String odfDump = dumpChildRelation(xmlGrammar); + + String grammarLabel = specPart.grammarID + "-" + specPart.grammarVersion; + + String targetChildDescFile = + ConstantsBuildEnv.TARGET_BASE_DIR + + CHILD_DESC_DIRECTORY + + File.separator + + grammarLabel + + "-msvRegEx.txt"; + LOG.log( + Level.INFO, + "Writing MSV Child descriptions for " + grammarLabel + " + into file: {0}", + targetChildDescFile); + try (PrintWriter out = new PrintWriter(new FileWriter(targetChildDescFile))) { + out.print(odfDump); + } + } + /*DirectoryCompare.compareDirectories( + ConstantsBuildEnv.TARGET_BASE_DIR + CHILD_DESC_DIRECTORY, + ConstantsBuildEnv.REFERENCE_BASE_DIR + CHILD_DESC_DIRECTORY);*/ + } + } catch (Exception ex) { + Logger.getLogger(MSVDescendantsToHTMLTest.class.getName()).log(Level.SEVERE, null, ex); + Assert.fail(ex.toString()); + } + } + /** + * Iterates the MSVExpressionTree between parent and children and dumps their relation into a + * string + * + * @return the MSVExpressionTree serialized into a String + */ + private static String dumpChildRelation(Grammar xmlGrammar) throws Exception { + MSVExpressionIterator iterator = new MSVExpressionIterator(xmlGrammar.getTopLevel()); + StringBuilder builder = new StringBuilder(); + while (iterator.hasNext()) { + Expression expr = iterator.next(); + if (expr instanceof NameClassAndExpression) { + List names = + (List) + ((NameClassAndExpression) expr).getNameClass().visit(new MSVNameClassVisitorList()); + // 2DO: ONGOING INITIAL DEBUG WITH ONE ELEMENT!! + // if (names.get(0).equals("form:property")) { + + // see + // http://docs.oasis-open.org/office/OpenDocument/v1.3/os/schemas/OpenDocument-v1.3-schema-rng.html#table-table + if (names.get(0).equals("table:table")) { + expr.visit( + new MSVExpressionVisitorDescendantsAsHTMLString( + builder, XMLModel.getHeadsOfIslands(xmlGrammar))); + } + } + } + return builder.toString(); + } +} diff --git a/generator/schema2template/src/test/java/schema2template/grammar/MSVRunTimeDumpTest.java b/generator/schema2template/src/test/java/schema2template/grammar/MSVRunTimeDumpTest.java index 7725f07f88..3509689a11 100644 --- a/generator/schema2template/src/test/java/schema2template/grammar/MSVRunTimeDumpTest.java +++ b/generator/schema2template/src/test/java/schema2template/grammar/MSVRunTimeDumpTest.java @@ -103,7 +103,7 @@ public void testMSVExpressionTree() { * * @return the MSVExpressionTree serialized into a String */ - public static String dumpMSVExpressionTree(Expression rootExpression) throws Exception { + private static String dumpMSVExpressionTree(Expression rootExpression) throws Exception { MSVExpressionIterator iterator = new MSVExpressionIterator(rootExpression); StringBuilder builder = new StringBuilder(); while (iterator.hasNext()) { From 72b3c81f7afb71f445e08edf25d931060d14cd0b Mon Sep 17 00:00:00 2001 From: Svante Schubert Date: Tue, 27 Sep 2022 15:01:19 +0200 Subject: [PATCH 2/4] Adding inital Child Relations to OdfReference --- ...ressionVisitorDescendantsAsHTMLString.java | 5 +- .../schema2template/grammar/XMLModel.java | 41 + .../grammar/GenerationOdfReferenceTest.java | 4 +- .../odf-reference/odf-reference-template.vm | 15 +- .../OdfReference.html | 14 +- .../OdfReference.html | 14 +- .../OdfReference.html | 82 +- .../OdfReference.html | 82 +- .../OdfReference.html | 143 +- .../OdfReference.html | 181 +- .../odf-schema-1.0/OdfReference.html | 11942 ++++++++-- .../odf-schema-1.1/OdfReference.html | 12225 ++++++++-- .../odf-schema-1.2/OdfReference.html | 19279 ++++++++++++--- .../odf-schema-1.3/OdfReference.html | 19375 +++++++++++++--- 14 files changed, 52645 insertions(+), 10757 deletions(-) diff --git a/generator/schema2template/src/main/java/schema2template/grammar/MSVExpressionVisitorDescendantsAsHTMLString.java b/generator/schema2template/src/main/java/schema2template/grammar/MSVExpressionVisitorDescendantsAsHTMLString.java index f4e334f02c..f6571cbc01 100644 --- a/generator/schema2template/src/main/java/schema2template/grammar/MSVExpressionVisitorDescendantsAsHTMLString.java +++ b/generator/schema2template/src/main/java/schema2template/grammar/MSVExpressionVisitorDescendantsAsHTMLString.java @@ -253,7 +253,8 @@ public void onData(DataExp exp) { if (dt instanceof XSDatatypeImpl) { XSDatatypeImpl dti = (XSDatatypeImpl) dt; - if (isPrimitiveDatatypeType(dti.getName()) || isDerivedDataType(dti.getName())) { + if (dti.getName() != null + && (isPrimitiveDatatypeType(dti.getName()) || isDerivedDataType(dti.getName()))) { builder.append( "<anyIRI\">"); } else if (isPredefinedType(dt)) { - // it's a pre-defined types. + // it's a MSV pre-defined type. builder.append(""); } else { serializeDataType(dti); diff --git a/generator/schema2template/src/main/java/schema2template/grammar/XMLModel.java b/generator/schema2template/src/main/java/schema2template/grammar/XMLModel.java index c523a5cab9..25d572f014 100644 --- a/generator/schema2template/src/main/java/schema2template/grammar/XMLModel.java +++ b/generator/schema2template/src/main/java/schema2template/grammar/XMLModel.java @@ -63,6 +63,8 @@ public class XMLModel { private String mGrammarID; private String mGrammarVersion; + private Set mIslandHeads; + /** * Constructs new model by the grammar and a label * @@ -563,6 +565,45 @@ public static String extractLocalName(PuzzleComponent def) { return extractLocalName(def.getQName()); } + /** + * Allows to express the relationship of descendants as HTML with a pseudocode aligned to RegEx. + * Used for the OdfReference generated by this project. + * + * @param expr the expression which children should be viewed + * @param elementDepth the amount of elements that should be shown. 1 will show only the child + * elements not their content (the default and used by ODF Reference). + * @return the HTML as string. Usually to be inserted within documentation. + */ + public String getDescendantsAsHTMLString(Expression expr, int elementDepth) { + StringBuilder builder = new StringBuilder(); + if (this.mGrammar == null) { + System.err.println("xx"); + } + if (expr == null) { + System.err.println("yy"); + } + // ElementExps and ReferenceExps who are referenced more than once. + if (mIslandHeads == null) { + mIslandHeads = getHeadsOfIslands(this.mGrammar); + } + + expr.visit( + new MSVExpressionVisitorDescendantsAsHTMLString(builder, mIslandHeads, elementDepth)); + return builder.toString(); + } + + /** + * Allows to express the relationship of descendants as HTML with a pseudocode aligned to RegEx. + * Used for OdfReference (2DO: Add Reference) + * + * @param expr the expression which children should be viewed (must be of the grammar of this XML + * model) + * @return the HTML as string. Usually to be inserted within documentation. + */ + public String getChildrenAsHTMLString(Expression expr) { + return getDescendantsAsHTMLString(expr, 1); + } + /** * Identifies heads of islands of grammars, which are multiple used and must be identified to * avoid infinite loops when traversing the grammar diff --git a/generator/schema2template/src/test/java/schema2template/grammar/GenerationOdfReferenceTest.java b/generator/schema2template/src/test/java/schema2template/grammar/GenerationOdfReferenceTest.java index 3babe4319d..65626d024a 100644 --- a/generator/schema2template/src/test/java/schema2template/grammar/GenerationOdfReferenceTest.java +++ b/generator/schema2template/src/test/java/schema2template/grammar/GenerationOdfReferenceTest.java @@ -44,7 +44,7 @@ public class GenerationOdfReferenceTest { /** Test: It should be able to generate all examples without a failure. */ @Test - public void testAllExampleGenerations() { + public void testAllExampleGenerations() throws Exception { ArrayList generations = new ArrayList<>(); for (OdfSpecificationPart specPart : OdfSpecificationPart.values()) { @@ -76,7 +76,7 @@ public void testAllExampleGenerations() { SchemaToTemplate.run(generations); } catch (Exception e) { Assert.fail("Exception during test run: " + e.toString()); - throw new RuntimeException(e); + throw new Exception(e); } // Changing order of multiple puzzlepieces makes file comparison unuseable diff --git a/generator/schema2template/src/test/resources/test-input/odf/generation/odf-reference/odf-reference-template.vm b/generator/schema2template/src/test/resources/test-input/odf/generation/odf-reference/odf-reference-template.vm index 9c7391ed69..4cad23b22b 100644 --- a/generator/schema2template/src/test/resources/test-input/odf/generation/odf-reference/odf-reference-template.vm +++ b/generator/schema2template/src/test/resources/test-input/odf/generation/odf-reference/odf-reference-template.vm @@ -182,6 +182,13 @@ For example, manifest:key-de #end   +#set ($elementExp = $element.getExpression()) +#if ($elementExp) + + Child Relations + ${xmlModel.getChildrenAsHTMLString($elementExp)}  + +#end
#end @@ -244,7 +251,7 @@ For example,
manifest:key-de Datatypes #foreach ($datatype in ${attribute.getDatatypes()}) - ${datatype}  + ${datatype}  #end   @@ -252,10 +259,14 @@ For example, manifest:key-de Values #foreach ($value in ${attribute.getValues()}) - "${value}"  + "${value}"  #end   + + RNG Relations + ${xmlModel.getChildrenAsHTMLString($attribute.getExpression())}  +
#end diff --git a/generator/schema2template/src/test/resources/test-reference/odf/generation/odf-reference/odf-package-digital-signature-1.2/OdfReference.html b/generator/schema2template/src/test/resources/test-reference/odf/generation/odf-reference/odf-package-digital-signature-1.2/OdfReference.html index 3a03ad56f6..ca5458fbcc 100644 --- a/generator/schema2template/src/test/resources/test-reference/odf/generation/odf-reference/odf-package-digital-signature-1.2/OdfReference.html +++ b/generator/schema2template/src/test/resources/test-reference/odf/generation/odf-reference/odf-package-digital-signature-1.2/OdfReference.html @@ -50,6 +50,10 @@

ds:Signature Element

[any org.w3c.dom.Element]    + + Child Relations + <ds:Signature (*:*="TEXT" | TEXT | <*:* ... >)+ >  +
@@ -72,6 +76,10 @@

dsig:document-signatures Elemen <ds:Signature>*    + + Child Relations + <dsig:document-signatures dsig:version="1.2" (<ds:Signature ... >)+ >  +

dsig:version Attribute

@@ -90,9 +98,13 @@

dsig:version Attribute

Values - "1.2"  + "1.2"    + + RNG Relations + dsig:version="1.2"   +
diff --git a/generator/schema2template/src/test/resources/test-reference/odf/generation/odf-reference/odf-package-digital-signature-1.3/OdfReference.html b/generator/schema2template/src/test/resources/test-reference/odf/generation/odf-reference/odf-package-digital-signature-1.3/OdfReference.html index f8f8afc112..b2fa163b8d 100644 --- a/generator/schema2template/src/test/resources/test-reference/odf/generation/odf-reference/odf-package-digital-signature-1.3/OdfReference.html +++ b/generator/schema2template/src/test/resources/test-reference/odf/generation/odf-reference/odf-package-digital-signature-1.3/OdfReference.html @@ -50,6 +50,10 @@

ds:Signature Element

[any org.w3c.dom.Element]    + + Child Relations + <ds:Signature (*:*="TEXT" | TEXT | <*:* ... >)+ >  +
@@ -72,6 +76,10 @@

dsig:document-signatures Elemen <ds:Signature>*    + + Child Relations + <dsig:document-signatures dsig:version="1.3" (<ds:Signature ... >)+ >  +

dsig:version Attribute

@@ -90,9 +98,13 @@

dsig:version Attribute

Values - "1.3"  + "1.3"    + + RNG Relations + dsig:version="1.3"   +
diff --git a/generator/schema2template/src/test/resources/test-reference/odf/generation/odf-reference/odf-package-manifest-1.0/OdfReference.html b/generator/schema2template/src/test/resources/test-reference/odf/generation/odf-reference/odf-package-manifest-1.0/OdfReference.html index 95ce3cbe3b..e9bb888cbf 100644 --- a/generator/schema2template/src/test/resources/test-reference/odf/generation/odf-reference/odf-package-manifest-1.0/OdfReference.html +++ b/generator/schema2template/src/test/resources/test-reference/odf/generation/odf-reference/odf-package-manifest-1.0/OdfReference.html @@ -49,6 +49,10 @@

manifest:algorithm Element

  + + Child Relations + <manifest:algorithm manifest:algorithm-name="<string>" manifest:initialisation-vector="<base64Binary>" >  +
@@ -74,6 +78,10 @@

manifest:encryption-data Elemen <manifest:key-derivation>    + + Child Relations + <manifest:encryption-data manifest:checksum-type="<string>" manifest:checksum="<base64Binary>" <manifest:algorithm ... ><manifest:key-derivation ... >>  +
@@ -99,6 +107,12 @@

manifest:file-entry Element

<manifest:encryption-data>    + + Child Relations + <manifest:file-entry manifest:full-path="<string>" (manifest:size="<nonNegativeInteger>" )? + manifest:media-type="<string>" (<manifest:encryption-data ... >)? + >  +
@@ -123,6 +137,10 @@

manifest:key-derivation Element<   + + Child Relations + <manifest:key-derivation manifest:key-derivation-name="<string>" manifest:salt="<base64Binary>" manifest:iteration-count="<nonNegativeInteger>" >  +
@@ -144,6 +162,10 @@

manifest:manifest Element

<manifest:file-entry>*    + + Child Relations + <manifest:manifest (<manifest:file-entry ... >)+ >  +

manifest:algorithm-name Attribute

@@ -157,7 +179,7 @@

manifest:algorithm-name Attrib Datatypes - string  + string    @@ -165,6 +187,10 @@

manifest:algorithm-name Attrib   + + RNG Relations + manifest:algorithm-name="<string>"   +

manifest:checksum Attribute

@@ -178,7 +204,7 @@

manifest:checksum Attribute

Datatypes - base64Binary  + base64Binary    @@ -186,6 +212,10 @@

manifest:checksum Attribute

  + + RNG Relations + manifest:checksum="<base64Binary>"   +

manifest:checksum-type Attribute

@@ -199,7 +229,7 @@

manifest:checksum-type Attribut Datatypes - string  + string    @@ -207,6 +237,10 @@

manifest:checksum-type Attribut   + + RNG Relations + manifest:checksum-type="<string>"   +

manifest:full-path Attribute

@@ -220,7 +254,7 @@

manifest:full-path Attribute Datatypes - string  + string    @@ -228,6 +262,10 @@

manifest:full-path Attribute   + + RNG Relations + manifest:full-path="<string>"   +

manifest:initialisation-vector Attribute

@@ -241,7 +279,7 @@

manifest:initialisation Datatypes - base64Binary  + base64Binary    @@ -249,6 +287,10 @@

manifest:initialisation   + + RNG Relations + manifest:initialisation-vector="<base64Binary>"   +

manifest:iteration-count Attribute

@@ -262,7 +304,7 @@

manifest:iteration-count Attr Datatypes - nonNegativeInteger  + nonNegativeInteger    @@ -270,6 +312,10 @@

manifest:iteration-count Attr   + + RNG Relations + manifest:iteration-count="<nonNegativeInteger>"   +

manifest:key-derivation-name Attribute

@@ -283,7 +329,7 @@

manifest:key-derivation-n Datatypes - string  + string    @@ -291,6 +337,10 @@

manifest:key-derivation-n   + + RNG Relations + manifest:key-derivation-name="<string>"   +

manifest:media-type Attribute

@@ -304,7 +354,7 @@

manifest:media-type Attribute< Datatypes - string  + string    @@ -312,6 +362,10 @@

manifest:media-type Attribute<   + + RNG Relations + manifest:media-type="<string>"   +

manifest:salt Attribute

@@ -325,7 +379,7 @@

manifest:salt Attribute

Datatypes - base64Binary  + base64Binary    @@ -333,6 +387,10 @@

manifest:salt Attribute

  + + RNG Relations + manifest:salt="<base64Binary>"   +

manifest:size Attribute

@@ -346,7 +404,7 @@

manifest:size Attribute

Datatypes - nonNegativeInteger  + nonNegativeInteger    @@ -354,6 +412,10 @@

manifest:size Attribute

  + + RNG Relations + manifest:size="<nonNegativeInteger>"   +
diff --git a/generator/schema2template/src/test/resources/test-reference/odf/generation/odf-reference/odf-package-manifest-1.1/OdfReference.html b/generator/schema2template/src/test/resources/test-reference/odf/generation/odf-reference/odf-package-manifest-1.1/OdfReference.html index 43abe6019d..5c0059cc47 100644 --- a/generator/schema2template/src/test/resources/test-reference/odf/generation/odf-reference/odf-package-manifest-1.1/OdfReference.html +++ b/generator/schema2template/src/test/resources/test-reference/odf/generation/odf-reference/odf-package-manifest-1.1/OdfReference.html @@ -49,6 +49,10 @@

manifest:algorithm Element

  + + Child Relations + <manifest:algorithm manifest:algorithm-name="<string>" manifest:initialisation-vector="<base64Binary>" >  +
@@ -74,6 +78,10 @@

manifest:encryption-data Elemen <manifest:key-derivation>    + + Child Relations + <manifest:encryption-data manifest:checksum-type="<string>" manifest:checksum="<base64Binary>" <manifest:algorithm ... ><manifest:key-derivation ... >>  +
@@ -99,6 +107,12 @@

manifest:file-entry Element

<manifest:encryption-data>    + + Child Relations + <manifest:file-entry manifest:full-path="<string>" (manifest:size="<nonNegativeInteger>" )? + manifest:media-type="<string>" (<manifest:encryption-data ... >)? + >  +
@@ -123,6 +137,10 @@

manifest:key-derivation Element<   + + Child Relations + <manifest:key-derivation manifest:key-derivation-name="<string>" manifest:salt="<base64Binary>" manifest:iteration-count="<nonNegativeInteger>" >  +
@@ -144,6 +162,10 @@

manifest:manifest Element

<manifest:file-entry>*    + + Child Relations + <manifest:manifest (<manifest:file-entry ... >)+ >  +

manifest:algorithm-name Attribute

@@ -157,7 +179,7 @@

manifest:algorithm-name Attrib Datatypes - string  + string    @@ -165,6 +187,10 @@

manifest:algorithm-name Attrib   + + RNG Relations + manifest:algorithm-name="<string>"   +

manifest:checksum Attribute

@@ -178,7 +204,7 @@

manifest:checksum Attribute

Datatypes - base64Binary  + base64Binary    @@ -186,6 +212,10 @@

manifest:checksum Attribute

  + + RNG Relations + manifest:checksum="<base64Binary>"   +

manifest:checksum-type Attribute

@@ -199,7 +229,7 @@

manifest:checksum-type Attribut Datatypes - string  + string    @@ -207,6 +237,10 @@

manifest:checksum-type Attribut   + + RNG Relations + manifest:checksum-type="<string>"   +

manifest:full-path Attribute

@@ -220,7 +254,7 @@

manifest:full-path Attribute Datatypes - string  + string    @@ -228,6 +262,10 @@

manifest:full-path Attribute   + + RNG Relations + manifest:full-path="<string>"   +

manifest:initialisation-vector Attribute

@@ -241,7 +279,7 @@

manifest:initialisation Datatypes - base64Binary  + base64Binary    @@ -249,6 +287,10 @@

manifest:initialisation   + + RNG Relations + manifest:initialisation-vector="<base64Binary>"   +

manifest:iteration-count Attribute

@@ -262,7 +304,7 @@

manifest:iteration-count Attr Datatypes - nonNegativeInteger  + nonNegativeInteger    @@ -270,6 +312,10 @@

manifest:iteration-count Attr   + + RNG Relations + manifest:iteration-count="<nonNegativeInteger>"   +

manifest:key-derivation-name Attribute

@@ -283,7 +329,7 @@

manifest:key-derivation-n Datatypes - string  + string    @@ -291,6 +337,10 @@

manifest:key-derivation-n   + + RNG Relations + manifest:key-derivation-name="<string>"   +

manifest:media-type Attribute

@@ -304,7 +354,7 @@

manifest:media-type Attribute< Datatypes - string  + string    @@ -312,6 +362,10 @@

manifest:media-type Attribute<   + + RNG Relations + manifest:media-type="<string>"   +

manifest:salt Attribute

@@ -325,7 +379,7 @@

manifest:salt Attribute

Datatypes - base64Binary  + base64Binary    @@ -333,6 +387,10 @@

manifest:salt Attribute

  + + RNG Relations + manifest:salt="<base64Binary>"   +

manifest:size Attribute

@@ -346,7 +404,7 @@

manifest:size Attribute

Datatypes - nonNegativeInteger  + nonNegativeInteger    @@ -354,6 +412,10 @@

manifest:size Attribute

  + + RNG Relations + manifest:size="<nonNegativeInteger>"   +
diff --git a/generator/schema2template/src/test/resources/test-reference/odf/generation/odf-reference/odf-package-manifest-1.2/OdfReference.html b/generator/schema2template/src/test/resources/test-reference/odf/generation/odf-reference/odf-package-manifest-1.2/OdfReference.html index 99f53d5634..5ee8852b2d 100644 --- a/generator/schema2template/src/test/resources/test-reference/odf/generation/odf-reference/odf-package-manifest-1.2/OdfReference.html +++ b/generator/schema2template/src/test/resources/test-reference/odf/generation/odf-reference/odf-package-manifest-1.2/OdfReference.html @@ -51,6 +51,10 @@

manifest:algorithm Element

[any org.w3c.dom.Element]    + + Child Relations + <manifest:algorithm manifest:algorithm-name="Blowfish CFB | <anyURI>" manifest:initialisation-vector="<base64Binary>" (<*:* ... >)* >  +
@@ -77,6 +81,11 @@

manifest:encryption-data Elemen <manifest:start-key-generation>    + + Child Relations + <manifest:encryption-data manifest:checksum-type="SHA1/1K | <anyURI>" manifest:checksum="<base64Binary>" <manifest:algorithm ... > (<manifest:start-key-generation ... >)? + <manifest:key-derivation ... >>  +
@@ -95,7 +104,7 @@

manifest:file-entry Element

manifest:media-type  manifest:preferred-view-mode  manifest:size  - manifest:version[1]  + manifest:version[2]    @@ -104,6 +113,14 @@

manifest:file-entry Element

<manifest:encryption-data>    + + Child Relations + <manifest:file-entry manifest:full-path="<string>" (manifest:size="<nonNegativeInteger>" )? + manifest:media-type="<string>" (manifest:preferred-view-mode="edit | presentation-slide-show | read-only | QName]" )? + (manifest:version="<string>" )? + (<manifest:encryption-data ... >)? + >  +
@@ -129,6 +146,11 @@

manifest:key-derivation Element<   + + Child Relations + <manifest:key-derivation manifest:key-derivation-name="PBKDF2 | <anyURI>" manifest:salt="<base64Binary>" manifest:iteration-count="<nonNegativeInteger>" (manifest:key-size="<nonNegativeInteger>" )? + >  +
@@ -142,7 +164,7 @@

manifest:manifest Element

Attributes - manifest:version[2]  + manifest:version[1]    @@ -151,6 +173,10 @@

manifest:manifest Element

<manifest:file-entry>*    + + Child Relations + <manifest:manifest manifest:version="1.2" (<manifest:file-entry ... >)+ >  +
@@ -174,6 +200,11 @@

manifest:start-key-generat   + + Child Relations + <manifest:start-key-generation manifest:start-key-generation-name="SHA1 | <anyURI>" (manifest:key-size="<nonNegativeInteger>" )? + >  +

manifest:algorithm-name Attribute

@@ -187,15 +218,19 @@

manifest:algorithm-name Attrib Datatypes - anyURI  + anyURI    Values - "Blowfish CFB"  + "Blowfish CFB"    + + RNG Relations + manifest:algorithm-name="Blowfish CFB | <anyURI>"   +

manifest:checksum Attribute

@@ -209,7 +244,7 @@

manifest:checksum Attribute

Datatypes - base64Binary  + base64Binary    @@ -217,6 +252,10 @@

manifest:checksum Attribute

  + + RNG Relations + manifest:checksum="<base64Binary>"   +

manifest:checksum-type Attribute

@@ -230,15 +269,19 @@

manifest:checksum-type Attribut Datatypes - anyURI  + anyURI    Values - "SHA1/1K"  + "SHA1/1K"    + + RNG Relations + manifest:checksum-type="SHA1/1K | <anyURI>"   +

manifest:full-path Attribute

@@ -252,7 +295,7 @@

manifest:full-path Attribute Datatypes - string  + string    @@ -260,6 +303,10 @@

manifest:full-path Attribute   + + RNG Relations + manifest:full-path="<string>"   +

manifest:initialisation-vector Attribute

@@ -273,7 +320,7 @@

manifest:initialisation Datatypes - base64Binary  + base64Binary    @@ -281,6 +328,10 @@

manifest:initialisation   + + RNG Relations + manifest:initialisation-vector="<base64Binary>"   +

manifest:iteration-count Attribute

@@ -294,7 +345,7 @@

manifest:iteration-count Attr Datatypes - nonNegativeInteger  + nonNegativeInteger    @@ -302,6 +353,10 @@

manifest:iteration-count Attr   + + RNG Relations + manifest:iteration-count="<nonNegativeInteger>"   +

manifest:key-derivation-name Attribute

@@ -315,15 +370,19 @@

manifest:key-derivation-n Datatypes - anyURI  + anyURI    Values - "PBKDF2"  + "PBKDF2"    + + RNG Relations + manifest:key-derivation-name="PBKDF2 | <anyURI>"   +

manifest:key-size Attribute (new in ODF 1.2)

@@ -338,7 +397,7 @@

manifest:key-size Attribute  Datatypes - nonNegativeInteger  + nonNegativeInteger    @@ -346,6 +405,10 @@

manifest:key-size Attribute    + + RNG Relations + manifest:key-size="<nonNegativeInteger>"   +

manifest:media-type Attribute

@@ -359,7 +422,7 @@

manifest:media-type Attribute< Datatypes - string  + string    @@ -367,6 +430,10 @@

manifest:media-type Attribute<   + + RNG Relations + manifest:media-type="<string>"   +

manifest:preferred-view-mode Attribute (new in ODF 1.2)

@@ -380,17 +447,21 @@

manifest:preferred-view-m Datatypes - QName  + QName    Values - "edit"  - "presentation-slide-show"  - "read-only"  + "edit"  + "presentation-slide-show"  + "read-only"    + + RNG Relations + manifest:preferred-view-mode="edit | presentation-slide-show | read-only | QName]"   +

manifest:salt Attribute

@@ -404,7 +475,7 @@

manifest:salt Attribute

Datatypes - base64Binary  + base64Binary    @@ -412,6 +483,10 @@

manifest:salt Attribute

  + + RNG Relations + manifest:salt="<base64Binary>"   +

manifest:size Attribute

@@ -425,7 +500,7 @@

manifest:size Attribute

Datatypes - nonNegativeInteger  + nonNegativeInteger    @@ -433,6 +508,10 @@

manifest:size Attribute

  + + RNG Relations + manifest:size="<nonNegativeInteger>"   +

manifest:start-key-generation-name Attribute (new in ODF 1.2)

@@ -446,15 +525,19 @@

manifest:start-key- Datatypes - anyURI  + anyURI    Values - "SHA1"  + "SHA1"    + + RNG Relations + manifest:start-key-generation-name="SHA1 | <anyURI>"   +

manifest:version[1] Attribute (new in ODF 1.2)

@@ -463,20 +546,24 @@

manifest:version[1] Attribute&nbs Parent Elements - manifest:file-entry  + manifest:manifest    Datatypes - string    Values + "1.2"    + + RNG Relations + manifest:version="1.2"   +

manifest:version[2] Attribute (new in ODF 1.2)

@@ -485,20 +572,24 @@

manifest:version[2] Attribute&nbs Parent Elements - manifest:manifest  + manifest:file-entry    Datatypes + string    Values - "1.2"    + + RNG Relations + manifest:version="<string>"   +
diff --git a/generator/schema2template/src/test/resources/test-reference/odf/generation/odf-reference/odf-package-manifest-1.3/OdfReference.html b/generator/schema2template/src/test/resources/test-reference/odf/generation/odf-reference/odf-package-manifest-1.3/OdfReference.html index 6d70021b05..1bf6df9d30 100644 --- a/generator/schema2template/src/test/resources/test-reference/odf/generation/odf-reference/odf-package-manifest-1.3/OdfReference.html +++ b/generator/schema2template/src/test/resources/test-reference/odf/generation/odf-reference/odf-package-manifest-1.3/OdfReference.html @@ -49,6 +49,10 @@

manifest:CipherData Element  <manifest:CipherValue>    + + Child Relations + <manifest:CipherData <manifest:CipherValue ... >>  +
@@ -70,6 +74,10 @@

manifest:CipherValue Element&nb   + + Child Relations + <manifest:CipherValue <base64Binary>>  +
@@ -93,6 +101,11 @@

manifest:PGPData Element (new <manifest:PGPKeyPacket>    + + Child Relations + <manifest:PGPData <manifest:PGPKeyID ... > (<manifest:PGPKeyPacket ... >)? + >  +
@@ -114,6 +127,10 @@

manifest:PGPKeyID Element (ne   + + Child Relations + <manifest:PGPKeyID <base64Binary>>  +
@@ -135,6 +152,10 @@

manifest:PGPKeyPacket Element&   + + Child Relations + <manifest:PGPKeyPacket <base64Binary>>  +
@@ -159,6 +180,10 @@

manifest:algorithm Element

[any org.w3c.dom.Element]    + + Child Relations + <manifest:algorithm manifest:algorithm-name="Blowfish CFB | <anyURI>" manifest:initialisation-vector="<base64Binary>" (<*:* ... >)* >  +
@@ -183,6 +208,11 @@

manifest:encrypted-key Element<manifest:keyinfo>    + + Child Relations + <manifest:encrypted-key (<manifest:encryption-method ... >)? + <manifest:keyinfo ... ><manifest:CipherData ... >>  +
@@ -209,6 +239,11 @@

manifest:encryption-data Elemen <manifest:start-key-generation>    + + Child Relations + <manifest:encryption-data manifest:checksum-type="SHA1/1K | <anyURI>" manifest:checksum="<base64Binary>" <manifest:algorithm ... > (<manifest:start-key-generation ... >)? + <manifest:key-derivation ... >>  +
@@ -231,6 +266,10 @@

manifest:encryption-method El   + + Child Relations + <manifest:encryption-method manifest:PGPAlgorithm="<anyURI>" >  +
@@ -258,6 +297,14 @@

manifest:file-entry Element

<manifest:encryption-data>    + + Child Relations + <manifest:file-entry manifest:full-path="<string>" (manifest:size="<nonNegativeInteger>" )? + manifest:media-type="<string>" (manifest:preferred-view-mode="edit | presentation-slide-show | read-only | QName]" )? + (manifest:version="<string>" )? + (<manifest:encryption-data ... >)? + >  +
@@ -284,6 +331,11 @@

manifest:key-derivation Element<   + + Child Relations + <manifest:key-derivation manifest:key-derivation-name="PGP" | manifest:key-derivation-name="PBKDF2 | <anyURI>" manifest:salt="<base64Binary>" manifest:iteration-count="<nonNegativeInteger>" (manifest:key-size="<nonNegativeInteger>" )? + >  +
@@ -306,6 +358,10 @@

manifest:keyinfo Element (new <manifest:PGPData>    + + Child Relations + <manifest:keyinfo <manifest:PGPData ... >>  +
@@ -329,6 +385,10 @@

manifest:manifest Element

<manifest:file-entry>*    + + Child Relations + <manifest:manifest manifest:version="1.3" (<manifest:encrypted-key ... >)* (<manifest:file-entry ... >)+ >  +
@@ -352,6 +412,11 @@

manifest:start-key-generat   + + Child Relations + <manifest:start-key-generation manifest:start-key-generation-name="SHA1 | <anyURI>" (manifest:key-size="<nonNegativeInteger>" )? + >  +

manifest:PGPAlgorithm Attribute (new in ODF 1.3)

@@ -365,7 +430,7 @@

manifest:PGPAlgorithm Attribute< Datatypes - anyURI  + anyURI    @@ -373,6 +438,10 @@

manifest:PGPAlgorithm Attribute<   + + RNG Relations + manifest:PGPAlgorithm="<anyURI>"   +

manifest:algorithm-name Attribute

@@ -386,15 +455,19 @@

manifest:algorithm-name Attrib Datatypes - anyURI  + anyURI    Values - "Blowfish CFB"  + "Blowfish CFB"    + + RNG Relations + manifest:algorithm-name="Blowfish CFB | <anyURI>"   +

manifest:checksum Attribute

@@ -408,7 +481,7 @@

manifest:checksum Attribute

Datatypes - base64Binary  + base64Binary    @@ -416,6 +489,10 @@

manifest:checksum Attribute

  + + RNG Relations + manifest:checksum="<base64Binary>"   +

manifest:checksum-type Attribute

@@ -429,15 +506,19 @@

manifest:checksum-type Attribut Datatypes - anyURI  + anyURI    Values - "SHA1/1K"  + "SHA1/1K"    + + RNG Relations + manifest:checksum-type="SHA1/1K | <anyURI>"   +

manifest:full-path Attribute

@@ -451,7 +532,7 @@

manifest:full-path Attribute Datatypes - string  + string    @@ -459,6 +540,10 @@

manifest:full-path Attribute   + + RNG Relations + manifest:full-path="<string>"   +

manifest:initialisation-vector Attribute

@@ -472,7 +557,7 @@

manifest:initialisation Datatypes - base64Binary  + base64Binary    @@ -480,6 +565,10 @@

manifest:initialisation   + + RNG Relations + manifest:initialisation-vector="<base64Binary>"   +

manifest:iteration-count Attribute

@@ -493,7 +582,7 @@

manifest:iteration-count Attr Datatypes - nonNegativeInteger  + nonNegativeInteger    @@ -501,6 +590,10 @@

manifest:iteration-count Attr   + + RNG Relations + manifest:iteration-count="<nonNegativeInteger>"   +

manifest:key-derivation-name[1] Attribute

@@ -520,9 +613,13 @@

manifest:key-derivation-n Values - "PGP"  + "PGP"    + + RNG Relations + manifest:key-derivation-name="PGP"   +

manifest:key-derivation-name[2] Attribute

@@ -537,15 +634,19 @@

manifest:key-derivation-n Datatypes - anyURI  + anyURI    Values - "PBKDF2"  + "PBKDF2"    + + RNG Relations + manifest:key-derivation-name="PBKDF2 | <anyURI>"   +

manifest:key-size Attribute (new in ODF 1.2)

@@ -560,7 +661,7 @@

manifest:key-size Attribute  Datatypes - nonNegativeInteger  + nonNegativeInteger    @@ -568,6 +669,10 @@

manifest:key-size Attribute    + + RNG Relations + manifest:key-size="<nonNegativeInteger>"   +

manifest:media-type Attribute

@@ -581,7 +686,7 @@

manifest:media-type Attribute< Datatypes - string  + string    @@ -589,6 +694,10 @@

manifest:media-type Attribute<   + + RNG Relations + manifest:media-type="<string>"   +

manifest:preferred-view-mode Attribute (new in ODF 1.2)

@@ -602,17 +711,21 @@

manifest:preferred-view-m Datatypes - QName  + QName    Values - "edit"  - "presentation-slide-show"  - "read-only"  + "edit"  + "presentation-slide-show"  + "read-only"    + + RNG Relations + manifest:preferred-view-mode="edit | presentation-slide-show | read-only | QName]"   +

manifest:salt Attribute

@@ -626,7 +739,7 @@

manifest:salt Attribute

Datatypes - base64Binary  + base64Binary    @@ -634,6 +747,10 @@

manifest:salt Attribute

  + + RNG Relations + manifest:salt="<base64Binary>"   +

manifest:size Attribute

@@ -647,7 +764,7 @@

manifest:size Attribute

Datatypes - nonNegativeInteger  + nonNegativeInteger    @@ -655,6 +772,10 @@

manifest:size Attribute

  + + RNG Relations + manifest:size="<nonNegativeInteger>"   +

manifest:start-key-generation-name Attribute (new in ODF 1.2)

@@ -668,15 +789,19 @@

manifest:start-key- Datatypes - anyURI  + anyURI    Values - "SHA1"  + "SHA1"    + + RNG Relations + manifest:start-key-generation-name="SHA1 | <anyURI>"   +

manifest:version[1] Attribute (new in ODF 1.2)

@@ -696,9 +821,13 @@

manifest:version[1] Attribute&nbs Values - "1.3"  + "1.3"    + + RNG Relations + manifest:version="1.3"   +

manifest:version[2] Attribute (new in ODF 1.2)

@@ -713,7 +842,7 @@

manifest:version[2] Attribute&nbs Datatypes - string  + string    @@ -721,6 +850,10 @@

manifest:version[2] Attribute&nbs   + + RNG Relations + manifest:version="<string>"   +
diff --git a/generator/schema2template/src/test/resources/test-reference/odf/generation/odf-reference/odf-schema-1.0/OdfReference.html b/generator/schema2template/src/test/resources/test-reference/odf/generation/odf-reference/odf-schema-1.0/OdfReference.html index 7d214dce9c..3b375a19d4 100644 --- a/generator/schema2template/src/test/resources/test-reference/odf/generation/odf-reference/odf-schema-1.0/OdfReference.html +++ b/generator/schema2template/src/test/resources/test-reference/odf/generation/odf-reference/odf-schema-1.0/OdfReference.html @@ -68,6 +68,25 @@

anim:animate Element

  + + Child Relations + <anim:animate (smil:targetElement="<IDREF>" )? + (anim:sub-item="<string>" )? + smil:attributeName="<string>" (smil:values="<string>" )? + (anim:formula="<string>" )? + + ( (smil:to="<string>" )? + (smil:from="<string>" )? + (smil:by="<string>" )? + ) (smil:calcMode="discrete | linear | paced | spline" )? + (smil:keyTimes="<string>" )? + (smil:keySplines="<string>" )? + (smil:repeatDur="<string>" smil:repeatCount="<nonNegativeInteger>" )? + (smil:fill="remove | freeze | hold | auto | default | transition" )? + (smil:accumulate="none | sum" )? + (smil:additive="replace | sum" )? + >  +
@@ -107,6 +126,26 @@

anim:animateColor Element

  + + Child Relations + <anim:animateColor (smil:targetElement="<IDREF>" )? + (anim:sub-item="<string>" )? + smil:attributeName="<string>" (smil:accumulate="none | sum" )? + (smil:additive="replace | sum" )? + (smil:values="<string>" )? + (anim:formula="<string>" )? + + ( (smil:to="<string>" )? + (smil:from="<string>" )? + (smil:by="<string>" )? + ) (smil:calcMode="discrete | linear | paced | spline" )? + (smil:keyTimes="<string>" )? + (smil:keySplines="<string>" )? + (anim:color-interpolation="rgb | hsl" )? + (anim:color-interpolation-direction="clockwise | counter-clockwise" )? + (smil:fill="remove | freeze | hold | auto | default | transition" )? + >  +
@@ -146,6 +185,26 @@

anim:animateMotion Element

  + + Child Relations + <anim:animateMotion (svg:path="<string>" )? + (svg:origin="<string>" )? + (smil:calcMode="discrete | linear | paced | spline" )? + (smil:targetElement="<IDREF>" )? + (anim:sub-item="<string>" )? + smil:attributeName="<string>" (smil:accumulate="none | sum" )? + (smil:additive="replace | sum" )? + (smil:values="<string>" )? + (anim:formula="<string>" )? + + ( (smil:to="<string>" )? + (smil:from="<string>" )? + (smil:by="<string>" )? + ) (smil:fill="remove | freeze | hold | auto | default | transition" )? + (smil:keyTimes="<string>" )? + (smil:keySplines="<string>" )? + >  +
@@ -181,6 +240,21 @@

anim:animateTransform Element<   + + Child Relations + <anim:animateTransform (smil:targetElement="<IDREF>" )? + (anim:sub-item="<string>" )? + smil:attributeName="<string>" (smil:accumulate="none | sum" )? + (smil:additive="replace | sum" )? + (smil:values="<string>" )? + (anim:formula="<string>" )? + + ( (smil:to="<string>" )? + (smil:from="<string>" )? + (smil:by="<string>" )? + )svg:type="translate | scale | rotate | skewX | skewY" (smil:fill="remove | freeze | hold | auto | default | transition" )? + >  +
@@ -218,6 +292,24 @@

anim:audio Element

  + + Child Relations + <anim:audio (presentation:node-type="default | on-click | with-previous | after-previous | timing-root | main-sequence | interactive-sequence" )? + (presentation:preset-id="<string>" )? + (presentation:preset-sub-type="<string>" )? + (presentation:preset-class="custom | entrance | exit | emphasis | motion-path | ole-action | media-call" )? + (presentation:master-element="<IDREF>" )? + (presentation:group-id="<string>" )? + (anim:id="<ID>" )? + (xlink:href="<anyURI>" )? + (anim:audio-level="<double>" )? + + ( (smil:begin="<string>" )? + (smil:end="<string>" )? + (smil:dur="<string>" )? + (smil:repeatDur="<string>" smil:repeatCount="<nonNegativeInteger>" )? + )>  +
@@ -254,6 +346,21 @@

anim:command Element

<anim:param>*    + + Child Relations + <anim:command (presentation:node-type="default | on-click | with-previous | after-previous | timing-root | main-sequence | interactive-sequence" )? + (presentation:preset-id="<string>" )? + (presentation:preset-sub-type="<string>" )? + (presentation:preset-class="custom | entrance | exit | emphasis | motion-path | ole-action | media-call" )? + (presentation:master-element="<IDREF>" )? + (presentation:group-id="<string>" )? + (anim:id="<ID>" )? + anim:command="<string>" (smil:begin="<string>" )? + (smil:end="<string>" )? + (smil:targetElement="<IDREF>" )? + (anim:sub-item="<string>" )? + (<anim:param ... >)* >  +
@@ -311,6 +418,34 @@

anim:iterate Element

<anim:transitionFilter>*    + + Child Relations + <anim:iterate (presentation:node-type="default | on-click | with-previous | after-previous | timing-root | main-sequence | interactive-sequence" )? + (presentation:preset-id="<string>" )? + (presentation:preset-sub-type="<string>" )? + (presentation:preset-class="custom | entrance | exit | emphasis | motion-path | ole-action | media-call" )? + (presentation:master-element="<IDREF>" )? + (presentation:group-id="<string>" )? + (anim:id="<ID>" )? + (smil:targetElement="<IDREF>" )? + (anim:iterate-type="<string>" )? + (anim:iterate-interval="<duration>" )? + + ( + ( (smil:begin="<string>" )? + (smil:end="<string>" )? + (smil:dur="<string>" )? + (smil:repeatDur="<string>" smil:repeatCount="<nonNegativeInteger>" )? + ) (smil:restart="never | always | whenNotActive | default" )? + (smil:restartDefault="never | always | whenNotActive | inherit" )? + (smil:fill="remove | freeze | hold | auto | default | transition" )? + (smil:fillDefault="remove | freeze | hold | transition | auto | inherit" )? + (smil:accelerate="<double>" )? + (smil:decelerate="<double>" )? + (smil:autoReverse="<boolean>" )? + ) (smil:endsync="first | last | all | media" )? + (<anim:animate ... > | <anim:set ... > | <anim:animateMotion ... > | <anim:animateColor ... > | <anim:animateTransform ... > | <anim:transitionFilter ... > | <anim:par ... > | <anim:seq ... > | <anim:iterate ... > | <anim:audio ... > | <anim:command ... >)* >  +
@@ -365,6 +500,31 @@

anim:par Element

<anim:transitionFilter>*    + + Child Relations + <anim:par (presentation:node-type="default | on-click | with-previous | after-previous | timing-root | main-sequence | interactive-sequence" )? + (presentation:preset-id="<string>" )? + (presentation:preset-sub-type="<string>" )? + (presentation:preset-class="custom | entrance | exit | emphasis | motion-path | ole-action | media-call" )? + (presentation:master-element="<IDREF>" )? + (presentation:group-id="<string>" )? + (anim:id="<ID>" )? + + ( + ( (smil:begin="<string>" )? + (smil:end="<string>" )? + (smil:dur="<string>" )? + (smil:repeatDur="<string>" smil:repeatCount="<nonNegativeInteger>" )? + ) (smil:restart="never | always | whenNotActive | default" )? + (smil:restartDefault="never | always | whenNotActive | inherit" )? + (smil:fill="remove | freeze | hold | auto | default | transition" )? + (smil:fillDefault="remove | freeze | hold | transition | auto | inherit" )? + (smil:accelerate="<double>" )? + (smil:decelerate="<double>" )? + (smil:autoReverse="<boolean>" )? + ) (smil:endsync="first | last | all | media" )? + (<anim:animate ... > | <anim:set ... > | <anim:animateMotion ... > | <anim:animateColor ... > | <anim:animateTransform ... > | <anim:transitionFilter ... > | <anim:par ... > | <anim:seq ... > | <anim:iterate ... > | <anim:audio ... > | <anim:command ... >)* >  +
@@ -388,6 +548,10 @@

anim:param Element

  + + Child Relations + <anim:param anim:name="TEXT" anim:value="TEXT" >  +
@@ -431,6 +595,31 @@

anim:seq Element

  + + Child Relations + <anim:seq (presentation:node-type="default | on-click | with-previous | after-previous | timing-root | main-sequence | interactive-sequence" )? + (presentation:preset-id="<string>" )? + (presentation:preset-sub-type="<string>" )? + (presentation:preset-class="custom | entrance | exit | emphasis | motion-path | ole-action | media-call" )? + (presentation:master-element="<IDREF>" )? + (presentation:group-id="<string>" )? + (anim:id="<ID>" )? + (smil:endsync="first | last | all | media" )? + + ( + ( (smil:begin="<string>" )? + (smil:end="<string>" )? + (smil:dur="<string>" )? + (smil:repeatDur="<string>" smil:repeatCount="<nonNegativeInteger>" )? + ) (smil:restart="never | always | whenNotActive | default" )? + (smil:restartDefault="never | always | whenNotActive | inherit" )? + (smil:fill="remove | freeze | hold | auto | default | transition" )? + (smil:fillDefault="remove | freeze | hold | transition | auto | inherit" )? + (smil:accelerate="<double>" )? + (smil:decelerate="<double>" )? + (smil:autoReverse="<boolean>" )? + )>  +
@@ -461,6 +650,16 @@

anim:set Element

  + + Child Relations + <anim:set (smil:targetElement="<IDREF>" )? + (anim:sub-item="<string>" )? + smil:attributeName="<string>" (smil:to="<string>" )? + (smil:fill="remove | freeze | hold | auto | default | transition" )? + (smil:accumulate="none | sum" )? + (smil:additive="replace | sum" )? + >  +
@@ -500,6 +699,26 @@

anim:transitionFilter Element<   + + Child Relations + <anim:transitionFilter (smil:targetElement="<IDREF>" )? + (anim:sub-item="<string>" )? + (smil:accumulate="none | sum" )? + (smil:additive="replace | sum" )? + (smil:values="<string>" )? + (anim:formula="<string>" )? + + ( (smil:to="<string>" )? + (smil:from="<string>" )? + (smil:by="<string>" )? + ) (smil:calcMode="discrete | linear | paced | spline" )? + smil:type="<string>" (smil:subtype="<string>" )? + (smil:direction="forward | reverse" )? + (smil:fadeColor="forward | reverse" )? + (smil:mode="in | out" )? + (smil:fill="remove | freeze | hold | auto | default | transition" )? + >  +
@@ -527,6 +746,14 @@

chart:axis Element

<chart:title>    + + Child Relations + <chart:axis chart:dimension="x | y | z" (chart:name="<string>" )? + (chart:style-name="(<NCName>)?" )? + (<chart:title ... >)? + (<chart:categories ... >)? + (<chart:grid ... >)* >  +
@@ -549,6 +776,11 @@

chart:categories Element

  + + Child Relations + <chart:categories (table:cell-range-address="string]" )? + >  +
@@ -582,6 +814,21 @@

chart:chart Element

<table:table>    + + Child Relations + <chart:chart chart:class="string]" + ( (svg:width="string]" )? + (svg:height="string]" )? + ) (chart:column-mapping="<string>" )? + (chart:row-mapping="<string>" )? + (chart:style-name="(<NCName>)?" )? + (<chart:title ... >)? + (<chart:subtitle ... >)? + (<chart:footer ... >)? + (<chart:legend ... >)? + <chart:plot-area ... > (<table:table ... >)? + >  +
@@ -605,6 +852,12 @@

chart:data-point Element

  + + Child Relations + <chart:data-point (chart:repeated="<nonNegativeInteger>" )? + (chart:style-name="(<NCName>)?" )? + >  +
@@ -627,6 +880,11 @@

chart:domain Element

  + + Child Relations + <chart:domain (table:cell-range-address="string]" )? + >  +
@@ -649,6 +907,11 @@

chart:error-indicator Element<   + + Child Relations + <chart:error-indicator (chart:style-name="(<NCName>)?" )? + >  +
@@ -672,6 +935,12 @@

chart:floor Element

  + + Child Relations + <chart:floor (svg:width="string]" )? + (chart:style-name="(<NCName>)?" )? + >  +
@@ -687,7 +956,7 @@

chart:footer Element

Attributes chart:style-name  - svg:x[2]  + svg:x[1]  svg:y[2]  table:cell-range    @@ -698,6 +967,16 @@

chart:footer Element

<text:p>    + + Child Relations + <chart:footer (table:cell-range="string]" )? + + ( (svg:x="string]" )? + (svg:y="string]" )? + ) (chart:style-name="(<NCName>)?" )? + (<text:p ... >)? + >  +
@@ -721,6 +1000,12 @@

chart:grid Element

  + + Child Relations + <chart:grid (chart:class="major | minor" )? + (chart:style-name="(<NCName>)?" )? + >  +
@@ -742,7 +1027,7 @@

chart:legend Element

style:legend-expansion[1]  style:legend-expansion[2]  style:legend-expansion-aspect-ratio  - svg:x[2]  + svg:x[1]  svg:y[2]    @@ -751,6 +1036,19 @@

chart:legend Element

  + + Child Relations + <chart:legend ( + (chart:legend-position="start | end | top | bottom" (chart:legend-align="start | center | end" )? + ) | chart:legend-position="top-start | bottom-start | top-end | bottom-end" )? + + ( (svg:x="string]" )? + (svg:y="string]" )? + ) (style:legend-expansion="wide | high | balanced" | + (style:legend-expansion="custom" style:legend-expansion-aspect-ratio="<double>" ))? + (chart:style-name="(<NCName>)?" )? + >  +
@@ -773,6 +1071,11 @@

chart:mean-value Element

  + + Child Relations + <chart:mean-value (chart:style-name="(<NCName>)?" )? + >  +
@@ -802,7 +1105,7 @@

chart:plot-area Element

dr3d:vup  svg:height[1]  svg:width[1]  - svg:x[2]  + svg:x[1]  svg:y[2]  table:cell-range-address    @@ -820,6 +1123,38 @@

chart:plot-area Element

<dr3d:light>*    + + Child Relations + <chart:plot-area + ( + ( (svg:x="string]" )? + (svg:y="string]" )? + ) + ( (svg:width="string]" )? + (svg:height="string]" )? + )) (chart:style-name="(<NCName>)?" )? + (table:cell-range-address="string]" )? + (chart:data-source-has-labels="none | row | column | both" )? + + ( + ( (dr3d:vrp="string]" )? + (dr3d:vpn="string]" )? + (dr3d:vup="string]" )? + ) (dr3d:projection="parallel | perspective" )? + (dr3d:distance="string]" )? + (dr3d:focal-length="string]" )? + (dr3d:shadow-slant="<nonNegativeInteger>" )? + (dr3d:shade-mode="flat | phong | gouraud | draft" )? + (dr3d:ambient-color="string]" )? + (dr3d:lighting-mode="<boolean>" )? + (dr3d:transform="TEXT" )? + )(<dr3d:light ... >)* (<chart:axis ... >)* (<chart:series ... >)* (<chart:stock-gain-marker ... >)? + (<chart:stock-loss-marker ... >)? + (<chart:stock-range-line ... >)? + (<chart:wall ... >)? + (<chart:floor ... >)? + >  +
@@ -842,6 +1177,11 @@

chart:regression-curve Element   + + Child Relations + <chart:regression-curve (chart:style-name="(<NCName>)?" )? + >  +
@@ -873,6 +1213,18 @@

chart:series Element

<chart:regression-curve>    + + Child Relations + <chart:series (chart:values-cell-range-address="string]" )? + (chart:label-cell-address="string]" )? + (chart:class="string]" )? + (chart:attached-axis="<string>" )? + (chart:style-name="(<NCName>)?" )? + (<chart:domain ... >)* (<chart:mean-value ... >)? + (<chart:regression-curve ... >)? + (<chart:error-indicator ... >)? + (<chart:data-point ... >)* >  +
@@ -895,6 +1247,11 @@

chart:stock-gain-marker Element<   + + Child Relations + <chart:stock-gain-marker (chart:style-name="(<NCName>)?" )? + >  +
@@ -917,6 +1274,11 @@

chart:stock-loss-marker Element<   + + Child Relations + <chart:stock-loss-marker (chart:style-name="(<NCName>)?" )? + >  +
@@ -939,6 +1301,11 @@

chart:stock-range-line Element   + + Child Relations + <chart:stock-range-line (chart:style-name="(<NCName>)?" )? + >  +
@@ -954,7 +1321,7 @@

chart:subtitle Element

Attributes chart:style-name  - svg:x[2]  + svg:x[1]  svg:y[2]  table:cell-range    @@ -965,6 +1332,16 @@

chart:subtitle Element

<text:p>    + + Child Relations + <chart:subtitle (table:cell-range="string]" )? + + ( (svg:x="string]" )? + (svg:y="string]" )? + ) (chart:style-name="(<NCName>)?" )? + (<text:p ... >)? + >  +
@@ -981,7 +1358,7 @@

chart:title Element

Attributes chart:style-name  - svg:x[2]  + svg:x[1]  svg:y[2]  table:cell-range    @@ -992,6 +1369,16 @@

chart:title Element

<text:p>    + + Child Relations + <chart:title (table:cell-range="string]" )? + + ( (svg:x="string]" )? + (svg:y="string]" )? + ) (chart:style-name="(<NCName>)?" )? + (<text:p ... >)? + >  +
@@ -1015,6 +1402,12 @@

chart:wall Element

  + + Child Relations + <chart:wall (svg:width="string]" )? + (chart:style-name="(<NCName>)?" )? + >  +
@@ -1040,6 +1433,10 @@

config:config-item Element

  + + Child Relations + <config:config-item config:name="<string>" config:type="boolean | short | int | long | double | string | datetime | base64Binary" TEXT>  +
@@ -1067,6 +1464,11 @@

config:config-item-map-entr <config:config-item-set>*    + + Child Relations + <config:config-item-map-entry (config:name="<string>" )? + (<config:config-item ... > | <config:config-item-set ... > | <config:config-item-map-named ... > | <config:config-item-map-indexed ... >)+ >  +
@@ -1091,6 +1493,10 @@

config:config-item-map-in <config:config-item-map-entry>*    + + Child Relations + <config:config-item-map-indexed config:name="<string>" (<config:config-item-map-entry ... >)+ >  +
@@ -1115,6 +1521,10 @@

config:config-item-map-name <config:config-item-map-entry>*    + + Child Relations + <config:config-item-map-named config:name="<string>" (<config:config-item-map-entry ... >)+ >  +
@@ -1143,6 +1553,10 @@

config:config-item-set Element<config:config-item-set>*    + + Child Relations + <config:config-item-set config:name="<string>" (<config:config-item ... > | <config:config-item-set ... > | <config:config-item-map-named ... > | <config:config-item-map-indexed ... >)+ >  +
@@ -1165,6 +1579,10 @@

dc:creator Element

  + + Child Relations + <dc:creator <string>>  +
@@ -1187,6 +1605,10 @@

dc:date Element

  + + Child Relations + <dc:date <dateTime>>  +
@@ -1205,7 +1627,7 @@

dr3d:cube Element

dr3d:min-edge  dr3d:transform  draw:class-names  - draw:id[1]  + draw:id[2]  draw:layer  draw:style-name  draw:z-index  @@ -1218,6 +1640,27 @@

dr3d:cube Element

  + + Child Relations + <dr3d:cube + ( (dr3d:min-edge="string]" )? + (dr3d:max-edge="string]" )? + ) (draw:z-index="<nonNegativeInteger>" )? + (draw:id="<ID>" )? + (draw:layer="<string>" )? + + ( (draw:style-name="(<NCName>)?" )? + (draw:class-names=" +START_list(<NCName>)* +END_list" )? + ) | + ( (presentation:style-name="(<NCName>)?" )? + (presentation:class-names=" +START_list(<NCName>)* +END_list" )? + ) (dr3d:transform="TEXT" )? + >  +
@@ -1234,7 +1677,7 @@

dr3d:extrude Element

dr3d:transform  draw:class-names  - draw:id[1]  + draw:id[2]  draw:layer  draw:style-name  draw:z-index  @@ -1249,6 +1692,26 @@

dr3d:extrude Element

  + + Child Relations + <dr3d:extrude svg:d="<string>" svg:viewBox=" +START_list<integer><integer><integer><integer> +END_list" (draw:id="<ID>" )? + (draw:z-index="<nonNegativeInteger>" )? + (draw:layer="<string>" )? + + ( (draw:style-name="(<NCName>)?" )? + (draw:class-names=" +START_list(<NCName>)* +END_list" )? + ) | + ( (presentation:style-name="(<NCName>)?" )? + (presentation:class-names=" +START_list(<NCName>)* +END_list" )? + ) (dr3d:transform="TEXT" )? + >  +
@@ -1275,6 +1738,13 @@

dr3d:light Element

  + + Child Relations + <dr3d:light (dr3d:diffuse-color="string]" )? + dr3d:direction="string]" (dr3d:enabled="<boolean>" )? + (dr3d:specular="<boolean>" )? + >  +
@@ -1291,7 +1761,7 @@

dr3d:rotate Element

dr3d:transform  draw:class-names  - draw:id[1]  + draw:id[2]  draw:layer  draw:style-name  draw:z-index  @@ -1306,6 +1776,26 @@

dr3d:rotate Element

  + + Child Relations + <dr3d:rotate svg:viewBox=" +START_list<integer><integer><integer><integer> +END_list" svg:d="<string>" (draw:z-index="<nonNegativeInteger>" )? + (draw:id="<ID>" )? + (draw:layer="<string>" )? + + ( (draw:style-name="(<NCName>)?" )? + (draw:class-names=" +START_list(<NCName>)* +END_list" )? + ) | + ( (presentation:style-name="(<NCName>)?" )? + (presentation:class-names=" +START_list(<NCName>)* +END_list" )? + ) (dr3d:transform="TEXT" )? + >  +
@@ -1352,7 +1842,7 @@

dr3d:scene Element

dr3d:vrp  dr3d:vup  draw:class-names  - draw:id[1]  + draw:id[2]  draw:layer  draw:style-name  draw:z-index  @@ -1360,7 +1850,7 @@

dr3d:scene Element

presentation:style-name  svg:height[1]  svg:width[1]  - svg:x[2]  + svg:x[1]  svg:y[2]  table:end-cell-address  table:end-x  @@ -1381,6 +1871,48 @@

dr3d:scene Element

<dr3d:sphere>*    + + Child Relations + <dr3d:scene + ( (dr3d:vrp="string]" )? + (dr3d:vpn="string]" )? + (dr3d:vup="string]" )? + ) (dr3d:projection="parallel | perspective" )? + (dr3d:distance="string]" )? + (dr3d:focal-length="string]" )? + (dr3d:shadow-slant="<nonNegativeInteger>" )? + (dr3d:shade-mode="flat | phong | gouraud | draft" )? + (dr3d:ambient-color="string]" )? + (dr3d:lighting-mode="<boolean>" )? + + ( (svg:x="string]" )? + (svg:y="string]" )? + ) + ( (svg:width="string]" )? + (svg:height="string]" )? + ) + ( (draw:style-name="(<NCName>)?" )? + (draw:class-names=" +START_list(<NCName>)* +END_list" )? + ) | + ( (presentation:style-name="(<NCName>)?" )? + (presentation:class-names=" +START_list(<NCName>)* +END_list" )? + ) (draw:z-index="<nonNegativeInteger>" )? + (draw:id="<ID>" )? + (draw:layer="<string>" )? + + ( (table:end-cell-address="string]" )? + (table:end-x="string]" )? + (table:end-y="string]" )? + ) (table:table-background="<boolean>" )? + (text:anchor-type="page | frame | paragraph | char | as-char" )? + (text:anchor-page-number="<positiveInteger>" )? + (dr3d:transform="TEXT" )? + (<dr3d:light ... >)* (<dr3d:scene ... > | <dr3d:extrude ... > | <dr3d:sphere ... > | <dr3d:rotate ... > | <dr3d:cube ... >)* >  +
@@ -1399,7 +1931,7 @@

dr3d:sphere Element

dr3d:size  dr3d:transform  draw:class-names  - draw:id[1]  + draw:id[2]  draw:layer  draw:style-name  draw:z-index  @@ -1412,6 +1944,26 @@

dr3d:sphere Element

  + + Child Relations + <dr3d:sphere (dr3d:center="string]" )? + (dr3d:size="string]" )? + (draw:z-index="<nonNegativeInteger>" )? + (draw:id="<ID>" )? + (draw:layer="<string>" )? + + ( (draw:style-name="(<NCName>)?" )? + (draw:class-names=" +START_list(<NCName>)* +END_list" )? + ) | + ( (presentation:style-name="(<NCName>)?" )? + (presentation:class-names=" +START_list(<NCName>)* +END_list" )? + ) (dr3d:transform="TEXT" )? + >  +
@@ -1454,6 +2006,18 @@

draw:a Element

<draw:frame>    + + Child Relations + <draw:a + (xlink:href="<anyURI>" (xlink:type="simple" )? + (xlink:actuate="onRequest" )? + ) + ( (office:target-frame-name="_self | _blank | _parent | _top | <string>" )? + (xlink:show="new | replace" )? + ) (office:name="<string>" )? + (office:server-map="<boolean>" )? + <draw:frame ... >>  +
@@ -1484,6 +2048,19 @@

draw:applet Element

<draw:param>*    + + Child Relations + <draw:applet (draw:code="TEXT" )? + (draw:object="TEXT" )? + (draw:archive="TEXT" )? + (draw:may-script="<boolean>" )? + ( + (xlink:href="<anyURI>" (xlink:type="simple" )? + (xlink:show="embed" )? + (xlink:actuate="onLoad" )? + ))? + (<draw:param ... >)* >  +
@@ -1502,8 +2079,8 @@

draw:area-circle Element

office:name  office:target-frame-name  svg:cx[1]  - svg:cy[1]  - svg:r[1]  + svg:cy[2]  + svg:r[2]  xlink:href  xlink:show[1]  xlink:type  @@ -1516,6 +2093,19 @@

draw:area-circle Element

<svg:desc>    + + Child Relations + <draw:area-circle + ( (xlink:href="<anyURI>" )? + (xlink:type="simple" )? + (office:target-frame-name="_self | _blank | _parent | _top | <string>" )? + (xlink:show="new | replace" )? + ) (office:name="<string>" )? + (draw:nohref="nohref" )? + svg:cx="string]" svg:cy="string]" svg:r="string]" (<svg:desc ... >)? + (<office:event-listeners ... >)? + >  +
@@ -1537,7 +2127,7 @@

draw:area-polygon Element

svg:height[1]  svg:viewBox  svg:width[1]  - svg:x[2]  + svg:x[1]  svg:y[2]  xlink:href  xlink:show[1]  @@ -1551,6 +2141,21 @@

draw:area-polygon Element

<svg:desc>    + + Child Relations + <draw:area-polygon + ( (xlink:href="<anyURI>" )? + (xlink:type="simple" )? + (office:target-frame-name="_self | _blank | _parent | _top | <string>" )? + (xlink:show="new | replace" )? + ) (office:name="<string>" )? + (draw:nohref="nohref" )? + svg:x="string]" svg:y="string]" svg:width="string]" svg:height="string]" svg:viewBox=" +START_list<integer><integer><integer><integer> +END_list" draw:points="string]" (<svg:desc ... >)? + (<office:event-listeners ... >)? + >  +
@@ -1570,7 +2175,7 @@

draw:area-rectangle Element

office:target-frame-name  svg:height[1]  svg:width[1]  - svg:x[2]  + svg:x[1]  svg:y[2]  xlink:href  xlink:show[1]  @@ -1584,6 +2189,19 @@

draw:area-rectangle Element

<svg:desc>    + + Child Relations + <draw:area-rectangle + ( (xlink:href="<anyURI>" )? + (xlink:type="simple" )? + (office:target-frame-name="_self | _blank | _parent | _top | <string>" )? + (xlink:show="new | replace" )? + ) (office:name="<string>" )? + (draw:nohref="nohref" )? + svg:x="string]" svg:y="string]" svg:width="string]" svg:height="string]" (<svg:desc ... >)? + (<office:event-listeners ... >)? + >  +
@@ -1621,9 +2239,9 @@

draw:caption Element

draw:caption-point-y  draw:class-names  draw:corner-radius  - draw:id[1]  + draw:id[2]  draw:layer  - draw:name[3]  + draw:name[1]  draw:style-name  draw:text-style-name  draw:transform  @@ -1632,7 +2250,7 @@

draw:caption Element

presentation:style-name  svg:height[1]  svg:width[1]  - svg:x[2]  + svg:x[1]  svg:y[2]  table:end-cell-address  table:end-x  @@ -1651,6 +2269,44 @@

draw:caption Element

<text:p>*    + + Child Relations + <draw:caption (draw:caption-point-x="string]" draw:caption-point-y="string]" )? + (draw:corner-radius="string]" )? + + ( (svg:x="string]" )? + (svg:y="string]" )? + ) + ( (svg:width="string]" )? + (svg:height="string]" )? + ) + ( + ( (draw:z-index="<nonNegativeInteger>" )? + (draw:id="<ID>" )? + (draw:layer="<string>" )? + + ( (draw:style-name="(<NCName>)?" )? + (draw:class-names=" +START_list(<NCName>)* +END_list" )? + ) | + ( (presentation:style-name="(<NCName>)?" )? + (presentation:class-names=" +START_list(<NCName>)* +END_list" )? + ) (draw:transform="<string>" )? + (draw:name="<string>" )? + + ( (table:end-cell-address="string]" )? + (table:end-x="string]" )? + (table:end-y="string]" )? + ) (table:table-background="<boolean>" )? + (text:anchor-type="page | frame | paragraph | char | as-char" )? + (text:anchor-page-number="<positiveInteger>" )? + ) (draw:text-style-name="(<NCName>)?" )? + ) (<office:event-listeners ... >)? + (<draw:glue-point ... >)* (<text:p ... > | <text:list ... >)* >  +
@@ -1686,10 +2342,10 @@

draw:circle Element

draw:class-names  draw:end-angle  - draw:id[1]  + draw:id[2]  draw:kind  draw:layer  - draw:name[3]  + draw:name[1]  draw:start-angle  draw:style-name  draw:text-style-name  @@ -1698,11 +2354,11 @@

draw:circle Element

presentation:class-names  presentation:style-name  svg:cx[1]  - svg:cy[1]  + svg:cy[2]  svg:height[1]  - svg:r[1]  + svg:r[2]  svg:width[1]  - svg:x[2]  + svg:x[1]  svg:y[2]  table:end-cell-address  table:end-x  @@ -1721,6 +2377,47 @@

draw:circle Element

<text:p>*    + + Child Relations + <draw:circle (svg:r="string]" )? + (svg:cx="string]" svg:cy="string]" )? + (draw:kind="full | section | cut | arc" )? + (draw:start-angle="<double>" )? + (draw:end-angle="<double>" )? + + ( (svg:x="string]" )? + (svg:y="string]" )? + ) + ( (svg:width="string]" )? + (svg:height="string]" )? + ) + ( + ( (draw:z-index="<nonNegativeInteger>" )? + (draw:id="<ID>" )? + (draw:layer="<string>" )? + + ( (draw:style-name="(<NCName>)?" )? + (draw:class-names=" +START_list(<NCName>)* +END_list" )? + ) | + ( (presentation:style-name="(<NCName>)?" )? + (presentation:class-names=" +START_list(<NCName>)* +END_list" )? + ) (draw:transform="<string>" )? + (draw:name="<string>" )? + + ( (table:end-cell-address="string]" )? + (table:end-x="string]" )? + (table:end-y="string]" )? + ) (table:table-background="<boolean>" )? + (text:anchor-type="page | frame | paragraph | char | as-char" )? + (text:anchor-page-number="<positiveInteger>" )? + ) (draw:text-style-name="(<NCName>)?" )? + ) (<office:event-listeners ... >)? + (<draw:glue-point ... >)* (<text:p ... > | <text:list ... >)* >  +
@@ -1757,10 +2454,10 @@

draw:connector Element

draw:class-names  draw:end-glue-point  draw:end-shape  - draw:id[1]  + draw:id[2]  draw:layer  draw:line-skew  - draw:name[3]  + draw:name[1]  draw:start-glue-point  draw:start-shape  draw:style-name  @@ -1771,9 +2468,9 @@

draw:connector Element

presentation:class-names  presentation:style-name  svg:x1[1]  - svg:x2[2]  - svg:y1[2]  - svg:y2[2]  + svg:x2[1]  + svg:y1[1]  + svg:y2[1]  table:end-cell-address  table:end-x  table:end-y  @@ -1791,6 +2488,46 @@

draw:connector Element

<text:p>*    + + Child Relations + <draw:connector (draw:type="standard | lines | line | curve" )? + (svg:x1="string]" svg:y1="string]" )? + (draw:start-shape="<IDREF>" )? + (draw:start-glue-point="<nonNegativeInteger>" )? + (svg:x2="string]" svg:y2="string]" )? + (draw:end-shape="<IDREF>" )? + (draw:end-glue-point="<nonNegativeInteger>" )? + (draw:line-skew=" +START_liststring](string](string])?)? +END_list" )? + + ( + ( (draw:z-index="<nonNegativeInteger>" )? + (draw:id="<ID>" )? + (draw:layer="<string>" )? + + ( (draw:style-name="(<NCName>)?" )? + (draw:class-names=" +START_list(<NCName>)* +END_list" )? + ) | + ( (presentation:style-name="(<NCName>)?" )? + (presentation:class-names=" +START_list(<NCName>)* +END_list" )? + ) (draw:transform="<string>" )? + (draw:name="<string>" )? + + ( (table:end-cell-address="string]" )? + (table:end-x="string]" )? + (table:end-y="string]" )? + ) (table:table-background="<boolean>" )? + (text:anchor-type="page | frame | paragraph | char | as-char" )? + (text:anchor-page-number="<positiveInteger>" )? + ) (draw:text-style-name="(<NCName>)?" )? + ) (<office:event-listeners ... >)? + (<draw:glue-point ... >)* (<text:p ... > | <text:list ... >)* >  +
@@ -1817,6 +2554,15 @@

draw:contour-path Element

  + + Child Relations + <draw:contour-path draw:recreate-on-edit="<boolean>" + ( (svg:width="string]" )? + (svg:height="string]" )? + )svg:viewBox=" +START_list<integer><integer><integer><integer> +END_list" svg:d="<string>" >  +
@@ -1843,6 +2589,15 @@

draw:contour-polygon Element   + + Child Relations + <draw:contour-polygon draw:recreate-on-edit="<boolean>" + ( (svg:width="string]" )? + (svg:height="string]" )? + )svg:viewBox=" +START_list<integer><integer><integer><integer> +END_list" draw:points="string]" >  +
@@ -1878,9 +2633,9 @@

draw:control Element

draw:class-names  draw:control  - draw:id[1]  + draw:id[2]  draw:layer  - draw:name[3]  + draw:name[1]  draw:style-name  draw:text-style-name  draw:transform  @@ -1889,7 +2644,7 @@

draw:control Element

presentation:style-name  svg:height[1]  svg:width[1]  - svg:x[2]  + svg:x[1]  svg:y[2]  table:end-cell-address  table:end-x  @@ -1905,6 +2660,41 @@

draw:control Element

<draw:glue-point>*    + + Child Relations + <draw:control draw:control="<IDREF>" + ( (svg:x="string]" )? + (svg:y="string]" )? + ) + ( (svg:width="string]" )? + (svg:height="string]" )? + ) + ( + ( (draw:z-index="<nonNegativeInteger>" )? + (draw:id="<ID>" )? + (draw:layer="<string>" )? + + ( (draw:style-name="(<NCName>)?" )? + (draw:class-names=" +START_list(<NCName>)* +END_list" )? + ) | + ( (presentation:style-name="(<NCName>)?" )? + (presentation:class-names=" +START_list(<NCName>)* +END_list" )? + ) (draw:transform="<string>" )? + (draw:name="<string>" )? + + ( (table:end-cell-address="string]" )? + (table:end-x="string]" )? + (table:end-y="string]" )? + ) (table:table-background="<boolean>" )? + (text:anchor-type="page | frame | paragraph | char | as-char" )? + (text:anchor-page-number="<positiveInteger>" )? + ) (draw:text-style-name="(<NCName>)?" )? + )(<draw:glue-point ... >)* >  +
@@ -1941,9 +2731,9 @@

draw:custom-shape Element

draw:class-names  draw:data  draw:engine  - draw:id[1]  + draw:id[2]  draw:layer  - draw:name[3]  + draw:name[1]  draw:style-name  draw:text-style-name  draw:transform  @@ -1952,7 +2742,7 @@

draw:custom-shape Element

presentation:style-name  svg:height[1]  svg:width[1]  - svg:x[2]  + svg:x[1]  svg:y[2]  table:end-cell-address  table:end-x  @@ -1972,6 +2762,45 @@

draw:custom-shape Element

<text:p>*    + + Child Relations + <draw:custom-shape (draw:engine="string]" )? + (draw:data="<string>" )? + + ( (svg:x="string]" )? + (svg:y="string]" )? + ) + ( (svg:width="string]" )? + (svg:height="string]" )? + ) + ( + ( (draw:z-index="<nonNegativeInteger>" )? + (draw:id="<ID>" )? + (draw:layer="<string>" )? + + ( (draw:style-name="(<NCName>)?" )? + (draw:class-names=" +START_list(<NCName>)* +END_list" )? + ) | + ( (presentation:style-name="(<NCName>)?" )? + (presentation:class-names=" +START_list(<NCName>)* +END_list" )? + ) (draw:transform="<string>" )? + (draw:name="<string>" )? + + ( (table:end-cell-address="string]" )? + (table:end-x="string]" )? + (table:end-y="string]" )? + ) (table:table-background="<boolean>" )? + (text:anchor-type="page | frame | paragraph | char | as-char" )? + (text:anchor-page-number="<positiveInteger>" )? + ) (draw:text-style-name="(<NCName>)?" )? + ) (<office:event-listeners ... >)? + (<draw:glue-point ... >)* (<text:p ... > | <text:list ... >)* (<draw:enhanced-geometry ... >)? + >  +
@@ -2007,10 +2836,10 @@

draw:ellipse Element

draw:class-names  draw:end-angle  - draw:id[1]  + draw:id[2]  draw:kind  draw:layer  - draw:name[3]  + draw:name[1]  draw:start-angle  draw:style-name  draw:text-style-name  @@ -2019,12 +2848,12 @@

draw:ellipse Element

presentation:class-names  presentation:style-name  svg:cx[1]  - svg:cy[1]  + svg:cy[2]  svg:height[1]  svg:rx  svg:ry  svg:width[1]  - svg:x[2]  + svg:x[1]  svg:y[2]  table:end-cell-address  table:end-x  @@ -2043,6 +2872,47 @@

draw:ellipse Element

<text:p>*    + + Child Relations + <draw:ellipse (svg:cx="string]" svg:cy="string]" )? + (draw:kind="full | section | cut | arc" )? + (draw:start-angle="<double>" )? + (draw:end-angle="<double>" )? + (svg:rx="string]" svg:ry="string]" )? + + ( (svg:x="string]" )? + (svg:y="string]" )? + ) + ( (svg:width="string]" )? + (svg:height="string]" )? + ) + ( + ( (draw:z-index="<nonNegativeInteger>" )? + (draw:id="<ID>" )? + (draw:layer="<string>" )? + + ( (draw:style-name="(<NCName>)?" )? + (draw:class-names=" +START_list(<NCName>)* +END_list" )? + ) | + ( (presentation:style-name="(<NCName>)?" )? + (presentation:class-names=" +START_list(<NCName>)* +END_list" )? + ) (draw:transform="<string>" )? + (draw:name="<string>" )? + + ( (table:end-cell-address="string]" )? + (table:end-x="string]" )? + (table:end-y="string]" )? + ) (table:table-background="<boolean>" )? + (text:anchor-type="page | frame | paragraph | char | as-char" )? + (text:anchor-page-number="<positiveInteger>" )? + ) (draw:text-style-name="(<NCName>)?" )? + ) (<office:event-listeners ... >)? + (<draw:glue-point ... >)* (<text:p ... > | <text:list ... >)* >  +
@@ -2109,6 +2979,65 @@

draw:enhanced-geometry Element<draw:handle>*    + + Child Relations + <draw:enhanced-geometry (draw:type="non-primitive | <string>" )? + (svg:viewBox=" +START_list<integer><integer><integer><integer> +END_list" )? + + ( (draw:mirror-vertical="<boolean>" )? + (draw:mirror-horizontal="<boolean>" )? + ) (draw:text-rotate-angle="<double>" )? + (draw:extrusion-allowed="<boolean>" )? + (draw:text-path-allowed="<boolean>" )? + (draw:concentric-gradient-fill-allowed="<boolean>" )? + (draw:extrusion="<boolean>" )? + (draw:extrusion-brightness="string]" )? + (draw:extrusion-depth=" +START_liststring]<double> +END_list" )? + (draw:extrusion-diffusion="string]" )? + (draw:extrusion-number-of-line-segments="<integer>" )? + (draw:extrusion-light-face="<boolean>" )? + (draw:extrusion-first-light-harsh="<boolean>" )? + (draw:extrusion-second-light-harsh="<boolean>" )? + (draw:extrusion-first-light-level="string]" )? + (draw:extrusion-second-light-level="string]" )? + (draw:extrusion-first-light-direction="string]" )? + (draw:extrusion-second-light-direction="string]" )? + (draw:extrusion-metal="<boolean>" )? + (dr3d:shade-mode="flat | phong | gouraud | draft" )? + (draw:extrusion-rotation-angle=" +START_list<double><double> +END_list" )? + (draw:extrusion-rotation-center="string]" )? + (draw:extrusion-shininess="string]" )? + (draw:extrusion-skew=" +START_list<double><double> +END_list" )? + (draw:extrusion-specularity="string]" )? + (dr3d:projection="parallel | perspective" )? + (draw:extrusion-viewpoint="<string>" )? + (draw:extrusion-origin=" +START_list<double><double> +END_list" )? + (draw:extrusion-color="<boolean>" )? + (draw:enhanced-path="<string>" )? + + ( (draw:path-stretchpoint-x="<double>" )? + (draw:path-stretchpoint-y="<double>" )? + ) (draw:text-areas="<string>" )? + (draw:glue-points="<string>" )? + (draw:glue-point-type="none | segments | rectangle" )? + (draw:glue-point-leaving-directions="TEXT" )? + (draw:text-path="<boolean>" )? + (draw:text-path-mode="normal | path | shape" )? + (draw:text-path-scale="path | shape" )? + (draw:text-path-same-letter-heights="<boolean>" )? + (draw:modifiers="<string>" )? + (<draw:equation ... >)* (<draw:handle ... >)* >  +
@@ -2124,7 +3053,7 @@

draw:equation Element

Attributes draw:formula  - draw:name[3]  + draw:name[1]    @@ -2132,6 +3061,12 @@

draw:equation Element

  + + Child Relations + <draw:equation (draw:name="<string>" )? + (draw:formula="<string>" )? + >  +
@@ -2147,7 +3082,7 @@

draw:fill-image Element

Attributes draw:display-name  - draw:name[1]  + draw:name[2]  svg:height[1]  svg:width[1]  xlink:actuate[2]  @@ -2161,6 +3096,17 @@

draw:fill-image Element

  + + Child Relations + <draw:fill-image draw:name="<NCName>" (draw:display-name="<string>" )? + + ( (svg:width="string]" )? + (svg:height="string]" )? + )xlink:href="<anyURI>" (xlink:type="simple" )? + (xlink:show="embed" )? + (xlink:actuate="onLoad" )? + >  +
@@ -2187,6 +3133,15 @@

draw:floating-frame Element

  + + Child Relations + <draw:floating-frame (draw:frame-name="<string>" )? + + (xlink:href="<anyURI>" (xlink:type="simple" )? + (xlink:show="embed" )? + (xlink:actuate="onLoad" )? + )>  +
@@ -2224,9 +3179,9 @@

draw:frame Element

draw:class-names  draw:copy-of  - draw:id[1]  + draw:id[2]  draw:layer  - draw:name[3]  + draw:name[1]  draw:style-name  draw:text-style-name  draw:transform  @@ -2240,7 +3195,7 @@

draw:frame Element

style:rel-width  svg:height[1]  svg:width[1]  - svg:x[2]  + svg:x[1]  svg:y[2]  table:end-cell-address  table:end-x  @@ -2268,6 +3223,52 @@

draw:frame Element

<svg:desc>    + + Child Relations + <draw:frame + ( + ( (draw:z-index="<nonNegativeInteger>" )? + (draw:id="<ID>" )? + (draw:layer="<string>" )? + + ( (draw:style-name="(<NCName>)?" )? + (draw:class-names=" +START_list(<NCName>)* +END_list" )? + ) | + ( (presentation:style-name="(<NCName>)?" )? + (presentation:class-names=" +START_list(<NCName>)* +END_list" )? + ) (draw:transform="<string>" )? + (draw:name="<string>" )? + + ( (table:end-cell-address="string]" )? + (table:end-x="string]" )? + (table:end-y="string]" )? + ) (table:table-background="<boolean>" )? + (text:anchor-type="page | frame | paragraph | char | as-char" )? + (text:anchor-page-number="<positiveInteger>" )? + ) (draw:text-style-name="(<NCName>)?" )? + ) + ( (svg:x="string]" )? + (svg:y="string]" )? + ) + ( + ( (svg:width="string]" )? + (svg:height="string]" )? + ) (style:rel-width="string] | scale | scale-min" )? + (style:rel-height="string] | scale | scale-min" )? + ) (presentation:class="title | outline | subtitle | text | graphic | object | chart | table | orgchart | page | notes | handout | header | footer | date-time | page-number" )? + (presentation:placeholder="<boolean>" )? + (presentation:user-transformed="<boolean>" )? + (draw:copy-of="<string>" )? + (<draw:text-box ... > | <draw:image ... > | <draw:object ... > | <draw:object-ole ... > | <draw:applet ... > | <draw:floating-frame ... > | <draw:plugin ... >)* (<office:event-listeners ... >)? + (<draw:glue-point ... >)* (<draw:image-map ... >)? + (<svg:desc ... >)? + (<draw:contour-polygon ... > | <draw:contour-path ... >)? + >  +
@@ -2302,8 +3303,8 @@

draw:g Element

Attributes draw:class-names  - draw:id[1]  - draw:name[3]  + draw:id[2]  + draw:name[1]  draw:style-name  draw:z-index  presentation:class-names  @@ -2341,6 +3342,32 @@

draw:g Element

<office:event-listeners>    + + Child Relations + <draw:g (svg:y="string]" )? + (draw:z-index="<nonNegativeInteger>" )? + (draw:name="<string>" )? + (draw:id="<ID>" )? + + ( (draw:style-name="(<NCName>)?" )? + (draw:class-names=" +START_list(<NCName>)* +END_list" )? + ) | + ( (presentation:style-name="(<NCName>)?" )? + (presentation:class-names=" +START_list(<NCName>)* +END_list" )? + ) + ( (table:end-cell-address="string]" )? + (table:end-x="string]" )? + (table:end-y="string]" )? + ) (table:table-background="<boolean>" )? + (text:anchor-type="page | frame | paragraph | char | as-char" )? + (text:anchor-page-number="<positiveInteger>" )? + (<office:event-listeners ... >)? + (<draw:glue-point ... >)* (<draw:rect ... > | <draw:line ... > | <draw:polyline ... > | <draw:polygon ... > | <draw:regular-polygon ... > | <draw:path ... > | <draw:circle ... > | <draw:ellipse ... > | <draw:g ... > | <draw:page-thumbnail ... > | <draw:frame ... > | <draw:measure ... > | <draw:caption ... > | <draw:connector ... > | <draw:control ... > | <dr3d:scene ... > | <draw:custom-shape ... >)* >  +
@@ -2370,8 +3397,8 @@

draw:glue-point Element

Attributes draw:align  - draw:id[2]  - svg:x[1]  + draw:id[1]  + svg:x[2]  svg:y[1]    @@ -2380,6 +3407,11 @@

draw:glue-point Element

  + + Child Relations + <draw:glue-point draw:id="<nonNegativeInteger>" + (svg:x="string] | string]" svg:y="string] | string]" )draw:align="top-left | top | top-right | left | center | right | bottom-left | bottom-right" >  +
@@ -2401,10 +3433,10 @@

draw:gradient Element

draw:display-name  draw:end-color  draw:end-intensity  - draw:name[1]  + draw:name[2]  draw:start-color  draw:start-intensity  - draw:style[3]  + draw:style[2]    @@ -2412,6 +3444,23 @@

draw:gradient Element

  + + Child Relations + <draw:gradient (draw:name="<NCName>" )? + (draw:display-name="<string>" )? + draw:style="linear | axial | radial | ellipsoid | square | rectangular" + ( (draw:cx="string]" )? + (draw:cy="string]" )? + ) (draw:angle="<integer>" )? + (draw:border="string]" )? + + ( (draw:start-color="string]" )? + (draw:end-color="string]" )? + ) + ( (draw:start-intensity="string]" )? + (draw:end-intensity="string]" )? + )>  +
@@ -2444,6 +3493,20 @@

draw:handle Element

  + + Child Relations + <draw:handle (draw:handle-mirror-vertical="<boolean>" )? + (draw:handle-mirror-horizontal="<boolean>" )? + (draw:handle-switched="<boolean>" )? + draw:handle-position="<string>" (draw:handle-range-x-minimum="<string>" )? + (draw:handle-range-x-maximum="<string>" )? + (draw:handle-range-y-minimum="<string>" )? + (draw:handle-range-y-maximum="<string>" )? + (draw:handle-polar="<string>" )? + (draw:handle-radius-range-minimum="<string>" )? + (draw:handle-radius-range-maximum="<string>" )? + >  +
@@ -2461,9 +3524,9 @@

draw:hatch Element

draw:color  draw:display-name  draw:distance  - draw:name[1]  + draw:name[2]  draw:rotation  - draw:style[2]  + draw:style[3]    @@ -2471,6 +3534,14 @@

draw:hatch Element

  + + Child Relations + <draw:hatch draw:name="<NCName>" (draw:display-name="<string>" )? + draw:style="single | double | triple" (draw:color="string]" )? + (draw:distance="string]" )? + (draw:rotation="<integer>" )? + >  +
@@ -2500,6 +3571,15 @@

draw:image Element

<text:p>*    + + Child Relations + <draw:image (draw:filter-name="<string>" )? + + (xlink:href="<anyURI>" (xlink:type="simple" )? + (xlink:show="embed" )? + (xlink:actuate="onLoad" )? + ) | <office:binary-data ... >(<text:p ... > | <text:list ... >)* >  +
@@ -2524,6 +3604,10 @@

draw:image-map Element

<draw:area-rectangle>*    + + Child Relations + <draw:image-map (<draw:area-rectangle ... > | <draw:area-circle ... > | <draw:area-polygon ... >)* >  +
@@ -2539,7 +3623,7 @@

draw:layer Element

Attributes draw:display  - draw:name[3]  + draw:name[1]  draw:protected    @@ -2548,6 +3632,12 @@

draw:layer Element

  + + Child Relations + <draw:layer draw:name="<string>" (draw:protected="<boolean>" )? + (draw:display="always | screen | printer | none" )? + >  +
@@ -2570,6 +3660,10 @@

draw:layer-set Element

<draw:layer>*    + + Child Relations + <draw:layer-set (<draw:layer ... >)* >  +
@@ -2604,9 +3698,9 @@

draw:line Element

Attributes draw:class-names  - draw:id[1]  + draw:id[2]  draw:layer  - draw:name[3]  + draw:name[1]  draw:style-name  draw:text-style-name  draw:transform  @@ -2614,9 +3708,9 @@

draw:line Element

presentation:class-names  presentation:style-name  svg:x1[1]  - svg:x2[2]  - svg:y1[2]  - svg:y2[2]  + svg:x2[1]  + svg:y1[1]  + svg:y2[1]  table:end-cell-address  table:end-x  table:end-y  @@ -2634,6 +3728,38 @@

draw:line Element

<text:p>*    + + Child Relations + <draw:line + (svg:x1="string]" svg:y1="string]" ) + (svg:x2="string]" svg:y2="string]" ) + ( + ( (draw:z-index="<nonNegativeInteger>" )? + (draw:id="<ID>" )? + (draw:layer="<string>" )? + + ( (draw:style-name="(<NCName>)?" )? + (draw:class-names=" +START_list(<NCName>)* +END_list" )? + ) | + ( (presentation:style-name="(<NCName>)?" )? + (presentation:class-names=" +START_list(<NCName>)* +END_list" )? + ) (draw:transform="<string>" )? + (draw:name="<string>" )? + + ( (table:end-cell-address="string]" )? + (table:end-x="string]" )? + (table:end-y="string]" )? + ) (table:table-background="<boolean>" )? + (text:anchor-type="page | frame | paragraph | char | as-char" )? + (text:anchor-page-number="<positiveInteger>" )? + ) (draw:text-style-name="(<NCName>)?" )? + ) (<office:event-listeners ... >)? + (<draw:glue-point ... >)* (<text:p ... > | <text:list ... >)* >  +
@@ -2649,7 +3775,7 @@

draw:marker Element

Attributes draw:display-name  - draw:name[1]  + draw:name[2]  svg:d  svg:viewBox    @@ -2659,6 +3785,13 @@

draw:marker Element

  + + Child Relations + <draw:marker draw:name="<NCName>" (draw:display-name="<string>" )? + svg:viewBox=" +START_list<integer><integer><integer><integer> +END_list" svg:d="<string>" >  +
@@ -2693,9 +3826,9 @@

draw:measure Element

Attributes draw:class-names  - draw:id[1]  + draw:id[2]  draw:layer  - draw:name[3]  + draw:name[1]  draw:style-name  draw:text-style-name  draw:transform  @@ -2703,9 +3836,9 @@

draw:measure Element

presentation:class-names  presentation:style-name  svg:x1[1]  - svg:x2[2]  - svg:y1[2]  - svg:y2[2]  + svg:x2[1]  + svg:y1[1]  + svg:y2[1]  table:end-cell-address  table:end-x  table:end-y  @@ -2723,6 +3856,38 @@

draw:measure Element

<text:p>*    + + Child Relations + <draw:measure + (svg:x1="string]" svg:y1="string]" ) + (svg:x2="string]" svg:y2="string]" ) + ( + ( (draw:z-index="<nonNegativeInteger>" )? + (draw:id="<ID>" )? + (draw:layer="<string>" )? + + ( (draw:style-name="(<NCName>)?" )? + (draw:class-names=" +START_list(<NCName>)* +END_list" )? + ) | + ( (presentation:style-name="(<NCName>)?" )? + (presentation:class-names=" +START_list(<NCName>)* +END_list" )? + ) (draw:transform="<string>" )? + (draw:name="<string>" )? + + ( (table:end-cell-address="string]" )? + (table:end-x="string]" )? + (table:end-y="string]" )? + ) (table:table-background="<boolean>" )? + (text:anchor-type="page | frame | paragraph | char | as-char" )? + (text:anchor-page-number="<positiveInteger>" )? + ) (draw:text-style-name="(<NCName>)?" )? + ) (<office:event-listeners ... >)? + (<draw:glue-point ... >)* (<text:p ... > | <text:list ... >)* >  +
@@ -2751,6 +3916,15 @@

draw:object Element

<office:document>    + + Child Relations + <draw:object (draw:notify-on-update-of-ranges="<string>" )? + + (xlink:href="<anyURI>" (xlink:type="simple" )? + (xlink:show="embed" )? + (xlink:actuate="onLoad" )? + ) | <office:document ... > | <math:math ... >>  +
@@ -2778,6 +3952,15 @@

draw:object-ole Element

<office:binary-data>    + + Child Relations + <draw:object-ole (draw:class-id="TEXT" )? + + (xlink:href="<anyURI>" (xlink:type="simple" )? + (xlink:show="embed" )? + (xlink:actuate="onLoad" )? + ) | <office:binary-data ... >>  +
@@ -2798,9 +3981,9 @@

draw:opacity Element

draw:cy  draw:display-name  draw:end  - draw:name[1]  + draw:name[2]  draw:start  - draw:style[3]  + draw:style[2]    @@ -2808,6 +3991,20 @@

draw:opacity Element

  + + Child Relations + <draw:opacity (draw:name="<NCName>" )? + (draw:display-name="<string>" )? + draw:style="linear | axial | radial | ellipsoid | square | rectangular" + ( (draw:cx="string]" )? + (draw:cy="string]" )? + ) (draw:angle="<integer>" )? + (draw:border="string]" )? + + ( (draw:start="string]" )? + (draw:end="string]" )? + )>  +
@@ -2823,9 +4020,9 @@

draw:page Element

Attributes - draw:id[1]  + draw:id[2]  draw:master-page-name  - draw:name[3]  + draw:name[1]  draw:style-name  presentation:presentation-page-layout-name  presentation:use-date-time-name  @@ -2869,6 +4066,21 @@

draw:page Element

<presentation:notes>    + + Child Relations + <draw:page (presentation:use-header-name="<string>" )? + (presentation:use-footer-name="<string>" )? + (presentation:use-date-time-name="<string>" )? + (draw:name="<string>" )? + (draw:style-name="(<NCName>)?" )? + draw:master-page-name="(<NCName>)?" (presentation:presentation-page-layout-name="(<NCName>)?" )? + (draw:id="<ID>" )? + ( (<office:forms ... >)? + )? + (<draw:rect ... > | <draw:line ... > | <draw:polyline ... > | <draw:polygon ... > | <draw:regular-polygon ... > | <draw:path ... > | <draw:circle ... > | <draw:ellipse ... > | <draw:g ... > | <draw:page-thumbnail ... > | <draw:frame ... > | <draw:measure ... > | <draw:caption ... > | <draw:connector ... > | <draw:control ... > | <dr3d:scene ... > | <draw:custom-shape ... >)* (<presentation:animations ... > | <anim:animate ... > | <anim:set ... > | <anim:animateMotion ... > | <anim:animateColor ... > | <anim:animateTransform ... > | <anim:transitionFilter ... > | <anim:par ... > | <anim:seq ... > | <anim:iterate ... > | <anim:audio ... > | <anim:command ... >)? + (<presentation:notes ... >)? + >  +
@@ -2903,9 +4115,9 @@

draw:page-thumbnail Element

Attributes draw:class-names  - draw:id[1]  + draw:id[2]  draw:layer  - draw:name[3]  + draw:name[1]  draw:page-number  draw:style-name  draw:transform  @@ -2917,7 +4129,7 @@

draw:page-thumbnail Element

presentation:user-transformed  svg:height[1]  svg:width[1]  - svg:x[2]  + svg:x[1]  svg:y[2]  table:end-cell-address  table:end-x  @@ -2932,6 +4144,43 @@

draw:page-thumbnail Element

  + + Child Relations + <draw:page-thumbnail (draw:page-number="<positiveInteger>" )? + + ( (svg:x="string]" )? + (svg:y="string]" )? + ) + ( (svg:width="string]" )? + (svg:height="string]" )? + ) (presentation:class="title | outline | subtitle | text | graphic | object | chart | table | orgchart | page | notes | handout | header | footer | date-time | page-number" )? + (presentation:placeholder="<boolean>" )? + (presentation:user-transformed="<boolean>" )? + + ( (draw:z-index="<nonNegativeInteger>" )? + (draw:id="<ID>" )? + (draw:layer="<string>" )? + + ( (draw:style-name="(<NCName>)?" )? + (draw:class-names=" +START_list(<NCName>)* +END_list" )? + ) | + ( (presentation:style-name="(<NCName>)?" )? + (presentation:class-names=" +START_list(<NCName>)* +END_list" )? + ) (draw:transform="<string>" )? + (draw:name="<string>" )? + + ( (table:end-cell-address="string]" )? + (table:end-x="string]" )? + (table:end-y="string]" )? + ) (table:table-background="<boolean>" )? + (text:anchor-type="page | frame | paragraph | char | as-char" )? + (text:anchor-page-number="<positiveInteger>" )? + )>  +
@@ -2947,7 +4196,7 @@

draw:param Element

Attributes - draw:name[2]  + draw:name[3]  draw:value    @@ -2956,6 +4205,12 @@

draw:param Element

  + + Child Relations + <draw:param (draw:name="TEXT" )? + (draw:value="TEXT" )? + >  +
@@ -2990,9 +4245,9 @@

draw:path Element

Attributes draw:class-names  - draw:id[1]  + draw:id[2]  draw:layer  - draw:name[3]  + draw:name[1]  draw:style-name  draw:text-style-name  draw:transform  @@ -3003,7 +4258,7 @@

draw:path Element

svg:height[1]  svg:viewBox  svg:width[1]  - svg:x[2]  + svg:x[1]  svg:y[2]  table:end-cell-address  table:end-x  @@ -3022,6 +4277,44 @@

draw:path Element

<text:p>*    + + Child Relations + <draw:path svg:d="<string>" + ( (svg:x="string]" )? + (svg:y="string]" )? + ) + ( (svg:width="string]" )? + (svg:height="string]" )? + )svg:viewBox=" +START_list<integer><integer><integer><integer> +END_list" + ( + ( (draw:z-index="<nonNegativeInteger>" )? + (draw:id="<ID>" )? + (draw:layer="<string>" )? + + ( (draw:style-name="(<NCName>)?" )? + (draw:class-names=" +START_list(<NCName>)* +END_list" )? + ) | + ( (presentation:style-name="(<NCName>)?" )? + (presentation:class-names=" +START_list(<NCName>)* +END_list" )? + ) (draw:transform="<string>" )? + (draw:name="<string>" )? + + ( (table:end-cell-address="string]" )? + (table:end-x="string]" )? + (table:end-y="string]" )? + ) (table:table-background="<boolean>" )? + (text:anchor-type="page | frame | paragraph | char | as-char" )? + (text:anchor-page-number="<positiveInteger>" )? + ) (draw:text-style-name="(<NCName>)?" )? + ) (<office:event-listeners ... >)? + (<draw:glue-point ... >)* (<text:p ... > | <text:list ... >)* >  +
@@ -3049,6 +4342,15 @@

draw:plugin Element

<draw:param>*    + + Child Relations + <draw:plugin (draw:mime-type="TEXT" )? + + (xlink:href="<anyURI>" (xlink:type="simple" )? + (xlink:show="embed" )? + (xlink:actuate="onLoad" )? + )(<draw:param ... >)* >  +
@@ -3083,9 +4385,9 @@

draw:polygon Element

Attributes draw:class-names  - draw:id[1]  + draw:id[2]  draw:layer  - draw:name[3]  + draw:name[1]  draw:points  draw:style-name  draw:text-style-name  @@ -3096,7 +4398,7 @@

draw:polygon Element

svg:height[1]  svg:viewBox  svg:width[1]  - svg:x[2]  + svg:x[1]  svg:y[2]  table:end-cell-address  table:end-x  @@ -3115,6 +4417,44 @@

draw:polygon Element

<text:p>*    + + Child Relations + <draw:polygon draw:points="string]" + ( (svg:x="string]" )? + (svg:y="string]" )? + ) + ( (svg:width="string]" )? + (svg:height="string]" )? + )svg:viewBox=" +START_list<integer><integer><integer><integer> +END_list" + ( + ( (draw:z-index="<nonNegativeInteger>" )? + (draw:id="<ID>" )? + (draw:layer="<string>" )? + + ( (draw:style-name="(<NCName>)?" )? + (draw:class-names=" +START_list(<NCName>)* +END_list" )? + ) | + ( (presentation:style-name="(<NCName>)?" )? + (presentation:class-names=" +START_list(<NCName>)* +END_list" )? + ) (draw:transform="<string>" )? + (draw:name="<string>" )? + + ( (table:end-cell-address="string]" )? + (table:end-x="string]" )? + (table:end-y="string]" )? + ) (table:table-background="<boolean>" )? + (text:anchor-type="page | frame | paragraph | char | as-char" )? + (text:anchor-page-number="<positiveInteger>" )? + ) (draw:text-style-name="(<NCName>)?" )? + ) (<office:event-listeners ... >)? + (<draw:glue-point ... >)* (<text:p ... > | <text:list ... >)* >  +
@@ -3149,9 +4489,9 @@

draw:polyline Element

Attributes draw:class-names  - draw:id[1]  + draw:id[2]  draw:layer  - draw:name[3]  + draw:name[1]  draw:points  draw:style-name  draw:text-style-name  @@ -3162,7 +4502,7 @@

draw:polyline Element

svg:height[1]  svg:viewBox  svg:width[1]  - svg:x[2]  + svg:x[1]  svg:y[2]  table:end-cell-address  table:end-x  @@ -3181,6 +4521,44 @@

draw:polyline Element

<text:p>*    + + Child Relations + <draw:polyline draw:points="string]" + ( (svg:x="string]" )? + (svg:y="string]" )? + ) + ( (svg:width="string]" )? + (svg:height="string]" )? + )svg:viewBox=" +START_list<integer><integer><integer><integer> +END_list" + ( + ( (draw:z-index="<nonNegativeInteger>" )? + (draw:id="<ID>" )? + (draw:layer="<string>" )? + + ( (draw:style-name="(<NCName>)?" )? + (draw:class-names=" +START_list(<NCName>)* +END_list" )? + ) | + ( (presentation:style-name="(<NCName>)?" )? + (presentation:class-names=" +START_list(<NCName>)* +END_list" )? + ) (draw:transform="<string>" )? + (draw:name="<string>" )? + + ( (table:end-cell-address="string]" )? + (table:end-x="string]" )? + (table:end-y="string]" )? + ) (table:table-background="<boolean>" )? + (text:anchor-type="page | frame | paragraph | char | as-char" )? + (text:anchor-page-number="<positiveInteger>" )? + ) (draw:text-style-name="(<NCName>)?" )? + ) (<office:event-listeners ... >)? + (<draw:glue-point ... >)* (<text:p ... > | <text:list ... >)* >  +
@@ -3216,9 +4594,9 @@

draw:rect Element

draw:class-names  draw:corner-radius  - draw:id[1]  + draw:id[2]  draw:layer  - draw:name[3]  + draw:name[1]  draw:style-name  draw:text-style-name  draw:transform  @@ -3227,7 +4605,7 @@

draw:rect Element

presentation:style-name  svg:height[1]  svg:width[1]  - svg:x[2]  + svg:x[1]  svg:y[2]  table:end-cell-address  table:end-x  @@ -3246,6 +4624,43 @@

draw:rect Element

<text:p>*    + + Child Relations + <draw:rect (draw:corner-radius="string]" )? + + ( (svg:x="string]" )? + (svg:y="string]" )? + ) + ( (svg:width="string]" )? + (svg:height="string]" )? + ) + ( + ( (draw:z-index="<nonNegativeInteger>" )? + (draw:id="<ID>" )? + (draw:layer="<string>" )? + + ( (draw:style-name="(<NCName>)?" )? + (draw:class-names=" +START_list(<NCName>)* +END_list" )? + ) | + ( (presentation:style-name="(<NCName>)?" )? + (presentation:class-names=" +START_list(<NCName>)* +END_list" )? + ) (draw:transform="<string>" )? + (draw:name="<string>" )? + + ( (table:end-cell-address="string]" )? + (table:end-x="string]" )? + (table:end-y="string]" )? + ) (table:table-background="<boolean>" )? + (text:anchor-type="page | frame | paragraph | char | as-char" )? + (text:anchor-page-number="<positiveInteger>" )? + ) (draw:text-style-name="(<NCName>)?" )? + ) (<office:event-listeners ... >)? + (<draw:glue-point ... >)* (<text:p ... > | <text:list ... >)* >  +
@@ -3283,9 +4698,9 @@

draw:regular-polygon Elementdraw:concave[1]  draw:concave[2]  draw:corners  - draw:id[1]  + draw:id[2]  draw:layer  - draw:name[3]  + draw:name[1]  draw:sharpness  draw:style-name  draw:text-style-name  @@ -3295,7 +4710,7 @@

draw:regular-polygon Elementpresentation:style-name  svg:height[1]  svg:width[1]  - svg:x[2]  + svg:x[1]  svg:y[2]  table:end-cell-address  table:end-x  @@ -3314,6 +4729,43 @@

draw:regular-polygon Element<text:p>*    + + Child Relations + <draw:regular-polygon draw:concave="false" | + (draw:concave="true" draw:sharpness="string]" )draw:corners="<positiveInteger>" + ( (svg:x="string]" )? + (svg:y="string]" )? + ) + ( (svg:width="string]" )? + (svg:height="string]" )? + ) + ( + ( (draw:z-index="<nonNegativeInteger>" )? + (draw:id="<ID>" )? + (draw:layer="<string>" )? + + ( (draw:style-name="(<NCName>)?" )? + (draw:class-names=" +START_list(<NCName>)* +END_list" )? + ) | + ( (presentation:style-name="(<NCName>)?" )? + (presentation:class-names=" +START_list(<NCName>)* +END_list" )? + ) (draw:transform="<string>" )? + (draw:name="<string>" )? + + ( (table:end-cell-address="string]" )? + (table:end-x="string]" )? + (table:end-y="string]" )? + ) (table:table-background="<boolean>" )? + (text:anchor-type="page | frame | paragraph | char | as-char" )? + (text:anchor-page-number="<positiveInteger>" )? + ) (draw:text-style-name="(<NCName>)?" )? + ) (<office:event-listeners ... >)? + (<draw:glue-point ... >)* (<text:p ... > | <text:list ... >)* >  +
@@ -3334,7 +4786,7 @@

draw:stroke-dash Element

draw:dots1-length  draw:dots2  draw:dots2-length  - draw:name[1]  + draw:name[2]  draw:style[1]    @@ -3343,6 +4795,18 @@

draw:stroke-dash Element

  + + Child Relations + <draw:stroke-dash draw:name="<NCName>" (draw:display-name="<string>" )? + (draw:style="rect | round" )? + + ( (draw:dots1="<integer>" )? + (draw:dots1-length="string]" )? + (draw:dots2="<integer>" )? + (draw:dots2-length="string]" )? + ) (draw:distance="string]" )? + >  +
@@ -3404,6 +4868,18 @@

draw:text-box Element

<text:user-index>*    + + Child Relations + <draw:text-box (draw:chain-next-name="<string>" )? + (draw:corner-radius="string]" )? + + ( (fo:min-height="string] | string]" )? + (fo:min-width="string] | string]" )? + ) + ( (fo:max-height="string] | string]" )? + (fo:max-width="string] | string]" )? + )(<text:h ... > | <text:p ... > | <text:list ... > | <text:numbered-paragraph ... > | <table:table ... > | <draw:a ... > | <text:section ... > | <text:table-of-content ... > | <text:illustration-index ... > | <text:table-index ... > | <text:object-index ... > | <text:user-index ... > | <text:alphabetical-index ... > | <text:bibliography ... > | <draw:rect ... > | <draw:line ... > | <draw:polyline ... > | <draw:polygon ... > | <draw:regular-polygon ... > | <draw:path ... > | <draw:circle ... > | <draw:ellipse ... > | <draw:g ... > | <draw:page-thumbnail ... > | <draw:frame ... > | <draw:measure ... > | <draw:caption ... > | <draw:connector ... > | <draw:control ... > | <dr3d:scene ... > | <draw:custom-shape ... > | <text:change ... > | <text:change-start ... > | <text:change-end ... >)* >  +
@@ -3435,7 +4911,7 @@

form:button Element

form:tab-stop  form:title  form:toggle  - form:value[2]  + form:value[4]  form:xforms-submission  office:target-frame  xforms:bind  @@ -3449,6 +4925,35 @@

form:button Element

<office:event-listeners>    + + Child Relations + <form:button + ( + ( (form:name="<string>" )? + (form:control-implementation="string]" )? + form:id="<ID>" (xforms:bind="<string>" )? + ) (form:button-type="submit | reset | push | url" )? + (form:disabled="<boolean>" )? + (form:label="<string>" )? + (form:image-data="<anyURI>" )? + (form:printable="<boolean>" )? + (form:tab-index="<nonNegativeInteger>" )? + (form:tab-stop="<boolean>" )? + (office:target-frame="_self | _blank | _parent | _top | <string>" )? + (xlink:href="<anyURI>" )? + (form:title="TEXT" )? + (form:value="<string>" )? + form:image-position="center" | EMPTY | + (form:image-position="start | end | top | bottom" (form:image-align="start | center | end" )? + )) (form:default-button="<boolean>" )? + (form:toggle="<boolean>" )? + (form:focus-on-click="<boolean>" )? + (form:xforms-submission="<string>" )? + + ( (<form:properties ... >)? + (<office:event-listeners ... >)? + )>  +
@@ -3480,7 +4985,7 @@

form:checkbox Element

form:tab-index  form:tab-stop  form:title  - form:value[2]  + form:value[4]  form:visual-effect  xforms:bind    @@ -3492,6 +4997,32 @@

form:checkbox Element

<office:event-listeners>    + + Child Relations + <form:checkbox + ( + ( (form:name="<string>" )? + (form:control-implementation="string]" )? + form:id="<ID>" (xforms:bind="<string>" )? + ) (form:disabled="<boolean>" )? + (form:label="<string>" )? + (form:printable="<boolean>" )? + (form:tab-index="<nonNegativeInteger>" )? + (form:tab-stop="<boolean>" )? + (form:title="TEXT" )? + (form:value="<string>" )? + (form:data-field="<string>" )? + (form:visual-effect="flat | 3d" )? + form:image-position="center" | EMPTY | + (form:image-position="start | end | top | bottom" (form:image-align="start | center | end" )? + )) (form:current-state="unchecked | checked | unknown" )? + (form:is-tristate="<boolean>" )? + (form:state="unchecked | checked | unknown" )? + + ( (<form:properties ... >)? + (<office:event-listeners ... >)? + )>  +
@@ -3525,6 +5056,15 @@

form:column Element

<form:textarea>*    + + Child Relations + <form:column + ( (form:name="<string>" )? + (form:control-implementation="string]" )? + (form:label="<string>" )? + (form:text-style-name="(<NCName>)?" )? + )(<form:text ... > | <form:textarea ... > | <form:formatted-text ... > | <form:number ... > | <form:date ... > | <form:combobox ... > | <form:listbox ... > | <form:checkbox ... >)+ >  +
@@ -3558,7 +5098,7 @@

form:combobox Element

form:tab-index  form:tab-stop  form:title  - form:value[2]  + form:value[4]  xforms:bind    @@ -3570,6 +5110,34 @@

form:combobox Element

<office:event-listeners>    + + Child Relations + <form:combobox + ( + ( (form:name="<string>" )? + (form:control-implementation="string]" )? + form:id="<ID>" (xforms:bind="<string>" )? + ) (form:current-value="<string>" )? + (form:disabled="<boolean>" )? + (form:dropdown="<boolean>" )? + (form:max-length="<nonNegativeInteger>" )? + (form:printable="<boolean>" )? + (form:readonly="<boolean>" )? + (form:size="<nonNegativeInteger>" )? + (form:tab-index="<nonNegativeInteger>" )? + (form:tab-stop="<boolean>" )? + (form:title="TEXT" )? + (form:value="<string>" )? + (form:convert-empty-to-null="<boolean>" )? + (form:data-field="<string>" )? + (form:list-source="<string>" )? + (form:list-source-type="table | query | sql | sql-pass-through | value-list | table-fields" )? + ) (form:auto-complete="<boolean>" )? + + ( (<form:properties ... >)? + (<office:event-listeners ... >)? + )(<form:item ... >)* >  +
@@ -3597,6 +5165,10 @@

form:connection-resource Elemen   + + Child Relations + <form:connection-resource xlink:href="<anyURI>" >  +
@@ -3614,20 +5186,20 @@

form:date Element

form:control-implementation  form:convert-empty-to-null  - form:current-value[1]  + form:current-value[2]  form:data-field  form:disabled  form:id  form:max-length  form:max-value[4]  - form:min-value[2]  + form:min-value[4]  form:name  form:printable  form:readonly  form:tab-index  form:tab-stop  form:title  - form:value[1]  + form:value[2]  xforms:bind    @@ -3638,6 +5210,31 @@

form:date Element

<office:event-listeners>    + + Child Relations + <form:date (form:value="<date>" )? + (form:current-value="<date>" )? + (form:min-value="<date>" )? + (form:max-value="<date>" )? + + ( + ( (form:name="<string>" )? + (form:control-implementation="string]" )? + form:id="<ID>" (xforms:bind="<string>" )? + ) (form:disabled="<boolean>" )? + (form:max-length="<nonNegativeInteger>" )? + (form:printable="<boolean>" )? + (form:readonly="<boolean>" )? + (form:tab-index="<nonNegativeInteger>" )? + (form:tab-stop="<boolean>" )? + (form:title="TEXT" )? + (form:convert-empty-to-null="<boolean>" )? + (form:data-field="<string>" )? + ) + ( (<form:properties ... >)? + (<office:event-listeners ... >)? + )>  +
@@ -3663,7 +5260,7 @@

form:file Element

form:tab-index  form:tab-stop  form:title  - form:value[2]  + form:value[4]  xforms:bind    @@ -3674,6 +5271,27 @@

form:file Element

<office:event-listeners>    + + Child Relations + <form:file + ( + ( (form:name="<string>" )? + (form:control-implementation="string]" )? + form:id="<ID>" (xforms:bind="<string>" )? + ) (form:current-value="<string>" )? + (form:disabled="<boolean>" )? + (form:max-length="<nonNegativeInteger>" )? + (form:printable="<boolean>" )? + (form:readonly="<boolean>" )? + (form:tab-index="<nonNegativeInteger>" )? + (form:tab-stop="<boolean>" )? + (form:title="TEXT" )? + (form:value="<string>" )? + ) + ( (<form:properties ... >)? + (<office:event-listeners ... >)? + )>  +
@@ -3707,6 +5325,24 @@

form:fixed-text Element

<office:event-listeners>    + + Child Relations + <form:fixed-text + ( + ( (form:name="<string>" )? + (form:control-implementation="string]" )? + form:id="<ID>" (xforms:bind="<string>" )? + ) (form:for="<string>" )? + (form:disabled="<boolean>" )? + (form:label="<string>" )? + (form:printable="<boolean>" )? + (form:title="TEXT" )? + ) (form:multi-line="<boolean>" )? + + ( (<form:properties ... >)? + (<office:event-listeners ... >)? + )>  +
@@ -3777,6 +5413,36 @@

form:form Element

<office:event-listeners>    + + Child Relations + <form:form (form:name="<string>" )? + (form:control-implementation="string]" )? + (xlink:href="<anyURI>" (xlink:type="simple" )? + (xlink:actuate="onRequest" )? + )? + (office:target-frame="_self | _blank | _parent | _top | <string>" )? + (form:method="get | post | <string>" )? + (form:enctype="<string>" )? + (form:allow-deletes="<boolean>" )? + (form:allow-inserts="<boolean>" )? + (form:allow-updates="<boolean>" )? + (form:apply-filter="<boolean>" )? + (form:command-type="table | query | command" )? + (form:command="TEXT" )? + (form:datasource="<anyURI> | <string>" )? + (form:master-fields="<string>" )? + (form:detail-fields="<string>" )? + (form:escape-processing="<boolean>" )? + (form:filter="<string>" )? + (form:ignore-result="<boolean>" )? + (form:navigation-mode="none | current | parent" )? + (form:order="<string>" )? + (form:tab-cycle="records | current | page" )? + (<form:properties ... >)? + (<office:event-listeners ... >)? + (<form:text ... > | <form:textarea ... > | <form:formatted-text ... > | <form:number ... > | <form:date ... > | <form:combobox ... > | <form:listbox ... > | <form:checkbox ... > | <form:password ... > | <form:file ... > | <form:time ... > | <form:fixed-text ... > | <form:button ... > | <form:image ... > | <form:radio ... > | <form:frame ... > | <form:image-frame ... > | <form:hidden ... > | <form:grid ... > | <form:value-range ... > | <form:generic-control ... > | <form:form ... >)* (<form:connection-resource ... >)? + >  +
@@ -3799,8 +5465,8 @@

form:formatted-text Element

form:disabled  form:id  form:max-length  - form:max-value[2]  - form:min-value[3]  + form:max-value[3]  + form:min-value[1]  form:name  form:printable  form:readonly  @@ -3808,7 +5474,7 @@

form:formatted-text Element

form:tab-stop  form:title  form:validation  - form:value[2]  + form:value[4]  xforms:bind    @@ -3819,6 +5485,32 @@

form:formatted-text Element

<office:event-listeners>    + + Child Relations + <form:formatted-text + ( + ( (form:name="<string>" )? + (form:control-implementation="string]" )? + form:id="<ID>" (xforms:bind="<string>" )? + ) (form:current-value="<string>" )? + (form:disabled="<boolean>" )? + (form:max-length="<nonNegativeInteger>" )? + (form:printable="<boolean>" )? + (form:readonly="<boolean>" )? + (form:tab-index="<nonNegativeInteger>" )? + (form:tab-stop="<boolean>" )? + (form:title="TEXT" )? + (form:value="<string>" )? + (form:convert-empty-to-null="<boolean>" )? + (form:data-field="<string>" )? + ) (form:max-value="<string>" )? + (form:min-value="<string>" )? + (form:validation="<boolean>" )? + + ( (<form:properties ... >)? + (<office:event-listeners ... >)? + )>  +
@@ -3851,6 +5543,23 @@

form:frame Element

<office:event-listeners>    + + Child Relations + <form:frame + ( + ( (form:name="<string>" )? + (form:control-implementation="string]" )? + form:id="<ID>" (xforms:bind="<string>" )? + ) (form:disabled="<boolean>" )? + (form:for="<string>" )? + (form:label="<string>" )? + (form:printable="<boolean>" )? + (form:title="TEXT" )? + ) + ( (<form:properties ... >)? + (<office:event-listeners ... >)? + )>  +
@@ -3878,6 +5587,17 @@

form:generic-control Element<office:event-listeners>    + + Child Relations + <form:generic-control + ( (form:name="<string>" )? + (form:control-implementation="string]" )? + form:id="<ID>" (xforms:bind="<string>" )? + ) + ( (<form:properties ... >)? + (<office:event-listeners ... >)? + )>  +
@@ -3911,6 +5631,23 @@

form:grid Element

<office:event-listeners>    + + Child Relations + <form:grid + ( + ( (form:name="<string>" )? + (form:control-implementation="string]" )? + form:id="<ID>" (xforms:bind="<string>" )? + ) (form:disabled="<boolean>" )? + (form:printable="<boolean>" )? + (form:tab-index="<nonNegativeInteger>" )? + (form:tab-stop="<boolean>" )? + (form:title="TEXT" )? + ) + ( (<form:properties ... >)? + (<office:event-listeners ... >)? + )(<form:column ... >)* >  +
@@ -3928,7 +5665,7 @@

form:hidden Element

form:control-implementation  form:id  form:name  - form:value[2]  + form:value[4]  xforms:bind    @@ -3939,6 +5676,19 @@

form:hidden Element

<office:event-listeners>    + + Child Relations + <form:hidden + ( + ( (form:name="<string>" )? + (form:control-implementation="string]" )? + form:id="<ID>" (xforms:bind="<string>" )? + ) (form:value="<string>" )? + ) + ( (<form:properties ... >)? + (<office:event-listeners ... >)? + )>  +
@@ -3963,7 +5713,7 @@

form:image Element

form:tab-index  form:tab-stop  form:title  - form:value[2]  + form:value[4]  office:target-frame  xforms:bind  xlink:href  @@ -3976,6 +5726,28 @@

form:image Element

<office:event-listeners>    + + Child Relations + <form:image + ( + ( (form:name="<string>" )? + (form:control-implementation="string]" )? + form:id="<ID>" (xforms:bind="<string>" )? + ) (form:button-type="submit | reset | push | url" )? + (form:disabled="<boolean>" )? + (form:image-data="<anyURI>" )? + (form:printable="<boolean>" )? + (form:tab-index="<nonNegativeInteger>" )? + (form:tab-stop="<boolean>" )? + (office:target-frame="_self | _blank | _parent | _top | <string>" )? + (xlink:href="<anyURI>" )? + (form:title="TEXT" )? + (form:value="<string>" )? + ) + ( (<form:properties ... >)? + (<office:event-listeners ... >)? + )>  +
@@ -4009,6 +5781,24 @@

form:image-frame Element

<office:event-listeners>    + + Child Relations + <form:image-frame + ( + ( (form:name="<string>" )? + (form:control-implementation="string]" )? + form:id="<ID>" (xforms:bind="<string>" )? + ) (form:disabled="<boolean>" )? + (form:image-data="<anyURI>" )? + (form:printable="<boolean>" )? + (form:readonly="<boolean>" )? + (form:title="TEXT" )? + (form:data-field="<string>" )? + ) + ( (<form:properties ... >)? + (<office:event-listeners ... >)? + )>  +
@@ -4032,6 +5822,11 @@

form:item Element

  + + Child Relations + <form:item (form:label="<string>" )? + TEXT>  +
@@ -4069,6 +5864,17 @@

form:list-property Element

<form:list-value[7]>*    + + Child Relations + <form:list-property form:property-name="<string>" + (office:value-type="float" (<form:list-value ... >)* ) | + (office:value-type="percentage" (<form:list-value ... >)* ) | + (office:value-type="currency" (<form:list-value ... >)* ) | + (office:value-type="date" (<form:list-value ... >)* ) | + (office:value-type="time" (<form:list-value ... >)* ) | + (office:value-type="boolean" (<form:list-value ... >)* ) | + (office:value-type="string" (<form:list-value ... >)* ) | office:value-type="void" >  +
@@ -4084,6 +5890,7 @@

form:list-value[1] Element

Attributes + office:currency  office:value    @@ -4092,6 +5899,11 @@

form:list-value[1] Element

  + + Child Relations + <form:list-value office:value="<double>" (office:currency="<string>" )? + >  +
@@ -4107,8 +5919,7 @@

form:list-value[2] Element

Attributes - office:currency  - office:value  + office:string-value    @@ -4116,6 +5927,10 @@

form:list-value[2] Element

  + + Child Relations + <form:list-value office:string-value="<string>" >  +
@@ -4131,7 +5946,7 @@

form:list-value[3] Element

Attributes - office:time-value  + office:value    @@ -4139,6 +5954,10 @@

form:list-value[3] Element

  + + Child Relations + <form:list-value office:value="<double>" >  +
@@ -4154,7 +5973,7 @@

form:list-value[4] Element

Attributes - office:string-value  + office:date-value    @@ -4162,6 +5981,10 @@

form:list-value[4] Element

  + + Child Relations + <form:list-value office:date-value="<date> | <dateTime>" >  +
@@ -4177,7 +6000,7 @@

form:list-value[5] Element

Attributes - office:value  + office:time-value    @@ -4185,6 +6008,10 @@

form:list-value[5] Element

  + + Child Relations + <form:list-value office:time-value="<duration>" >  +
@@ -4200,7 +6027,7 @@

form:list-value[6] Element

Attributes - office:boolean-value  + office:value    @@ -4208,6 +6035,10 @@

form:list-value[6] Element

  + + Child Relations + <form:list-value office:value="<double>" >  +
@@ -4223,7 +6054,7 @@

form:list-value[7] Element

Attributes - office:date-value  + office:boolean-value    @@ -4231,6 +6062,10 @@

form:list-value[7] Element

  + + Child Relations + <form:list-value office:boolean-value="<boolean>" >  +
@@ -4273,6 +6108,31 @@

form:listbox Element

<office:event-listeners>    + + Child Relations + <form:listbox + ( + ( (form:name="<string>" )? + (form:control-implementation="string]" )? + form:id="<ID>" (xforms:bind="<string>" )? + ) (form:disabled="<boolean>" )? + (form:dropdown="<boolean>" )? + (form:printable="<boolean>" )? + (form:size="<nonNegativeInteger>" )? + (form:tab-index="<nonNegativeInteger>" )? + (form:tab-stop="<boolean>" )? + (form:title="TEXT" )? + (form:bound-column="<string>" )? + (form:data-field="<string>" )? + (form:list-source="<string>" )? + (form:list-source-type="table | query | sql | sql-pass-through | value-list | table-fields" )? + ) (form:multiple="<boolean>" )? + (form:xforms-list-source="<string>" )? + + ( (<form:properties ... >)? + (<office:event-listeners ... >)? + )(<form:option ... >)* >  +
@@ -4295,15 +6155,15 @@

form:number Element

form:disabled  form:id  form:max-length  - form:max-value[3]  - form:min-value[1]  + form:max-value[2]  + form:min-value[2]  form:name  form:printable  form:readonly  form:tab-index  form:tab-stop  form:title  - form:value[4]  + form:value[1]  xforms:bind    @@ -4314,6 +6174,31 @@

form:number Element

<office:event-listeners>    + + Child Relations + <form:number (form:value="<double>" )? + (form:current-value="<double>" )? + (form:min-value="<double>" )? + (form:max-value="<double>" )? + + ( + ( (form:name="<string>" )? + (form:control-implementation="string]" )? + form:id="<ID>" (xforms:bind="<string>" )? + ) (form:disabled="<boolean>" )? + (form:max-length="<nonNegativeInteger>" )? + (form:printable="<boolean>" )? + (form:readonly="<boolean>" )? + (form:tab-index="<nonNegativeInteger>" )? + (form:tab-stop="<boolean>" )? + (form:title="TEXT" )? + (form:convert-empty-to-null="<boolean>" )? + (form:data-field="<string>" )? + ) + ( (<form:properties ... >)? + (<office:event-listeners ... >)? + )>  +
@@ -4332,7 +6217,7 @@

form:option Element

form:current-selected  form:label  form:selected  - form:value[2]  + form:value[4]    @@ -4340,6 +6225,15 @@

form:option Element

  + + Child Relations + <form:option + ( (form:current-selected="<boolean>" )? + (form:selected="<boolean>" )? + (form:label="<string>" )? + (form:value="<string>" )? + )TEXT>  +
@@ -4365,7 +6259,7 @@

form:password Element

form:tab-index  form:tab-stop  form:title  - form:value[2]  + form:value[4]  xforms:bind    @@ -4376,6 +6270,27 @@

form:password Element

<office:event-listeners>    + + Child Relations + <form:password + ( + ( (form:name="<string>" )? + (form:control-implementation="string]" )? + form:id="<ID>" (xforms:bind="<string>" )? + ) (form:disabled="<boolean>" )? + (form:max-length="<nonNegativeInteger>" )? + (form:printable="<boolean>" )? + (form:tab-index="<nonNegativeInteger>" )? + (form:tab-stop="<boolean>" )? + (form:title="TEXT" )? + (form:value="<string>" )? + (form:convert-empty-to-null="<boolean>" )? + ) (form:echo-char="string]" )? + + ( (<form:properties ... >)? + (<office:event-listeners ... >)? + )>  +
@@ -4420,6 +6335,10 @@

form:properties Element

<form:property>*    + + Child Relations + <form:properties (<form:property ... > | <form:list-property ... >)+ >  +
@@ -4456,6 +6375,19 @@

form:property Element

  + + Child Relations + <form:property form:property-name="<string>" + (office:value-type="float" office:value="<double>" ) | + (office:value-type="percentage" office:value="<double>" ) | + (office:value-type="currency" office:value="<double>" (office:currency="<string>" )? + ) | + (office:value-type="date" office:date-value="<date> | <dateTime>" ) | + (office:value-type="time" office:time-value="<duration>" ) | + (office:value-type="boolean" office:boolean-value="<boolean>" ) | + (office:value-type="string" (office:string-value="<string>" )? + ) | office:value-type="void" >  +
@@ -4485,7 +6417,7 @@

form:radio Element

form:tab-index  form:tab-stop  form:title  - form:value[2]  + form:value[4]  form:visual-effect  xforms:bind    @@ -4497,6 +6429,31 @@

form:radio Element

<office:event-listeners>    + + Child Relations + <form:radio + ( + ( (form:name="<string>" )? + (form:control-implementation="string]" )? + form:id="<ID>" (xforms:bind="<string>" )? + ) (form:current-selected="<boolean>" )? + (form:disabled="<boolean>" )? + (form:label="<string>" )? + (form:printable="<boolean>" )? + (form:selected="<boolean>" )? + (form:tab-index="<nonNegativeInteger>" )? + (form:tab-stop="<boolean>" )? + (form:title="TEXT" )? + (form:value="<string>" )? + (form:data-field="<string>" )? + (form:visual-effect="flat | 3d" )? + form:image-position="center" | EMPTY | + (form:image-position="start | end | top | bottom" (form:image-align="start | center | end" )? + )) + ( (<form:properties ... >)? + (<office:event-listeners ... >)? + )>  +
@@ -4525,7 +6482,7 @@

form:text Element

form:tab-index  form:tab-stop  form:title  - form:value[2]  + form:value[4]  xforms:bind    @@ -4536,6 +6493,29 @@

form:text Element

<office:event-listeners>    + + Child Relations + <form:text + ( + ( (form:name="<string>" )? + (form:control-implementation="string]" )? + form:id="<ID>" (xforms:bind="<string>" )? + ) (form:current-value="<string>" )? + (form:disabled="<boolean>" )? + (form:max-length="<nonNegativeInteger>" )? + (form:printable="<boolean>" )? + (form:readonly="<boolean>" )? + (form:tab-index="<nonNegativeInteger>" )? + (form:tab-stop="<boolean>" )? + (form:title="TEXT" )? + (form:value="<string>" )? + (form:convert-empty-to-null="<boolean>" )? + (form:data-field="<string>" )? + ) + ( (<form:properties ... >)? + (<office:event-listeners ... >)? + )>  +
@@ -4564,7 +6544,7 @@

form:textarea Element

form:tab-index  form:tab-stop  form:title  - form:value[2]  + form:value[4]  xforms:bind    @@ -4576,6 +6556,29 @@

form:textarea Element

<text:p>*    + + Child Relations + <form:textarea + ( + ( (form:name="<string>" )? + (form:control-implementation="string]" )? + form:id="<ID>" (xforms:bind="<string>" )? + ) (form:current-value="<string>" )? + (form:disabled="<boolean>" )? + (form:max-length="<nonNegativeInteger>" )? + (form:printable="<boolean>" )? + (form:readonly="<boolean>" )? + (form:tab-index="<nonNegativeInteger>" )? + (form:tab-stop="<boolean>" )? + (form:title="TEXT" )? + (form:value="<string>" )? + (form:convert-empty-to-null="<boolean>" )? + (form:data-field="<string>" )? + ) + ( (<form:properties ... >)? + (<office:event-listeners ... >)? + )(<text:p ... >)* >  +
@@ -4592,13 +6595,13 @@

form:time Element

form:control-implementation  form:convert-empty-to-null  - form:current-value[2]  + form:current-value[1]  form:data-field  form:disabled  form:id  form:max-length  form:max-value[1]  - form:min-value[4]  + form:min-value[3]  form:name  form:printable  form:readonly  @@ -4616,6 +6619,31 @@

form:time Element

<office:event-listeners>    + + Child Relations + <form:time (form:value="<time>" )? + (form:current-value="<time>" )? + (form:min-value="<time>" )? + (form:max-value="<time>" )? + + ( + ( (form:name="<string>" )? + (form:control-implementation="string]" )? + form:id="<ID>" (xforms:bind="<string>" )? + ) (form:disabled="<boolean>" )? + (form:max-length="<nonNegativeInteger>" )? + (form:printable="<boolean>" )? + (form:readonly="<boolean>" )? + (form:tab-index="<nonNegativeInteger>" )? + (form:tab-stop="<boolean>" )? + (form:title="TEXT" )? + (form:convert-empty-to-null="<boolean>" )? + (form:data-field="<string>" )? + ) + ( (<form:properties ... >)? + (<office:event-listeners ... >)? + )>  +
@@ -4634,8 +6662,8 @@

form:value-range Element

form:delay-for-repeat  form:disabled  form:id  - form:max-value[2]  - form:min-value[3]  + form:max-value[3]  + form:min-value[1]  form:name  form:orientation  form:page-step-size  @@ -4644,7 +6672,7 @@

form:value-range Element

form:tab-index  form:tab-stop  form:title  - form:value[2]  + form:value[4]  xforms:bind    @@ -4655,6 +6683,30 @@

form:value-range Element

<office:event-listeners>    + + Child Relations + <form:value-range + ( + ( (form:name="<string>" )? + (form:control-implementation="string]" )? + form:id="<ID>" (xforms:bind="<string>" )? + ) (form:disabled="<boolean>" )? + (form:printable="<boolean>" )? + (form:tab-index="<nonNegativeInteger>" )? + (form:tab-stop="<boolean>" )? + (form:title="TEXT" )? + (form:value="<string>" )? + ) (form:max-value="<string>" )? + (form:min-value="<string>" )? + (form:step-size="<positiveInteger>" )? + (form:page-step-size="<positiveInteger>" )? + (form:delay-for-repeat="<duration>" )? + (form:orientation="horizontal | vertical" )? + + ( (<form:properties ... >)? + (<office:event-listeners ... >)? + )>  +
@@ -4679,6 +6731,10 @@

math:math Element

[any org.w3c.dom.Element]    + + Child Relations + <math:math (*:*="TEXT" | TEXT | <*:* ... >)+ >  +
@@ -4700,6 +6756,10 @@

meta:date-string Element

  + + Child Relations + <meta:date-string <string>>  +
@@ -4722,6 +6782,10 @@

number:am-pm Element

  + + Child Relations + <number:am-pm EMPTY>  +
@@ -4743,6 +6807,10 @@

number:boolean Element

  + + Child Relations + <number:boolean EMPTY>  +
@@ -4778,6 +6846,22 @@

number:boolean-style Element<style:text-properties>    + + Child Relations + <number:boolean-style style:name="<NCName>" (number:language="token]" )? + (number:country="token]" )? + (number:title="TEXT" )? + (style:volatile="<boolean>" )? + (number:transliteration-format="<string>" )? + (number:transliteration-language="token]" )? + (number:transliteration-country="token]" )? + (number:transliteration-style="short | medium | long" )? + (<style:text-properties ... >)? + (<number:text ... >)? + (<number:boolean ... > (<number:text ... >)? + )? + (<style:map ... >)* >  +
@@ -4815,6 +6899,34 @@

number:currency-style Element< <style:text-properties>    + + Child Relations + <number:currency-style style:name="<NCName>" (number:language="token]" )? + (number:country="token]" )? + (number:title="TEXT" )? + (style:volatile="<boolean>" )? + (number:transliteration-format="<string>" )? + (number:transliteration-language="token]" )? + (number:transliteration-country="token]" )? + (number:transliteration-style="short | medium | long" )? + (number:automatic-order="<boolean>" )? + (<style:text-properties ... >)? + (<number:text ... >)? + ( + ( + (<number:number ... > (<number:text ... >)? + ) ( + (<number:currency-symbol ... > (<number:text ... >)? + ))? + ) | + ( + (<number:currency-symbol ... > (<number:text ... >)? + ) ( + (<number:number ... > (<number:text ... >)? + ))? + ))? + (<style:map ... >)* >  +
@@ -4839,6 +6951,13 @@

number:currency-symbol Element   + + Child Relations + <number:currency-symbol + ( (number:language="token]" )? + (number:country="token]" )? + )TEXT>  +
@@ -4886,6 +7005,23 @@

number:date-style Element

<style:text-properties>    + + Child Relations + <number:date-style style:name="<NCName>" (number:language="token]" )? + (number:country="token]" )? + (number:title="TEXT" )? + (style:volatile="<boolean>" )? + (number:transliteration-format="<string>" )? + (number:transliteration-language="token]" )? + (number:transliteration-country="token]" )? + (number:transliteration-style="short | medium | long" )? + (number:automatic-order="<boolean>" )? + (number:format-source="fixed | language" )? + (<style:text-properties ... >)? + (<number:text ... >)? + (<number:day ... > | <number:month ... > | <number:year ... > | <number:era ... > | <number:day-of-week ... > | <number:week-of-year ... > | <number:quarter ... > | <number:hours ... > | <number:am-pm ... > | <number:minutes ... > | <number:seconds ... > (<number:text ... >)? + )+ (<style:map ... >)* >  +
@@ -4909,6 +7045,12 @@

number:day Element

  + + Child Relations + <number:day (number:style="short | long" )? + (number:calendar="gregorian | gengou | ROC | hanja_yoil | hanja | hijri | jewish | buddhist | <string>" )? + >  +
@@ -4932,6 +7074,12 @@

number:day-of-week Element

  + + Child Relations + <number:day-of-week (number:style="short | long" )? + (number:calendar="gregorian | gengou | ROC | hanja_yoil | hanja | hijri | jewish | buddhist | <string>" )? + >  +
@@ -4955,6 +7103,10 @@

number:embedded-text Element   + + Child Relations + <number:embedded-text number:position="<integer>" TEXT>  +
@@ -4978,6 +7130,12 @@

number:era Element

  + + Child Relations + <number:era (number:style="short | long" )? + (number:calendar="gregorian | gengou | ROC | hanja_yoil | hanja | hijri | jewish | buddhist | <string>" )? + >  +
@@ -5004,6 +7162,15 @@

number:fraction Element

  + + Child Relations + <number:fraction (number:min-numerator-digits="<integer>" )? + (number:min-denominator-digits="<integer>" )? + (number:denominator-value="<integer>" )? + (number:min-integer-digits="<integer>" )? + (number:grouping="<boolean>" )? + >  +
@@ -5027,6 +7194,11 @@

number:hours Element

  + + Child Relations + <number:hours (number:style="short | long" )? + >  +
@@ -5050,6 +7222,11 @@

number:minutes Element

  + + Child Relations + <number:minutes (number:style="short | long" )? + >  +
@@ -5075,6 +7252,14 @@

number:month Element

  + + Child Relations + <number:month (number:textual="<boolean>" )? + (number:possessive-form="<boolean>" )? + (number:style="short | long" )? + (number:calendar="gregorian | gengou | ROC | hanja_yoil | hanja | hijri | jewish | buddhist | <string>" )? + >  +
@@ -5104,6 +7289,15 @@

number:number Element

<number:embedded-text>*    + + Child Relations + <number:number (number:decimal-replacement="TEXT" )? + (number:display-factor="<double>" )? + (number:decimal-places="<integer>" )? + (number:min-integer-digits="<integer>" )? + (number:grouping="<boolean>" )? + (<number:embedded-text ... >)* >  +
@@ -5141,6 +7335,22 @@

number:number-style Element

<style:text-properties>    + + Child Relations + <number:number-style style:name="<NCName>" (number:language="token]" )? + (number:country="token]" )? + (number:title="TEXT" )? + (style:volatile="<boolean>" )? + (number:transliteration-format="<string>" )? + (number:transliteration-language="token]" )? + (number:transliteration-country="token]" )? + (number:transliteration-style="short | medium | long" )? + (<style:text-properties ... >)? + (<number:text ... >)? + (<number:number ... > | <number:scientific-number ... > | <number:fraction ... > (<number:text ... >)? + )? + (<style:map ... >)* >  +
@@ -5176,6 +7386,23 @@

number:percentage-style Element< <style:text-properties>    + + Child Relations + <number:percentage-style style:name="<NCName>" (number:language="token]" )? + (number:country="token]" )? + (number:title="TEXT" )? + (style:volatile="<boolean>" )? + (number:transliteration-format="<string>" )? + (number:transliteration-language="token]" )? + (number:transliteration-country="token]" )? + (number:transliteration-style="short | medium | long" )? + (<style:text-properties ... >)? + (<number:text ... >)? + ( + (<number:number ... > (<number:text ... >)? + ))? + (<style:map ... >)* >  +
@@ -5199,6 +7426,12 @@

number:quarter Element

  + + Child Relations + <number:quarter (number:style="short | long" )? + (number:calendar="gregorian | gengou | ROC | hanja_yoil | hanja | hijri | jewish | buddhist | <string>" )? + >  +
@@ -5224,6 +7457,14 @@

number:scientific-number Elemen   + + Child Relations + <number:scientific-number (number:min-exponent-digits="<integer>" )? + (number:decimal-places="<integer>" )? + (number:min-integer-digits="<integer>" )? + (number:grouping="<boolean>" )? + >  +
@@ -5248,6 +7489,12 @@

number:seconds Element

  + + Child Relations + <number:seconds (number:style="short | long" )? + (number:decimal-places="<integer>" )? + >  +
@@ -5276,6 +7523,10 @@

number:text Element

  + + Child Relations + <number:text TEXT>  +
@@ -5297,6 +7548,10 @@

number:text-content Element

  + + Child Relations + <number:text-content EMPTY>  +
@@ -5332,6 +7587,21 @@

number:text-style Element

<style:text-properties>    + + Child Relations + <number:text-style style:name="<NCName>" (number:language="token]" )? + (number:country="token]" )? + (number:title="TEXT" )? + (style:volatile="<boolean>" )? + (number:transliteration-format="<string>" )? + (number:transliteration-language="token]" )? + (number:transliteration-country="token]" )? + (number:transliteration-style="short | medium | long" )? + (<style:text-properties ... >)? + (<number:text ... >)? + (<number:text-content ... > (<number:text ... >)? + )* (<style:map ... >)* >  +
@@ -5372,6 +7642,23 @@

number:time-style Element

<style:text-properties>    + + Child Relations + <number:time-style (number:truncate-on-overflow="<boolean>" )? + style:name="<NCName>" (number:language="token]" )? + (number:country="token]" )? + (number:title="TEXT" )? + (style:volatile="<boolean>" )? + (number:transliteration-format="<string>" )? + (number:transliteration-language="token]" )? + (number:transliteration-country="token]" )? + (number:transliteration-style="short | medium | long" )? + (number:format-source="fixed | language" )? + (<style:text-properties ... >)? + (<number:text ... >)? + (<number:hours ... > | <number:am-pm ... > | <number:minutes ... > | <number:seconds ... > (<number:text ... >)? + )+ (<style:map ... >)* >  +
@@ -5394,6 +7681,11 @@

number:week-of-year Element

  + + Child Relations + <number:week-of-year (number:calendar="gregorian | gengou | ROC | hanja_yoil | hanja | hijri | jewish | buddhist | <string>" )? + >  +
@@ -5417,6 +7709,12 @@

number:year Element

  + + Child Relations + <number:year (number:style="short | long" )? + (number:calendar="gregorian | gengou | ROC | hanja_yoil | hanja | hijri | jewish | buddhist | <string>" )? + >  +
@@ -5441,9 +7739,9 @@

office:annotation Element

draw:caption-point-y  draw:class-names  draw:corner-radius  - draw:id[1]  + draw:id[2]  draw:layer  - draw:name[3]  + draw:name[1]  draw:style-name  draw:text-style-name  draw:transform  @@ -5453,7 +7751,7 @@

office:annotation Element

presentation:style-name  svg:height[1]  svg:width[1]  - svg:x[2]  + svg:x[1]  svg:y[2]  table:end-cell-address  table:end-x  @@ -5473,6 +7771,47 @@

office:annotation Element

<text:p>*    + + Child Relations + <office:annotation (office:display="<boolean>" )? + (draw:caption-point-x="string]" draw:caption-point-y="string]" )? + (draw:corner-radius="string]" )? + + ( (svg:x="string]" )? + (svg:y="string]" )? + ) + ( (svg:width="string]" )? + (svg:height="string]" )? + ) + ( + ( (draw:z-index="<nonNegativeInteger>" )? + (draw:id="<ID>" )? + (draw:layer="<string>" )? + + ( (draw:style-name="(<NCName>)?" )? + (draw:class-names=" +START_list(<NCName>)* +END_list" )? + ) | + ( (presentation:style-name="(<NCName>)?" )? + (presentation:class-names=" +START_list(<NCName>)* +END_list" )? + ) (draw:transform="<string>" )? + (draw:name="<string>" )? + + ( (table:end-cell-address="string]" )? + (table:end-x="string]" )? + (table:end-y="string]" )? + ) (table:table-background="<boolean>" )? + (text:anchor-type="page | frame | paragraph | char | as-char" )? + (text:anchor-page-number="<positiveInteger>" )? + ) (draw:text-style-name="(<NCName>)?" )? + ) (<dc:creator ... >)? + (<dc:date ... >)? + (<meta:date-string ... >)? + (<text:p ... > | <text:list ... >)* >  +
@@ -5506,6 +7845,10 @@

office:automatic-styles Element< <text:list-style>*    + + Child Relations + <office:automatic-styles (<style:style ... >)* (<text:list-style ... >)* (<number:number-style ... >)* (<number:currency-style ... >)* (<number:percentage-style ... >)* (<number:date-style ... >)* (<number:time-style ... >)* (<number:boolean-style ... >)* (<number:text-style ... >)* (<style:page-layout ... >)* >  +
@@ -5529,6 +7872,10 @@

office:binary-data Element

  + + Child Relations + <office:binary-data <base64Binary>>  +
@@ -5557,6 +7904,10 @@

office:body Element

<office:text>    + + Child Relations + <office:body <office:text ... > | <office:drawing ... > | <office:presentation ... > | <office:spreadsheet ... > | <office:chart ... > | <office:image ... >>  +
@@ -5587,6 +7938,10 @@

office:change-info Element

<text:p>*    + + Child Relations + <office:change-info <dc:creator ... ><dc:date ... >(<text:p ... >)* >  +
@@ -5622,6 +7977,27 @@

office:chart Element

<text:variable-decls>    + + Child Relations + <office:chart EMPTY + ( + ( (<text:variable-decls ... >)? + (<text:sequence-decls ... >)? + (<text:user-field-decls ... >)? + (<text:dde-connection-decls ... >)? + (<text:alphabetical-index-auto-mark-file ... >)? + ) + ( (<table:calculation-settings ... >)? + (<table:content-validations ... >)? + (<table:label-ranges ... >)? + ))<chart:chart ... > + ( (<table:named-expressions ... >)? + (<table:database-ranges ... >)? + (<table:data-pilot-tables ... >)? + (<table:consolidation ... >)? + (<table:dde-links ... >)? + )>  +
@@ -5651,6 +8027,13 @@

office:dde-source Element

  + + Child Relations + <office:dde-source (office:name="<string>" )? + (office:conversion-mode="into-default-style-data-style | into-english-number | keep-text" )? + office:dde-application="<string>" office:dde-topic="<string>" office:dde-item="<string>" (office:automatic-update="<boolean>" )? + >  +
@@ -5682,6 +8065,18 @@

office:document Element

<office:styles>    + + Child Relations + <office:document office:mimetype="<string>" (office:version="<string>" )? + (<office:meta ... >)? + (<office:settings ... >)? + (<office:scripts ... >)? + (<office:font-face-decls ... >)? + (<office:styles ... >)? + (<office:automatic-styles ... >)? + (<office:master-styles ... >)? + <office:body ... >>  +
@@ -5707,6 +8102,14 @@

office:document-content Element< <office:scripts>    + + Child Relations + <office:document-content (office:version="<string>" )? + (<office:scripts ... >)? + (<office:font-face-decls ... >)? + (<office:automatic-styles ... >)? + <office:body ... >>  +
@@ -5729,6 +8132,12 @@

office:document-meta Element<office:meta>    + + Child Relations + <office:document-meta (office:version="<string>" )? + (<office:meta ... >)? + >  +
@@ -5751,6 +8160,12 @@

office:document-settings Elemen <office:settings>    + + Child Relations + <office:document-settings (office:version="<string>" )? + (<office:settings ... >)? + >  +
@@ -5776,6 +8191,15 @@

office:document-styles Element<office:styles>    + + Child Relations + <office:document-styles (office:version="<string>" )? + (<office:font-face-decls ... >)? + (<office:styles ... >)? + (<office:automatic-styles ... >)? + (<office:master-styles ... >)? + >  +
@@ -5811,6 +8235,27 @@

office:drawing Element

<text:variable-decls>    + + Child Relations + <office:drawing EMPTY + ( + ( (<text:variable-decls ... >)? + (<text:sequence-decls ... >)? + (<text:user-field-decls ... >)? + (<text:dde-connection-decls ... >)? + (<text:alphabetical-index-auto-mark-file ... >)? + ) + ( (<table:calculation-settings ... >)? + (<table:content-validations ... >)? + (<table:label-ranges ... >)? + ))(<draw:page ... >)* + ( (<table:named-expressions ... >)? + (<table:database-ranges ... >)? + (<table:data-pilot-tables ... >)? + (<table:consolidation ... >)? + (<table:dde-links ... >)? + )>  +
@@ -5876,6 +8321,10 @@

office:event-listeners Element<script:event-listener>*    + + Child Relations + <office:event-listeners (<script:event-listener ... > | <presentation:event-listener ... >)* >  +
@@ -5900,6 +8349,10 @@

office:font-face-decls Element<style:font-face>*    + + Child Relations + <office:font-face-decls (<style:font-face ... >)* >  +
@@ -5928,6 +8381,12 @@

office:forms Element

<xforms:model>*    + + Child Relations + <office:forms (form:automatic-focus="<boolean>" )? + (form:apply-design-mode="<boolean>" )? + (<form:form ... > | <xforms:model ... >)* >  +
@@ -5950,6 +8409,10 @@

office:image Element

<draw:frame>    + + Child Relations + <office:image EMPTYEMPTY<draw:frame ... >EMPTY>  +
@@ -5975,6 +8438,12 @@

office:master-styles Element<style:master-page>*    + + Child Relations + <office:master-styles (<style:master-page ... >)* (<style:handout-master ... >)? + (<draw:layer-set ... >)? + >  +
@@ -5998,6 +8467,10 @@

office:meta Element

[any org.w3c.dom.Element]    + + Child Relations + <office:meta (<*:* ... >)* >  +
@@ -6037,6 +8510,29 @@

office:presentation Element

<text:variable-decls>    + + Child Relations + <office:presentation EMPTY + ( + ( (<text:variable-decls ... >)? + (<text:sequence-decls ... >)? + (<text:user-field-decls ... >)? + (<text:dde-connection-decls ... >)? + (<text:alphabetical-index-auto-mark-file ... >)? + ) + ( (<table:calculation-settings ... >)? + (<table:content-validations ... >)? + (<table:label-ranges ... >)? + )(<presentation:header-decl ... > | <presentation:footer-decl ... > | <presentation:date-time-decl ... >)* )(<draw:page ... >)* + ( (<presentation:settings ... >)? + + ( (<table:named-expressions ... >)? + (<table:database-ranges ... >)? + (<table:data-pilot-tables ... >)? + (<table:consolidation ... >)? + (<table:dde-links ... >)? + ))>  +
@@ -6060,6 +8556,10 @@

office:script Element

[any org.w3c.dom.Element]    + + Child Relations + <office:script script:language="<string>" (<*:* ... >)* >  +
@@ -6084,6 +8584,11 @@

office:scripts Element

<office:script>*    + + Child Relations + <office:scripts (<office:script ... >)* (<office:event-listeners ... >)? + >  +
@@ -6107,6 +8612,10 @@

office:settings Element

<config:config-item-set>*    + + Child Relations + <office:settings (<config:config-item-set ... >)+ >  +
@@ -6145,6 +8654,31 @@

office:spreadsheet Element

<text:variable-decls>    + + Child Relations + <office:spreadsheet + ( (table:structure-protected="<boolean>" )? + (table:protection-key="<string>" )? + ) + ( (<table:tracked-changes ... >)? + + ( (<text:variable-decls ... >)? + (<text:sequence-decls ... >)? + (<text:user-field-decls ... >)? + (<text:dde-connection-decls ... >)? + (<text:alphabetical-index-auto-mark-file ... >)? + ) + ( (<table:calculation-settings ... >)? + (<table:content-validations ... >)? + (<table:label-ranges ... >)? + ))(<table:table ... >)* + ( (<table:named-expressions ... >)? + (<table:database-ranges ... >)? + (<table:data-pilot-tables ... >)? + (<table:consolidation ... >)? + (<table:dde-links ... >)? + )>  +
@@ -6190,6 +8724,13 @@

office:styles Element

<text:outline-style>    + + Child Relations + <office:styles (<style:style ... >)* (<text:list-style ... >)* (<number:number-style ... >)* (<number:currency-style ... >)* (<number:percentage-style ... >)* (<number:date-style ... >)* (<number:time-style ... >)* (<number:boolean-style ... >)* (<number:text-style ... >)* (<style:default-style ... >)* (<text:outline-style ... >)? + (<text:notes-configuration ... >)* (<text:bibliography-configuration ... >)? + (<text:linenumbering-configuration ... >)? + (<draw:gradient ... >)* (<svg:linearGradient ... >)* (<svg:radialGradient ... >)* (<draw:hatch ... >)* (<draw:fill-image ... >)* (<draw:marker ... >)* (<draw:stroke-dash ... >)* (<draw:opacity ... >)* (<style:presentation-page-layout ... >)* >  +
@@ -6262,6 +8803,31 @@

office:text Element

<text:variable-decls>    + + Child Relations + <office:text (text:global="<boolean>" )? + + ( (<office:forms ... >)? + (<text:tracked-changes ... >)? + + ( (<text:variable-decls ... >)? + (<text:sequence-decls ... >)? + (<text:user-field-decls ... >)? + (<text:dde-connection-decls ... >)? + (<text:alphabetical-index-auto-mark-file ... >)? + ) + ( (<table:calculation-settings ... >)? + (<table:content-validations ... >)? + (<table:label-ranges ... >)? + ))((<text:h ... > | <text:p ... > | <text:list ... > | <text:numbered-paragraph ... > | <table:table ... > | <draw:a ... > | <text:section ... > | <text:table-of-content ... > | <text:illustration-index ... > | <text:table-index ... > | <text:object-index ... > | <text:user-index ... > | <text:alphabetical-index ... > | <text:bibliography ... > | <draw:rect ... > | <draw:line ... > | <draw:polyline ... > | <draw:polygon ... > | <draw:regular-polygon ... > | <draw:path ... > | <draw:circle ... > | <draw:ellipse ... > | <draw:g ... > | <draw:page-thumbnail ... > | <draw:frame ... > | <draw:measure ... > | <draw:caption ... > | <draw:connector ... > | <draw:control ... > | <dr3d:scene ... > | <draw:custom-shape ... > | <text:change ... > | <text:change-start ... > | <text:change-end ... >)+ | EMPTY | + (<text:page-sequence ... >(<draw:a ... > | <draw:rect ... > | <draw:line ... > | <draw:polyline ... > | <draw:polygon ... > | <draw:regular-polygon ... > | <draw:path ... > | <draw:circle ... > | <draw:ellipse ... > | <draw:g ... > | <draw:page-thumbnail ... > | <draw:frame ... > | <draw:measure ... > | <draw:caption ... > | <draw:connector ... > | <draw:control ... > | <dr3d:scene ... > | <draw:custom-shape ... >)* ))* + ( (<table:named-expressions ... >)? + (<table:database-ranges ... >)? + (<table:data-pilot-tables ... >)? + (<table:consolidation ... >)? + (<table:dde-links ... >)? + )>  +
@@ -6289,6 +8855,10 @@

presentation:animation-grou <presentation:show-text>*    + + Child Relations + <presentation:animation-group (<presentation:show-shape ... > | <presentation:show-text ... > | <presentation:hide-shape ... > | <presentation:hide-text ... > | <presentation:dim ... > | <presentation:play ... >)* >  +
@@ -6317,6 +8887,10 @@

presentation:animations Element< <presentation:show-text>*    + + Child Relations + <presentation:animations (<presentation:show-shape ... > | <presentation:show-text ... > | <presentation:hide-shape ... > | <presentation:hide-text ... > | <presentation:dim ... > | <presentation:play ... > | <presentation:animation-group ... >)* >  +
@@ -6342,6 +8916,10 @@

presentation:date-time Element   + + Child Relations + <presentation:date-time EMPTY>  +
@@ -6367,6 +8945,11 @@

presentation:date-time-decl   + + Child Relations + <presentation:date-time-decl presentation:name="<string>" presentation:source="fixed | current-date" (style:data-style-name="(<NCName>)?" )? + TEXT>  +
@@ -6392,6 +8975,11 @@

presentation:dim Element

<presentation:sound>    + + Child Relations + <presentation:dim draw:shape-id="<IDREF>" draw:color="string]" (<presentation:sound ... >)? + >  +
@@ -6425,6 +9013,21 @@

presentation:event-listener <presentation:sound>    + + Child Relations + <presentation:event-listener script:event-name="<string>" presentation:action="none | previous-page | next-page | first-page | last-page | hide | stop | execute | show | verb | fade-out | sound" (presentation:effect="none | fade | move | stripes | open | close | dissolve | wavyline | random | lines | laser | appear | hide | move-short | checkerboard | rotate | stretch" )? + (presentation:direction="none | from-left | from-top | from-right | from-bottom | from-center | from-upper-left | from-upper-right | from-lower-left | from-lower-right | to-left | to-top | to-right | to-bottom | to-upper-left | to-upper-right | to-lower-right | to-lower-left | path | spiral-inward-left | spiral-inward-right | spiral-outward-left | spiral-outward-right | vertical | horizontal | to-center | clockwise | counter-clockwise" )? + (presentation:speed="slow | medium | fast" )? + (presentation:start-scale="string]" )? + + ( (xlink:href="<anyURI>" )? + (xlink:type="simple" )? + (xlink:show="embed" )? + (xlink:actuate="onRequest" )? + ) (presentation:verb="<nonNegativeInteger>" )? + (<presentation:sound ... >)? + >  +
@@ -6450,6 +9053,10 @@

presentation:footer Element

  + + Child Relations + <presentation:footer EMPTY>  +
@@ -6473,6 +9080,10 @@

presentation:footer-decl Elemen   + + Child Relations + <presentation:footer-decl presentation:name="<string>" TEXT>  +
@@ -6498,6 +9109,10 @@

presentation:header Element

  + + Child Relations + <presentation:header EMPTY>  +
@@ -6521,6 +9136,10 @@

presentation:header-decl Elemen   + + Child Relations + <presentation:header-decl presentation:name="<string>" TEXT>  +
@@ -6551,6 +9170,17 @@

presentation:hide-shape Element< <presentation:sound>    + + Child Relations + <presentation:hide-shape draw:shape-id="<IDREF>" (presentation:effect="none | fade | move | stripes | open | close | dissolve | wavyline | random | lines | laser | appear | hide | move-short | checkerboard | rotate | stretch" )? + (presentation:direction="none | from-left | from-top | from-right | from-bottom | from-center | from-upper-left | from-upper-right | from-lower-left | from-lower-right | to-left | to-top | to-right | to-bottom | to-upper-left | to-upper-right | to-lower-right | to-lower-left | path | spiral-inward-left | spiral-inward-right | spiral-outward-left | spiral-outward-right | vertical | horizontal | to-center | clockwise | counter-clockwise" )? + (presentation:speed="slow | medium | fast" )? + (presentation:delay="<duration>" )? + (presentation:start-scale="string]" )? + (presentation:path-id="TEXT" )? + (<presentation:sound ... >)? + >  +
@@ -6581,6 +9211,17 @@

presentation:hide-text Element<presentation:sound>    + + Child Relations + <presentation:hide-text draw:shape-id="<IDREF>" (presentation:effect="none | fade | move | stripes | open | close | dissolve | wavyline | random | lines | laser | appear | hide | move-short | checkerboard | rotate | stretch" )? + (presentation:direction="none | from-left | from-top | from-right | from-bottom | from-center | from-upper-left | from-upper-right | from-lower-left | from-lower-right | to-left | to-top | to-right | to-bottom | to-upper-left | to-upper-right | to-lower-right | to-lower-left | path | spiral-inward-left | spiral-inward-right | spiral-outward-left | spiral-outward-right | vertical | horizontal | to-center | clockwise | counter-clockwise" )? + (presentation:speed="slow | medium | fast" )? + (presentation:delay="<duration>" )? + (presentation:start-scale="string]" )? + (presentation:path-id="TEXT" )? + (<presentation:sound ... >)? + >  +
@@ -6625,6 +9266,15 @@

presentation:notes Element

<draw:regular-polygon>*    + + Child Relations + <presentation:notes (presentation:use-header-name="<string>" )? + (presentation:use-footer-name="<string>" )? + (presentation:use-date-time-name="<string>" )? + (style:page-layout-name="(<NCName>)?" )? + (draw:style-name="(<NCName>)?" )? + (<draw:rect ... > | <draw:line ... > | <draw:polyline ... > | <draw:polygon ... > | <draw:regular-polygon ... > | <draw:path ... > | <draw:circle ... > | <draw:ellipse ... > | <draw:g ... > | <draw:page-thumbnail ... > | <draw:frame ... > | <draw:measure ... > | <draw:caption ... > | <draw:connector ... > | <draw:control ... > | <dr3d:scene ... > | <draw:custom-shape ... >)* >  +
@@ -6642,7 +9292,7 @@

presentation:placeholder Elemen presentation:object  svg:height[2]  svg:width[2]  - svg:x[1]  + svg:x[2]  svg:y[1]    @@ -6651,6 +9301,10 @@

presentation:placeholder Elemen   + + Child Relations + <presentation:placeholder presentation:object="title | outline | subtitle | text | graphic | object | chart | table | orgchart | page | notes | handout | header | footer | date-time | page-number" svg:x="string] | string]" svg:y="string] | string]" svg:width="string] | string]" svg:height="string] | string]" >  +
@@ -6675,6 +9329,12 @@

presentation:play Element

  + + Child Relations + <presentation:play + (draw:shape-id="<IDREF>" (presentation:speed="slow | medium | fast" )? + )>  +
@@ -6710,6 +9370,23 @@

presentation:settings Element< <presentation:show>*    + + Child Relations + <presentation:settings (presentation:start-page="<string>" )? + (presentation:show="<string>" )? + (presentation:full-screen="<boolean>" )? + (presentation:endless="<boolean>" )? + (presentation:pause="<duration>" )? + (presentation:show-logo="<boolean>" )? + (presentation:force-manual="<boolean>" )? + (presentation:mouse-visible="<boolean>" )? + (presentation:mouse-as-pen="<boolean>" )? + (presentation:start-with-navigator="<boolean>" )? + (presentation:animations="enabled | disabled" )? + (presentation:transition-on-click="enabled | disabled" )? + (presentation:stay-on-top="<boolean>" )? + (<presentation:show ... >)* >  +
@@ -6733,6 +9410,10 @@

presentation:show Element

  + + Child Relations + <presentation:show presentation:name="<string>" presentation:pages="TEXT" >  +
@@ -6763,6 +9444,17 @@

presentation:show-shape Element< <presentation:sound>    + + Child Relations + <presentation:show-shape draw:shape-id="<IDREF>" (presentation:effect="none | fade | move | stripes | open | close | dissolve | wavyline | random | lines | laser | appear | hide | move-short | checkerboard | rotate | stretch" )? + (presentation:direction="none | from-left | from-top | from-right | from-bottom | from-center | from-upper-left | from-upper-right | from-lower-left | from-lower-right | to-left | to-top | to-right | to-bottom | to-upper-left | to-upper-right | to-lower-right | to-lower-left | path | spiral-inward-left | spiral-inward-right | spiral-outward-left | spiral-outward-right | vertical | horizontal | to-center | clockwise | counter-clockwise" )? + (presentation:speed="slow | medium | fast" )? + (presentation:delay="<duration>" )? + (presentation:start-scale="string]" )? + (presentation:path-id="TEXT" )? + (<presentation:sound ... >)? + >  +
@@ -6793,6 +9485,17 @@

presentation:show-text Element<presentation:sound>    + + Child Relations + <presentation:show-text draw:shape-id="<IDREF>" (presentation:effect="none | fade | move | stripes | open | close | dissolve | wavyline | random | lines | laser | appear | hide | move-short | checkerboard | rotate | stretch" )? + (presentation:direction="none | from-left | from-top | from-right | from-bottom | from-center | from-upper-left | from-upper-right | from-lower-left | from-lower-right | to-left | to-top | to-right | to-bottom | to-upper-left | to-upper-right | to-lower-right | to-lower-left | path | spiral-inward-left | spiral-inward-right | spiral-outward-left | spiral-outward-right | vertical | horizontal | to-center | clockwise | counter-clockwise" )? + (presentation:speed="slow | medium | fast" )? + (presentation:delay="<duration>" )? + (presentation:start-scale="string]" )? + (presentation:path-id="TEXT" )? + (<presentation:sound ... >)? + >  +
@@ -6824,6 +9527,14 @@

presentation:sound Element

  + + Child Relations + <presentation:sound (presentation:play-full="<boolean>" )? + xlink:href="<anyURI>" (xlink:type="simple" )? + (xlink:actuate="onRequest" )? + (xlink:show="new | replace" )? + >  +
@@ -6851,6 +9562,13 @@

script:event-listener Element<   + + Child Relations + <script:event-listener script:event-name="<string>" script:language="<string>" script:macro-name="<string>" | + (xlink:href="<anyURI>" (xlink:type="simple" )? + (xlink:actuate="onRequest" )? + )>  +
@@ -6875,6 +9593,11 @@

style:chart-properties Element + + Child Relations + <style:chart-properties + ((*:*="TEXT" )* (<*:* ... >)* )>  +
@@ -6918,6 +9641,40 @@

style:default-style Element

<style:text-properties>    + + Child Relations + <style:default-style + (style:family="text" (<style:text-properties ... >)? + ) | + (style:family="paragraph" (<style:paragraph-properties ... >)? + (<style:text-properties ... >)? + ) | + (style:family="section" (<style:section-properties ... >)? + ) | + (style:family="ruby" (<style:ruby-properties ... >)? + ) | + (style:family="table" (<style:table-properties ... >)? + ) | + (style:family="table-column" (<style:table-column-properties ... >)? + ) | + (style:family="table-row" (<style:table-row-properties ... >)? + ) | + (style:family="table-cell" (<style:table-cell-properties ... >)? + (<style:paragraph-properties ... >)? + (<style:text-properties ... >)? + ) | + (style:family="graphic | presentation" (<style:graphic-properties ... >)? + (<style:paragraph-properties ... >)? + (<style:text-properties ... >)? + ) | + (style:family="drawing-page" (<style:drawing-page-properties ... >)? + ) | + (style:family="chart" (<style:chart-properties ... >)? + (<style:graphic-properties ... >)? + (<style:paragraph-properties ... >)? + (<style:text-properties ... >)? + )>  +
@@ -6942,6 +9699,11 @@

style:drawing-page-propert [any org.w3c.dom.Element]    + + Child Relations + <style:drawing-page-properties + ((*:*="TEXT" )* (<*:* ... >)* )>  +
@@ -7003,6 +9765,50 @@

style:font-face Element

<svg:font-face-src>    + + Child Relations + <style:font-face + ( (svg:font-family="<string>" )? + (svg:font-style="normal | italic | oblique" )? + (svg:font-variant="normal | small-caps" )? + (svg:font-weight="normal | bold | 100 | 200 | 300 | 400 | 500 | 600 | 700 | 800 | 900" )? + (svg:font-stretch="normal | ultra-condensed | extra-condensed | condensed | semi-condensed | semi-expanded | expanded | extra-expanded | ultra-expanded" )? + (svg:font-size="string]" )? + (svg:unicode-range="TEXT" )? + (svg:units-per-em="<integer>" )? + (svg:panose-1="TEXT" )? + (svg:stemv="<integer>" )? + (svg:stemh="<integer>" )? + (svg:slope="<integer>" )? + (svg:cap-height="<integer>" )? + (svg:x-height="<integer>" )? + (svg:accent-height="<integer>" )? + (svg:ascent="<integer>" )? + (svg:descent="<integer>" )? + (svg:widths="TEXT" )? + (svg:bbox="TEXT" )? + (svg:ideographic="<integer>" )? + (svg:alphabetic="<integer>" )? + (svg:mathematical="<integer>" )? + (svg:hanging="<integer>" )? + (svg:v-ideographic="<integer>" )? + (svg:v-alphabetic="<integer>" )? + (svg:v-mathematical="<integer>" )? + (svg:v-hanging="<integer>" )? + (svg:underline-position="<integer>" )? + (svg:underline-thickness="<integer>" )? + (svg:strikethrough-position="<integer>" )? + (svg:strikethrough-thickness="<integer>" )? + (svg:overline-position="<integer>" )? + (svg:overline-thickness="<integer>" )? + )style:name="<string>" (style:font-adornments="<string>" )? + (style:font-family-generic="roman | swiss | modern | decorative | script | system" )? + (style:font-pitch="fixed | variable" )? + (style:font-charset="string]" )? + (<svg:font-face-src ... >)? + (<svg:definition-src ... >)? + >  +
@@ -7049,6 +9855,22 @@

style:footer Element

<text:variable-decls>    + + Child Relations + <style:footer (style:display="<boolean>" )? + + ( + ( (<text:variable-decls ... >)? + (<text:sequence-decls ... >)? + (<text:user-field-decls ... >)? + (<text:dde-connection-decls ... >)? + (<text:alphabetical-index-auto-mark-file ... >)? + )(<text:h ... > | <text:p ... > | <text:list ... > | <table:table ... > | <text:section ... > | <text:table-of-content ... > | <text:illustration-index ... > | <text:table-index ... > | <text:object-index ... > | <text:user-index ... > | <text:alphabetical-index ... > | <text:bibliography ... > | <text:index-title ... > | <text:change ... > | <text:change-start ... > | <text:change-end ... >)* ) | + ( (<style:region-left ... >)? + (<style:region-center ... >)? + (<style:region-right ... >)? + )>  +
@@ -7095,6 +9917,22 @@

style:footer-left Element

<text:variable-decls>    + + Child Relations + <style:footer-left (style:display="<boolean>" )? + + ( + ( (<text:variable-decls ... >)? + (<text:sequence-decls ... >)? + (<text:user-field-decls ... >)? + (<text:dde-connection-decls ... >)? + (<text:alphabetical-index-auto-mark-file ... >)? + )(<text:h ... > | <text:p ... > | <text:list ... > | <table:table ... > | <text:section ... > | <text:table-of-content ... > | <text:illustration-index ... > | <text:table-index ... > | <text:object-index ... > | <text:user-index ... > | <text:alphabetical-index ... > | <text:bibliography ... > | <text:index-title ... > | <text:change ... > | <text:change-start ... > | <text:change-end ... >)* ) | + ( (<style:region-left ... >)? + (<style:region-center ... >)? + (<style:region-right ... >)? + )>  +
@@ -7117,6 +9955,11 @@

style:footer-style Element

<style:header-footer-properties>    + + Child Relations + <style:footer-style (<style:header-footer-properties ... >)? + >  +
@@ -7141,6 +9984,11 @@

style:graphic-properties Elemen [any org.w3c.dom.Element]    + + Child Relations + <style:graphic-properties + ((*:*="TEXT" )* (<*:* ... >)* )>  +
@@ -7185,6 +10033,15 @@

style:handout-master Element<draw:regular-polygon>*    + + Child Relations + <style:handout-master (presentation:use-header-name="<string>" )? + (presentation:use-footer-name="<string>" )? + (presentation:use-date-time-name="<string>" )? + (presentation:presentation-page-layout-name="(<NCName>)?" )? + style:page-layout-name="(<NCName>)?" (draw:style-name="(<NCName>)?" )? + (<draw:rect ... > | <draw:line ... > | <draw:polyline ... > | <draw:polygon ... > | <draw:regular-polygon ... > | <draw:path ... > | <draw:circle ... > | <draw:ellipse ... > | <draw:g ... > | <draw:page-thumbnail ... > | <draw:frame ... > | <draw:measure ... > | <draw:caption ... > | <draw:connector ... > | <draw:control ... > | <dr3d:scene ... > | <draw:custom-shape ... >)* >  +
@@ -7231,6 +10088,22 @@

style:header Element

<text:variable-decls>    + + Child Relations + <style:header (style:display="<boolean>" )? + + ( + ( (<text:variable-decls ... >)? + (<text:sequence-decls ... >)? + (<text:user-field-decls ... >)? + (<text:dde-connection-decls ... >)? + (<text:alphabetical-index-auto-mark-file ... >)? + )(<text:h ... > | <text:p ... > | <text:list ... > | <table:table ... > | <text:section ... > | <text:table-of-content ... > | <text:illustration-index ... > | <text:table-index ... > | <text:object-index ... > | <text:user-index ... > | <text:alphabetical-index ... > | <text:bibliography ... > | <text:index-title ... > | <text:change ... > | <text:change-start ... > | <text:change-end ... >)* ) | + ( (<style:region-left ... >)? + (<style:region-center ... >)? + (<style:region-right ... >)? + )>  +
@@ -7255,6 +10128,11 @@

style:header-footer-prope [any org.w3c.dom.Element]    + + Child Relations + <style:header-footer-properties + ((*:*="TEXT" )* (<*:* ... >)* )>  +
@@ -7301,6 +10179,22 @@

style:header-left Element

<text:variable-decls>    + + Child Relations + <style:header-left (style:display="<boolean>" )? + + ( + ( (<text:variable-decls ... >)? + (<text:sequence-decls ... >)? + (<text:user-field-decls ... >)? + (<text:dde-connection-decls ... >)? + (<text:alphabetical-index-auto-mark-file ... >)? + )(<text:h ... > | <text:p ... > | <text:list ... > | <table:table ... > | <text:section ... > | <text:table-of-content ... > | <text:illustration-index ... > | <text:table-index ... > | <text:object-index ... > | <text:user-index ... > | <text:alphabetical-index ... > | <text:bibliography ... > | <text:index-title ... > | <text:change ... > | <text:change-start ... > | <text:change-end ... >)* ) | + ( (<style:region-left ... >)? + (<style:region-center ... >)? + (<style:region-right ... >)? + )>  +
@@ -7323,6 +10217,11 @@

style:header-style Element

<style:header-footer-properties>    + + Child Relations + <style:header-style (<style:header-footer-properties ... >)? + >  +
@@ -7349,6 +10248,11 @@

style:list-level-properties [any org.w3c.dom.Element]    + + Child Relations + <style:list-level-properties + ((*:*="TEXT" )* (<*:* ... >)* )>  +
@@ -7380,6 +10284,11 @@

style:map Element

  + + Child Relations + <style:map style:condition="<string>" style:apply-style-name="(<NCName>)?" (style:base-cell-address="string]" )? + >  +
@@ -7430,6 +10339,20 @@

style:master-page Element

<style:style>*    + + Child Relations + <style:master-page style:name="<NCName>" (style:display-name="<string>" )? + style:page-layout-name="(<NCName>)?" (draw:style-name="(<NCName>)?" )? + (style:next-style-name="(<NCName>)?" )? + (<style:header ... > (<style:header-left ... >)? + )? + (<style:footer ... > (<style:footer-left ... >)? + )? + ( (<office:forms ... >)? + )? + (<style:style ... >)* (<draw:rect ... > | <draw:line ... > | <draw:polyline ... > | <draw:polygon ... > | <draw:regular-polygon ... > | <draw:path ... > | <draw:circle ... > | <draw:ellipse ... > | <draw:g ... > | <draw:page-thumbnail ... > | <draw:frame ... > | <draw:measure ... > | <draw:caption ... > | <draw:connector ... > | <draw:control ... > | <dr3d:scene ... > | <draw:custom-shape ... >)* (<presentation:notes ... >)? + >  +
@@ -7456,6 +10379,14 @@

style:page-layout Element

<style:page-layout-properties>    + + Child Relations + <style:page-layout style:name="<NCName>" (style:page-usage="all | left | right | mirrored" )? + (<style:page-layout-properties ... >)? + (<style:header-style ... >)? + (<style:footer-style ... >)? + >  +
@@ -7479,6 +10410,11 @@

style:page-layout-propertie [any org.w3c.dom.Element]    + + Child Relations + <style:page-layout-properties + ((*:*="TEXT" )* (<*:* ... >)* )>  +
@@ -7503,6 +10439,11 @@

style:paragraph-properties El [any org.w3c.dom.Element]    + + Child Relations + <style:paragraph-properties + ((*:*="TEXT" )* (<*:* ... >)* )>  +
@@ -7527,6 +10468,11 @@

style:presentation-page-l <presentation:placeholder>*    + + Child Relations + <style:presentation-page-layout style:name="<NCName>" (style:display-name="<string>" )? + (<presentation:placeholder ... >)* >  +
@@ -7552,6 +10498,10 @@

style:region-center Element

<text:p>*    + + Child Relations + <style:region-center (<text:p ... >)* >  +
@@ -7577,6 +10527,10 @@

style:region-left Element

<text:p>*    + + Child Relations + <style:region-left (<text:p ... >)* >  +
@@ -7602,6 +10556,10 @@

style:region-right Element

<text:p>*    + + Child Relations + <style:region-right (<text:p ... >)* >  +
@@ -7626,6 +10584,11 @@

style:ruby-properties Element< [any org.w3c.dom.Element]    + + Child Relations + <style:ruby-properties + ((*:*="TEXT" )* (<*:* ... >)* )>  +
@@ -7650,6 +10613,11 @@

style:section-properties Elemen [any org.w3c.dom.Element]    + + Child Relations + <style:section-properties + ((*:*="TEXT" )* (<*:* ... >)* )>  +
@@ -7706,6 +10674,49 @@

style:style Element

<style:text-properties>    + + Child Relations + <style:style style:name="<NCName>" (style:display-name="<string>" )? + (style:parent-style-name="(<NCName>)?" )? + (style:next-style-name="(<NCName>)?" )? + (style:list-style-name="(<NCName>)?" )? + (style:master-page-name="(<NCName>)?" )? + (style:auto-update="<boolean>" )? + (style:data-style-name="(<NCName>)?" )? + (style:class="<string>" )? + (style:default-outline-level="<positiveInteger>" )? + + (style:family="text" (<style:text-properties ... >)? + ) | + (style:family="paragraph" (<style:paragraph-properties ... >)? + (<style:text-properties ... >)? + ) | + (style:family="section" (<style:section-properties ... >)? + ) | + (style:family="ruby" (<style:ruby-properties ... >)? + ) | + (style:family="table" (<style:table-properties ... >)? + ) | + (style:family="table-column" (<style:table-column-properties ... >)? + ) | + (style:family="table-row" (<style:table-row-properties ... >)? + ) | + (style:family="table-cell" (<style:table-cell-properties ... >)? + (<style:paragraph-properties ... >)? + (<style:text-properties ... >)? + ) | + (style:family="graphic | presentation" (<style:graphic-properties ... >)? + (<style:paragraph-properties ... >)? + (<style:text-properties ... >)? + ) | + (style:family="drawing-page" (<style:drawing-page-properties ... >)? + ) | + (style:family="chart" (<style:chart-properties ... >)? + (<style:graphic-properties ... >)? + (<style:paragraph-properties ... >)? + (<style:text-properties ... >)? + )(<style:map ... >)* >  +
@@ -7730,6 +10741,11 @@

style:table-cell-properties [any org.w3c.dom.Element]    + + Child Relations + <style:table-cell-properties + ((*:*="TEXT" )* (<*:* ... >)* )>  +
@@ -7754,6 +10770,11 @@

style:table-column-propert [any org.w3c.dom.Element]    + + Child Relations + <style:table-column-properties + ((*:*="TEXT" )* (<*:* ... >)* )>  +
@@ -7778,6 +10799,11 @@

style:table-properties Element + + Child Relations + <style:table-properties + ((*:*="TEXT" )* (<*:* ... >)* )>  +
@@ -7802,6 +10828,11 @@

style:table-row-properties El [any org.w3c.dom.Element]    + + Child Relations + <style:table-row-properties + ((*:*="TEXT" )* (<*:* ... >)* )>  +
@@ -7836,6 +10867,11 @@

style:text-properties Element< [any org.w3c.dom.Element]    + + Child Relations + <style:text-properties + ((*:*="TEXT" )* (<*:* ... >)* )>  +
@@ -7860,6 +10896,13 @@

svg:definition-src Element

  + + Child Relations + <svg:definition-src + (xlink:href="<anyURI>" (xlink:type="simple" )? + (xlink:actuate="onRequest" )? + )>  +
@@ -7885,6 +10928,10 @@

svg:desc Element

  + + Child Relations + <svg:desc TEXT>  +
@@ -7907,6 +10954,11 @@

svg:font-face-format Element   + + Child Relations + <svg:font-face-format (svg:string="TEXT" )? + >  +
@@ -7929,6 +10981,11 @@

svg:font-face-name Element

  + + Child Relations + <svg:font-face-name (name="TEXT" )? + >  +
@@ -7952,6 +11009,10 @@

svg:font-face-src Element

<svg:font-face-uri>*    + + Child Relations + <svg:font-face-src (<svg:font-face-uri ... > | <svg:font-face-name ... >)+ >  +
@@ -7977,6 +11038,13 @@

svg:font-face-uri Element

<svg:font-face-format>*    + + Child Relations + <svg:font-face-uri + (xlink:href="<anyURI>" (xlink:type="simple" )? + (xlink:actuate="onRequest" )? + )(<svg:font-face-format ... >)* >  +
@@ -7992,14 +11060,14 @@

svg:linearGradient Element

Attributes draw:display-name  - draw:name[1]  + draw:name[2]  svg:gradientTransform  svg:gradientUnits  svg:spreadMethod  svg:x1[2]  - svg:x2[1]  - svg:y1[1]  - svg:y2[1]  + svg:x2[2]  + svg:y1[2]  + svg:y2[2]    @@ -8008,6 +11076,19 @@

svg:linearGradient Element

<svg:stop>*    + + Child Relations + <svg:linearGradient + ( (svg:gradientUnits="objectBoundingBox" )? + (svg:gradientTransform="<string>" )? + (svg:spreadMethod="pad | reflect | repeat" )? + )draw:name="<NCName>" (draw:display-name="<string>" )? + (svg:x1="string] | string]" )? + (svg:y1="string] | string]" )? + (svg:x2="string] | string]" )? + (svg:y2="string] | string]" )? + (<svg:stop ... >)* >  +
@@ -8023,14 +11104,14 @@

svg:radialGradient Element

Attributes draw:display-name  - draw:name[1]  + draw:name[2]  svg:cx[2]  - svg:cy[2]  + svg:cy[1]  svg:fx  svg:fy  svg:gradientTransform  svg:gradientUnits  - svg:r[2]  + svg:r[1]  svg:spreadMethod    @@ -8040,6 +11121,20 @@

svg:radialGradient Element

<svg:stop>*    + + Child Relations + <svg:radialGradient + ( (svg:gradientUnits="objectBoundingBox" )? + (svg:gradientTransform="<string>" )? + (svg:spreadMethod="pad | reflect | repeat" )? + )draw:name="<NCName>" (draw:display-name="<string>" )? + (svg:cx="string] | string]" )? + (svg:cy="string] | string]" )? + (svg:r="string] | string]" )? + (svg:fx="string] | string]" )? + (svg:fy="string] | string]" )? + (<svg:stop ... >)* >  +
@@ -8065,6 +11160,12 @@

svg:stop Element

  + + Child Relations + <svg:stop svg:offset="<double> | string]" (svg:stop-color="string]" )? + (svg:stop-opacity="<double>" )? + >  +
@@ -8084,7 +11185,7 @@

table:calculation-settings El Attributes table:automatic-find-labels  - table:case-sensitive[2]  + table:case-sensitive[1]  table:null-year  table:precision-as-shown  table:search-criteria-must-apply-to-whole-cell  @@ -8098,6 +11199,18 @@

table:calculation-settings El <table:null-date>    + + Child Relations + <table:calculation-settings (table:case-sensitive="<boolean>" )? + (table:precision-as-shown="<boolean>" )? + (table:search-criteria-must-apply-to-whole-cell="<boolean>" )? + (table:automatic-find-labels="<boolean>" )? + (table:use-regular-expressions="<boolean>" )? + (table:null-year="<positiveInteger>" )? + (<table:null-date ... >)? + (<table:iteration ... >)? + >  +
@@ -8123,6 +11236,11 @@

table:cell-address Element

  + + Child Relations + <table:cell-address + (table:column="<integer>" table:row="<integer>" table:table="<integer>" )>  +
@@ -8152,6 +11270,14 @@

table:cell-content-change Elem <table:previous>    + + Child Relations + <table:cell-content-change table:id="<string>" (table:acceptance-state="accepted | rejected | pending" )? + (table:rejecting-change-id="<string>" )? + <table:cell-address ... ><office:change-info ... > (<table:dependencies ... >)? + (<table:deletions ... >)? + <table:previous ... >>  +
@@ -8176,6 +11302,13 @@

table:cell-content-deletion <table:change-track-table-cell>    + + Child Relations + <table:cell-content-deletion (table:id="<string>" )? + (<table:cell-address ... >)? + (<table:change-track-table-cell ... >)? + >  +
@@ -8196,7 +11329,7 @@

table:cell-range-source Element< table:last-column-spanned  table:last-row-spanned  table:name[1]  - table:refresh-delay[2]  + table:refresh-delay[1]  xlink:actuate[1]  xlink:href  xlink:type  @@ -8207,6 +11340,17 @@

table:cell-range-source Element<   + + Child Relations + <table:cell-range-source table:name="<string>" + (table:last-column-spanned="<positiveInteger>" table:last-row-spanned="<positiveInteger>" ) + ( (xlink:type="simple" )? + (xlink:actuate="onRequest" )? + xlink:href="<anyURI>" ) (table:filter-name="<string>" )? + (table:filter-options="<string>" )? + (table:refresh-delay="<duration>" )? + >  +
@@ -8229,6 +11373,11 @@

table:change-deletion Element<   + + Child Relations + <table:change-deletion (table:id="<string>" )? + >  +
@@ -8250,13 +11399,13 @@

table:change-track-table-c office:string-value  office:time-value  office:value  + office:value-type[1]  office:value-type[2]  office:value-type[3]  office:value-type[4]  office:value-type[5]  office:value-type[6]  office:value-type[7]  - office:value-type[8]  table:cell-address  table:formula  table:matrix-covered  @@ -8270,6 +11419,26 @@

table:change-track-table-c <text:p>*    + + Child Relations + <table:change-track-table-cell (table:cell-address="string]" )? + (table:matrix-covered="<boolean>" )? + + ( (table:formula="<string>" )? + (table:number-matrix-columns-spanned="<positiveInteger>" )? + (table:number-matrix-rows-spanned="<positiveInteger>" )? + ( + (office:value-type="float" office:value="<double>" ) | + (office:value-type="percentage" office:value="<double>" ) | + (office:value-type="currency" office:value="<double>" (office:currency="<string>" )? + ) | + (office:value-type="date" office:date-value="<date> | <dateTime>" ) | + (office:value-type="time" office:time-value="<duration>" ) | + (office:value-type="boolean" office:boolean-value="<boolean>" ) | + (office:value-type="string" (office:string-value="<string>" )? + ))? + )(<text:p ... >)* >  +
@@ -8300,6 +11469,12 @@

table:consolidation Element

  + + Child Relations + <table:consolidation table:function="auto | average | count | countnums | max | min | product | stdev | stdevp | sum | var | varp | <string>" table:source-cell-range-addresses="<string>" table:target-cell-address="string]" (table:use-labels="none | row | column | both" )? + (table:link-to-source-data="<boolean>" )? + >  +
@@ -8330,6 +11505,18 @@

table:content-validation Elemen <table:help-message>    + + Child Relations + <table:content-validation table:name="<string>" (table:condition="<string>" )? + (table:base-cell-address="string]" )? + (table:allow-empty-cell="<boolean>" )? + (table:display-list="none | unsorted | sort-ascending" )? + (<table:help-message ... >)? + (<table:error-message ... > | + (<table:error-macro ... > (<office:event-listeners ... >)? + ))? + >  +
@@ -8356,6 +11543,10 @@

table:content-validations Elem <table:content-validation>*    + + Child Relations + <table:content-validations (<table:content-validation ... >)+ >  +
@@ -8376,13 +11567,13 @@

table:covered-table-cell Elemen office:string-value  office:time-value  office:value  + office:value-type[1]  office:value-type[2]  office:value-type[3]  office:value-type[4]  office:value-type[5]  office:value-type[6]  office:value-type[7]  - office:value-type[8]  table:content-validation-name  table:formula  table:number-columns-repeated  @@ -8432,6 +11623,29 @@

table:covered-table-cell Elemen <text:user-index>*    + + Child Relations + <table:covered-table-cell (table:number-columns-repeated="<positiveInteger>" )? + (table:style-name="(<NCName>)?" )? + (table:content-validation-name="<string>" )? + (table:formula="<string>" )? + ( + (office:value-type="float" office:value="<double>" ) | + (office:value-type="percentage" office:value="<double>" ) | + (office:value-type="currency" office:value="<double>" (office:currency="<string>" )? + ) | + (office:value-type="date" office:date-value="<date> | <dateTime>" ) | + (office:value-type="time" office:time-value="<duration>" ) | + (office:value-type="boolean" office:boolean-value="<boolean>" ) | + (office:value-type="string" (office:string-value="<string>" )? + ))? + (table:protect="<boolean>" )? + + ( (<table:cell-range-source ... >)? + (<office:annotation ... >)? + (<table:detective ... >)? + (<text:h ... > | <text:p ... > | <text:list ... > | <text:numbered-paragraph ... > | <table:table ... > | <draw:a ... > | <text:section ... > | <text:table-of-content ... > | <text:illustration-index ... > | <text:table-index ... > | <text:object-index ... > | <text:user-index ... > | <text:alphabetical-index ... > | <text:bibliography ... > | <draw:rect ... > | <draw:line ... > | <draw:polyline ... > | <draw:polygon ... > | <draw:regular-polygon ... > | <draw:path ... > | <draw:circle ... > | <draw:ellipse ... > | <draw:g ... > | <draw:page-thumbnail ... > | <draw:frame ... > | <draw:measure ... > | <draw:caption ... > | <draw:connector ... > | <draw:control ... > | <dr3d:scene ... > | <draw:custom-shape ... > | <text:change ... > | <text:change-start ... > | <text:change-end ... >)* )>  +
@@ -8455,6 +11669,11 @@

table:cut-offs Element

<table:movement-cut-off>*    + + Child Relations + <table:cut-offs (<table:movement-cut-off ... >)+ | + (<table:insertion-cut-off ... >(<table:movement-cut-off ... >)* )>  +
@@ -8480,6 +11699,10 @@

table:data-pilot-display-i   + + Child Relations + <table:data-pilot-display-info table:enabled="<boolean>" table:data-field="<string>" table:member-count="<nonNegativeInteger>" table:display-member-mode="from-top | from-bottom" >  +
@@ -8496,7 +11719,7 @@

table:data-pilot-field Element table:function  table:is-data-layout-field  - table:orientation[1]  + table:orientation[2]  table:orientation[3]  table:selected-page  table:source-field-name  @@ -8511,6 +11734,17 @@

table:data-pilot-field Element<table:data-pilot-level>    + + Child Relations + <table:data-pilot-field table:source-field-name="<string>" table:orientation="row | column | data | hidden" | + (table:orientation="page" table:selected-page="<string>" ) (table:is-data-layout-field="<string>" )? + (table:function="auto | average | count | countnums | max | min | product | stdev | stdevp | sum | var | varp | <string>" )? + (table:used-hierarchy="<integer>" )? + (<table:data-pilot-level ... >)? + (<table:data-pilot-field-reference ... >)? + (<table:data-pilot-groups ... >)? + >  +
@@ -8537,6 +11771,11 @@

table:data-pilot-field-   + + Child Relations + <table:data-pilot-field-reference table:field-name="<string>" + (table:member-type="named" table:member-name="<string>" ) | table:member-type="previous | next" table:type="none | member-difference | member-percentage | member-percentage-difference | running-total | row-percentage | column-percentage | total-percentage | index" >  +
@@ -8560,6 +11799,10 @@

table:data-pilot-group Element<table:data-pilot-group-member>*    + + Child Relations + <table:data-pilot-group table:name="<string>" (<table:data-pilot-group-member ... >)+ >  +
@@ -8582,6 +11825,10 @@

table:data-pilot-group-mem   + + Child Relations + <table:data-pilot-group-member table:name="<string>" >  +
@@ -8611,6 +11858,10 @@

table:data-pilot-groups Element< <table:data-pilot-group>*    + + Child Relations + <table:data-pilot-groups table:source-field-name="<string>" table:date-start="<date> | <dateTime> | auto" | table:start="<double> | auto" table:date-end="<date> | <dateTime> | auto" | table:end="<double> | auto" table:step="<double>" table:grouped-by="seconds | minutes | hours | days | months | quarters | years" (<table:data-pilot-group ... >)+ >  +
@@ -8634,6 +11885,10 @@

table:data-pilot-layout-inf   + + Child Relations + <table:data-pilot-layout-info table:layout-mode="tabular-layout | outline-subtotals-top | outline-subtotals-bottom" table:add-empty-lines="<boolean>" >  +
@@ -8661,6 +11916,16 @@

table:data-pilot-level Element<table:data-pilot-subtotals>    + + Child Relations + <table:data-pilot-level (table:show-empty="<boolean>" )? + (<table:data-pilot-subtotals ... >)? + (<table:data-pilot-members ... >)? + (<table:data-pilot-display-info ... >)? + (<table:data-pilot-sort-info ... >)? + (<table:data-pilot-layout-info ... >)? + >  +
@@ -8685,6 +11950,12 @@

table:data-pilot-member Element<   + + Child Relations + <table:data-pilot-member table:name="<string>" (table:display="<boolean>" )? + (table:show-details="<boolean>" )? + >  +
@@ -8707,6 +11978,10 @@

table:data-pilot-members Elemen <table:data-pilot-member>*    + + Child Relations + <table:data-pilot-members (<table:data-pilot-member ... >)* >  +
@@ -8732,6 +12007,11 @@

table:data-pilot-sort-info El   + + Child Relations + <table:data-pilot-sort-info + (table:sort-mode="data" table:data-field="<string>" ) | table:sort-mode="none | manual | name" table:order="ascending | descending" >  +
@@ -8754,6 +12034,10 @@

table:data-pilot-subtotal Elem   + + Child Relations + <table:data-pilot-subtotal table:function="auto | average | count | countnums | max | min | product | stdev | stdevp | sum | var | varp | <string>" >  +
@@ -8776,6 +12060,10 @@

table:data-pilot-subtotals El <table:data-pilot-subtotal>*    + + Child Relations + <table:data-pilot-subtotals (<table:data-pilot-subtotal ... >)* >  +
@@ -8812,6 +12100,18 @@

table:data-pilot-table Element<table:source-service>    + + Child Relations + <table:data-pilot-table table:name="<string>" (table:application-data="<string>" )? + (table:grand-total="none | row | column | both" )? + (table:ignore-empty-rows="<boolean>" )? + (table:identify-categories="<boolean>" )? + table:target-range-address="string]" (table:buttons="<string>" )? + (table:show-filter-button="<boolean>" )? + (table:drill-down-on-double-click="<boolean>" )? + (<table:database-source-sql ... > | <table:database-source-query ... > | <table:database-source-table ... > | <table:source-service ... > | <table:source-cell-range ... >)? + (<table:data-pilot-field ... >)+ >  +
@@ -8838,6 +12138,10 @@

table:data-pilot-tables Element< <table:data-pilot-table>*    + + Child Relations + <table:data-pilot-tables (<table:data-pilot-table ... >)* >  +
@@ -8859,8 +12163,8 @@

table:database-range Elementtable:name[1]  table:on-update-keep-size  table:on-update-keep-styles  - table:orientation[2]  - table:refresh-delay[1]  + table:orientation[1]  + table:refresh-delay[2]  table:target-range-address    @@ -8875,6 +12179,23 @@

table:database-range Element<table:subtotal-rules>    + + Child Relations + <table:database-range (table:name="<string>" )? + (table:is-selection="<boolean>" )? + (table:on-update-keep-styles="<boolean>" )? + (table:on-update-keep-size="<boolean>" )? + (table:has-persistent-data="<boolean>" )? + (table:orientation="column | row" )? + (table:contains-header="<boolean>" )? + (table:display-filter-buttons="<boolean>" )? + table:target-range-address="string]" (table:refresh-delay="<boolean>" )? + (<table:database-source-sql ... > | <table:database-source-query ... > | <table:database-source-table ... >)? + (<table:filter ... >)? + (<table:sort ... >)? + (<table:subtotal-rules ... >)? + >  +
@@ -8901,6 +12222,10 @@

table:database-ranges Element< <table:database-range>*    + + Child Relations + <table:database-ranges (<table:database-range ... >)* >  +
@@ -8925,6 +12250,10 @@

table:database-source-query   + + Child Relations + <table:database-source-query table:database-name="<string>" table:query-name="<string>" >  +
@@ -8950,6 +12279,11 @@

table:database-source-sql Elem   + + Child Relations + <table:database-source-sql table:database-name="<string>" table:sql-statement="<string>" (table:parse-sql-statement="<boolean>" )? + >  +
@@ -8974,6 +12308,10 @@

table:database-source-table   + + Child Relations + <table:database-source-table table:database-name="<string>" table:database-table-name="<string>" >  +
@@ -8997,6 +12335,10 @@

table:dde-link Element

<table:table>    + + Child Relations + <table:dde-link <office:dde-source ... ><table:table ... >>  +
@@ -9023,6 +12365,10 @@

table:dde-links Element

<table:dde-link>*    + + Child Relations + <table:dde-links (<table:dde-link ... >)+ >  +
@@ -9055,6 +12401,17 @@

table:deletion Element

<table:dependencies>    + + Child Relations + <table:deletion table:type="row | column | table" table:position="<integer>" (table:table="<integer>" )? + (table:multi-deletion-spanned="<integer>" )? + table:id="<string>" (table:acceptance-state="accepted | rejected | pending" )? + (table:rejecting-change-id="<string>" )? + <office:change-info ... > (<table:dependencies ... >)? + (<table:deletions ... >)? + (<table:cut-offs ... >)? + >  +
@@ -9081,6 +12438,10 @@

table:deletions Element

<table:change-deletion>*    + + Child Relations + <table:deletions (<table:cell-content-deletion ... > | <table:change-deletion ... >)+ >  +
@@ -9106,6 +12467,10 @@

table:dependencies Element

<table:dependency>*    + + Child Relations + <table:dependencies (<table:dependency ... >)+ >  +
@@ -9128,6 +12493,10 @@

table:dependency Element

  + + Child Relations + <table:dependency table:id="<string>" >  +
@@ -9152,6 +12521,10 @@

table:detective Element

<table:operation>*    + + Child Relations + <table:detective (<table:highlighted-range ... >)* (<table:operation ... >)* >  +
@@ -9174,6 +12547,11 @@

table:error-macro Element

  + + Child Relations + <table:error-macro (table:execute="<boolean>" )? + >  +
@@ -9199,6 +12577,13 @@

table:error-message Element

<text:p>*    + + Child Relations + <table:error-message (table:title="<string>" )? + (table:display="<boolean>" )? + (table:message-type="stop | warning | information" )? + (<text:p ... >)* >  +
@@ -9228,6 +12613,14 @@

table:filter Element

<table:filter-or>    + + Child Relations + <table:filter (table:target-range-address="string]" )? + (table:condition-source="self | cell-range" )? + (table:condition-source-range-address="string]" )? + (table:display-duplicates="<boolean>" )? + <table:filter-condition ... > | <table:filter-and ... > | <table:filter-or ... >>  +
@@ -9252,6 +12645,10 @@

table:filter-and Element

<table:filter-or>*    + + Child Relations + <table:filter-and (<table:filter-or ... > | <table:filter-condition ... >)+ >  +
@@ -9268,7 +12665,7 @@

table:filter-condition Element Attributes - table:case-sensitive[1]  + table:case-sensitive[2]  table:data-type[2]  table:field-number  table:operator  @@ -9280,6 +12677,12 @@

table:filter-condition Element   + + Child Relations + <table:filter-condition table:field-number="<nonNegativeInteger>" table:value="<string>" table:operator="<string>" (table:case-sensitive="<string>" )? + (table:data-type="text | number" )? + >  +
@@ -9304,6 +12707,10 @@

table:filter-or Element

<table:filter-condition>*    + + Child Relations + <table:filter-or (<table:filter-and ... > | <table:filter-condition ... >)+ >  +
@@ -9328,6 +12735,12 @@

table:help-message Element

<text:p>*    + + Child Relations + <table:help-message (table:title="<string>" )? + (table:display="<boolean>" )? + (<text:p ... >)* >  +
@@ -9353,6 +12766,12 @@

table:highlighted-range Element<   + + Child Relations + <table:highlighted-range (table:cell-range-address="string]" )? + table:direction="from-another-table | to-another-table | from-same-table" (table:contains-error="<boolean>" )? + | table:marked-invalid="<boolean>" >  +
@@ -9384,6 +12803,16 @@

table:insertion Element

<table:dependencies>    + + Child Relations + <table:insertion table:type="row | column | table" table:position="<integer>" (table:count="<positiveInteger>" )? + (table:table="<integer>" )? + table:id="<string>" (table:acceptance-state="accepted | rejected | pending" )? + (table:rejecting-change-id="<string>" )? + <office:change-info ... > (<table:dependencies ... >)? + (<table:deletions ... >)? + >  +
@@ -9407,6 +12836,10 @@

table:insertion-cut-off Element<   + + Child Relations + <table:insertion-cut-off table:id="<string>" table:position="<integer>" >  +
@@ -9431,6 +12864,13 @@

table:iteration Element

  + + Child Relations + <table:iteration (table:status="enable | disable" )? + (table:steps="<positiveInteger>" )? + (table:maximum-difference="<double>" )? + >  +
@@ -9447,7 +12887,7 @@

table:label-range Element

table:data-cell-range-address  table:label-cell-range-address  - table:orientation[2]  + table:orientation[1]    @@ -9455,6 +12895,10 @@

table:label-range Element

  + + Child Relations + <table:label-range table:label-cell-range-address="string]" table:data-cell-range-address="string]" table:orientation="column | row" >  +
@@ -9481,6 +12925,10 @@

table:label-ranges Element

<table:label-range>*    + + Child Relations + <table:label-ranges (<table:label-range ... >)* >  +
@@ -9510,6 +12958,14 @@

table:movement Element

<table:target-range-address>    + + Child Relations + <table:movement table:id="<string>" (table:acceptance-state="accepted | rejected | pending" )? + (table:rejecting-change-id="<string>" )? + <table:source-range-address ... ><table:target-range-address ... ><office:change-info ... > (<table:dependencies ... >)? + (<table:deletions ... >)? + >  +
@@ -9534,6 +12990,11 @@

table:movement-cut-off Element   + + Child Relations + <table:movement-cut-off table:position="<integer>" | + (table:start-position="<integer>" table:end-position="<integer>" )>  +
@@ -9558,6 +13019,12 @@

table:named-expression Element   + + Child Relations + <table:named-expression + (table:name="<string>" table:expression="<string>" (table:base-cell-address="string]" )? + )>  +
@@ -9585,6 +13052,10 @@

table:named-expressions Element< <table:named-range>*    + + Child Relations + <table:named-expressions (<table:named-range ... > | <table:named-expression ... >)* >  +
@@ -9610,6 +13081,15 @@

table:named-range Element

  + + Child Relations + <table:named-range + (table:name="<string>" table:cell-range-address="string]" (table:base-cell-address="string]" )? + (table:range-usable-as="none | +START_list(print-range | filter | repeat-row | repeat-column)+ +END_list" )? + )>  +
@@ -9633,6 +13113,12 @@

table:null-date Element

  + + Child Relations + <table:null-date (table:value-type="float | time | date | percentage | currency | boolean | string" )? + (table:date-value-type="<date>" )? + >  +
@@ -9656,6 +13142,10 @@

table:operation Element

  + + Child Relations + <table:operation table:name="trace-dependents | remove-dependents | trace-precedents | remove-precedents | trace-errors" table:index="<nonNegativeInteger>" >  +
@@ -9679,6 +13169,11 @@

table:previous Element

<table:change-track-table-cell>    + + Child Relations + <table:previous (table:id="<string>" )? + <table:change-track-table-cell ... >>  +
@@ -9709,6 +13204,17 @@

table:scenario Element

  + + Child Relations + <table:scenario table:scenario-ranges="<string>" table:is-active="<boolean>" (table:display-border="<boolean>" )? + (table:border-color="string]" )? + (table:copy-back="<boolean>" )? + (table:copy-styles="<boolean>" )? + (table:copy-formulas="<boolean>" )? + (table:comment="<string>" )? + (table:protected="<boolean>" )? + >  +
@@ -9747,6 +13253,10 @@

table:shapes Element

<draw:regular-polygon>*    + + Child Relations + <table:shapes (<draw:rect ... > | <draw:line ... > | <draw:polyline ... > | <draw:polygon ... > | <draw:regular-polygon ... > | <draw:path ... > | <draw:circle ... > | <draw:ellipse ... > | <draw:g ... > | <draw:page-thumbnail ... > | <draw:frame ... > | <draw:measure ... > | <draw:caption ... > | <draw:connector ... > | <draw:control ... > | <dr3d:scene ... > | <draw:custom-shape ... >)+ >  +
@@ -9763,7 +13273,7 @@

table:sort Element

table:algorithm  table:bind-styles-to-content  - table:case-sensitive[2]  + table:case-sensitive[1]  table:country  table:language  table:target-range-address  @@ -9775,6 +13285,16 @@

table:sort Element

<table:sort-by>*    + + Child Relations + <table:sort (table:bind-styles-to-content="<boolean>" )? + (table:target-range-address="string]" )? + (table:case-sensitive="<boolean>" )? + (table:language="token]" )? + (table:country="token]" )? + (table:algorithm="<string>" )? + (<table:sort-by ... >)+ >  +
@@ -9799,6 +13319,12 @@

table:sort-by Element

  + + Child Relations + <table:sort-by table:field-number="<nonNegativeInteger>" (table:data-type="text | number | automatic | <string>" )? + (table:order="ascending | descending" )? + >  +
@@ -9822,6 +13348,12 @@

table:sort-groups Element

  + + Child Relations + <table:sort-groups (table:data-type="text | number | automatic | <string>" )? + (table:order="ascending | descending" )? + >  +
@@ -9845,6 +13377,11 @@

table:source-cell-range Element< <table:filter>    + + Child Relations + <table:source-cell-range table:cell-range-address="string]" (<table:filter ... >)? + >  +
@@ -9875,6 +13412,12 @@

table:source-range-address El   + + Child Relations + <table:source-range-address + (table:column="<integer>" table:row="<integer>" table:table="<integer>" ) | + (table:start-column="<integer>" table:start-row="<integer>" table:start-table="<integer>" table:end-column="<integer>" table:end-row="<integer>" table:end-table="<integer>" )>  +
@@ -9901,6 +13444,12 @@

table:source-service Element   + + Child Relations + <table:source-service table:name="<string>" table:source-name="<string>" table:object-name="<string>" (table:user-name="<string>" )? + (table:password="<string>" )? + >  +
@@ -9924,6 +13473,10 @@

table:subtotal-field Element   + + Child Relations + <table:subtotal-field table:field-number="<nonNegativeInteger>" table:function="auto | average | count | countnums | max | min | product | stdev | stdevp | sum | var | varp | <string>" >  +
@@ -9947,6 +13500,10 @@

table:subtotal-rule Element

<table:subtotal-field>*    + + Child Relations + <table:subtotal-rule table:group-by-field-number="<nonNegativeInteger>" (<table:subtotal-field ... >)* >  +
@@ -9962,7 +13519,7 @@

table:subtotal-rules ElementAttributes table:bind-styles-to-content  - table:case-sensitive[2]  + table:case-sensitive[1]  table:page-breaks-on-group-change    @@ -9973,6 +13530,14 @@

table:subtotal-rules Element<table:subtotal-rule>*    + + Child Relations + <table:subtotal-rules (table:bind-styles-to-content="<boolean>" )? + (table:case-sensitive="<boolean>" )? + (table:page-breaks-on-group-change="<boolean>" )? + (<table:sort-groups ... >)? + (<table:subtotal-rule ... >)* >  +
@@ -10029,6 +13594,34 @@

table:table Element

<table:table-source>    + + Child Relations + <table:table (table:name="<string>" )? + (table:style-name="(<NCName>)?" )? + + ( (table:protected="<boolean>" )? + (table:protection-key="TEXT" )? + ) (table:print="<boolean>" )? + (table:print-ranges="<string>" )? + (table:is-sub-table="<boolean>" )? + (<table:table-source ... >)? + (<office:dde-source ... >)? + (<table:scenario ... >)? + ( (<office:forms ... >)? + )? + (<table:shapes ... >)? + (<table:table-column-group ... > | + (<table:table-columns ... > | (<table:table-column ... >)+ (<table:table-header-columns ... > (<table:table-columns ... > | (<table:table-column ... >)+ )? + )? + ) | + (<table:table-header-columns ... > (<table:table-columns ... > | (<table:table-column ... >)+ )? + ))+ (<table:table-row-group ... > | + (<table:table-rows ... > | (<table:table-row ... >)+ (<table:table-header-rows ... > (<table:table-rows ... > | (<table:table-row ... >)+ )? + )? + ) | + (<table:table-header-rows ... > (<table:table-rows ... > | (<table:table-row ... >)+ )? + ))+ >  +
@@ -10049,13 +13642,13 @@

table:table-cell Element

office:string-value  office:time-value  office:value  + office:value-type[1]  office:value-type[2]  office:value-type[3]  office:value-type[4]  office:value-type[5]  office:value-type[6]  office:value-type[7]  - office:value-type[8]  table:content-validation-name  table:formula  table:number-columns-repeated  @@ -10109,6 +13702,35 @@

table:table-cell Element

<text:user-index>*    + + Child Relations + <table:table-cell (table:number-columns-repeated="<positiveInteger>" )? + (table:style-name="(<NCName>)?" )? + (table:content-validation-name="<string>" )? + (table:formula="<string>" )? + ( + (office:value-type="float" office:value="<double>" ) | + (office:value-type="percentage" office:value="<double>" ) | + (office:value-type="currency" office:value="<double>" (office:currency="<string>" )? + ) | + (office:value-type="date" office:date-value="<date> | <dateTime>" ) | + (office:value-type="time" office:time-value="<duration>" ) | + (office:value-type="boolean" office:boolean-value="<boolean>" ) | + (office:value-type="string" (office:string-value="<string>" )? + ))? + (table:protect="<boolean>" )? + + ( (table:number-columns-spanned="<positiveInteger>" )? + (table:number-rows-spanned="<positiveInteger>" )? + ) + ( (table:number-matrix-columns-spanned="<positiveInteger>" )? + (table:number-matrix-rows-spanned="<positiveInteger>" )? + ) + ( (<table:cell-range-source ... >)? + (<office:annotation ... >)? + (<table:detective ... >)? + (<text:h ... > | <text:p ... > | <text:list ... > | <text:numbered-paragraph ... > | <table:table ... > | <draw:a ... > | <text:section ... > | <text:table-of-content ... > | <text:illustration-index ... > | <text:table-index ... > | <text:object-index ... > | <text:user-index ... > | <text:alphabetical-index ... > | <text:bibliography ... > | <draw:rect ... > | <draw:line ... > | <draw:polyline ... > | <draw:polygon ... > | <draw:regular-polygon ... > | <draw:path ... > | <draw:circle ... > | <draw:ellipse ... > | <draw:g ... > | <draw:page-thumbnail ... > | <draw:frame ... > | <draw:measure ... > | <draw:caption ... > | <draw:connector ... > | <draw:control ... > | <dr3d:scene ... > | <draw:custom-shape ... > | <text:change ... > | <text:change-start ... > | <text:change-end ... >)* )>  +
@@ -10137,6 +13759,14 @@

table:table-column Element

  + + Child Relations + <table:table-column (table:number-columns-repeated="<positiveInteger>" )? + (table:style-name="(<NCName>)?" )? + (table:visibility="visible | collapse | filter" )? + (table:default-cell-style-name="(<NCName>)?" )? + >  +
@@ -10164,6 +13794,16 @@

table:table-column-group Elemen <table:table-header-columns>*    + + Child Relations + <table:table-column-group (table:display="<boolean>" )? + (<table:table-column-group ... > | + (<table:table-columns ... > | (<table:table-column ... >)+ (<table:table-header-columns ... > (<table:table-columns ... > | (<table:table-column ... >)+ )? + )? + ) | + (<table:table-header-columns ... > (<table:table-columns ... > | (<table:table-column ... >)+ )? + ))+ >  +
@@ -10187,6 +13827,10 @@

table:table-columns Element

<table:table-column>*    + + Child Relations + <table:table-columns (<table:table-column ... >)+ >  +
@@ -10210,6 +13854,10 @@

table:table-header-columns El <table:table-column>*    + + Child Relations + <table:table-header-columns (<table:table-column ... >)+ >  +
@@ -10233,6 +13881,10 @@

table:table-header-rows Element< <table:table-row>*    + + Child Relations + <table:table-header-rows (<table:table-row ... >)+ >  +
@@ -10263,6 +13915,14 @@

table:table-row Element

<table:table-cell>*    + + Child Relations + <table:table-row (table:number-rows-repeated="<positiveInteger>" )? + (table:style-name="(<NCName>)?" )? + (table:default-cell-style-name="(<NCName>)?" )? + (table:visibility="visible | collapse | filter" )? + (<table:table-cell ... > | <table:covered-table-cell ... >)+ >  +
@@ -10290,6 +13950,16 @@

table:table-row-group Element< <table:table-rows>*    + + Child Relations + <table:table-row-group (table:display="<boolean>" )? + (<table:table-row-group ... > | + (<table:table-rows ... > | (<table:table-row ... >)+ (<table:table-header-rows ... > (<table:table-rows ... > | (<table:table-row ... >)+ )? + )? + ) | + (<table:table-header-rows ... > (<table:table-rows ... > | (<table:table-row ... >)+ )? + ))+ >  +
@@ -10313,6 +13983,10 @@

table:table-rows Element

<table:table-row>*    + + Child Relations + <table:table-rows (<table:table-row ... >)+ >  +
@@ -10330,7 +14004,7 @@

table:table-source Element

table:filter-name  table:filter-options  table:mode  - table:refresh-delay[2]  + table:refresh-delay[1]  table:table-name  xlink:actuate[1]  xlink:href  @@ -10342,6 +14016,18 @@

table:table-source Element

  + + Child Relations + <table:table-source (table:mode="copy-all | copy-results-only" )? + (table:table-name="<string>" )? + + ( (xlink:type="simple" )? + (xlink:actuate="onRequest" )? + xlink:href="<anyURI>" ) (table:filter-name="<string>" )? + (table:filter-options="<string>" )? + (table:refresh-delay="<duration>" )? + >  +
@@ -10372,6 +14058,12 @@

table:target-range-address El   + + Child Relations + <table:target-range-address + (table:column="<integer>" table:row="<integer>" table:table="<integer>" ) | + (table:start-column="<integer>" table:start-row="<integer>" table:start-table="<integer>" table:end-column="<integer>" table:end-row="<integer>" table:end-table="<integer>" )>  +
@@ -10398,6 +14090,11 @@

table:tracked-changes Element< <table:movement>*    + + Child Relations + <table:tracked-changes (table:track-changes="<boolean>" )? + (<table:cell-content-change ... > | <table:insertion ... > | <table:deletion ... > | <table:movement ... >)* >  +
@@ -10557,6 +14254,21 @@

text:a Element

<text:word-count>*    + + Child Relations + <text:a (office:name="<string>" )? + + (xlink:href="<anyURI>" (xlink:type="simple" )? + (xlink:actuate="onRequest" )? + ) + ( (office:target-frame-name="_self | _blank | _parent | _top | <string>" )? + (xlink:show="new | replace" )? + ) + ( (text:style-name="(<NCName>)?" )? + (text:visited-style-name="(<NCName>)?" )? + ) (<office:event-listeners ... >)? + (TEXT | <text:s ... > | <text:tab ... > | <text:line-break ... > | <text:span ... > | <text:a ... > | <text:bookmark ... > | <text:bookmark-start ... > | <text:bookmark-end ... > | <text:reference-mark ... > | <text:reference-mark-start ... > | <text:reference-mark-end ... > | <text:note ... > | <text:ruby ... > | <office:annotation ... > | <text:change ... > | <text:change-start ... > | <text:change-end ... > | <draw:rect ... > | <draw:line ... > | <draw:polyline ... > | <draw:polygon ... > | <draw:regular-polygon ... > | <draw:path ... > | <draw:circle ... > | <draw:ellipse ... > | <draw:g ... > | <draw:page-thumbnail ... > | <draw:frame ... > | <draw:measure ... > | <draw:caption ... > | <draw:connector ... > | <draw:control ... > | <dr3d:scene ... > | <draw:custom-shape ... > | <draw:a ... > | <text:date ... > | <text:time ... > | <text:page-number ... > | <text:page-continuation ... > | <text:sender-firstname ... > | <text:sender-lastname ... > | <text:sender-initials ... > | <text:sender-title ... > | <text:sender-position ... > | <text:sender-email ... > | <text:sender-phone-private ... > | <text:sender-fax ... > | <text:sender-company ... > | <text:sender-phone-work ... > | <text:sender-street ... > | <text:sender-city ... > | <text:sender-postal-code ... > | <text:sender-country ... > | <text:sender-state-or-province ... > | <text:author-name ... > | <text:author-initials ... > | <text:chapter ... > | <text:file-name ... > | <text:template-name ... > | <text:sheet-name ... > | <text:variable-set ... > | <text:variable-get ... > | <text:variable-input ... > | <text:user-field-get ... > | <text:user-field-input ... > | <text:sequence ... > | <text:expression ... > | <text:text-input ... > | <text:initial-creator ... > | <text:creation-date ... > | <text:creation-time ... > | <text:description ... > | <text:user-defined ... > | <text:print-time ... > | <text:print-date ... > | <text:printed-by ... > | <text:title ... > | <text:subject ... > | <text:keywords ... > | <text:editing-cycles ... > | <text:editing-duration ... > | <text:modification-time ... > | <text:modification-date ... > | <text:creator ... > | <CHOICE_NAME_CLASS ... > | <text:database-display ... > | <text:database-next ... > | <text:database-row-select ... > | <text:database-row-number ... > | <text:database-name ... > | <text:page-variable-set ... > | <text:page-variable-get ... > | <text:placeholder ... > | <text:conditional-text ... > | <text:hidden-text ... > | <CHOICE_NAME_CLASS ... > | <text:note-ref ... > | <text:sequence-ref ... > | <text:script ... > | <text:execute-macro ... > | <text:hidden-paragraph ... > | <text:dde-connection ... > | <text:measure ... > | <text:table-formula ... > | <text:toc-mark-start ... > | <text:toc-mark-end ... > | <text:toc-mark ... > | <text:user-index-mark-start ... > | <text:user-index-mark-end ... > | <text:user-index-mark ... > | <text:alphabetical-index-mark-start ... > | <text:alphabetical-index-mark-end ... > | <text:alphabetical-index-mark ... > | <text:bibliography-mark ... > | <presentation:header ... > | <presentation:footer ... > | <presentation:date-time ... >)* >  +
@@ -10596,6 +14308,13 @@

text:alphabetical-index Element< <text:index-body>    + + Child Relations + <text:alphabetical-index (text:style-name="(<NCName>)?" )? + text:name="<string>" (text:protected="<boolean>" )? + (text:protection-key="<string>" )? + <text:alphabetical-index-source ... ><text:index-body ... >>  +
@@ -10627,6 +14346,11 @@

text:alphabetical   + + Child Relations + <text:alphabetical-index-auto-mark-file xlink:href="<anyURI>" (xlink:type="simple" )? + >  +
@@ -10655,6 +14379,10 @@

text:alphabetical <text:index-entry-text>*    + + Child Relations + <text:alphabetical-index-entry-template text:outline-level="1 | 2 | 3 | separator" text:style-name="(<NCName>)?" (<text:index-entry-chapter ... > | <text:index-entry-page-number ... > | <text:index-entry-text ... > | <text:index-entry-span ... > | <text:index-entry-tab-stop ... >)* >  +
@@ -10687,6 +14415,18 @@

text:alphabetical-index-mar   + + Child Relations + <text:alphabetical-index-mark text:string-value="<string>" + ( (text:key1="<string>" )? + (text:key2="<string>" )? + ) + ( (text:string-value-phonetic="<string>" )? + (text:key1-phonetic="<string>" )? + (text:key2-phonetic="<string>" )? + ) (text:main-entry="<boolean>" )? + >  +
@@ -10713,6 +14453,10 @@

text:alphabetical-index   + + Child Relations + <text:alphabetical-index-mark-end text:id="<string>" >  +
@@ -10745,6 +14489,18 @@

text:alphabetical-ind   + + Child Relations + <text:alphabetical-index-mark-start text:id="<string>" + ( (text:key1="<string>" )? + (text:key2="<string>" )? + ) + ( (text:string-value-phonetic="<string>" )? + (text:key1-phonetic="<string>" )? + (text:key2-phonetic="<string>" )? + ) (text:main-entry="<boolean>" )? + >  +
@@ -10782,6 +14538,27 @@

text:alphabetical-index-s <text:index-title-template>    + + Child Relations + <text:alphabetical-index-source + ( (text:index-scope="document | chapter" )? + (text:relative-tab-stop-position="<boolean>" )? + ) (text:ignore-case="<boolean>" )? + (text:main-entry-style-name="(<NCName>)?" )? + (text:alphabetical-separators="<boolean>" )? + + ( (text:combine-entries="<boolean>" )? + (text:combine-entries-with-dash="<boolean>" )? + (text:combine-entries-with-pp="<boolean>" )? + ) (text:use-keys-as-entries="<boolean>" )? + (text:capitalize-entries="<boolean>" )? + (text:comma-separated="<boolean>" )? + (fo:language="token]" )? + (fo:country="token]" )? + (text:sort-algorithm="<string>" )? + (<text:index-title-template ... >)? + (<text:alphabetical-index-entry-template ... >)* >  +
@@ -10809,6 +14586,11 @@

text:author-initials Element   + + Child Relations + <text:author-initials (text:fixed="<boolean>" )? + TEXT>  +
@@ -10836,6 +14618,11 @@

text:author-name Element

  + + Child Relations + <text:author-name (text:fixed="<boolean>" )? + TEXT>  +
@@ -10875,6 +14662,13 @@

text:bibliography Element

<text:index-body>    + + Child Relations + <text:bibliography (text:style-name="(<NCName>)?" )? + text:name="<string>" (text:protected="<boolean>" )? + (text:protection-key="<string>" )? + <text:bibliography-source ... ><text:index-body ... >>  +
@@ -10904,6 +14698,19 @@

text:bibliography-config <text:sort-key>*    + + Child Relations + <text:bibliography-configuration + ( (text:prefix="<string>" )? + (text:suffix="<string>" )? + ) (text:numbered-entries="<boolean>" )? + + ( (text:sort-by-position="<boolean>" )? + (fo:language="token]" )? + (fo:country="token]" )? + (text:sort-algorithm="<string>" )? + )(<text:sort-key ... >)* >  +
@@ -10930,6 +14737,10 @@

text:bibliography-entry <text:index-entry-tab-stop>*    + + Child Relations + <text:bibliography-entry-template text:bibliography-type="article | book | booklet | conference | custom1 | custom2 | custom3 | custom4 | custom5 | email | inbook | incollection | inproceedings | journal | manual | mastersthesis | misc | phdthesis | proceedings | techreport | unpublished | www" text:style-name="(<NCName>)?" (<text:index-entry-span ... > | <text:index-entry-tab-stop ... > | <text:index-entry-bibliography ... >)* >  +
@@ -10988,6 +14799,10 @@

text:bibliography-mark Element   + + Child Relations + <text:bibliography-mark text:bibliography-type="article | book | booklet | conference | custom1 | custom2 | custom3 | custom4 | custom5 | email | inbook | incollection | inproceedings | journal | manual | mastersthesis | misc | phdthesis | proceedings | techreport | unpublished | www" (CHOICE_NAME_CLASS="<string>" )* TEXT>  +
@@ -11011,6 +14826,11 @@

text:bibliography-source Elemen <text:index-title-template>    + + Child Relations + <text:bibliography-source (<text:index-title-template ... >)? + (<text:bibliography-entry-template ... >)* >  +
@@ -11037,6 +14857,10 @@

text:bookmark Element

  + + Child Relations + <text:bookmark text:name="<string>" >  +
@@ -11063,6 +14887,10 @@

text:bookmark-end Element

  + + Child Relations + <text:bookmark-end text:name="<string>" >  +
@@ -11083,7 +14911,7 @@

text:bookmark-ref Element

Attributes text:ref-name  - text:reference-format[2]  + text:reference-format[1]    @@ -11091,6 +14919,12 @@

text:bookmark-ref Element

  + + Child Relations + <CHOICE_NAME_CLASS TEXT (text:ref-name="<string>" )? + (text:reference-format="page | chapter | direction | text" )? + >  +
@@ -11117,6 +14951,10 @@

text:bookmark-start Element

  + + Child Relations + <text:bookmark-start text:name="<string>" >  +
@@ -11156,6 +14994,10 @@

text:change Element

  + + Child Relations + <text:change text:change-id="<IDREF>" >  +
@@ -11195,6 +15037,10 @@

text:change-end Element

  + + Child Relations + <text:change-end text:change-id="<IDREF>" >  +
@@ -11234,6 +15080,10 @@

text:change-start Element

  + + Child Relations + <text:change-start text:change-id="<IDREF>" >  +
@@ -11259,6 +15109,10 @@

text:changed-region Element

<text:insertion>    + + Child Relations + <text:changed-region text:id="<ID>" <text:insertion ... > | <text:deletion ... > | <text:format-change ... >>  +
@@ -11278,8 +15132,8 @@

text:chapter Element

Attributes - text:display[8]  - text:outline-level[3]  + text:display[1]  + text:outline-level[1]    @@ -11287,6 +15141,10 @@

text:chapter Element

  + + Child Relations + <text:chapter text:display="name | number | number-and-name | plain-number-and-name | plain-number" text:outline-level="<nonNegativeInteger>" TEXT>  +
@@ -11316,6 +15174,14 @@

text:character-count Element   + + Child Relations + <CHOICE_NAME_CLASS ( (style:num-format="(1 | i | I | <string>)?" | + (style:num-format="a | A" (style:num-letter-sync="<boolean>" )? + ))? + )? + TEXT>  +
@@ -11346,6 +15212,11 @@

text:conditional-text Element<   + + Child Relations + <text:conditional-text text:condition="<string>" text:string-value-if-true="<string>" text:string-value-if-false="<string>" (text:current-value="<boolean>" )? + TEXT>  +
@@ -11366,7 +15237,7 @@

text:creation-date Element

Attributes style:data-style-name  - text:date-value[2]  + text:date-value[1]  text:fixed    @@ -11375,6 +15246,13 @@

text:creation-date Element

  + + Child Relations + <text:creation-date (text:fixed="<boolean>" )? + (style:data-style-name="(<NCName>)?" )? + (text:date-value="<date> | <dateTime>" )? + TEXT>  +
@@ -11396,7 +15274,7 @@

text:creation-time Element

style:data-style-name  text:fixed  - text:time-value[2]  + text:time-value[1]    @@ -11404,6 +15282,13 @@

text:creation-time Element

  + + Child Relations + <text:creation-time (text:fixed="<boolean>" )? + (style:data-style-name="(<NCName>)?" )? + (text:time-value="<time> | <dateTime>" )? + TEXT>  +
@@ -11431,6 +15316,11 @@

text:creator Element

  + + Child Relations + <text:creator (text:fixed="<boolean>" )? + TEXT>  +
@@ -11463,6 +15353,13 @@

text:database-display Element< <form:connection-resource>    + + Child Relations + <text:database-display + (text:table-name="<string>" (text:table-type="table | query | command" )? + text:database-name="<string>" | EMPTY | <form:connection-resource ... >) (style:data-style-name="(<NCName>)?" )? + text:column-name="<string>" TEXT>  +
@@ -11493,6 +15390,12 @@

text:database-name Element

<form:connection-resource>    + + Child Relations + <text:database-name + (text:table-name="<string>" (text:table-type="table | query | command" )? + text:database-name="<string>" | EMPTY | <form:connection-resource ... >)TEXT>  +
@@ -11523,6 +15426,13 @@

text:database-next Element

<form:connection-resource>    + + Child Relations + <text:database-next + (text:table-name="<string>" (text:table-type="table | query | command" )? + text:database-name="<string>" | EMPTY | <form:connection-resource ... >) (text:condition="<string>" )? + >  +
@@ -11557,6 +15467,17 @@

text:database-row-number Elemen <form:connection-resource>    + + Child Relations + <text:database-row-number + (text:table-name="<string>" (text:table-type="table | query | command" )? + text:database-name="<string>" | EMPTY | <form:connection-resource ... >) ( (style:num-format="(1 | i | I | <string>)?" | + (style:num-format="a | A" (style:num-letter-sync="<boolean>" )? + ))? + )? + (text:value="<nonNegativeInteger>" )? + TEXT>  +
@@ -11588,6 +15509,14 @@

text:database-row-select Elemen <form:connection-resource>    + + Child Relations + <text:database-row-select + (text:table-name="<string>" (text:table-type="table | query | command" )? + text:database-name="<string>" | EMPTY | <form:connection-resource ... >) (text:condition="<string>" )? + (text:row-number="<nonNegativeInteger>" )? + >  +
@@ -11609,7 +15538,7 @@

text:date Element

style:data-style-name  text:date-adjust  - text:date-value[2]  + text:date-value[1]  text:fixed    @@ -11618,6 +15547,14 @@

text:date Element

  + + Child Relations + <text:date (text:fixed="<boolean>" )? + (style:data-style-name="(<NCName>)?" )? + (text:date-value="<date> | <dateTime>" )? + (text:date-adjust="<duration>" )? + TEXT>  +
@@ -11645,6 +15582,10 @@

text:dde-connection Element

  + + Child Relations + <text:dde-connection text:connection-name="<string>" TEXT>  +
@@ -11671,6 +15612,11 @@

text:dde-connection-decl Elemen   + + Child Relations + <text:dde-connection-decl office:name="<string>" office:dde-application="<string>" office:dde-topic="<string>" office:dde-item="<string>" (office:automatic-update="<boolean>" )? + >  +
@@ -11701,6 +15647,10 @@

text:dde-connection-decls Elem <text:dde-connection-decl>*    + + Child Relations + <text:dde-connection-decls (<text:dde-connection-decl ... >)* >  +
@@ -11757,6 +15707,10 @@

text:deletion Element

<text:user-index>*    + + Child Relations + <text:deletion <office:change-info ... >(<text:h ... > | <text:p ... > | <text:list ... > | <text:numbered-paragraph ... > | <table:table ... > | <draw:a ... > | <text:section ... > | <text:table-of-content ... > | <text:illustration-index ... > | <text:table-index ... > | <text:object-index ... > | <text:user-index ... > | <text:alphabetical-index ... > | <text:bibliography ... > | <draw:rect ... > | <draw:line ... > | <draw:polyline ... > | <draw:polygon ... > | <draw:regular-polygon ... > | <draw:path ... > | <draw:circle ... > | <draw:ellipse ... > | <draw:g ... > | <draw:page-thumbnail ... > | <draw:frame ... > | <draw:measure ... > | <draw:caption ... > | <draw:connector ... > | <draw:control ... > | <dr3d:scene ... > | <draw:custom-shape ... > | <text:change ... > | <text:change-start ... > | <text:change-end ... >)* >  +
@@ -11784,6 +15738,11 @@

text:description Element

  + + Child Relations + <text:description (text:fixed="<boolean>" )? + TEXT>  +
@@ -11811,6 +15770,11 @@

text:editing-cycles Element

  + + Child Relations + <text:editing-cycles (text:fixed="<boolean>" )? + TEXT>  +
@@ -11840,6 +15804,13 @@

text:editing-duration Element<   + + Child Relations + <text:editing-duration (text:fixed="<boolean>" )? + (style:data-style-name="(<NCName>)?" )? + (text:duration="<duration>" )? + TEXT>  +
@@ -11868,6 +15839,12 @@

text:execute-macro Element

<office:event-listeners>    + + Child Relations + <text:execute-macro (text:name="<string>" )? + (<office:event-listeners ... >)? + TEXT>  +
@@ -11893,15 +15870,15 @@

text:expression Element

office:string-value  office:time-value  office:value  + office:value-type[1]  office:value-type[2]  office:value-type[3]  office:value-type[4]  office:value-type[5]  office:value-type[6]  office:value-type[7]  - office:value-type[8]  style:data-style-name  - text:display[2]  + text:display[9]  text:formula    @@ -11910,6 +15887,23 @@

text:expression Element

  + + Child Relations + <text:expression (text:formula="<string>" )? + ( + (office:value-type="float" office:value="<double>" ) | + (office:value-type="percentage" office:value="<double>" ) | + (office:value-type="currency" office:value="<double>" (office:currency="<string>" )? + ) | + (office:value-type="date" office:date-value="<date> | <dateTime>" ) | + (office:value-type="time" office:time-value="<duration>" ) | + (office:value-type="boolean" office:boolean-value="<boolean>" ) | + (office:value-type="string" (office:string-value="<string>" )? + ))? + (text:display="value | formula" )? + (style:data-style-name="(<NCName>)?" )? + TEXT>  +
@@ -11929,7 +15923,7 @@

text:file-name Element

Attributes - text:display[5]  + text:display[6]  text:fixed    @@ -11938,6 +15932,12 @@

text:file-name Element

  + + Child Relations + <text:file-name (text:display="full | path | name | name-and-extension" )? + (text:fixed="<boolean>" )? + TEXT>  +
@@ -11960,6 +15960,10 @@

text:format-change Element

<office:change-info>    + + Child Relations + <text:format-change <office:change-info ... >>  +
@@ -11994,7 +15998,7 @@

text:h Element

text:cond-style-name  text:id[1]  text:is-list-header  - text:outline-level[1]  + text:outline-level[3]  text:restart-numbering  text:start-value[1]  text:style-name  @@ -12130,6 +16134,21 @@

text:h Element

<text:word-count>*    + + Child Relations + <text:h text:outline-level="<positiveInteger>" (text:restart-numbering="<boolean>" )? + (text:start-value="<nonNegativeInteger>" )? + (text:is-list-header="<boolean>" )? + + ( (text:style-name="(<NCName>)?" )? + (text:class-names=" +START_list(<NCName>)* +END_list" )? + (text:cond-style-name="(<NCName>)?" )? + ) (text:id="<string>" )? + (<text:number ... >)? + (TEXT | <text:s ... > | <text:tab ... > | <text:line-break ... > | <text:span ... > | <text:a ... > | <text:bookmark ... > | <text:bookmark-start ... > | <text:bookmark-end ... > | <text:reference-mark ... > | <text:reference-mark-start ... > | <text:reference-mark-end ... > | <text:note ... > | <text:ruby ... > | <office:annotation ... > | <text:change ... > | <text:change-start ... > | <text:change-end ... > | <draw:rect ... > | <draw:line ... > | <draw:polyline ... > | <draw:polygon ... > | <draw:regular-polygon ... > | <draw:path ... > | <draw:circle ... > | <draw:ellipse ... > | <draw:g ... > | <draw:page-thumbnail ... > | <draw:frame ... > | <draw:measure ... > | <draw:caption ... > | <draw:connector ... > | <draw:control ... > | <dr3d:scene ... > | <draw:custom-shape ... > | <draw:a ... > | <text:date ... > | <text:time ... > | <text:page-number ... > | <text:page-continuation ... > | <text:sender-firstname ... > | <text:sender-lastname ... > | <text:sender-initials ... > | <text:sender-title ... > | <text:sender-position ... > | <text:sender-email ... > | <text:sender-phone-private ... > | <text:sender-fax ... > | <text:sender-company ... > | <text:sender-phone-work ... > | <text:sender-street ... > | <text:sender-city ... > | <text:sender-postal-code ... > | <text:sender-country ... > | <text:sender-state-or-province ... > | <text:author-name ... > | <text:author-initials ... > | <text:chapter ... > | <text:file-name ... > | <text:template-name ... > | <text:sheet-name ... > | <text:variable-set ... > | <text:variable-get ... > | <text:variable-input ... > | <text:user-field-get ... > | <text:user-field-input ... > | <text:sequence ... > | <text:expression ... > | <text:text-input ... > | <text:initial-creator ... > | <text:creation-date ... > | <text:creation-time ... > | <text:description ... > | <text:user-defined ... > | <text:print-time ... > | <text:print-date ... > | <text:printed-by ... > | <text:title ... > | <text:subject ... > | <text:keywords ... > | <text:editing-cycles ... > | <text:editing-duration ... > | <text:modification-time ... > | <text:modification-date ... > | <text:creator ... > | <CHOICE_NAME_CLASS ... > | <text:database-display ... > | <text:database-next ... > | <text:database-row-select ... > | <text:database-row-number ... > | <text:database-name ... > | <text:page-variable-set ... > | <text:page-variable-get ... > | <text:placeholder ... > | <text:conditional-text ... > | <text:hidden-text ... > | <CHOICE_NAME_CLASS ... > | <text:note-ref ... > | <text:sequence-ref ... > | <text:script ... > | <text:execute-macro ... > | <text:hidden-paragraph ... > | <text:dde-connection ... > | <text:measure ... > | <text:table-formula ... > | <text:toc-mark-start ... > | <text:toc-mark-end ... > | <text:toc-mark ... > | <text:user-index-mark-start ... > | <text:user-index-mark-end ... > | <text:user-index-mark ... > | <text:alphabetical-index-mark-start ... > | <text:alphabetical-index-mark-end ... > | <text:alphabetical-index-mark ... > | <text:bibliography-mark ... > | <presentation:header ... > | <presentation:footer ... > | <presentation:date-time ... >)* >  +
@@ -12158,6 +16177,11 @@

text:hidden-paragraph Element<   + + Child Relations + <text:hidden-paragraph text:condition="<string>" (text:is-hidden="<boolean>" )? + TEXT>  +
@@ -12187,6 +16211,11 @@

text:hidden-text Element

  + + Child Relations + <text:hidden-text text:condition="<string>" text:string-value="<string>" (text:is-hidden="<boolean>" )? + TEXT>  +
@@ -12226,6 +16255,13 @@

text:illustration-index Element< <text:index-body>    + + Child Relations + <text:illustration-index (text:style-name="(<NCName>)?" )? + text:name="<string>" (text:protected="<boolean>" )? + (text:protection-key="<string>" )? + <text:illustration-index-source ... ><text:index-body ... >>  +
@@ -12252,6 +16288,11 @@

text:illustration <text:index-entry-text>*    + + Child Relations + <text:illustration-index-entry-template + (text:style-name="(<NCName>)?" (<text:index-entry-page-number ... > | <text:index-entry-text ... > | <text:index-entry-span ... > | <text:index-entry-tab-stop ... >)* )>  +
@@ -12280,6 +16321,17 @@

text:illustration-index-s <text:index-title-template>    + + Child Relations + <text:illustration-index-source (text:index-scope="document | chapter" )? + (text:relative-tab-stop-position="<boolean>" )? + (text:use-caption="<boolean>" )? + (text:caption-sequence-name="<string>" )? + (text:caption-sequence-format="text | category-and-value | caption" )? + (<text:index-title-template ... >)? + (<text:illustration-index-entry-template ... >)? + >  +
@@ -12309,6 +16361,14 @@

text:image-count Element

  + + Child Relations + <CHOICE_NAME_CLASS ( (style:num-format="(1 | i | I | <string>)?" | + (style:num-format="a | A" (style:num-letter-sync="<boolean>" )? + ))? + )? + TEXT>  +
@@ -12371,6 +16431,10 @@

text:index-body Element

<text:user-index>*    + + Child Relations + <text:index-body (<text:h ... > | <text:p ... > | <text:list ... > | <text:numbered-paragraph ... > | <table:table ... > | <draw:a ... > | <text:section ... > | <text:table-of-content ... > | <text:illustration-index ... > | <text:table-index ... > | <text:object-index ... > | <text:user-index ... > | <text:alphabetical-index ... > | <text:bibliography ... > | <draw:rect ... > | <draw:line ... > | <draw:polyline ... > | <draw:polygon ... > | <draw:regular-polygon ... > | <draw:path ... > | <draw:circle ... > | <draw:ellipse ... > | <draw:g ... > | <draw:page-thumbnail ... > | <draw:frame ... > | <draw:measure ... > | <draw:caption ... > | <draw:connector ... > | <draw:control ... > | <dr3d:scene ... > | <draw:custom-shape ... > | <text:change ... > | <text:change-start ... > | <text:change-end ... > | <text:index-title ... >)* >  +
@@ -12394,6 +16458,11 @@

text:index-entry-bibliogra   + + Child Relations + <text:index-entry-bibliography (text:style-name="(<NCName>)?" )? + text:bibliography-data-field="address | annote | author | bibliography-type | booktitle | chapter | custom1 | custom2 | custom3 | custom4 | custom5 | edition | editor | howpublished | identifier | institution | isbn | issn | journal | month | note | number | organizations | pages | publisher | report-type | school | series | title | url | volume | year" >  +
@@ -12410,7 +16479,7 @@

text:index-entry-chapter Elemen Attributes - text:display[9]  + text:display[7]  text:style-name    @@ -12419,6 +16488,12 @@

text:index-entry-chapter Elemen   + + Child Relations + <text:index-entry-chapter (text:style-name="(<NCName>)?" )? + (text:display="name | number | number-and-name" )? + >  +
@@ -12441,6 +16516,11 @@

text:index-entry-link-end Elem   + + Child Relations + <text:index-entry-link-end (text:style-name="(<NCName>)?" )? + >  +
@@ -12463,6 +16543,11 @@

text:index-entry-link-start   + + Child Relations + <text:index-entry-link-start (text:style-name="(<NCName>)?" )? + >  +
@@ -12490,6 +16575,11 @@

text:index-entry-page-numbe   + + Child Relations + <text:index-entry-page-number (text:style-name="(<NCName>)?" )? + >  +
@@ -12519,6 +16609,11 @@

text:index-entry-span Element<   + + Child Relations + <text:index-entry-span (text:style-name="(<NCName>)?" )? + TEXT>  +
@@ -12551,6 +16646,13 @@

text:index-entry-tab-stop Elem   + + Child Relations + <text:index-entry-tab-stop (text:style-name="(<NCName>)?" )? + (style:leader-char="string]" )? + style:type="right" | + (style:type="left" style:position="string]" )>  +
@@ -12578,6 +16680,11 @@

text:index-entry-text Element<   + + Child Relations + <text:index-entry-text (text:style-name="(<NCName>)?" )? + >  +
@@ -12600,6 +16707,10 @@

text:index-source-style Element<   + + Child Relations + <text:index-source-style text:style-name="<NCName>" >  +
@@ -12615,7 +16726,7 @@

text:index-source-styles Elemen Attributes - text:outline-level[1]  + text:outline-level[3]    @@ -12624,6 +16735,10 @@

text:index-source-styles Elemen <text:index-source-style>*    + + Child Relations + <text:index-source-styles text:outline-level="<positiveInteger>" (<text:index-source-style ... >)* >  +
@@ -12689,6 +16804,13 @@

text:index-title Element

<text:user-index>*    + + Child Relations + <text:index-title (text:style-name="(<NCName>)?" )? + text:name="<string>" (text:protected="<boolean>" )? + (text:protection-key="<string>" )? + (<text:h ... > | <text:p ... > | <text:list ... > | <text:numbered-paragraph ... > | <table:table ... > | <draw:a ... > | <text:section ... > | <text:table-of-content ... > | <text:illustration-index ... > | <text:table-index ... > | <text:object-index ... > | <text:user-index ... > | <text:alphabetical-index ... > | <text:bibliography ... > | <draw:rect ... > | <draw:line ... > | <draw:polyline ... > | <draw:polygon ... > | <draw:regular-polygon ... > | <draw:path ... > | <draw:circle ... > | <draw:ellipse ... > | <draw:g ... > | <draw:page-thumbnail ... > | <draw:frame ... > | <draw:measure ... > | <draw:caption ... > | <draw:connector ... > | <draw:control ... > | <dr3d:scene ... > | <draw:custom-shape ... > | <text:change ... > | <text:change-start ... > | <text:change-end ... > | <text:index-title ... >)* >  +
@@ -12718,6 +16840,11 @@

text:index-title-template Elem   + + Child Relations + <text:index-title-template (text:style-name="(<NCName>)?" )? + TEXT>  +
@@ -12745,6 +16872,11 @@

text:initial-creator Element   + + Child Relations + <text:initial-creator (text:fixed="<boolean>" )? + TEXT>  +
@@ -12767,6 +16899,10 @@

text:insertion Element

<office:change-info>    + + Child Relations + <text:insertion <office:change-info ... >>  +
@@ -12794,6 +16930,11 @@

text:keywords Element

  + + Child Relations + <text:keywords (text:fixed="<boolean>" )? + TEXT>  +
@@ -12819,6 +16960,10 @@

text:line-break Element

  + + Child Relations + <text:line-break EMPTY>  +
@@ -12852,6 +16997,23 @@

text:linenumbering-conf <text:linenumbering-separator>    + + Child Relations + <text:linenumbering-configuration (text:number-lines="<boolean>" )? + ( (style:num-format="(1 | i | I | <string>)?" | + (style:num-format="a | A" (style:num-letter-sync="<boolean>" )? + ))? + )? + (text:style-name="(<NCName>)?" )? + (text:increment="<nonNegativeInteger>" )? + (text:number-position="left | rigth | inner | outer" )? + (text:offset="string]" )? + (text:count-empty-lines="<boolean>" )? + (text:count-in-text-boxes="<boolean>" )? + (text:restart-on-page="<boolean>" )? + (<text:linenumbering-separator ... >)? + >  +
@@ -12875,6 +17037,11 @@

text:linenumbering-separato   + + Child Relations + <text:linenumbering-separator (text:increment="<nonNegativeInteger>" )? + TEXT>  +
@@ -12928,6 +17095,13 @@

text:list Element

<text:list-item>*    + + Child Relations + <text:list (text:style-name="(<NCName>)?" )? + (text:continue-numbering="<boolean>" )? + (<text:list-header ... >)? + (<text:list-item ... >)* >  +
@@ -12953,6 +17127,12 @@

text:list-header Element

<text:p>*    + + Child Relations + <text:list-header + ( (<text:number ... >)? + (<text:p ... > | <text:h ... > | <text:list ... >)* )>  +
@@ -12979,6 +17159,13 @@

text:list-item Element

<text:p>*    + + Child Relations + <text:list-item (text:start-value="<nonNegativeInteger>" )? + + ( (<text:number ... >)? + (<text:p ... > | <text:h ... > | <text:list ... >)* )>  +
@@ -13008,6 +17195,17 @@

text:list-level-style-bulle <style:text-properties>    + + Child Relations + <text:list-level-style-bullet text:level="<positiveInteger>" (text:style-name="(<NCName>)?" )? + text:bullet-char="string]" + ( (style:num-prefix="<string>" )? + (style:num-suffix="<string>" )? + ) (text:bullet-relative-size="string]" )? + (<style:list-level-properties ... >)? + (<style:text-properties ... >)? + >  +
@@ -13036,6 +17234,15 @@

text:list-level-style-image <style:list-level-properties>    + + Child Relations + <text:list-level-style-image text:level="<positiveInteger>" + (xlink:href="<anyURI>" (xlink:type="simple" )? + (xlink:show="embed" )? + (xlink:actuate="onLoad" )? + ) | <office:binary-data ... > (<style:list-level-properties ... >)? + >  +
@@ -13068,6 +17275,22 @@

text:list-level-style-numbe <style:text-properties>    + + Child Relations + <text:list-level-style-number text:level="<positiveInteger>" (text:style-name="(<NCName>)?" )? + + ( (style:num-format="(1 | i | I | <string>)?" | + (style:num-format="a | A" (style:num-letter-sync="<boolean>" )? + ))? + + ( (style:num-prefix="<string>" )? + (style:num-suffix="<string>" )? + )) (text:display-levels="<positiveInteger>" )? + (text:start-value="<positiveInteger>" )? + (<style:list-level-properties ... >)? + (<style:text-properties ... >)? + >  +
@@ -13096,6 +17319,12 @@

text:list-style Element

<text:list-level-style-number>*    + + Child Relations + <text:list-style style:name="<NCName>" (style:display-name="<string>" )? + (text:consecutive-numbering="<boolean>" )? + (<text:list-level-style-number ... > | <text:list-level-style-bullet ... > | <text:list-level-style-image ... >)* >  +
@@ -13123,6 +17352,10 @@

text:measure Element

  + + Child Relations + <text:measure text:kind="value | unit | gap" TEXT>  +
@@ -13143,7 +17376,7 @@

text:modification-date ElementAttributes style:data-style-name  - text:date-value[1]  + text:date-value[2]  text:fixed    @@ -13152,6 +17385,13 @@

text:modification-date Element   + + Child Relations + <text:modification-date (text:fixed="<boolean>" )? + (style:data-style-name="(<NCName>)?" )? + (text:date-value="<date>" )? + TEXT>  +
@@ -13173,7 +17413,7 @@

text:modification-time Element style:data-style-name  text:fixed  - text:time-value[1]  + text:time-value[2]    @@ -13181,6 +17421,13 @@

text:modification-time Element   + + Child Relations + <text:modification-time (text:fixed="<boolean>" )? + (style:data-style-name="(<NCName>)?" )? + (text:time-value="<time>" )? + TEXT>  +
@@ -13210,6 +17457,11 @@

text:note Element

<text:note-citation>    + + Child Relations + <text:note text:note-class="footnote | endnote" (text:id="<string>" )? + <text:note-citation ... ><text:note-body ... >>  +
@@ -13265,6 +17517,10 @@

text:note-body Element

<text:user-index>*    + + Child Relations + <text:note-body (<text:h ... > | <text:p ... > | <text:list ... > | <text:numbered-paragraph ... > | <table:table ... > | <draw:a ... > | <text:section ... > | <text:table-of-content ... > | <text:illustration-index ... > | <text:table-index ... > | <text:object-index ... > | <text:user-index ... > | <text:alphabetical-index ... > | <text:bibliography ... > | <draw:rect ... > | <draw:line ... > | <draw:polyline ... > | <draw:polygon ... > | <draw:regular-polygon ... > | <draw:path ... > | <draw:circle ... > | <draw:ellipse ... > | <draw:g ... > | <draw:page-thumbnail ... > | <draw:frame ... > | <draw:measure ... > | <draw:caption ... > | <draw:connector ... > | <draw:control ... > | <dr3d:scene ... > | <draw:custom-shape ... > | <text:change ... > | <text:change-start ... > | <text:change-end ... >)* >  +
@@ -13288,6 +17544,11 @@

text:note-citation Element

  + + Child Relations + <text:note-citation (text:label="<string>" )? + TEXT>  +
@@ -13310,6 +17571,10 @@

text:note-continu   + + Child Relations + <text:note-continuation-notice-backward TEXT>  +
@@ -13332,6 +17597,10 @@

text:note-continua   + + Child Relations + <text:note-continuation-notice-forward TEXT>  +
@@ -13353,7 +17622,7 @@

text:note-ref Element

text:note-class  text:ref-name  - text:reference-format[2]  + text:reference-format[1]    @@ -13361,6 +17630,12 @@

text:note-ref Element

  + + Child Relations + <text:note-ref TEXT (text:ref-name="<string>" )? + text:note-class="footnote | endnote" (text:reference-format="page | chapter | direction | text" )? + >  +
@@ -13397,6 +17672,27 @@

text:notes-configuration Elemen <text:note-continuation-notice-forward>    + + Child Relations + <text:notes-configuration text:note-class="footnote | endnote" (text:citation-style-name="(<NCName>)?" )? + (text:citation-body-style-name="(<NCName>)?" )? + (text:default-style-name="(<NCName>)?" )? + (text:master-page-name="(<NCName>)?" )? + (text:start-value="<nonNegativeInteger>" )? + + ( + ( (style:num-prefix="<string>" )? + (style:num-suffix="<string>" )? + ) ( (style:num-format="(1 | i | I | <string>)?" | + (style:num-format="a | A" (style:num-letter-sync="<boolean>" )? + ))? + )? + ) (text:start-numbering-at="document | chapter | page" )? + (text:footnotes-position="text | page | section | document" )? + (<text:note-continuation-notice-forward ... >)? + (<text:note-continuation-notice-backward ... >)? + >  +
@@ -13421,6 +17717,10 @@

text:number Element

  + + Child Relations + <text:number <string>>  +
@@ -13457,6 +17757,15 @@

text:numbered-paragraph Element< <text:p>    + + Child Relations + <text:numbered-paragraph (text:level="<positiveInteger>" )? + (text:style-name="(<NCName>)?" )? + (text:continue-numbering="<boolean>" )? + (text:start-value="<nonNegativeInteger>" )? + (<text:number ... >)? + <text:p ... > | <text:h ... >>  +
@@ -13486,6 +17795,14 @@

text:object-count Element

  + + Child Relations + <CHOICE_NAME_CLASS ( (style:num-format="(1 | i | I | <string>)?" | + (style:num-format="a | A" (style:num-letter-sync="<boolean>" )? + ))? + )? + TEXT>  +
@@ -13525,6 +17842,13 @@

text:object-index Element

<text:object-index-source>    + + Child Relations + <text:object-index (text:style-name="(<NCName>)?" )? + text:name="<string>" (text:protected="<boolean>" )? + (text:protection-key="<string>" )? + <text:object-index-source ... ><text:index-body ... >>  +
@@ -13551,6 +17875,11 @@

text:object-index-entry <text:index-entry-text>*    + + Child Relations + <text:object-index-entry-template + (text:style-name="(<NCName>)?" (<text:index-entry-page-number ... > | <text:index-entry-text ... > | <text:index-entry-span ... > | <text:index-entry-tab-stop ... >)* )>  +
@@ -13581,6 +17910,19 @@

text:object-index-source Elemen <text:object-index-entry-template>    + + Child Relations + <text:object-index-source (text:index-scope="document | chapter" )? + (text:relative-tab-stop-position="<boolean>" )? + (text:use-spreadsheet-objects="<boolean>" )? + (text:use-math-objects="<boolean>" )? + (text:use-draw-objects="<boolean>" )? + (text:use-chart-objects="<boolean>" )? + (text:use-other-objects="<boolean>" )? + (<text:index-title-template ... >)? + (<text:object-index-entry-template ... >)? + >  +
@@ -13613,6 +17955,22 @@

text:outline-level-style Elemen <style:text-properties>    + + Child Relations + <text:outline-level-style text:level="<positiveInteger>" (text:style-name="(<NCName>)?" )? + + ( (style:num-format="(1 | i | I | <string>)?" | + (style:num-format="a | A" (style:num-letter-sync="<boolean>" )? + ))? + + ( (style:num-prefix="<string>" )? + (style:num-suffix="<string>" )? + )) (text:display-levels="<positiveInteger>" )? + (text:start-value="<positiveInteger>" )? + (<style:list-level-properties ... >)? + (<style:text-properties ... >)? + >  +
@@ -13635,6 +17993,10 @@

text:outline-style Element

<text:outline-level-style>*    + + Child Relations + <text:outline-style (<text:outline-level-style ... >)+ >  +
@@ -13825,6 +18187,17 @@

text:p Element

<text:word-count>*    + + Child Relations + <text:p + ( (text:style-name="(<NCName>)?" )? + (text:class-names=" +START_list(<NCName>)* +END_list" )? + (text:cond-style-name="(<NCName>)?" )? + ) (text:id="<string>" )? + (TEXT | <text:s ... > | <text:tab ... > | <text:line-break ... > | <text:span ... > | <text:a ... > | <text:bookmark ... > | <text:bookmark-start ... > | <text:bookmark-end ... > | <text:reference-mark ... > | <text:reference-mark-start ... > | <text:reference-mark-end ... > | <text:note ... > | <text:ruby ... > | <office:annotation ... > | <text:change ... > | <text:change-start ... > | <text:change-end ... > | <draw:rect ... > | <draw:line ... > | <draw:polyline ... > | <draw:polygon ... > | <draw:regular-polygon ... > | <draw:path ... > | <draw:circle ... > | <draw:ellipse ... > | <draw:g ... > | <draw:page-thumbnail ... > | <draw:frame ... > | <draw:measure ... > | <draw:caption ... > | <draw:connector ... > | <draw:control ... > | <dr3d:scene ... > | <draw:custom-shape ... > | <draw:a ... > | <text:date ... > | <text:time ... > | <text:page-number ... > | <text:page-continuation ... > | <text:sender-firstname ... > | <text:sender-lastname ... > | <text:sender-initials ... > | <text:sender-title ... > | <text:sender-position ... > | <text:sender-email ... > | <text:sender-phone-private ... > | <text:sender-fax ... > | <text:sender-company ... > | <text:sender-phone-work ... > | <text:sender-street ... > | <text:sender-city ... > | <text:sender-postal-code ... > | <text:sender-country ... > | <text:sender-state-or-province ... > | <text:author-name ... > | <text:author-initials ... > | <text:chapter ... > | <text:file-name ... > | <text:template-name ... > | <text:sheet-name ... > | <text:variable-set ... > | <text:variable-get ... > | <text:variable-input ... > | <text:user-field-get ... > | <text:user-field-input ... > | <text:sequence ... > | <text:expression ... > | <text:text-input ... > | <text:initial-creator ... > | <text:creation-date ... > | <text:creation-time ... > | <text:description ... > | <text:user-defined ... > | <text:print-time ... > | <text:print-date ... > | <text:printed-by ... > | <text:title ... > | <text:subject ... > | <text:keywords ... > | <text:editing-cycles ... > | <text:editing-duration ... > | <text:modification-time ... > | <text:modification-date ... > | <text:creator ... > | <CHOICE_NAME_CLASS ... > | <text:database-display ... > | <text:database-next ... > | <text:database-row-select ... > | <text:database-row-number ... > | <text:database-name ... > | <text:page-variable-set ... > | <text:page-variable-get ... > | <text:placeholder ... > | <text:conditional-text ... > | <text:hidden-text ... > | <CHOICE_NAME_CLASS ... > | <text:note-ref ... > | <text:sequence-ref ... > | <text:script ... > | <text:execute-macro ... > | <text:hidden-paragraph ... > | <text:dde-connection ... > | <text:measure ... > | <text:table-formula ... > | <text:toc-mark-start ... > | <text:toc-mark-end ... > | <text:toc-mark ... > | <text:user-index-mark-start ... > | <text:user-index-mark-end ... > | <text:user-index-mark ... > | <text:alphabetical-index-mark-start ... > | <text:alphabetical-index-mark-end ... > | <text:alphabetical-index-mark ... > | <text:bibliography-mark ... > | <presentation:header ... > | <presentation:footer ... > | <presentation:date-time ... >)* >  +
@@ -13847,6 +18220,10 @@

text:page Element

  + + Child Relations + <text:page text:master-page-name="(<NCName>)?" >  +
@@ -13875,6 +18252,11 @@

text:page-continuation Element   + + Child Relations + <text:page-continuation text:select-page="previous | next" (text:string-value="<string>" )? + TEXT>  +
@@ -13904,6 +18286,14 @@

text:page-count Element

  + + Child Relations + <CHOICE_NAME_CLASS ( (style:num-format="(1 | i | I | <string>)?" | + (style:num-format="a | A" (style:num-letter-sync="<boolean>" )? + ))? + )? + TEXT>  +
@@ -13936,6 +18326,17 @@

text:page-number Element

  + + Child Relations + <text:page-number ( (style:num-format="(1 | i | I | <string>)?" | + (style:num-format="a | A" (style:num-letter-sync="<boolean>" )? + ))? + )? + (text:fixed="<boolean>" )? + (text:page-adjust="<integer>" )? + (text:select-page="previous | current | next" )? + TEXT>  +
@@ -13958,6 +18359,10 @@

text:page-sequence Element

<text:page>*    + + Child Relations + <text:page-sequence (<text:page ... >)+ >  +
@@ -13987,6 +18392,14 @@

text:page-variable-get Element   + + Child Relations + <text:page-variable-get ( (style:num-format="(1 | i | I | <string>)?" | + (style:num-format="a | A" (style:num-letter-sync="<boolean>" )? + ))? + )? + TEXT>  +
@@ -14015,6 +18428,12 @@

text:page-variable-set Element   + + Child Relations + <text:page-variable-set (text:active="<boolean>" )? + (text:page-adjust="<integer>" )? + TEXT>  +
@@ -14044,6 +18463,14 @@

text:paragraph-count Element   + + Child Relations + <CHOICE_NAME_CLASS ( (style:num-format="(1 | i | I | <string>)?" | + (style:num-format="a | A" (style:num-letter-sync="<boolean>" )? + ))? + )? + TEXT>  +
@@ -14072,6 +18499,11 @@

text:placeholder Element

  + + Child Relations + <text:placeholder text:placeholder-type="text | table | text-box | image | object" (text:description="TEXT" )? + TEXT>  +
@@ -14092,7 +18524,7 @@

text:print-date Element

Attributes style:data-style-name  - text:date-value[1]  + text:date-value[2]  text:fixed    @@ -14101,6 +18533,13 @@

text:print-date Element

  + + Child Relations + <text:print-date (text:fixed="<boolean>" )? + (style:data-style-name="(<NCName>)?" )? + (text:date-value="<date>" )? + TEXT>  +
@@ -14122,7 +18561,7 @@

text:print-time Element

style:data-style-name  text:fixed  - text:time-value[1]  + text:time-value[2]    @@ -14130,6 +18569,13 @@

text:print-time Element

  + + Child Relations + <text:print-time (text:fixed="<boolean>" )? + (style:data-style-name="(<NCName>)?" )? + (text:time-value="<time>" )? + TEXT>  +
@@ -14157,6 +18603,11 @@

text:printed-by Element

  + + Child Relations + <text:printed-by (text:fixed="<boolean>" )? + TEXT>  +
@@ -14183,6 +18634,10 @@

text:reference-mark Element

  + + Child Relations + <text:reference-mark text:name="<string>" >  +
@@ -14209,6 +18664,10 @@

text:reference-mark-end Element<   + + Child Relations + <text:reference-mark-end text:name="<string>" >  +
@@ -14235,6 +18694,10 @@

text:reference-mark-start Elem   + + Child Relations + <text:reference-mark-start text:name="<string>" >  +
@@ -14255,7 +18718,7 @@

text:reference-ref Element

Attributes text:ref-name  - text:reference-format[2]  + text:reference-format[1]    @@ -14263,6 +18726,12 @@

text:reference-ref Element

  + + Child Relations + <CHOICE_NAME_CLASS TEXT (text:ref-name="<string>" )? + (text:reference-format="page | chapter | direction | text" )? + >  +
@@ -14291,6 +18760,11 @@

text:ruby Element

<text:ruby-text>    + + Child Relations + <text:ruby (text:style-name="(<NCName>)?" )? + <text:ruby-base ... ><text:ruby-text ... >>  +
@@ -14437,6 +18911,10 @@

text:ruby-base Element

<text:word-count>    + + Child Relations + <text:ruby-base TEXT | <text:s ... > | <text:tab ... > | <text:line-break ... > | <text:span ... > | <text:a ... > | <text:bookmark ... > | <text:bookmark-start ... > | <text:bookmark-end ... > | <text:reference-mark ... > | <text:reference-mark-start ... > | <text:reference-mark-end ... > | <text:note ... > | <text:ruby ... > | <office:annotation ... > | <text:change ... > | <text:change-start ... > | <text:change-end ... > | <draw:rect ... > | <draw:line ... > | <draw:polyline ... > | <draw:polygon ... > | <draw:regular-polygon ... > | <draw:path ... > | <draw:circle ... > | <draw:ellipse ... > | <draw:g ... > | <draw:page-thumbnail ... > | <draw:frame ... > | <draw:measure ... > | <draw:caption ... > | <draw:connector ... > | <draw:control ... > | <dr3d:scene ... > | <draw:custom-shape ... > | <draw:a ... > | <text:date ... > | <text:time ... > | <text:page-number ... > | <text:page-continuation ... > | <text:sender-firstname ... > | <text:sender-lastname ... > | <text:sender-initials ... > | <text:sender-title ... > | <text:sender-position ... > | <text:sender-email ... > | <text:sender-phone-private ... > | <text:sender-fax ... > | <text:sender-company ... > | <text:sender-phone-work ... > | <text:sender-street ... > | <text:sender-city ... > | <text:sender-postal-code ... > | <text:sender-country ... > | <text:sender-state-or-province ... > | <text:author-name ... > | <text:author-initials ... > | <text:chapter ... > | <text:file-name ... > | <text:template-name ... > | <text:sheet-name ... > | <text:variable-set ... > | <text:variable-get ... > | <text:variable-input ... > | <text:user-field-get ... > | <text:user-field-input ... > | <text:sequence ... > | <text:expression ... > | <text:text-input ... > | <text:initial-creator ... > | <text:creation-date ... > | <text:creation-time ... > | <text:description ... > | <text:user-defined ... > | <text:print-time ... > | <text:print-date ... > | <text:printed-by ... > | <text:title ... > | <text:subject ... > | <text:keywords ... > | <text:editing-cycles ... > | <text:editing-duration ... > | <text:modification-time ... > | <text:modification-date ... > | <text:creator ... > | <CHOICE_NAME_CLASS ... > | <text:database-display ... > | <text:database-next ... > | <text:database-row-select ... > | <text:database-row-number ... > | <text:database-name ... > | <text:page-variable-set ... > | <text:page-variable-get ... > | <text:placeholder ... > | <text:conditional-text ... > | <text:hidden-text ... > | <CHOICE_NAME_CLASS ... > | <text:note-ref ... > | <text:sequence-ref ... > | <text:script ... > | <text:execute-macro ... > | <text:hidden-paragraph ... > | <text:dde-connection ... > | <text:measure ... > | <text:table-formula ... > | <text:toc-mark-start ... > | <text:toc-mark-end ... > | <text:toc-mark ... > | <text:user-index-mark-start ... > | <text:user-index-mark-end ... > | <text:user-index-mark ... > | <text:alphabetical-index-mark-start ... > | <text:alphabetical-index-mark-end ... > | <text:alphabetical-index-mark ... > | <text:bibliography-mark ... > | <presentation:header ... > | <presentation:footer ... > | <presentation:date-time ... >>  +
@@ -14460,6 +18938,11 @@

text:ruby-text Element

  + + Child Relations + <text:ruby-text (text:style-name="(<NCName>)?" )? + TEXT>  +
@@ -14486,6 +18969,11 @@

text:s Element

  + + Child Relations + <text:s (text:c="<nonNegativeInteger>" )? + >  +
@@ -14515,6 +19003,13 @@

text:script Element

  + + Child Relations + <text:script + (xlink:href="<anyURI>" (xlink:type="simple" )? + ) | TEXT (script:language="<string>" )? + >  +
@@ -14542,8 +19037,8 @@

text:section Element

Attributes text:condition  - text:display[1]  - text:display[7]  + text:display[2]  + text:display[4]  text:name  text:protected  text:protection-key  @@ -14591,6 +19086,16 @@

text:section Element

<text:user-index>*    + + Child Relations + <text:section (text:style-name="(<NCName>)?" )? + text:name="<string>" (text:protected="<boolean>" )? + (text:protection-key="<string>" )? + (text:display="true | none" | + (text:display="condition" text:condition="<string>" ))? + (<text:section-source ... > | <office:dde-source ... >)? + (<text:h ... > | <text:p ... > | <text:list ... > | <text:numbered-paragraph ... > | <table:table ... > | <draw:a ... > | <text:section ... > | <text:table-of-content ... > | <text:illustration-index ... > | <text:table-index ... > | <text:object-index ... > | <text:user-index ... > | <text:alphabetical-index ... > | <text:bibliography ... > | <draw:rect ... > | <draw:line ... > | <draw:polyline ... > | <draw:polygon ... > | <draw:regular-polygon ... > | <draw:path ... > | <draw:circle ... > | <draw:ellipse ... > | <draw:g ... > | <draw:page-thumbnail ... > | <draw:frame ... > | <draw:measure ... > | <draw:caption ... > | <draw:connector ... > | <draw:control ... > | <dr3d:scene ... > | <draw:custom-shape ... > | <text:change ... > | <text:change-start ... > | <text:change-end ... >)* >  +
@@ -14617,6 +19122,15 @@

text:section-source Element

  + + Child Relations + <text:section-source (xlink:href="<anyURI>" (xlink:type="simple" )? + (xlink:show="embed" )? + )? + (text:section-name="<string>" )? + (text:filter-name="<string>" )? + >  +
@@ -14644,6 +19158,11 @@

text:sender-city Element

  + + Child Relations + <text:sender-city (text:fixed="<boolean>" )? + TEXT>  +
@@ -14671,6 +19190,11 @@

text:sender-company Element

  + + Child Relations + <text:sender-company (text:fixed="<boolean>" )? + TEXT>  +
@@ -14698,6 +19222,11 @@

text:sender-country Element

  + + Child Relations + <text:sender-country (text:fixed="<boolean>" )? + TEXT>  +
@@ -14725,6 +19254,11 @@

text:sender-email Element

  + + Child Relations + <text:sender-email (text:fixed="<boolean>" )? + TEXT>  +
@@ -14752,6 +19286,11 @@

text:sender-fax Element

  + + Child Relations + <text:sender-fax (text:fixed="<boolean>" )? + TEXT>  +
@@ -14779,6 +19318,11 @@

text:sender-firstname Element<   + + Child Relations + <text:sender-firstname (text:fixed="<boolean>" )? + TEXT>  +
@@ -14806,6 +19350,11 @@

text:sender-initials Element   + + Child Relations + <text:sender-initials (text:fixed="<boolean>" )? + TEXT>  +
@@ -14833,6 +19382,11 @@

text:sender-lastname Element   + + Child Relations + <text:sender-lastname (text:fixed="<boolean>" )? + TEXT>  +
@@ -14860,6 +19414,11 @@

text:sender-phone-private Elem   + + Child Relations + <text:sender-phone-private (text:fixed="<boolean>" )? + TEXT>  +
@@ -14887,6 +19446,11 @@

text:sender-phone-work Element   + + Child Relations + <text:sender-phone-work (text:fixed="<boolean>" )? + TEXT>  +
@@ -14914,6 +19478,11 @@

text:sender-position Element   + + Child Relations + <text:sender-position (text:fixed="<boolean>" )? + TEXT>  +
@@ -14941,6 +19510,11 @@

text:sender-postal-code Element<   + + Child Relations + <text:sender-postal-code (text:fixed="<boolean>" )? + TEXT>  +
@@ -14968,6 +19542,11 @@

text:sender-state-or-provi   + + Child Relations + <text:sender-state-or-province (text:fixed="<boolean>" )? + TEXT>  +
@@ -14995,6 +19574,11 @@

text:sender-street Element

  + + Child Relations + <text:sender-street (text:fixed="<boolean>" )? + TEXT>  +
@@ -15022,6 +19606,11 @@

text:sender-title Element

  + + Child Relations + <text:sender-title (text:fixed="<boolean>" )? + TEXT>  +
@@ -15054,6 +19643,16 @@

text:sequence Element

  + + Child Relations + <text:sequence text:name="<string>" (text:formula="<string>" )? + ( (style:num-format="(1 | i | I | <string>)?" | + (style:num-format="a | A" (style:num-letter-sync="<boolean>" )? + ))? + )? + (text:ref-name="<string>" )? + TEXT>  +
@@ -15078,6 +19677,11 @@

text:sequence-decl Element

  + + Child Relations + <text:sequence-decl text:name="<string>" text:display-outline-level="<nonNegativeInteger>" (text:separation-character="string]" )? + >  +
@@ -15108,6 +19712,10 @@

text:sequence-decls Element

<text:sequence-decl>*    + + Child Relations + <text:sequence-decls (<text:sequence-decl ... >)* >  +
@@ -15128,7 +19736,7 @@

text:sequence-ref Element

Attributes text:ref-name  - text:reference-format[1]  + text:reference-format[2]    @@ -15136,6 +19744,12 @@

text:sequence-ref Element

  + + Child Relations + <text:sequence-ref TEXT (text:ref-name="<string>" )? + (text:reference-format="page | chapter | direction | text | category-and-value | caption | value" )? + >  +
@@ -15162,6 +19776,10 @@

text:sheet-name Element

  + + Child Relations + <text:sheet-name TEXT>  +
@@ -15185,6 +19803,12 @@

text:sort-key Element

  + + Child Relations + <text:sort-key + (text:key="address | annote | author | bibliography-type | booktitle | chapter | custom1 | custom2 | custom3 | custom4 | custom5 | edition | editor | howpublished | identifier | institution | isbn | issn | journal | month | note | number | organizations | pages | publisher | report-type | school | series | title | url | volume | year" (text:sort-ascending="<boolean>" )? + )>  +
@@ -15337,6 +19961,14 @@

text:span Element

<text:word-count>*    + + Child Relations + <text:span (text:style-name="(<NCName>)?" )? + (text:class-names=" +START_list(<NCName>)* +END_list" )? + (TEXT | <text:s ... > | <text:tab ... > | <text:line-break ... > | <text:span ... > | <text:a ... > | <text:bookmark ... > | <text:bookmark-start ... > | <text:bookmark-end ... > | <text:reference-mark ... > | <text:reference-mark-start ... > | <text:reference-mark-end ... > | <text:note ... > | <text:ruby ... > | <office:annotation ... > | <text:change ... > | <text:change-start ... > | <text:change-end ... > | <draw:rect ... > | <draw:line ... > | <draw:polyline ... > | <draw:polygon ... > | <draw:regular-polygon ... > | <draw:path ... > | <draw:circle ... > | <draw:ellipse ... > | <draw:g ... > | <draw:page-thumbnail ... > | <draw:frame ... > | <draw:measure ... > | <draw:caption ... > | <draw:connector ... > | <draw:control ... > | <dr3d:scene ... > | <draw:custom-shape ... > | <draw:a ... > | <text:date ... > | <text:time ... > | <text:page-number ... > | <text:page-continuation ... > | <text:sender-firstname ... > | <text:sender-lastname ... > | <text:sender-initials ... > | <text:sender-title ... > | <text:sender-position ... > | <text:sender-email ... > | <text:sender-phone-private ... > | <text:sender-fax ... > | <text:sender-company ... > | <text:sender-phone-work ... > | <text:sender-street ... > | <text:sender-city ... > | <text:sender-postal-code ... > | <text:sender-country ... > | <text:sender-state-or-province ... > | <text:author-name ... > | <text:author-initials ... > | <text:chapter ... > | <text:file-name ... > | <text:template-name ... > | <text:sheet-name ... > | <text:variable-set ... > | <text:variable-get ... > | <text:variable-input ... > | <text:user-field-get ... > | <text:user-field-input ... > | <text:sequence ... > | <text:expression ... > | <text:text-input ... > | <text:initial-creator ... > | <text:creation-date ... > | <text:creation-time ... > | <text:description ... > | <text:user-defined ... > | <text:print-time ... > | <text:print-date ... > | <text:printed-by ... > | <text:title ... > | <text:subject ... > | <text:keywords ... > | <text:editing-cycles ... > | <text:editing-duration ... > | <text:modification-time ... > | <text:modification-date ... > | <text:creator ... > | <CHOICE_NAME_CLASS ... > | <text:database-display ... > | <text:database-next ... > | <text:database-row-select ... > | <text:database-row-number ... > | <text:database-name ... > | <text:page-variable-set ... > | <text:page-variable-get ... > | <text:placeholder ... > | <text:conditional-text ... > | <text:hidden-text ... > | <CHOICE_NAME_CLASS ... > | <text:note-ref ... > | <text:sequence-ref ... > | <text:script ... > | <text:execute-macro ... > | <text:hidden-paragraph ... > | <text:dde-connection ... > | <text:measure ... > | <text:table-formula ... > | <text:toc-mark-start ... > | <text:toc-mark-end ... > | <text:toc-mark ... > | <text:user-index-mark-start ... > | <text:user-index-mark-end ... > | <text:user-index-mark ... > | <text:alphabetical-index-mark-start ... > | <text:alphabetical-index-mark-end ... > | <text:alphabetical-index-mark ... > | <text:bibliography-mark ... > | <presentation:header ... > | <presentation:footer ... > | <presentation:date-time ... >)* >  +
@@ -15364,6 +19996,11 @@

text:subject Element

  + + Child Relations + <text:subject (text:fixed="<boolean>" )? + TEXT>  +
@@ -15390,6 +20027,11 @@

text:tab Element

  + + Child Relations + <text:tab (text:tab-ref="<nonNegativeInteger>" )? + >  +
@@ -15419,6 +20061,14 @@

text:table-count Element

  + + Child Relations + <CHOICE_NAME_CLASS ( (style:num-format="(1 | i | I | <string>)?" | + (style:num-format="a | A" (style:num-letter-sync="<boolean>" )? + ))? + )? + TEXT>  +
@@ -15439,7 +20089,7 @@

text:table-formula Element

Attributes style:data-style-name  - text:display[2]  + text:display[9]  text:formula    @@ -15448,6 +20098,13 @@

text:table-formula Element

  + + Child Relations + <text:table-formula (text:formula="<string>" )? + (text:display="value | formula" )? + (style:data-style-name="(<NCName>)?" )? + TEXT>  +
@@ -15487,6 +20144,13 @@

text:table-index Element

<text:table-index-source>    + + Child Relations + <text:table-index (text:style-name="(<NCName>)?" )? + text:name="<string>" (text:protected="<boolean>" )? + (text:protection-key="<string>" )? + <text:table-index-source ... ><text:index-body ... >>  +
@@ -15513,6 +20177,11 @@

text:table-index-entry-t <text:index-entry-text>*    + + Child Relations + <text:table-index-entry-template + (text:style-name="(<NCName>)?" (<text:index-entry-page-number ... > | <text:index-entry-text ... > | <text:index-entry-span ... > | <text:index-entry-tab-stop ... >)* )>  +
@@ -15541,6 +20210,17 @@

text:table-index-source Element< <text:table-index-entry-template>    + + Child Relations + <text:table-index-source (text:index-scope="document | chapter" )? + (text:relative-tab-stop-position="<boolean>" )? + (text:use-caption="<boolean>" )? + (text:caption-sequence-name="<string>" )? + (text:caption-sequence-format="text | category-and-value | caption" )? + (<text:index-title-template ... >)? + (<text:table-index-entry-template ... >)? + >  +
@@ -15580,6 +20260,13 @@

text:table-of-content Element< <text:table-of-content-source>    + + Child Relations + <text:table-of-content (text:style-name="(<NCName>)?" )? + text:name="<string>" (text:protected="<boolean>" )? + (text:protection-key="<string>" )? + <text:table-of-content-source ... ><text:index-body ... >>  +
@@ -15594,7 +20281,7 @@

text:table-of-conte Attributes - text:outline-level[1]  + text:outline-level[3]  text:style-name    @@ -15610,6 +20297,10 @@

text:table-of-conte <text:index-entry-text>*    + + Child Relations + <text:table-of-content-entry-template text:outline-level="<positiveInteger>" text:style-name="(<NCName>)?" (<text:index-entry-chapter ... > | <text:index-entry-page-number ... > | <text:index-entry-text ... > | <text:index-entry-span ... > | <text:index-entry-tab-stop ... > | <text:index-entry-link-start ... > | <text:index-entry-link-end ... >)* >  +
@@ -15625,7 +20316,7 @@

text:table-of-content-sourc Attributes text:index-scope  - text:outline-level[1]  + text:outline-level[3]  text:relative-tab-stop-position  text:use-index-marks  text:use-index-source-styles  @@ -15640,6 +20331,17 @@

text:table-of-content-sourc <text:table-of-content-entry-template>*    + + Child Relations + <text:table-of-content-source (text:outline-level="<positiveInteger>" )? + (text:use-outline-level="<boolean>" )? + (text:use-index-marks="<boolean>" )? + (text:use-index-source-styles="<boolean>" )? + (text:index-scope="document | chapter" )? + (text:relative-tab-stop-position="<boolean>" )? + (<text:index-title-template ... >)? + (<text:table-of-content-entry-template ... >)* (<text:index-source-styles ... >)* >  +
@@ -15659,7 +20361,7 @@

text:template-name Element

Attributes - text:display[6]  + text:display[8]    @@ -15667,6 +20369,11 @@

text:template-name Element

  + + Child Relations + <text:template-name (text:display="full | path | name | name-and-extension | area | title" )? + TEXT>  +
@@ -15694,6 +20401,11 @@

text:text-input Element

  + + Child Relations + <text:text-input (text:description="TEXT" )? + TEXT>  +
@@ -15716,7 +20428,7 @@

text:time Element

style:data-style-name  text:fixed  text:time-adjust  - text:time-value[2]  + text:time-value[1]    @@ -15724,6 +20436,14 @@

text:time Element

  + + Child Relations + <text:time (text:fixed="<boolean>" )? + (style:data-style-name="(<NCName>)?" )? + (text:time-value="<time> | <dateTime>" )? + (text:time-adjust="<duration>" )? + TEXT>  +
@@ -15751,6 +20471,11 @@

text:title Element

  + + Child Relations + <text:title (text:fixed="<boolean>" )? + TEXT>  +
@@ -15769,7 +20494,7 @@

text:toc-mark Element

Attributes - text:outline-level[1]  + text:outline-level[3]  text:string-value    @@ -15778,6 +20503,11 @@

text:toc-mark Element

  + + Child Relations + <text:toc-mark text:string-value="<string>" (text:outline-level="<positiveInteger>" )? + >  +
@@ -15804,6 +20534,10 @@

text:toc-mark-end Element

  + + Child Relations + <text:toc-mark-end text:id="<string>" >  +
@@ -15823,7 +20557,7 @@

text:toc-mark-start Element

Attributes text:id[1]  - text:outline-level[1]  + text:outline-level[3]    @@ -15831,6 +20565,12 @@

text:toc-mark-start Element

  + + Child Relations + <text:toc-mark-start + (text:id="<string>" (text:outline-level="<positiveInteger>" )? + )>  +
@@ -15854,6 +20594,11 @@

text:tracked-changes Element<text:changed-region>*    + + Child Relations + <text:tracked-changes (text:track-changes="<boolean>" )? + (<text:changed-region ... >)* >  +
@@ -15888,6 +20633,17 @@

text:user-defined Element

  + + Child Relations + <text:user-defined (text:fixed="<boolean>" )? + text:name="<string>" (style:data-style-name="(<NCName>)?" )? + (office:value="<double>" )? + (office:date-value="<date> | <dateTime>" )? + (office:time-value="<duration>" )? + (office:boolean-value="<boolean>" )? + (office:string-value="<string>" )? + TEXT>  +
@@ -15908,13 +20664,13 @@

text:user-field-decl Elementoffice:string-value  office:time-value  office:value  + office:value-type[1]  office:value-type[2]  office:value-type[3]  office:value-type[4]  office:value-type[5]  office:value-type[6]  office:value-type[7]  - office:value-type[8]  text:formula  text:name    @@ -15924,6 +20680,21 @@

text:user-field-decl Element   + + Child Relations + <text:user-field-decl text:name="<string>" ( (text:formula="<string>" )? + )? + + (office:value-type="float" office:value="<double>" ) | + (office:value-type="percentage" office:value="<double>" ) | + (office:value-type="currency" office:value="<double>" (office:currency="<string>" )? + ) | + (office:value-type="date" office:date-value="<date> | <dateTime>" ) | + (office:value-type="time" office:time-value="<duration>" ) | + (office:value-type="boolean" office:boolean-value="<boolean>" ) | + (office:value-type="string" (office:string-value="<string>" )? + )>  +
@@ -15954,6 +20725,10 @@

text:user-field-decls Element< <text:user-field-decl>*    + + Child Relations + <text:user-field-decls (<text:user-field-decl ... >)* >  +
@@ -15974,7 +20749,7 @@

text:user-field-get Element

Attributes style:data-style-name  - text:display[4]  + text:display[3]  text:name    @@ -15983,6 +20758,12 @@

text:user-field-get Element

  + + Child Relations + <text:user-field-get text:name="<string>" (text:display="value | formula | none" )? + (style:data-style-name="(<NCName>)?" )? + TEXT>  +
@@ -16012,6 +20793,12 @@

text:user-field-input Element<   + + Child Relations + <text:user-field-input text:name="<string>" (text:description="TEXT" )? + (style:data-style-name="(<NCName>)?" )? + TEXT>  +
@@ -16051,6 +20838,13 @@

text:user-index Element

<text:user-index-source>    + + Child Relations + <text:user-index (text:style-name="(<NCName>)?" )? + text:name="<string>" (text:protected="<boolean>" )? + (text:protection-key="<string>" )? + <text:user-index-source ... ><text:index-body ... >>  +
@@ -16065,7 +20859,7 @@

text:user-index-entry-tem Attributes - text:outline-level[1]  + text:outline-level[3]  text:style-name    @@ -16079,6 +20873,10 @@

text:user-index-entry-tem <text:index-entry-text>*    + + Child Relations + <text:user-index-entry-template text:outline-level="<positiveInteger>" text:style-name="(<NCName>)?" (<text:index-entry-chapter ... > | <text:index-entry-page-number ... > | <text:index-entry-text ... > | <text:index-entry-span ... > | <text:index-entry-tab-stop ... >)* >  +
@@ -16098,7 +20896,7 @@

text:user-index-mark ElementAttributes text:index-name  - text:outline-level[1]  + text:outline-level[3]  text:string-value    @@ -16107,6 +20905,11 @@

text:user-index-mark Element   + + Child Relations + <text:user-index-mark text:string-value="<string>" (text:outline-level="<positiveInteger>" )? + text:index-name="<string>" >  +
@@ -16126,7 +20929,7 @@

text:user-index-mark-end Elemen Attributes text:id[1]  - text:outline-level[1]  + text:outline-level[3]    @@ -16134,6 +20937,11 @@

text:user-index-mark-end Elemen   + + Child Relations + <text:user-index-mark-end text:id="<string>" (text:outline-level="<positiveInteger>" )? + >  +
@@ -16154,7 +20962,7 @@

text:user-index-mark-start El text:id[1]  text:index-name  - text:outline-level[1]  + text:outline-level[3]    @@ -16162,6 +20970,11 @@

text:user-index-mark-start El   + + Child Relations + <text:user-index-mark-start text:id="<string>" (text:outline-level="<positiveInteger>" )? + text:index-name="<string>" >  +
@@ -16195,6 +21008,21 @@

text:user-index-source Element<text:user-index-entry-template>*    + + Child Relations + <text:user-index-source + ( (text:index-scope="document | chapter" )? + (text:relative-tab-stop-position="<boolean>" )? + text:index-name="<string>" ) + ( (text:use-index-marks="<boolean>" )? + (text:use-graphics="<boolean>" )? + (text:use-tables="<boolean>" )? + (text:use-floating-frames="<boolean>" )? + (text:use-objects="<boolean>" )? + ) (text:copy-outline-levels="<boolean>" )? + (<text:index-title-template ... >)? + (<text:user-index-entry-template ... >)* (<text:index-source-styles ... >)* >  +
@@ -16218,6 +21046,10 @@

text:variable-decl Element

  + + Child Relations + <text:variable-decl text:name="<string>" office:value-type="float | time | date | percentage | currency | boolean | string" >  +
@@ -16248,6 +21080,10 @@

text:variable-decls Element

<text:variable-decl>*    + + Child Relations + <text:variable-decls (<text:variable-decl ... >)* >  +
@@ -16268,7 +21104,7 @@

text:variable-get Element

Attributes style:data-style-name  - text:display[2]  + text:display[9]  text:name    @@ -16277,6 +21113,12 @@

text:variable-get Element

  + + Child Relations + <text:variable-get text:name="<string>" (text:display="value | formula" )? + (style:data-style-name="(<NCName>)?" )? + TEXT>  +
@@ -16299,7 +21141,7 @@

text:variable-input Element

office:value-type[9]  style:data-style-name  text:description  - text:display[3]  + text:display[5]  text:name    @@ -16308,6 +21150,13 @@

text:variable-input Element

  + + Child Relations + <text:variable-input text:name="<string>" (text:description="TEXT" )? + office:value-type="float | time | date | percentage | currency | boolean | string" (text:display="value | none" )? + (style:data-style-name="(<NCName>)?" )? + TEXT>  +
@@ -16333,15 +21182,15 @@

text:variable-set Element

office:string-value  office:time-value  office:value  + office:value-type[1]  office:value-type[2]  office:value-type[3]  office:value-type[4]  office:value-type[5]  office:value-type[6]  office:value-type[7]  - office:value-type[8]  style:data-style-name  - text:display[3]  + text:display[5]  text:formula  text:name    @@ -16351,6 +21200,22 @@

text:variable-set Element

  + + Child Relations + <text:variable-set text:name="<string>" (text:formula="<string>" )? + + (office:value-type="float" office:value="<double>" ) | + (office:value-type="percentage" office:value="<double>" ) | + (office:value-type="currency" office:value="<double>" (office:currency="<string>" )? + ) | + (office:value-type="date" office:date-value="<date> | <dateTime>" ) | + (office:value-type="time" office:time-value="<duration>" ) | + (office:value-type="boolean" office:boolean-value="<boolean>" ) | + (office:value-type="string" (office:string-value="<string>" )? + ) (text:display="value | none" )? + (style:data-style-name="(<NCName>)?" )? + TEXT>  +
@@ -16380,6 +21245,14 @@

text:word-count Element

  + + Child Relations + <CHOICE_NAME_CLASS ( (style:num-format="(1 | i | I | <string>)?" | + (style:num-format="a | A" (style:num-letter-sync="<boolean>" )? + ))? + )? + TEXT>  +
@@ -16403,6 +21276,11 @@

xforms:model Element

[any org.w3c.dom.Element]    + + Child Relations + <xforms:model + ((*:*="TEXT" )* (<*:* ... >)* )>  +

anim:audio-level Attribute

@@ -16416,7 +21294,7 @@

anim:audio-level Attribute

Datatypes - double  + double    @@ -16424,6 +21302,10 @@

anim:audio-level Attribute

  + + RNG Relations + anim:audio-level="<double>"   +

anim:color-interpolation Attribute

@@ -16442,10 +21324,14 @@

anim:color-interpolation Attr Values - "hsl"  - "rgb"  + "hsl"  + "rgb"    + + RNG Relations + anim:color-interpolation="rgb | hsl"   +

anim:color-interpolation-direction Attribute

@@ -16464,10 +21350,14 @@

anim:color-interpol Values - "clockwise"  - "counter-clockwise"  + "clockwise"  + "counter-clockwise"    + + RNG Relations + anim:color-interpolation-direction="clockwise | counter-clockwise"   +

anim:command Attribute

@@ -16481,7 +21371,7 @@

anim:command Attribute

Datatypes - string  + string    @@ -16489,6 +21379,10 @@

anim:command Attribute

  + + RNG Relations + anim:command="<string>"   +

anim:formula Attribute

@@ -16506,7 +21400,7 @@

anim:formula Attribute

Datatypes - string  + string    @@ -16514,6 +21408,10 @@

anim:formula Attribute

  + + RNG Relations + anim:formula="<string>"   +

anim:id Attribute

@@ -16531,7 +21429,7 @@

anim:id Attribute

Datatypes - ID  + ID    @@ -16539,6 +21437,10 @@

anim:id Attribute

  + + RNG Relations + anim:id="<ID>"   +

anim:iterate-interval Attribute

@@ -16552,7 +21454,7 @@

anim:iterate-interval Attribute< Datatypes - duration  + duration    @@ -16560,6 +21462,10 @@

anim:iterate-interval Attribute<   + + RNG Relations + anim:iterate-interval="<duration>"   +

anim:iterate-type Attribute

@@ -16573,7 +21479,7 @@

anim:iterate-type Attribute

Datatypes - string  + string    @@ -16581,6 +21487,10 @@

anim:iterate-type Attribute

  + + RNG Relations + anim:iterate-type="<string>"   +

anim:name Attribute

@@ -16601,6 +21511,10 @@

anim:name Attribute

  + + RNG Relations + anim:name="TEXT"   +

anim:sub-item Attribute

@@ -16620,7 +21534,7 @@

anim:sub-item Attribute

Datatypes - string  + string    @@ -16628,6 +21542,10 @@

anim:sub-item Attribute

  + + RNG Relations + anim:sub-item="<string>"   +

anim:value Attribute

@@ -16648,6 +21566,10 @@

anim:value Attribute

  + + RNG Relations + anim:value="TEXT"   +

chart:attached-axis Attribute

@@ -16661,7 +21583,7 @@

chart:attached-axis Attribute< Datatypes - string  + string    @@ -16669,6 +21591,10 @@

chart:attached-axis Attribute<   + + RNG Relations + chart:attached-axis="<string>"   +

chart:class[1] Attribute

@@ -16684,7 +21610,7 @@

chart:class[1] Attribute

Datatypes - string  + string    @@ -16692,6 +21618,10 @@

chart:class[1] Attribute

  + + RNG Relations + chart:class="string]"   +

chart:class[2] Attribute

@@ -16711,10 +21641,14 @@

chart:class[2] Attribute

Values - "major"  - "minor"  + "major"  + "minor"    + + RNG Relations + chart:class="major | minor"   +

chart:column-mapping Attribute

@@ -16728,7 +21662,7 @@

chart:column-mapping Attribute Datatypes - string  + string    @@ -16736,6 +21670,10 @@

chart:column-mapping Attribute   + + RNG Relations + chart:column-mapping="<string>"   +

chart:data-source-has-labels Attribute

@@ -16754,12 +21692,16 @@

chart:data-source-has-lab Values - "both"  - "column"  - "none"  - "row"  + "both"  + "column"  + "none"  + "row"    + + RNG Relations + chart:data-source-has-labels="none | row | column | both"   +

chart:dimension Attribute

@@ -16778,11 +21720,15 @@

chart:dimension Attribute

Values - "x"  - "y"  - "z"  + "x"  + "y"  + "z"    + + RNG Relations + chart:dimension="x | y | z"   +

chart:label-cell-address Attribute

@@ -16796,7 +21742,7 @@

chart:label-cell-address Attr Datatypes - string  + string    @@ -16804,6 +21750,10 @@

chart:label-cell-address Attr   + + RNG Relations + chart:label-cell-address="string]"   +

chart:legend-align Attribute

@@ -16822,11 +21772,15 @@

chart:legend-align Attribute Values - "center"  - "end"  - "start"  + "center"  + "end"  + "start"    + + RNG Relations + chart:legend-align="start | center | end"   +

chart:legend-position[1] Attribute

@@ -16846,12 +21800,16 @@

chart:legend-position[1] Attribu Values - "bottom"  - "end"  - "start"  - "top"  + "bottom"  + "end"  + "start"  + "top"    + + RNG Relations + chart:legend-position="start | end | top | bottom"   +

chart:legend-position[2] Attribute

@@ -16871,12 +21829,16 @@

chart:legend-position[2] Attribu Values - "bottom-end"  - "bottom-start"  - "top-end"  - "top-start"  + "bottom-end"  + "bottom-start"  + "top-end"  + "top-start"    + + RNG Relations + chart:legend-position="top-start | bottom-start | top-end | bottom-end"   +

chart:name Attribute

@@ -16890,7 +21852,7 @@

chart:name Attribute

Datatypes - string  + string    @@ -16898,6 +21860,10 @@

chart:name Attribute

  + + RNG Relations + chart:name="<string>"   +

chart:repeated Attribute

@@ -16911,7 +21877,7 @@

chart:repeated Attribute

Datatypes - nonNegativeInteger  + nonNegativeInteger    @@ -16919,6 +21885,10 @@

chart:repeated Attribute

  + + RNG Relations + chart:repeated="<nonNegativeInteger>"   +

chart:row-mapping Attribute

@@ -16932,7 +21902,7 @@

chart:row-mapping Attribute

Datatypes - string  + string    @@ -16940,6 +21910,10 @@

chart:row-mapping Attribute

  + + RNG Relations + chart:row-mapping="<string>"   +

chart:style-name Attribute

@@ -16970,7 +21944,7 @@

chart:style-name Attribute

Datatypes - NCName  + NCName    @@ -16978,6 +21952,10 @@

chart:style-name Attribute

  + + RNG Relations + chart:style-name="(<NCName>)?"   +

chart:values-cell-range-address Attribute

@@ -16991,7 +21969,7 @@

chart:values-cell-rang Datatypes - string  + string    @@ -16999,6 +21977,10 @@

chart:values-cell-rang   + + RNG Relations + chart:values-cell-range-address="string]"   +

config:name Attribute

@@ -17016,7 +21998,7 @@

config:name Attribute

Datatypes - string  + string    @@ -17024,6 +22006,10 @@

config:name Attribute

  + + RNG Relations + config:name="<string>"   +

config:type Attribute

@@ -17042,16 +22028,20 @@

config:type Attribute

Values - "base64Binary"  - "boolean"  - "datetime"  - "double"  - "int"  - "long"  - "short"  - "string"  + "base64Binary"  + "boolean"  + "datetime"  + "double"  + "int"  + "long"  + "short"  + "string"    + + RNG Relations + config:type="boolean | short | int | long | double | string | datetime | base64Binary"   +

dr3d:ambient-color Attribute

@@ -17066,7 +22056,7 @@

dr3d:ambient-color Attribute Datatypes - string  + string    @@ -17074,6 +22064,10 @@

dr3d:ambient-color Attribute   + + RNG Relations + dr3d:ambient-color="string]"   +

dr3d:center Attribute

@@ -17087,7 +22081,7 @@

dr3d:center Attribute

Datatypes - string  + string    @@ -17095,6 +22089,10 @@

dr3d:center Attribute

  + + RNG Relations + dr3d:center="string]"   +

dr3d:diffuse-color Attribute

@@ -17108,7 +22106,7 @@

dr3d:diffuse-color Attribute Datatypes - string  + string    @@ -17116,6 +22114,10 @@

dr3d:diffuse-color Attribute   + + RNG Relations + dr3d:diffuse-color="string]"   +

dr3d:direction Attribute

@@ -17129,7 +22131,7 @@

dr3d:direction Attribute

Datatypes - string  + string    @@ -17137,6 +22139,10 @@

dr3d:direction Attribute

  + + RNG Relations + dr3d:direction="string]"   +

dr3d:distance Attribute

@@ -17151,7 +22157,7 @@

dr3d:distance Attribute

Datatypes - string  + string    @@ -17159,6 +22165,10 @@

dr3d:distance Attribute

  + + RNG Relations + dr3d:distance="string]"   +

dr3d:enabled Attribute

@@ -17177,10 +22187,14 @@

dr3d:enabled Attribute

Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + dr3d:enabled="<boolean>"   +

dr3d:focal-length Attribute

@@ -17195,7 +22209,7 @@

dr3d:focal-length Attribute

Datatypes - string  + string    @@ -17203,6 +22217,10 @@

dr3d:focal-length Attribute

  + + RNG Relations + dr3d:focal-length="string]"   +

dr3d:lighting-mode Attribute

@@ -17222,10 +22240,14 @@

dr3d:lighting-mode Attribute Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + dr3d:lighting-mode="<boolean>"   +

dr3d:max-edge Attribute

@@ -17239,7 +22261,7 @@

dr3d:max-edge Attribute

Datatypes - string  + string    @@ -17247,6 +22269,10 @@

dr3d:max-edge Attribute

  + + RNG Relations + dr3d:max-edge="string]"   +

dr3d:min-edge Attribute

@@ -17260,7 +22286,7 @@

dr3d:min-edge Attribute

Datatypes - string  + string    @@ -17268,6 +22294,10 @@

dr3d:min-edge Attribute

  + + RNG Relations + dr3d:min-edge="string]"   +

dr3d:projection Attribute

@@ -17288,10 +22318,14 @@

dr3d:projection Attribute

Values - "parallel"  - "perspective"  + "parallel"  + "perspective"    + + RNG Relations + dr3d:projection="parallel | perspective"   +

dr3d:shade-mode Attribute

@@ -17312,12 +22346,16 @@

dr3d:shade-mode Attribute

Values - "draft"  - "flat"  - "gouraud"  - "phong"  + "draft"  + "flat"  + "gouraud"  + "phong"    + + RNG Relations + dr3d:shade-mode="flat | phong | gouraud | draft"   +

dr3d:shadow-slant Attribute

@@ -17332,7 +22370,7 @@

dr3d:shadow-slant Attribute

Datatypes - nonNegativeInteger  + nonNegativeInteger    @@ -17340,6 +22378,10 @@

dr3d:shadow-slant Attribute

  + + RNG Relations + dr3d:shadow-slant="<nonNegativeInteger>"   +

dr3d:size Attribute

@@ -17353,7 +22395,7 @@

dr3d:size Attribute

Datatypes - string  + string    @@ -17361,6 +22403,10 @@

dr3d:size Attribute

  + + RNG Relations + dr3d:size="string]"   +

dr3d:specular Attribute

@@ -17379,10 +22425,14 @@

dr3d:specular Attribute

Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + dr3d:specular="<boolean>"   +

dr3d:transform Attribute

@@ -17408,6 +22458,10 @@

dr3d:transform Attribute

  + + RNG Relations + dr3d:transform="TEXT"   +

dr3d:vpn Attribute

@@ -17422,7 +22476,7 @@

dr3d:vpn Attribute

Datatypes - string  + string    @@ -17430,6 +22484,10 @@

dr3d:vpn Attribute

  + + RNG Relations + dr3d:vpn="string]"   +

dr3d:vrp Attribute

@@ -17444,7 +22502,7 @@

dr3d:vrp Attribute

Datatypes - string  + string    @@ -17452,6 +22510,10 @@

dr3d:vrp Attribute

  + + RNG Relations + dr3d:vrp="string]"   +

dr3d:vup Attribute

@@ -17466,7 +22528,7 @@

dr3d:vup Attribute

Datatypes - string  + string    @@ -17474,6 +22536,10 @@

dr3d:vup Attribute

  + + RNG Relations + dr3d:vup="string]"   +

draw:align Attribute

@@ -17492,16 +22558,20 @@

draw:align Attribute

Values - "bottom-left"  - "bottom-right"  - "center"  - "left"  - "right"  - "top"  - "top-left"  - "top-right"  + "bottom-left"  + "bottom-right"  + "center"  + "left"  + "right"  + "top"  + "top-left"  + "top-right"    + + RNG Relations + draw:align="top-left | top | top-right | left | center | right | bottom-left | bottom-right"   +

draw:angle Attribute

@@ -17516,7 +22586,7 @@

draw:angle Attribute

Datatypes - integer  + integer    @@ -17524,6 +22594,10 @@

draw:angle Attribute

  + + RNG Relations + draw:angle="<integer>"   +

draw:archive Attribute

@@ -17544,6 +22618,10 @@

draw:archive Attribute

  + + RNG Relations + draw:archive="TEXT"   +

draw:border Attribute

@@ -17558,7 +22636,7 @@

draw:border Attribute

Datatypes - string  + string    @@ -17566,6 +22644,10 @@

draw:border Attribute

  + + RNG Relations + draw:border="string]"   +

draw:caption-point-x Attribute

@@ -17580,7 +22662,7 @@

draw:caption-point-x Attribute Datatypes - string  + string    @@ -17588,6 +22670,10 @@

draw:caption-point-x Attribute   + + RNG Relations + draw:caption-point-x="string]"   +

draw:caption-point-y Attribute

@@ -17602,7 +22688,7 @@

draw:caption-point-y Attribute Datatypes - string  + string    @@ -17610,6 +22696,10 @@

draw:caption-point-y Attribute   + + RNG Relations + draw:caption-point-y="string]"   +

draw:chain-next-name Attribute

@@ -17623,7 +22713,7 @@

draw:chain-next-name Attribute Datatypes - string  + string    @@ -17631,6 +22721,10 @@

draw:chain-next-name Attribute   + + RNG Relations + draw:chain-next-name="<string>"   +

draw:class-id Attribute

@@ -17651,6 +22745,10 @@

draw:class-id Attribute

  + + RNG Relations + draw:class-id="TEXT"   +

draw:class-names Attribute

@@ -17685,7 +22783,7 @@

draw:class-names Attribute

Datatypes - NCName  + NCName    @@ -17693,6 +22791,12 @@

draw:class-names Attribute

  + + RNG Relations + draw:class-names=" +START_list(<NCName>)* +END_list"   +

draw:code Attribute

@@ -17713,6 +22817,10 @@

draw:code Attribute

  + + RNG Relations + draw:code="TEXT"   +

draw:color Attribute

@@ -17727,7 +22835,7 @@

draw:color Attribute

Datatypes - string  + string    @@ -17735,6 +22843,10 @@

draw:color Attribute

  + + RNG Relations + draw:color="string]"   +

draw:concave[1] Attribute

@@ -17754,9 +22866,13 @@

draw:concave[1] Attribute

Values - "false"  + "true"    + + RNG Relations + draw:concave="true"   +

draw:concave[2] Attribute

@@ -17776,9 +22892,13 @@

draw:concave[2] Attribute

Values - "true"  + "false"    + + RNG Relations + draw:concave="false"   +

draw:concentric-gradient-fill-allowed Attribute

@@ -17797,10 +22917,14 @@

draw:concentric- Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + draw:concentric-gradient-fill-allowed="<boolean>"   +

draw:control Attribute

@@ -17814,7 +22938,7 @@

draw:control Attribute

Datatypes - IDREF  + IDREF    @@ -17822,6 +22946,10 @@

draw:control Attribute

  + + RNG Relations + draw:control="<IDREF>"   +

draw:copy-of Attribute

@@ -17835,7 +22963,7 @@

draw:copy-of Attribute

Datatypes - string  + string    @@ -17843,6 +22971,10 @@

draw:copy-of Attribute

  + + RNG Relations + draw:copy-of="<string>"   +

draw:corner-radius Attribute

@@ -17859,7 +22991,7 @@

draw:corner-radius Attribute Datatypes - string  + string    @@ -17867,6 +22999,10 @@

draw:corner-radius Attribute   + + RNG Relations + draw:corner-radius="string]"   +

draw:corners Attribute

@@ -17880,7 +23016,7 @@

draw:corners Attribute

Datatypes - positiveInteger  + positiveInteger    @@ -17888,6 +23024,10 @@

draw:corners Attribute

  + + RNG Relations + draw:corners="<positiveInteger>"   +

draw:cx Attribute

@@ -17902,7 +23042,7 @@

draw:cx Attribute

Datatypes - string  + string    @@ -17910,6 +23050,10 @@

draw:cx Attribute

  + + RNG Relations + draw:cx="string]"   +

draw:cy Attribute

@@ -17924,7 +23068,7 @@

draw:cy Attribute

Datatypes - string  + string    @@ -17932,6 +23076,10 @@

draw:cy Attribute

  + + RNG Relations + draw:cy="string]"   +

draw:data Attribute

@@ -17945,7 +23093,7 @@

draw:data Attribute

Datatypes - string  + string    @@ -17953,6 +23101,10 @@

draw:data Attribute

  + + RNG Relations + draw:data="<string>"   +

draw:display Attribute

@@ -17971,12 +23123,16 @@

draw:display Attribute

Values - "always"  - "none"  - "printer"  - "screen"  + "always"  + "none"  + "printer"  + "screen"    + + RNG Relations + draw:display="always | screen | printer | none"   +

draw:display-name Attribute

@@ -17997,7 +23153,7 @@

draw:display-name Attribute

Datatypes - string  + string    @@ -18005,6 +23161,10 @@

draw:display-name Attribute

  + + RNG Relations + draw:display-name="<string>"   +

draw:distance Attribute

@@ -18019,7 +23179,7 @@

draw:distance Attribute

Datatypes - string  + string    @@ -18027,6 +23187,10 @@

draw:distance Attribute

  + + RNG Relations + draw:distance="string]"   +

draw:dots1 Attribute

@@ -18040,7 +23204,7 @@

draw:dots1 Attribute

Datatypes - integer  + integer    @@ -18048,6 +23212,10 @@

draw:dots1 Attribute

  + + RNG Relations + draw:dots1="<integer>"   +

draw:dots1-length Attribute

@@ -18061,7 +23229,7 @@

draw:dots1-length Attribute

Datatypes - string  + string    @@ -18069,6 +23237,10 @@

draw:dots1-length Attribute

  + + RNG Relations + draw:dots1-length="string]"   +

draw:dots2 Attribute

@@ -18082,7 +23254,7 @@

draw:dots2 Attribute

Datatypes - integer  + integer    @@ -18090,6 +23262,10 @@

draw:dots2 Attribute

  + + RNG Relations + draw:dots2="<integer>"   +

draw:dots2-length Attribute

@@ -18103,7 +23279,7 @@

draw:dots2-length Attribute

Datatypes - string  + string    @@ -18111,6 +23287,10 @@

draw:dots2-length Attribute

  + + RNG Relations + draw:dots2-length="string]"   +

draw:end Attribute

@@ -18124,7 +23304,7 @@

draw:end Attribute

Datatypes - string  + string    @@ -18132,6 +23312,10 @@

draw:end Attribute

  + + RNG Relations + draw:end="string]"   +

draw:end-angle Attribute

@@ -18146,7 +23330,7 @@

draw:end-angle Attribute

Datatypes - double  + double    @@ -18154,6 +23338,10 @@

draw:end-angle Attribute

  + + RNG Relations + draw:end-angle="<double>"   +

draw:end-color Attribute

@@ -18167,7 +23355,7 @@

draw:end-color Attribute

Datatypes - string  + string    @@ -18175,6 +23363,10 @@

draw:end-color Attribute

  + + RNG Relations + draw:end-color="string]"   +

draw:end-glue-point Attribute

@@ -18188,7 +23380,7 @@

draw:end-glue-point Attribute< Datatypes - nonNegativeInteger  + nonNegativeInteger    @@ -18196,6 +23388,10 @@

draw:end-glue-point Attribute<   + + RNG Relations + draw:end-glue-point="<nonNegativeInteger>"   +

draw:end-intensity Attribute

@@ -18209,7 +23405,7 @@

draw:end-intensity Attribute Datatypes - string  + string    @@ -18217,6 +23413,10 @@

draw:end-intensity Attribute   + + RNG Relations + draw:end-intensity="string]"   +

draw:end-shape Attribute

@@ -18230,7 +23430,7 @@

draw:end-shape Attribute

Datatypes - IDREF  + IDREF    @@ -18238,6 +23438,10 @@

draw:end-shape Attribute

  + + RNG Relations + draw:end-shape="<IDREF>"   +

draw:engine Attribute

@@ -18251,7 +23455,7 @@

draw:engine Attribute

Datatypes - string  + string    @@ -18259,6 +23463,10 @@

draw:engine Attribute

  + + RNG Relations + draw:engine="string]"   +

draw:enhanced-path Attribute

@@ -18272,7 +23480,7 @@

draw:enhanced-path Attribute Datatypes - string  + string    @@ -18280,6 +23488,10 @@

draw:enhanced-path Attribute   + + RNG Relations + draw:enhanced-path="<string>"   +

draw:extrusion Attribute

@@ -18298,10 +23510,14 @@

draw:extrusion Attribute

Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + draw:extrusion="<boolean>"   +

draw:extrusion-allowed Attribute

@@ -18320,10 +23536,14 @@

draw:extrusion-allowed Attribut Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + draw:extrusion-allowed="<boolean>"   +

draw:extrusion-brightness Attribute

@@ -18337,7 +23557,7 @@

draw:extrusion-brightness At Datatypes - string  + string    @@ -18345,6 +23565,10 @@

draw:extrusion-brightness At   + + RNG Relations + draw:extrusion-brightness="string]"   +

draw:extrusion-color Attribute

@@ -18363,10 +23587,14 @@

draw:extrusion-color Attribute Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + draw:extrusion-color="<boolean>"   +

draw:extrusion-depth Attribute

@@ -18380,8 +23608,8 @@

draw:extrusion-depth Attribute Datatypes - double  - string  + double  + string    @@ -18389,6 +23617,12 @@

draw:extrusion-depth Attribute   + + RNG Relations + draw:extrusion-depth=" +START_liststring]<double> +END_list"   +

draw:extrusion-diffusion Attribute

@@ -18402,7 +23636,7 @@

draw:extrusion-diffusion Attr Datatypes - string  + string    @@ -18410,6 +23644,10 @@

draw:extrusion-diffusion Attr   + + RNG Relations + draw:extrusion-diffusion="string]"   +

draw:extrusion-first-light-direction Attribute

@@ -18423,7 +23661,7 @@

draw:extrusion-fi Datatypes - string  + string    @@ -18431,6 +23669,10 @@

draw:extrusion-fi   + + RNG Relations + draw:extrusion-first-light-direction="string]"   +

draw:extrusion-first-light-harsh Attribute

@@ -18449,10 +23691,14 @@

draw:extrusion-first- Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + draw:extrusion-first-light-harsh="<boolean>"   +

draw:extrusion-first-light-level Attribute

@@ -18466,7 +23712,7 @@

draw:extrusion-first- Datatypes - string  + string    @@ -18474,6 +23720,10 @@

draw:extrusion-first-   + + RNG Relations + draw:extrusion-first-light-level="string]"   +

draw:extrusion-light-face Attribute

@@ -18492,10 +23742,14 @@

draw:extrusion-light-face At Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + draw:extrusion-light-face="<boolean>"   +

draw:extrusion-metal Attribute

@@ -18514,10 +23768,14 @@

draw:extrusion-metal Attribute Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + draw:extrusion-metal="<boolean>"   +

draw:extrusion-number-of-line-segments Attribute

@@ -18531,7 +23789,7 @@

draw:extrusion- Datatypes - integer  + integer    @@ -18539,6 +23797,10 @@

draw:extrusion-   + + RNG Relations + draw:extrusion-number-of-line-segments="<integer>"   +

draw:extrusion-origin Attribute

@@ -18552,7 +23814,7 @@

draw:extrusion-origin Attribute< Datatypes - double  + double    @@ -18560,6 +23822,12 @@

draw:extrusion-origin Attribute<   + + RNG Relations + draw:extrusion-origin=" +START_list<double><double> +END_list"   +

draw:extrusion-rotation-angle Attribute

@@ -18573,7 +23841,7 @@

draw:extrusion-rotation- Datatypes - double  + double    @@ -18581,6 +23849,12 @@

draw:extrusion-rotation-   + + RNG Relations + draw:extrusion-rotation-angle=" +START_list<double><double> +END_list"   +

draw:extrusion-rotation-center Attribute

@@ -18594,7 +23868,7 @@

draw:extrusion-rotation Datatypes - string  + string    @@ -18602,6 +23876,10 @@

draw:extrusion-rotation   + + RNG Relations + draw:extrusion-rotation-center="string]"   +

draw:extrusion-second-light-direction Attribute

@@ -18615,7 +23893,7 @@

draw:extrusion-s Datatypes - string  + string    @@ -18623,6 +23901,10 @@

draw:extrusion-s   + + RNG Relations + draw:extrusion-second-light-direction="string]"   +

draw:extrusion-second-light-harsh Attribute

@@ -18641,10 +23923,14 @@

draw:extrusion-secon Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + draw:extrusion-second-light-harsh="<boolean>"   +

draw:extrusion-second-light-level Attribute

@@ -18658,7 +23944,7 @@

draw:extrusion-secon Datatypes - string  + string    @@ -18666,6 +23952,10 @@

draw:extrusion-secon   + + RNG Relations + draw:extrusion-second-light-level="string]"   +

draw:extrusion-shininess Attribute

@@ -18679,7 +23969,7 @@

draw:extrusion-shininess Attr Datatypes - string  + string    @@ -18687,6 +23977,10 @@

draw:extrusion-shininess Attr   + + RNG Relations + draw:extrusion-shininess="string]"   +

draw:extrusion-skew Attribute

@@ -18700,7 +23994,7 @@

draw:extrusion-skew Attribute< Datatypes - double  + double    @@ -18708,6 +24002,12 @@

draw:extrusion-skew Attribute<   + + RNG Relations + draw:extrusion-skew=" +START_list<double><double> +END_list"   +

draw:extrusion-specularity Attribute

@@ -18721,7 +24021,7 @@

draw:extrusion-specularity Datatypes - string  + string    @@ -18729,6 +24029,10 @@

draw:extrusion-specularity   + + RNG Relations + draw:extrusion-specularity="string]"   +

draw:extrusion-viewpoint Attribute

@@ -18742,7 +24046,7 @@

draw:extrusion-viewpoint Attr Datatypes - string  + string    @@ -18750,6 +24054,10 @@

draw:extrusion-viewpoint Attr   + + RNG Relations + draw:extrusion-viewpoint="<string>"   +

draw:filter-name Attribute

@@ -18763,7 +24071,7 @@

draw:filter-name Attribute

Datatypes - string  + string    @@ -18771,6 +24079,10 @@

draw:filter-name Attribute

  + + RNG Relations + draw:filter-name="<string>"   +

draw:formula Attribute

@@ -18784,7 +24096,7 @@

draw:formula Attribute

Datatypes - string  + string    @@ -18792,6 +24104,10 @@

draw:formula Attribute

  + + RNG Relations + draw:formula="<string>"   +

draw:frame-name Attribute

@@ -18805,7 +24121,7 @@

draw:frame-name Attribute

Datatypes - string  + string    @@ -18813,6 +24129,10 @@

draw:frame-name Attribute

  + + RNG Relations + draw:frame-name="<string>"   +

draw:glue-point-leaving-directions Attribute

@@ -18833,6 +24153,10 @@

draw:glue-point-lea   + + RNG Relations + draw:glue-point-leaving-directions="TEXT"   +

draw:glue-point-type Attribute

@@ -18851,11 +24175,15 @@

draw:glue-point-type Attribute Values - "none"  - "rectangle"  - "segments"  + "none"  + "rectangle"  + "segments"    + + RNG Relations + draw:glue-point-type="none | segments | rectangle"   +

draw:glue-points Attribute

@@ -18869,7 +24197,7 @@

draw:glue-points Attribute

Datatypes - string  + string    @@ -18877,6 +24205,10 @@

draw:glue-points Attribute

  + + RNG Relations + draw:glue-points="<string>"   +

draw:handle-mirror-horizontal Attribute

@@ -18895,10 +24227,14 @@

draw:handle-mirror-horiz Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + draw:handle-mirror-horizontal="<boolean>"   +

draw:handle-mirror-vertical Attribute

@@ -18917,10 +24253,14 @@

draw:handle-mirror-vertica Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + draw:handle-mirror-vertical="<boolean>"   +

draw:handle-polar Attribute

@@ -18934,7 +24274,7 @@

draw:handle-polar Attribute

Datatypes - string  + string    @@ -18942,6 +24282,10 @@

draw:handle-polar Attribute

  + + RNG Relations + draw:handle-polar="<string>"   +

draw:handle-position Attribute

@@ -18955,7 +24299,7 @@

draw:handle-position Attribute Datatypes - string  + string    @@ -18963,6 +24307,10 @@

draw:handle-position Attribute   + + RNG Relations + draw:handle-position="<string>"   +

draw:handle-radius-range-maximum Attribute

@@ -18976,7 +24324,7 @@

draw:handle-radius-ra Datatypes - string  + string    @@ -18984,6 +24332,10 @@

draw:handle-radius-ra   + + RNG Relations + draw:handle-radius-range-maximum="<string>"   +

draw:handle-radius-range-minimum Attribute

@@ -18997,7 +24349,7 @@

draw:handle-radius-ra Datatypes - string  + string    @@ -19005,6 +24357,10 @@

draw:handle-radius-ra   + + RNG Relations + draw:handle-radius-range-minimum="<string>"   +

draw:handle-range-x-maximum Attribute

@@ -19018,7 +24374,7 @@

draw:handle-range-x-maximu Datatypes - string  + string    @@ -19026,6 +24382,10 @@

draw:handle-range-x-maximu   + + RNG Relations + draw:handle-range-x-maximum="<string>"   +

draw:handle-range-x-minimum Attribute

@@ -19039,7 +24399,7 @@

draw:handle-range-x-minimu Datatypes - string  + string    @@ -19047,6 +24407,10 @@

draw:handle-range-x-minimu   + + RNG Relations + draw:handle-range-x-minimum="<string>"   +

draw:handle-range-y-maximum Attribute

@@ -19060,7 +24424,7 @@

draw:handle-range-y-maximu Datatypes - string  + string    @@ -19068,6 +24432,10 @@

draw:handle-range-y-maximu   + + RNG Relations + draw:handle-range-y-maximum="<string>"   +

draw:handle-range-y-minimum Attribute

@@ -19081,7 +24449,7 @@

draw:handle-range-y-minimu Datatypes - string  + string    @@ -19089,6 +24457,10 @@

draw:handle-range-y-minimu   + + RNG Relations + draw:handle-range-y-minimum="<string>"   +

draw:handle-switched Attribute

@@ -19107,10 +24479,14 @@

draw:handle-switched Attribute Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + draw:handle-switched="<boolean>"   +

draw:id[1] Attribute

@@ -19118,6 +24494,32 @@

draw:id[1] Attribute

+ + + + + + + + + + + + + + +
Parent Elements + draw:glue-point  + 
Datatypes + nonNegativeInteger  + 
Values
RNG Relationsdraw:id="<nonNegativeInteger>"  
+
+

draw:id[2] Attribute

+

There are more than one Definitions by this name.

+ + + @@ -19155,27 +24557,9 @@

draw:id[1] Attribute

-
Parent Elements dr3d:cube  dr3d:extrude  @@ -19147,7 +24549,7 @@

draw:id[1] Attribute

Datatypes - ID  + ID   
 
-
-

draw:id[2] Attribute

-

There are more than one Definitions by this name.

- - - - - - - - - - - + +
Parent Elements - draw:glue-point  - 
Datatypes - nonNegativeInteger  - 
ValuesRNG Relationsdraw:id="<ID>"  

@@ -19196,12 +24580,16 @@

draw:kind Attribute

Values - "arc"  - "cut"  - "full"  - "section"  + "arc"  + "cut"  + "full"  + "section"    + + RNG Relations + draw:kind="full | section | cut | arc"   +

draw:layer Attribute

@@ -19235,7 +24623,7 @@

draw:layer Attribute

Datatypes - string  + string    @@ -19243,6 +24631,10 @@

draw:layer Attribute

  + + RNG Relations + draw:layer="<string>"   +

draw:line-skew Attribute

@@ -19256,7 +24648,7 @@

draw:line-skew Attribute

Datatypes - string  + string    @@ -19264,6 +24656,12 @@

draw:line-skew Attribute

  + + RNG Relations + draw:line-skew=" +START_liststring](string](string])?)? +END_list"   +

draw:master-page-name Attribute

@@ -19277,7 +24675,7 @@

draw:master-page-name Attribute< Datatypes - NCName  + NCName    @@ -19285,6 +24683,10 @@

draw:master-page-name Attribute<   + + RNG Relations + draw:master-page-name="(<NCName>)?"   +

draw:may-script Attribute

@@ -19303,10 +24705,14 @@

draw:may-script Attribute

Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + draw:may-script="<boolean>"   +

draw:mime-type Attribute

@@ -19327,6 +24733,10 @@

draw:mime-type Attribute

  + + RNG Relations + draw:mime-type="TEXT"   +

draw:mirror-horizontal Attribute

@@ -19345,10 +24755,14 @@

draw:mirror-horizontal Attribut Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + draw:mirror-horizontal="<boolean>"   +

draw:mirror-vertical Attribute

@@ -19367,10 +24781,14 @@

draw:mirror-vertical Attribute Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + draw:mirror-vertical="<boolean>"   +

draw:modifiers Attribute

@@ -19384,7 +24802,7 @@

draw:modifiers Attribute

Datatypes - string  + string    @@ -19392,6 +24810,10 @@

draw:modifiers Attribute

  + + RNG Relations + draw:modifiers="<string>"   +

draw:name[1] Attribute

@@ -19400,20 +24822,32 @@

draw:name[1] Attribute

Parent Elements - draw:fill-image  - draw:gradient  - draw:hatch  - draw:marker  - draw:opacity  - draw:stroke-dash  - svg:linearGradient  - svg:radialGradient  + draw:caption  + draw:circle  + draw:connector  + draw:control  + draw:custom-shape  + draw:ellipse  + draw:equation  + draw:frame  + draw:g  + draw:layer  + draw:line  + draw:measure  + draw:page  + draw:page-thumbnail  + draw:path  + draw:polygon  + draw:polyline  + draw:rect  + draw:regular-polygon  + office:annotation    Datatypes - NCName  + string    @@ -19421,6 +24855,10 @@

draw:name[1] Attribute

  + + RNG Relations + draw:name="<string>"   +

draw:name[2] Attribute

@@ -19429,12 +24867,20 @@

draw:name[2] Attribute

Parent Elements - draw:param  + draw:fill-image  + draw:gradient  + draw:hatch  + draw:marker  + draw:opacity  + draw:stroke-dash  + svg:linearGradient  + svg:radialGradient    Datatypes + NCName    @@ -19442,6 +24888,10 @@

draw:name[2] Attribute

  + + RNG Relations + draw:name="<NCName>"   +

draw:name[3] Attribute

@@ -19450,32 +24900,12 @@

draw:name[3] Attribute

Parent Elements - draw:caption  - draw:circle  - draw:connector  - draw:control  - draw:custom-shape  - draw:ellipse  - draw:equation  - draw:frame  - draw:g  - draw:layer  - draw:line  - draw:measure  - draw:page  - draw:page-thumbnail  - draw:path  - draw:polygon  - draw:polyline  - draw:rect  - draw:regular-polygon  - office:annotation  + draw:param    Datatypes - string    @@ -19483,6 +24913,10 @@

draw:name[3] Attribute

  + + RNG Relations + draw:name="TEXT"   +

draw:nohref Attribute

@@ -19503,9 +24937,13 @@

draw:nohref Attribute

Values - "nohref"  + "nohref"    + + RNG Relations + draw:nohref="nohref"   +

draw:notify-on-update-of-ranges Attribute

@@ -19519,7 +24957,7 @@

draw:notify-on-update- Datatypes - string  + string    @@ -19527,6 +24965,10 @@

draw:notify-on-update-   + + RNG Relations + draw:notify-on-update-of-ranges="<string>"   +

draw:object Attribute

@@ -19547,6 +24989,10 @@

draw:object Attribute

  + + RNG Relations + draw:object="TEXT"   +

draw:page-number Attribute

@@ -19560,7 +25006,7 @@

draw:page-number Attribute

Datatypes - positiveInteger  + positiveInteger    @@ -19568,6 +25014,10 @@

draw:page-number Attribute

  + + RNG Relations + draw:page-number="<positiveInteger>"   +

draw:path-stretchpoint-x Attribute

@@ -19581,7 +25031,7 @@

draw:path-stretchpoint-x Attr Datatypes - double  + double    @@ -19589,6 +25039,10 @@

draw:path-stretchpoint-x Attr   + + RNG Relations + draw:path-stretchpoint-x="<double>"   +

draw:path-stretchpoint-y Attribute

@@ -19602,7 +25056,7 @@

draw:path-stretchpoint-y Attr Datatypes - double  + double    @@ -19610,6 +25064,10 @@

draw:path-stretchpoint-y Attr   + + RNG Relations + draw:path-stretchpoint-y="<double>"   +

draw:points Attribute

@@ -19626,7 +25084,7 @@

draw:points Attribute

Datatypes - string  + string    @@ -19634,6 +25092,10 @@

draw:points Attribute

  + + RNG Relations + draw:points="string]"   +

draw:protected Attribute

@@ -19652,10 +25114,14 @@

draw:protected Attribute

Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + draw:protected="<boolean>"   +

draw:recreate-on-edit Attribute

@@ -19675,10 +25141,14 @@

draw:recreate-on-edit Attribute< Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + draw:recreate-on-edit="<boolean>"   +

draw:rotation Attribute

@@ -19692,7 +25162,7 @@

draw:rotation Attribute

Datatypes - integer  + integer    @@ -19700,6 +25170,10 @@

draw:rotation Attribute

  + + RNG Relations + draw:rotation="<integer>"   +

draw:shape-id Attribute

@@ -19718,7 +25192,7 @@

draw:shape-id Attribute

Datatypes - IDREF  + IDREF    @@ -19726,6 +25200,10 @@

draw:shape-id Attribute

  + + RNG Relations + draw:shape-id="<IDREF>"   +

draw:sharpness Attribute

@@ -19739,7 +25217,7 @@

draw:sharpness Attribute

Datatypes - string  + string    @@ -19747,6 +25225,10 @@

draw:sharpness Attribute

  + + RNG Relations + draw:sharpness="string]"   +

draw:start Attribute

@@ -19760,7 +25242,7 @@

draw:start Attribute

Datatypes - string  + string    @@ -19768,6 +25250,10 @@

draw:start Attribute

  + + RNG Relations + draw:start="string]"   +

draw:start-angle Attribute

@@ -19782,7 +25268,7 @@

draw:start-angle Attribute

Datatypes - double  + double    @@ -19790,6 +25276,10 @@

draw:start-angle Attribute

  + + RNG Relations + draw:start-angle="<double>"   +

draw:start-color Attribute

@@ -19803,7 +25293,7 @@

draw:start-color Attribute

Datatypes - string  + string    @@ -19811,6 +25301,10 @@

draw:start-color Attribute

  + + RNG Relations + draw:start-color="string]"   +

draw:start-glue-point Attribute

@@ -19824,7 +25318,7 @@

draw:start-glue-point Attribute< Datatypes - nonNegativeInteger  + nonNegativeInteger    @@ -19832,6 +25326,10 @@

draw:start-glue-point Attribute<   + + RNG Relations + draw:start-glue-point="<nonNegativeInteger>"   +

draw:start-intensity Attribute

@@ -19845,7 +25343,7 @@

draw:start-intensity Attribute Datatypes - string  + string    @@ -19853,6 +25351,10 @@

draw:start-intensity Attribute   + + RNG Relations + draw:start-intensity="string]"   +

draw:start-shape Attribute

@@ -19866,7 +25368,7 @@

draw:start-shape Attribute

Datatypes - IDREF  + IDREF    @@ -19874,6 +25376,10 @@

draw:start-shape Attribute

  + + RNG Relations + draw:start-shape="<IDREF>"   +

draw:style[1] Attribute

@@ -19893,10 +25399,14 @@

draw:style[1] Attribute

Values - "rect"  - "round"  + "rect"  + "round"    + + RNG Relations + draw:style="rect | round"   +

draw:style[2] Attribute

@@ -19905,7 +25415,8 @@

draw:style[2] Attribute

Parent Elements - draw:hatch  + draw:gradient  + draw:opacity    @@ -19916,11 +25427,18 @@

draw:style[2] Attribute

Values - "double"  - "single"  - "triple"  + "axial"  + "ellipsoid"  + "linear"  + "radial"  + "rectangular"  + "square"    + + RNG Relations + draw:style="linear | axial | radial | ellipsoid | square | rectangular"   +

draw:style[3] Attribute

@@ -19929,8 +25447,7 @@

draw:style[3] Attribute

Parent Elements - draw:gradient  - draw:opacity  + draw:hatch    @@ -19941,14 +25458,15 @@

draw:style[3] Attribute

Values - "axial"  - "ellipsoid"  - "linear"  - "radial"  - "rectangular"  - "square"  + "double"  + "single"  + "triple"    + + RNG Relations + draw:style="single | double | triple"   +

draw:style-name Attribute

@@ -19987,7 +25505,7 @@

draw:style-name Attribute

Datatypes - NCName  + NCName    @@ -19995,6 +25513,10 @@

draw:style-name Attribute

  + + RNG Relations + draw:style-name="(<NCName>)?"   +

draw:text-areas Attribute

@@ -20008,7 +25530,7 @@

draw:text-areas Attribute

Datatypes - string  + string    @@ -20016,6 +25538,10 @@

draw:text-areas Attribute

  + + RNG Relations + draw:text-areas="<string>"   +

draw:text-path Attribute

@@ -20034,10 +25560,14 @@

draw:text-path Attribute

Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + draw:text-path="<boolean>"   +

draw:text-path-allowed Attribute

@@ -20056,10 +25586,14 @@

draw:text-path-allowed Attribut Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + draw:text-path-allowed="<boolean>"   +

draw:text-path-mode Attribute

@@ -20078,11 +25612,15 @@

draw:text-path-mode Attribute< Values - "normal"  - "path"  - "shape"  + "normal"  + "path"  + "shape"    + + RNG Relations + draw:text-path-mode="normal | path | shape"   +

draw:text-path-same-letter-heights Attribute

@@ -20101,10 +25639,14 @@

draw:text-path-same Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + draw:text-path-same-letter-heights="<boolean>"   +

draw:text-path-scale Attribute

@@ -20123,10 +25665,14 @@

draw:text-path-scale Attribute Values - "path"  - "shape"  + "path"  + "shape"    + + RNG Relations + draw:text-path-scale="path | shape"   +

draw:text-rotate-angle Attribute

@@ -20140,7 +25686,7 @@

draw:text-rotate-angle Attribut Datatypes - double  + double    @@ -20148,6 +25694,10 @@

draw:text-rotate-angle Attribut   + + RNG Relations + draw:text-rotate-angle="<double>"   +

draw:text-style-name Attribute

@@ -20175,7 +25725,7 @@

draw:text-style-name Attribute Datatypes - NCName  + NCName    @@ -20183,6 +25733,10 @@

draw:text-style-name Attribute   + + RNG Relations + draw:text-style-name="(<NCName>)?"   +

draw:transform Attribute

@@ -20211,7 +25765,7 @@

draw:transform Attribute

Datatypes - string  + string    @@ -20219,6 +25773,10 @@

draw:transform Attribute

  + + RNG Relations + draw:transform="<string>"   +

draw:type[1] Attribute

@@ -20238,12 +25796,16 @@

draw:type[1] Attribute

Values - "curve"  - "line"  - "lines"  - "standard"  + "curve"  + "line"  + "lines"  + "standard"    + + RNG Relations + draw:type="standard | lines | line | curve"   +

draw:type[2] Attribute

@@ -20258,15 +25820,19 @@

draw:type[2] Attribute

Datatypes - string  + string    Values - "non-primitive"  + "non-primitive"    + + RNG Relations + draw:type="non-primitive | <string>"   +

draw:value Attribute

@@ -20287,6 +25853,10 @@

draw:value Attribute

  + + RNG Relations + draw:value="TEXT"   +

draw:z-index Attribute

@@ -20321,7 +25891,7 @@

draw:z-index Attribute

Datatypes - nonNegativeInteger  + nonNegativeInteger    @@ -20329,6 +25899,10 @@

draw:z-index Attribute

  + + RNG Relations + draw:z-index="<nonNegativeInteger>"   +

fo:country Attribute

@@ -20343,7 +25917,7 @@

fo:country Attribute

Datatypes - token  + token    @@ -20351,6 +25925,10 @@

fo:country Attribute

  + + RNG Relations + fo:country="token]"   +

fo:language Attribute

@@ -20365,7 +25943,7 @@

fo:language Attribute

Datatypes - token  + token    @@ -20373,6 +25951,10 @@

fo:language Attribute

  + + RNG Relations + fo:language="token]"   +

fo:max-height Attribute

@@ -20386,8 +25968,8 @@

fo:max-height Attribute

Datatypes - string  - string  + string  + string    @@ -20395,6 +25977,10 @@

fo:max-height Attribute

  + + RNG Relations + fo:max-height="string] | string]"   +

fo:max-width Attribute

@@ -20408,8 +25994,8 @@

fo:max-width Attribute

Datatypes - string  - string  + string  + string    @@ -20417,6 +26003,10 @@

fo:max-width Attribute

  + + RNG Relations + fo:max-width="string] | string]"   +

fo:min-height Attribute

@@ -20430,8 +26020,8 @@

fo:min-height Attribute

Datatypes - string  - string  + string  + string    @@ -20439,6 +26029,10 @@

fo:min-height Attribute

  + + RNG Relations + fo:min-height="string] | string]"   +

fo:min-width Attribute

@@ -20452,8 +26046,8 @@

fo:min-width Attribute

Datatypes - string  - string  + string  + string    @@ -20461,6 +26055,10 @@

fo:min-width Attribute

  + + RNG Relations + fo:min-width="string] | string]"   +

form:allow-deletes Attribute

@@ -20479,10 +26077,14 @@

form:allow-deletes Attribute Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + form:allow-deletes="<boolean>"   +

form:allow-inserts Attribute

@@ -20501,10 +26103,14 @@

form:allow-inserts Attribute Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + form:allow-inserts="<boolean>"   +

form:allow-updates Attribute

@@ -20523,10 +26129,14 @@

form:allow-updates Attribute Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + form:allow-updates="<boolean>"   +

form:apply-design-mode Attribute

@@ -20545,10 +26155,14 @@

form:apply-design-mode Attribut Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + form:apply-design-mode="<boolean>"   +

form:apply-filter Attribute

@@ -20567,10 +26181,14 @@

form:apply-filter Attribute

Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + form:apply-filter="<boolean>"   +

form:auto-complete Attribute

@@ -20589,10 +26207,14 @@

form:auto-complete Attribute Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + form:auto-complete="<boolean>"   +

form:automatic-focus Attribute

@@ -20611,10 +26233,14 @@

form:automatic-focus Attribute Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + form:automatic-focus="<boolean>"   +

form:bound-column Attribute

@@ -20628,7 +26254,7 @@

form:bound-column Attribute

Datatypes - string  + string    @@ -20636,6 +26262,10 @@

form:bound-column Attribute

  + + RNG Relations + form:bound-column="<string>"   +

form:button-type Attribute

@@ -20655,12 +26285,16 @@

form:button-type Attribute

Values - "push"  - "reset"  - "submit"  - "url"  + "push"  + "reset"  + "submit"  + "url"    + + RNG Relations + form:button-type="submit | reset | push | url"   +

form:command Attribute

@@ -20681,6 +26315,10 @@

form:command Attribute

  + + RNG Relations + form:command="TEXT"   +

form:command-type Attribute

@@ -20699,11 +26337,15 @@

form:command-type Attribute

Values - "command"  - "query"  - "table"  + "command"  + "query"  + "table"    + + RNG Relations + form:command-type="table | query | command"   +

form:control-implementation Attribute

@@ -20739,7 +26381,7 @@

form:control-implementatio Datatypes - string  + string    @@ -20747,6 +26389,10 @@

form:control-implementatio   + + RNG Relations + form:control-implementation="string]"   +

form:convert-empty-to-null Attribute

@@ -20772,10 +26418,14 @@

form:convert-empty-to-null Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + form:convert-empty-to-null="<boolean>"   +

form:current-selected Attribute

@@ -20795,10 +26445,14 @@

form:current-selected Attribute< Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + form:current-selected="<boolean>"   +

form:current-state Attribute

@@ -20817,11 +26471,15 @@

form:current-state Attribute Values - "checked"  - "unchecked"  - "unknown"  + "checked"  + "unchecked"  + "unknown"    + + RNG Relations + form:current-state="unchecked | checked | unknown"   +

form:current-value[1] Attribute

@@ -20830,13 +26488,13 @@

form:current-value[1] Attribute Parent Elements - form:date  + form:time    Datatypes - date  + time    @@ -20844,6 +26502,10 @@

form:current-value[1] Attribute   + + RNG Relations + form:current-value="<time>"   +

form:current-value[2] Attribute

@@ -20852,13 +26514,13 @@

form:current-value[2] Attribute Parent Elements - form:time  + form:date    Datatypes - time  + date    @@ -20866,6 +26528,10 @@

form:current-value[2] Attribute   + + RNG Relations + form:current-value="<date>"   +

form:current-value[3] Attribute

@@ -20880,7 +26546,7 @@

form:current-value[3] Attribute Datatypes - double  + double    @@ -20888,6 +26554,10 @@

form:current-value[3] Attribute   + + RNG Relations + form:current-value="<double>"   +

form:current-value[4] Attribute

@@ -20906,7 +26576,7 @@

form:current-value[4] Attribute Datatypes - string  + string    @@ -20914,6 +26584,10 @@

form:current-value[4] Attribute   + + RNG Relations + form:current-value="<string>"   +

form:data-field Attribute

@@ -20937,7 +26611,7 @@

form:data-field Attribute

Datatypes - string  + string    @@ -20945,6 +26619,10 @@

form:data-field Attribute

  + + RNG Relations + form:data-field="<string>"   +

form:datasource Attribute

@@ -20958,8 +26636,8 @@

form:datasource Attribute

Datatypes - anyURI  - string  + anyURI  + string    @@ -20967,6 +26645,10 @@

form:datasource Attribute

  + + RNG Relations + form:datasource="<anyURI> | <string>"   +

form:default-button Attribute

@@ -20985,10 +26667,14 @@

form:default-button Attribute< Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + form:default-button="<boolean>"   +

form:delay-for-repeat Attribute

@@ -21002,7 +26688,7 @@

form:delay-for-repeat Attribute< Datatypes - duration  + duration    @@ -21010,6 +26696,10 @@

form:delay-for-repeat Attribute<   + + RNG Relations + form:delay-for-repeat="<duration>"   +

form:detail-fields Attribute

@@ -21023,7 +26713,7 @@

form:detail-fields Attribute Datatypes - string  + string    @@ -21031,6 +26721,10 @@

form:detail-fields Attribute   + + RNG Relations + form:detail-fields="<string>"   +

form:disabled Attribute

@@ -21067,10 +26761,14 @@

form:disabled Attribute

Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + form:disabled="<boolean>"   +

form:dropdown Attribute

@@ -21090,10 +26788,14 @@

form:dropdown Attribute

Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + form:dropdown="<boolean>"   +

form:echo-char Attribute

@@ -21107,7 +26809,7 @@

form:echo-char Attribute

Datatypes - string  + string    @@ -21115,6 +26817,10 @@

form:echo-char Attribute

  + + RNG Relations + form:echo-char="string]"   +

form:enctype Attribute

@@ -21128,7 +26834,7 @@

form:enctype Attribute

Datatypes - string  + string    @@ -21136,6 +26842,10 @@

form:enctype Attribute

  + + RNG Relations + form:enctype="<string>"   +

form:escape-processing Attribute

@@ -21154,10 +26864,14 @@

form:escape-processing Attribut Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + form:escape-processing="<boolean>"   +

form:filter Attribute

@@ -21171,7 +26885,7 @@

form:filter Attribute

Datatypes - string  + string    @@ -21179,6 +26893,10 @@

form:filter Attribute

  + + RNG Relations + form:filter="<string>"   +

form:focus-on-click Attribute

@@ -21197,10 +26915,14 @@

form:focus-on-click Attribute< Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + form:focus-on-click="<boolean>"   +

form:for Attribute

@@ -21215,7 +26937,7 @@

form:for Attribute

Datatypes - string  + string    @@ -21223,6 +26945,10 @@

form:for Attribute

  + + RNG Relations + form:for="<string>"   +

form:id Attribute

@@ -21256,7 +26982,7 @@

form:id Attribute

Datatypes - ID  + ID    @@ -21264,6 +26990,10 @@

form:id Attribute

  + + RNG Relations + form:id="<ID>"   +

form:ignore-result Attribute

@@ -21282,10 +27012,14 @@

form:ignore-result Attribute Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + form:ignore-result="<boolean>"   +

form:image-align Attribute

@@ -21306,11 +27040,15 @@

form:image-align Attribute

Values - "center"  - "end"  - "start"  + "center"  + "end"  + "start"    + + RNG Relations + form:image-align="start | center | end"   +

form:image-data Attribute

@@ -21326,7 +27064,7 @@

form:image-data Attribute

Datatypes - anyURI  + anyURI    @@ -21334,6 +27072,10 @@

form:image-data Attribute

  + + RNG Relations + form:image-data="<anyURI>"   +

form:image-position[1] Attribute

@@ -21355,9 +27097,13 @@

form:image-position[1] Attribute Values - "center"  + "center"    + + RNG Relations + form:image-position="center"   +

form:image-position[2] Attribute

@@ -21379,12 +27125,16 @@

form:image-position[2] Attribute Values - "bottom"  - "end"  - "start"  - "top"  + "bottom"  + "end"  + "start"  + "top"    + + RNG Relations + form:image-position="start | end | top | bottom"   +

form:is-tristate Attribute

@@ -21403,10 +27153,14 @@

form:is-tristate Attribute

Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + form:is-tristate="<boolean>"   +

form:label Attribute

@@ -21427,7 +27181,7 @@

form:label Attribute

Datatypes - string  + string    @@ -21435,6 +27189,10 @@

form:label Attribute

  + + RNG Relations + form:label="<string>"   +

form:list-source Attribute

@@ -21449,7 +27207,7 @@

form:list-source Attribute

Datatypes - string  + string    @@ -21457,6 +27215,10 @@

form:list-source Attribute

  + + RNG Relations + form:list-source="<string>"   +

form:list-source-type Attribute

@@ -21476,14 +27238,18 @@

form:list-source-type Attribute< Values - "query"  - "sql"  - "sql-pass-through"  - "table"  - "table-fields"  - "value-list"  + "query"  + "sql"  + "sql-pass-through"  + "table"  + "table-fields"  + "value-list"    + + RNG Relations + form:list-source-type="table | query | sql | sql-pass-through | value-list | table-fields"   +

form:master-fields Attribute

@@ -21497,7 +27263,7 @@

form:master-fields Attribute Datatypes - string  + string    @@ -21505,6 +27271,10 @@

form:master-fields Attribute   + + RNG Relations + form:master-fields="<string>"   +

form:max-length Attribute

@@ -21526,7 +27296,7 @@

form:max-length Attribute

Datatypes - nonNegativeInteger  + nonNegativeInteger    @@ -21534,6 +27304,10 @@

form:max-length Attribute

  + + RNG Relations + form:max-length="<nonNegativeInteger>"   +

form:max-value[1] Attribute

@@ -21548,7 +27322,7 @@

form:max-value[1] Attribute

Datatypes - time  + time    @@ -21556,6 +27330,10 @@

form:max-value[1] Attribute

  + + RNG Relations + form:max-value="<time>"   +

form:max-value[2] Attribute

@@ -21564,14 +27342,13 @@

form:max-value[2] Attribute

Parent Elements - form:formatted-text  - form:value-range  + form:number    Datatypes - string  + double    @@ -21579,6 +27356,10 @@

form:max-value[2] Attribute

  + + RNG Relations + form:max-value="<double>"   +

form:max-value[3] Attribute

@@ -21587,13 +27368,14 @@

form:max-value[3] Attribute

Parent Elements - form:number  + form:formatted-text  + form:value-range    Datatypes - double  + string    @@ -21601,6 +27383,10 @@

form:max-value[3] Attribute

  + + RNG Relations + form:max-value="<string>"   +

form:max-value[4] Attribute

@@ -21615,7 +27401,7 @@

form:max-value[4] Attribute

Datatypes - date  + date    @@ -21623,6 +27409,10 @@

form:max-value[4] Attribute

  + + RNG Relations + form:max-value="<date>"   +

form:method Attribute

@@ -21636,16 +27426,20 @@

form:method Attribute

Datatypes - string  + string    Values - "get"  - "post"  + "get"  + "post"    + + RNG Relations + form:method="get | post | <string>"   +

form:min-value[1] Attribute

@@ -21654,13 +27448,14 @@

form:min-value[1] Attribute

Parent Elements - form:number  + form:formatted-text  + form:value-range    Datatypes - double  + string    @@ -21668,6 +27463,10 @@

form:min-value[1] Attribute

  + + RNG Relations + form:min-value="<string>"   +

form:min-value[2] Attribute

@@ -21676,13 +27475,13 @@

form:min-value[2] Attribute

Parent Elements - form:date  + form:number    Datatypes - date  + double    @@ -21690,6 +27489,10 @@

form:min-value[2] Attribute

  + + RNG Relations + form:min-value="<double>"   +

form:min-value[3] Attribute

@@ -21698,14 +27501,13 @@

form:min-value[3] Attribute

Parent Elements - form:formatted-text  - form:value-range  + form:time    Datatypes - string  + time    @@ -21713,6 +27515,10 @@

form:min-value[3] Attribute

  + + RNG Relations + form:min-value="<time>"   +

form:min-value[4] Attribute

@@ -21721,13 +27527,13 @@

form:min-value[4] Attribute

Parent Elements - form:time  + form:date    Datatypes - time  + date    @@ -21735,6 +27541,10 @@

form:min-value[4] Attribute

  + + RNG Relations + form:min-value="<date>"   +

form:multi-line Attribute

@@ -21753,10 +27563,14 @@

form:multi-line Attribute

Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + form:multi-line="<boolean>"   +

form:multiple Attribute

@@ -21775,10 +27589,14 @@

form:multiple Attribute

Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + form:multiple="<boolean>"   +

form:name Attribute

@@ -21814,7 +27632,7 @@

form:name Attribute

Datatypes - string  + string    @@ -21822,6 +27640,10 @@

form:name Attribute

  + + RNG Relations + form:name="<string>"   +

form:navigation-mode Attribute

@@ -21840,11 +27662,15 @@

form:navigation-mode Attribute Values - "current"  - "none"  - "parent"  + "current"  + "none"  + "parent"    + + RNG Relations + form:navigation-mode="none | current | parent"   +

form:order Attribute

@@ -21858,7 +27684,7 @@

form:order Attribute

Datatypes - string  + string    @@ -21866,6 +27692,10 @@

form:order Attribute

  + + RNG Relations + form:order="<string>"   +

form:orientation Attribute

@@ -21884,10 +27714,14 @@

form:orientation Attribute

Values - "horizontal"  - "vertical"  + "horizontal"  + "vertical"    + + RNG Relations + form:orientation="horizontal | vertical"   +

form:page-step-size Attribute

@@ -21901,7 +27735,7 @@

form:page-step-size Attribute< Datatypes - positiveInteger  + positiveInteger    @@ -21909,6 +27743,10 @@

form:page-step-size Attribute<   + + RNG Relations + form:page-step-size="<positiveInteger>"   +

form:printable Attribute

@@ -21945,10 +27783,14 @@

form:printable Attribute

Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + form:printable="<boolean>"   +

form:property-name Attribute

@@ -21963,7 +27805,7 @@

form:property-name Attribute Datatypes - string  + string    @@ -21971,6 +27813,10 @@

form:property-name Attribute   + + RNG Relations + form:property-name="<string>"   +

form:readonly Attribute

@@ -21997,10 +27843,14 @@

form:readonly Attribute

Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + form:readonly="<boolean>"   +

form:selected Attribute

@@ -22020,10 +27870,14 @@

form:selected Attribute

Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + form:selected="<boolean>"   +

form:size Attribute

@@ -22038,7 +27892,7 @@

form:size Attribute

Datatypes - nonNegativeInteger  + nonNegativeInteger    @@ -22046,6 +27900,10 @@

form:size Attribute

  + + RNG Relations + form:size="<nonNegativeInteger>"   +

form:state Attribute

@@ -22064,11 +27922,15 @@

form:state Attribute

Values - "checked"  - "unchecked"  - "unknown"  + "checked"  + "unchecked"  + "unknown"    + + RNG Relations + form:state="unchecked | checked | unknown"   +

form:step-size Attribute

@@ -22082,7 +27944,7 @@

form:step-size Attribute

Datatypes - positiveInteger  + positiveInteger    @@ -22090,6 +27952,10 @@

form:step-size Attribute

  + + RNG Relations + form:step-size="<positiveInteger>"   +

form:tab-cycle Attribute

@@ -22108,11 +27974,15 @@

form:tab-cycle Attribute

Values - "current"  - "page"  - "records"  + "current"  + "page"  + "records"    + + RNG Relations + form:tab-cycle="records | current | page"   +

form:tab-index Attribute

@@ -22141,7 +28011,7 @@

form:tab-index Attribute

Datatypes - nonNegativeInteger  + nonNegativeInteger    @@ -22149,6 +28019,10 @@

form:tab-index Attribute

  + + RNG Relations + form:tab-index="<nonNegativeInteger>"   +

form:tab-stop Attribute

@@ -22182,10 +28056,14 @@

form:tab-stop Attribute

Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + form:tab-stop="<boolean>"   +

form:text-style-name Attribute

@@ -22199,7 +28077,7 @@

form:text-style-name Attribute Datatypes - NCName  + NCName    @@ -22207,6 +28085,10 @@

form:text-style-name Attribute   + + RNG Relations + form:text-style-name="(<NCName>)?"   +

form:title Attribute

@@ -22245,6 +28127,10 @@

form:title Attribute

  + + RNG Relations + form:title="TEXT"   +

form:toggle Attribute

@@ -22263,10 +28149,14 @@

form:toggle Attribute

Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + form:toggle="<boolean>"   +

form:validation Attribute

@@ -22285,10 +28175,14 @@

form:validation Attribute

Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + form:validation="<boolean>"   +

form:value[1] Attribute

@@ -22297,13 +28191,13 @@

form:value[1] Attribute

Parent Elements - form:date  + form:number    Datatypes - date  + double    @@ -22311,6 +28205,10 @@

form:value[1] Attribute

  + + RNG Relations + form:value="<double>"   +

form:value[2] Attribute

@@ -22319,25 +28217,13 @@

form:value[2] Attribute

Parent Elements - form:button  - form:checkbox  - form:combobox  - form:file  - form:formatted-text  - form:hidden  - form:image  - form:option  - form:password  - form:radio  - form:text  - form:textarea  - form:value-range  + form:date    Datatypes - string  + date    @@ -22345,6 +28231,10 @@

form:value[2] Attribute

  + + RNG Relations + form:value="<date>"   +

form:value[3] Attribute

@@ -22359,7 +28249,7 @@

form:value[3] Attribute

Datatypes - time  + time    @@ -22367,6 +28257,10 @@

form:value[3] Attribute

  + + RNG Relations + form:value="<time>"   +

form:value[4] Attribute

@@ -22375,13 +28269,25 @@

form:value[4] Attribute

Parent Elements - form:number  + form:button  + form:checkbox  + form:combobox  + form:file  + form:formatted-text  + form:hidden  + form:image  + form:option  + form:password  + form:radio  + form:text  + form:textarea  + form:value-range    Datatypes - double  + string    @@ -22389,6 +28295,10 @@

form:value[4] Attribute

  + + RNG Relations + form:value="<string>"   +

form:visual-effect Attribute

@@ -22408,10 +28318,14 @@

form:visual-effect Attribute Values - "3d"  - "flat"  + "3d"  + "flat"    + + RNG Relations + form:visual-effect="flat | 3d"   +

form:xforms-list-source Attribute

@@ -22425,7 +28339,7 @@

form:xforms-list-source Attrib Datatypes - string  + string    @@ -22433,6 +28347,10 @@

form:xforms-list-source Attrib   + + RNG Relations + form:xforms-list-source="<string>"   +

form:xforms-submission Attribute

@@ -22446,7 +28364,7 @@

form:xforms-submission Attribut Datatypes - string  + string    @@ -22454,6 +28372,10 @@

form:xforms-submission Attribut   + + RNG Relations + form:xforms-submission="<string>"   +

name Attribute

@@ -22474,6 +28396,10 @@

name Attribute

  + + RNG Relations + name="TEXT"   +

number:automatic-order Attribute

@@ -22493,10 +28419,14 @@

number:automatic-order Attribut Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + number:automatic-order="<boolean>"   +

number:calendar Attribute

@@ -22516,22 +28446,26 @@

number:calendar Attribute

Datatypes - string  + string    Values - "ROC"  - "buddhist"  - "gengou"  - "gregorian"  - "hanja"  - "hanja_yoil"  - "hijri"  - "jewish"  + "ROC"  + "buddhist"  + "gengou"  + "gregorian"  + "hanja"  + "hanja_yoil"  + "hijri"  + "jewish"    + + RNG Relations + number:calendar="gregorian | gengou | ROC | hanja_yoil | hanja | hijri | jewish | buddhist | <string>"   +

number:country Attribute

@@ -22552,7 +28486,7 @@

number:country Attribute

Datatypes - token  + token    @@ -22560,6 +28494,10 @@

number:country Attribute

  + + RNG Relations + number:country="token]"   +

number:decimal-places Attribute

@@ -22575,7 +28513,7 @@

number:decimal-places Attribute< Datatypes - integer  + integer    @@ -22583,6 +28521,10 @@

number:decimal-places Attribute<   + + RNG Relations + number:decimal-places="<integer>"   +

number:decimal-replacement Attribute

@@ -22603,6 +28545,10 @@

number:decimal-replacement   + + RNG Relations + number:decimal-replacement="TEXT"   +

number:denominator-value Attribute

@@ -22616,7 +28562,7 @@

number:denominator-value Attr Datatypes - integer  + integer    @@ -22624,6 +28570,10 @@

number:denominator-value Attr   + + RNG Relations + number:denominator-value="<integer>"   +

number:display-factor Attribute

@@ -22637,7 +28587,7 @@

number:display-factor Attribute< Datatypes - double  + double    @@ -22645,6 +28595,10 @@

number:display-factor Attribute<   + + RNG Relations + number:display-factor="<double>"   +

number:format-source Attribute

@@ -22664,10 +28618,14 @@

number:format-source Attribute Values - "fixed"  - "language"  + "fixed"  + "language"    + + RNG Relations + number:format-source="fixed | language"   +

number:grouping Attribute

@@ -22688,10 +28646,14 @@

number:grouping Attribute

Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + number:grouping="<boolean>"   +

number:language Attribute

@@ -22712,7 +28674,7 @@

number:language Attribute

Datatypes - token  + token    @@ -22720,6 +28682,10 @@

number:language Attribute

  + + RNG Relations + number:language="token]"   +

number:min-denominator-digits Attribute

@@ -22733,7 +28699,7 @@

number:min-denominator-d Datatypes - integer  + integer    @@ -22741,6 +28707,10 @@

number:min-denominator-d   + + RNG Relations + number:min-denominator-digits="<integer>"   +

number:min-exponent-digits Attribute

@@ -22754,7 +28724,7 @@

number:min-exponent-digits Datatypes - integer  + integer    @@ -22762,6 +28732,10 @@

number:min-exponent-digits   + + RNG Relations + number:min-exponent-digits="<integer>"   +

number:min-integer-digits Attribute

@@ -22777,7 +28751,7 @@

number:min-integer-digits At Datatypes - integer  + integer    @@ -22785,6 +28759,10 @@

number:min-integer-digits At   + + RNG Relations + number:min-integer-digits="<integer>"   +

number:min-numerator-digits Attribute

@@ -22798,7 +28776,7 @@

number:min-numerator-digit Datatypes - integer  + integer    @@ -22806,6 +28784,10 @@

number:min-numerator-digit   + + RNG Relations + number:min-numerator-digits="<integer>"   +

number:position Attribute

@@ -22819,7 +28801,7 @@

number:position Attribute

Datatypes - integer  + integer    @@ -22827,6 +28809,10 @@

number:position Attribute

  + + RNG Relations + number:position="<integer>"   +

number:possessive-form Attribute

@@ -22845,10 +28831,14 @@

number:possessive-form Attribut Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + number:possessive-form="<boolean>"   +

number:style Attribute

@@ -22875,10 +28865,14 @@

number:style Attribute

Values - "long"  - "short"  + "long"  + "short"    + + RNG Relations + number:style="short | long"   +

number:textual Attribute

@@ -22897,10 +28891,14 @@

number:textual Attribute

Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + number:textual="<boolean>"   +

number:title Attribute

@@ -22927,6 +28925,10 @@

number:title Attribute

  + + RNG Relations + number:title="TEXT"   +

number:transliteration-country Attribute

@@ -22946,7 +28948,7 @@

number:transliteration- Datatypes - token  + token    @@ -22954,6 +28956,10 @@

number:transliteration-   + + RNG Relations + number:transliteration-country="token]"   +

number:transliteration-format Attribute

@@ -22973,7 +28979,7 @@

number:transliteration-f Datatypes - string  + string    @@ -22981,6 +28987,10 @@

number:transliteration-f   + + RNG Relations + number:transliteration-format="<string>"   +

number:transliteration-language Attribute

@@ -23000,7 +29010,7 @@

number:transliteration Datatypes - token  + token    @@ -23008,6 +29018,10 @@

number:transliteration   + + RNG Relations + number:transliteration-language="token]"   +

number:transliteration-style Attribute

@@ -23032,11 +29046,15 @@

number:transliteration-st Values - "long"  - "medium"  - "short"  + "long"  + "medium"  + "short"    + + RNG Relations + number:transliteration-style="short | medium | long"   +

number:truncate-on-overflow Attribute

@@ -23055,10 +29073,14 @@

number:truncate-on-overflo Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + number:truncate-on-overflow="<boolean>"   +

office:automatic-update Attribute

@@ -23078,10 +29100,14 @@

office:automatic-update Attrib Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + office:automatic-update="<boolean>"   +

office:boolean-value Attribute

@@ -23089,7 +29115,7 @@

office:boolean-value Attribute Parent Elements - form:list-value[6]  + form:list-value[7]  form:property  table:change-track-table-cell  table:covered-table-cell  @@ -23108,10 +29134,14 @@

office:boolean-value Attribute Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + office:boolean-value="<boolean>"   +

office:conversion-mode Attribute

@@ -23130,11 +29160,15 @@

office:conversion-mode Attribut Values - "into-default-style-data-style"  - "into-english-number"  - "keep-text"  + "into-default-style-data-style"  + "into-english-number"  + "keep-text"    + + RNG Relations + office:conversion-mode="into-default-style-data-style | into-english-number | keep-text"   +

office:currency Attribute

@@ -23142,7 +29176,7 @@

office:currency Attribute

Parent Elements - form:list-value[2]  + form:list-value[1]  form:property  table:change-track-table-cell  table:covered-table-cell  @@ -23155,7 +29189,7 @@

office:currency Attribute

Datatypes - string  + string    @@ -23163,6 +29197,10 @@

office:currency Attribute

  + + RNG Relations + office:currency="<string>"   +

office:date-value Attribute

@@ -23170,7 +29208,7 @@

office:date-value Attribute

Parent Elements - form:list-value[7]  + form:list-value[4]  form:property  table:change-track-table-cell  table:covered-table-cell  @@ -23184,8 +29222,8 @@

office:date-value Attribute

Datatypes - date  - dateTime  + date  + dateTime    @@ -23193,6 +29231,10 @@

office:date-value Attribute

  + + RNG Relations + office:date-value="<date> | <dateTime>"   +

office:dde-application Attribute

@@ -23207,7 +29249,7 @@

office:dde-application Attribut Datatypes - string  + string    @@ -23215,6 +29257,10 @@

office:dde-application Attribut   + + RNG Relations + office:dde-application="<string>"   +

office:dde-item Attribute

@@ -23229,7 +29275,7 @@

office:dde-item Attribute

Datatypes - string  + string    @@ -23237,6 +29283,10 @@

office:dde-item Attribute

  + + RNG Relations + office:dde-item="<string>"   +

office:dde-topic Attribute

@@ -23251,7 +29301,7 @@

office:dde-topic Attribute

Datatypes - string  + string    @@ -23259,6 +29309,10 @@

office:dde-topic Attribute

  + + RNG Relations + office:dde-topic="<string>"   +

office:display Attribute

@@ -23277,10 +29331,14 @@

office:display Attribute

Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + office:display="<boolean>"   +

office:mimetype Attribute

@@ -23294,7 +29352,7 @@

office:mimetype Attribute

Datatypes - string  + string    @@ -23302,6 +29360,10 @@

office:mimetype Attribute

  + + RNG Relations + office:mimetype="<string>"   +

office:name Attribute

@@ -23321,7 +29383,7 @@

office:name Attribute

Datatypes - string  + string    @@ -23329,6 +29391,10 @@

office:name Attribute

  + + RNG Relations + office:name="<string>"   +

office:server-map Attribute

@@ -23347,10 +29413,14 @@

office:server-map Attribute

Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + office:server-map="<boolean>"   +

office:string-value Attribute

@@ -23358,7 +29428,7 @@

office:string-value Attribute< Parent Elements - form:list-value[4]  + form:list-value[2]  form:property  table:change-track-table-cell  table:covered-table-cell  @@ -23372,7 +29442,7 @@

office:string-value Attribute< Datatypes - string  + string    @@ -23380,6 +29450,10 @@

office:string-value Attribute<   + + RNG Relations + office:string-value="<string>"   +

office:target-frame Attribute

@@ -23395,18 +29469,22 @@

office:target-frame Attribute< Datatypes - string  + string    Values - "_blank"  - "_parent"  - "_self"  - "_top"  + "_blank"  + "_parent"  + "_self"  + "_top"    + + RNG Relations + office:target-frame="_self | _blank | _parent | _top | <string>"   +

office:target-frame-name Attribute

@@ -23424,18 +29502,22 @@

office:target-frame-name Attr Datatypes - string  + string    Values - "_blank"  - "_parent"  - "_self"  - "_top"  + "_blank"  + "_parent"  + "_self"  + "_top"    + + RNG Relations + office:target-frame-name="_self | _blank | _parent | _top | <string>"   +

office:time-value Attribute

@@ -23443,7 +29525,7 @@

office:time-value Attribute

Parent Elements - form:list-value[3]  + form:list-value[5]  form:property  table:change-track-table-cell  table:covered-table-cell  @@ -23457,7 +29539,7 @@

office:time-value Attribute

Datatypes - duration  + duration    @@ -23465,6 +29547,10 @@

office:time-value Attribute

  + + RNG Relations + office:time-value="<duration>"   +

office:value Attribute

@@ -23473,8 +29559,8 @@

office:value Attribute

Parent Elements form:list-value[1]  - form:list-value[2]  - form:list-value[5]  + form:list-value[3]  + form:list-value[6]  form:property  table:change-track-table-cell  table:covered-table-cell  @@ -23488,7 +29574,7 @@

office:value Attribute

Datatypes - double  + double    @@ -23496,6 +29582,10 @@

office:value Attribute

  + + RNG Relations + office:value="<double>"   +

office:value-type[1] Attribute

@@ -23506,6 +29596,12 @@

office:value-type[1] Attribute form:list-property  form:property  + table:change-track-table-cell  + table:covered-table-cell  + table:table-cell  + text:expression  + text:user-field-decl  + text:variable-set    @@ -23516,9 +29612,13 @@

office:value-type[1] Attribute Values - "void"  + "percentage"    + + RNG Relations + office:value-type="percentage"   +

office:value-type[2] Attribute

@@ -23545,9 +29645,13 @@

office:value-type[2] Attribute Values - "string"  + "date"    + + RNG Relations + office:value-type="date"   +

office:value-type[3] Attribute

@@ -23574,9 +29678,13 @@

office:value-type[3] Attribute Values - "time"  + "string"    + + RNG Relations + office:value-type="string"   +

office:value-type[4] Attribute

@@ -23603,9 +29711,13 @@

office:value-type[4] Attribute Values - "percentage"  + "boolean"    + + RNG Relations + office:value-type="boolean"   +

office:value-type[5] Attribute

@@ -23632,9 +29744,13 @@

office:value-type[5] Attribute Values - "boolean"  + "currency"    + + RNG Relations + office:value-type="currency"   +

office:value-type[6] Attribute

@@ -23661,9 +29777,13 @@

office:value-type[6] Attribute Values - "float"  + "time"    + + RNG Relations + office:value-type="time"   +

office:value-type[7] Attribute

@@ -23690,9 +29810,13 @@

office:value-type[7] Attribute Values - "currency"  + "float"    + + RNG Relations + office:value-type="float"   +

office:value-type[8] Attribute

@@ -23703,12 +29827,6 @@

office:value-type[8] Attribute form:list-property  form:property  - table:change-track-table-cell  - table:covered-table-cell  - table:table-cell  - text:expression  - text:user-field-decl  - text:variable-set    @@ -23719,9 +29837,13 @@

office:value-type[8] Attribute Values - "date"  + "void"    + + RNG Relations + office:value-type="void"   +

office:value-type[9] Attribute

@@ -23742,15 +29864,19 @@

office:value-type[9] Attribute Values - "boolean"  - "currency"  - "date"  - "float"  - "percentage"  - "string"  - "time"  + "boolean"  + "currency"  + "date"  + "float"  + "percentage"  + "string"  + "time"    + + RNG Relations + office:value-type="float | time | date | percentage | currency | boolean | string"   +

office:version Attribute

@@ -23768,7 +29894,7 @@

office:version Attribute

Datatypes - string  + string    @@ -23776,6 +29902,10 @@

office:version Attribute

  + + RNG Relations + office:version="<string>"   +

presentation:action Attribute

@@ -23794,20 +29924,24 @@

presentation:action Attribute< Values - "execute"  - "fade-out"  - "first-page"  - "hide"  - "last-page"  - "next-page"  - "none"  - "previous-page"  - "show"  - "sound"  - "stop"  - "verb"  + "execute"  + "fade-out"  + "first-page"  + "hide"  + "last-page"  + "next-page"  + "none"  + "previous-page"  + "show"  + "sound"  + "stop"  + "verb"    + + RNG Relations + presentation:action="none | previous-page | next-page | first-page | last-page | hide | stop | execute | show | verb | fade-out | sound"   +

presentation:animations Attribute

@@ -23826,10 +29960,14 @@

presentation:animations Attrib Values - "disabled"  - "enabled"  + "disabled"  + "enabled"    + + RNG Relations + presentation:animations="enabled | disabled"   +

presentation:class Attribute

@@ -23849,24 +29987,28 @@

presentation:class Attribute Values - "chart"  - "date-time"  - "footer"  - "graphic"  - "handout"  - "header"  - "notes"  - "object"  - "orgchart"  - "outline"  - "page"  - "page-number"  - "subtitle"  - "table"  - "text"  - "title"  + "chart"  + "date-time"  + "footer"  + "graphic"  + "handout"  + "header"  + "notes"  + "object"  + "orgchart"  + "outline"  + "page"  + "page-number"  + "subtitle"  + "table"  + "text"  + "title"    + + RNG Relations + presentation:class="title | outline | subtitle | text | graphic | object | chart | table | orgchart | page | notes | handout | header | footer | date-time | page-number"   +

presentation:class-names Attribute

@@ -23901,7 +30043,7 @@

presentation:class-names Attr Datatypes - NCName  + NCName    @@ -23909,6 +30051,12 @@

presentation:class-names Attr   + + RNG Relations + presentation:class-names=" +START_list(<NCName>)* +END_list"   +

presentation:delay Attribute

@@ -23925,7 +30073,7 @@

presentation:delay Attribute Datatypes - duration  + duration    @@ -23933,6 +30081,10 @@

presentation:delay Attribute   + + RNG Relations + presentation:delay="<duration>"   +

presentation:direction Attribute

@@ -23955,36 +30107,40 @@

presentation:direction Attribut Values - "clockwise"  - "counter-clockwise"  - "from-bottom"  - "from-center"  - "from-left"  - "from-lower-left"  - "from-lower-right"  - "from-right"  - "from-top"  - "from-upper-left"  - "from-upper-right"  - "horizontal"  - "none"  - "path"  - "spiral-inward-left"  - "spiral-inward-right"  - "spiral-outward-left"  - "spiral-outward-right"  - "to-bottom"  - "to-center"  - "to-left"  - "to-lower-left"  - "to-lower-right"  - "to-right"  - "to-top"  - "to-upper-left"  - "to-upper-right"  - "vertical"  + "clockwise"  + "counter-clockwise"  + "from-bottom"  + "from-center"  + "from-left"  + "from-lower-left"  + "from-lower-right"  + "from-right"  + "from-top"  + "from-upper-left"  + "from-upper-right"  + "horizontal"  + "none"  + "path"  + "spiral-inward-left"  + "spiral-inward-right"  + "spiral-outward-left"  + "spiral-outward-right"  + "to-bottom"  + "to-center"  + "to-left"  + "to-lower-left"  + "to-lower-right"  + "to-right"  + "to-top"  + "to-upper-left"  + "to-upper-right"  + "vertical"    + + RNG Relations + presentation:direction="none | from-left | from-top | from-right | from-bottom | from-center | from-upper-left | from-upper-right | from-lower-left | from-lower-right | to-left | to-top | to-right | to-bottom | to-upper-left | to-upper-right | to-lower-right | to-lower-left | path | spiral-inward-left | spiral-inward-right | spiral-outward-left | spiral-outward-right | vertical | horizontal | to-center | clockwise | counter-clockwise"   +

presentation:effect Attribute

@@ -24007,25 +30163,29 @@

presentation:effect Attribute< Values - "appear"  - "checkerboard"  - "close"  - "dissolve"  - "fade"  - "hide"  - "laser"  - "lines"  - "move"  - "move-short"  - "none"  - "open"  - "random"  - "rotate"  - "stretch"  - "stripes"  - "wavyline"  + "appear"  + "checkerboard"  + "close"  + "dissolve"  + "fade"  + "hide"  + "laser"  + "lines"  + "move"  + "move-short"  + "none"  + "open"  + "random"  + "rotate"  + "stretch"  + "stripes"  + "wavyline"    + + RNG Relations + presentation:effect="none | fade | move | stripes | open | close | dissolve | wavyline | random | lines | laser | appear | hide | move-short | checkerboard | rotate | stretch"   +

presentation:endless Attribute

@@ -24044,10 +30204,14 @@

presentation:endless Attribute Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + presentation:endless="<boolean>"   +

presentation:force-manual Attribute

@@ -24066,10 +30230,14 @@

presentation:force-manual At Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + presentation:force-manual="<boolean>"   +

presentation:full-screen Attribute

@@ -24088,10 +30256,14 @@

presentation:full-screen Attr Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + presentation:full-screen="<boolean>"   +

presentation:group-id Attribute

@@ -24109,7 +30281,7 @@

presentation:group-id Attribute< Datatypes - string  + string    @@ -24117,6 +30289,10 @@

presentation:group-id Attribute<   + + RNG Relations + presentation:group-id="<string>"   +

presentation:master-element Attribute

@@ -24134,7 +30310,7 @@

presentation:master-elemen Datatypes - IDREF  + IDREF    @@ -24142,6 +30318,10 @@

presentation:master-elemen   + + RNG Relations + presentation:master-element="<IDREF>"   +

presentation:mouse-as-pen Attribute

@@ -24160,10 +30340,14 @@

presentation:mouse-as-pen At Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + presentation:mouse-as-pen="<boolean>"   +

presentation:mouse-visible Attribute

@@ -24182,10 +30366,14 @@

presentation:mouse-visible Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + presentation:mouse-visible="<boolean>"   +

presentation:name Attribute

@@ -24202,7 +30390,7 @@

presentation:name Attribute

Datatypes - string  + string    @@ -24210,6 +30398,10 @@

presentation:name Attribute

  + + RNG Relations + presentation:name="<string>"   +

presentation:node-type Attribute

@@ -24232,15 +30424,19 @@

presentation:node-type Attribut Values - "after-previous"  - "default"  - "interactive-sequence"  - "main-sequence"  - "on-click"  - "timing-root"  - "with-previous"  + "after-previous"  + "default"  + "interactive-sequence"  + "main-sequence"  + "on-click"  + "timing-root"  + "with-previous"    + + RNG Relations + presentation:node-type="default | on-click | with-previous | after-previous | timing-root | main-sequence | interactive-sequence"   +

presentation:object Attribute

@@ -24259,24 +30455,28 @@

presentation:object Attribute< Values - "chart"  - "date-time"  - "footer"  - "graphic"  - "handout"  - "header"  - "notes"  - "object"  - "orgchart"  - "outline"  - "page"  - "page-number"  - "subtitle"  - "table"  - "text"  - "title"  + "chart"  + "date-time"  + "footer"  + "graphic"  + "handout"  + "header"  + "notes"  + "object"  + "orgchart"  + "outline"  + "page"  + "page-number"  + "subtitle"  + "table"  + "text"  + "title"    + + RNG Relations + presentation:object="title | outline | subtitle | text | graphic | object | chart | table | orgchart | page | notes | handout | header | footer | date-time | page-number"   +

presentation:pages Attribute

@@ -24297,6 +30497,10 @@

presentation:pages Attribute   + + RNG Relations + presentation:pages="TEXT"   +

presentation:path-id Attribute

@@ -24320,6 +30524,10 @@

presentation:path-id Attribute   + + RNG Relations + presentation:path-id="TEXT"   +

presentation:pause Attribute

@@ -24333,7 +30541,7 @@

presentation:pause Attribute Datatypes - duration  + duration    @@ -24341,6 +30549,10 @@

presentation:pause Attribute   + + RNG Relations + presentation:pause="<duration>"   +

presentation:placeholder Attribute

@@ -24360,10 +30572,14 @@

presentation:placeholder Attr Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + presentation:placeholder="<boolean>"   +

presentation:play-full Attribute

@@ -24382,10 +30598,14 @@

presentation:play-full Attribut Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + presentation:play-full="<boolean>"   +

presentation:presentation-page-layout-name Attribute

@@ -24400,7 +30620,7 @@

presentatio Datatypes - NCName  + NCName    @@ -24408,6 +30628,10 @@

presentatio   + + RNG Relations + presentation:presentation-page-layout-name="(<NCName>)?"   +

presentation:preset-class Attribute

@@ -24430,15 +30654,19 @@

presentation:preset-class At Values - "custom"  - "emphasis"  - "entrance"  - "exit"  - "media-call"  - "motion-path"  - "ole-action"  + "custom"  + "emphasis"  + "entrance"  + "exit"  + "media-call"  + "motion-path"  + "ole-action"    + + RNG Relations + presentation:preset-class="custom | entrance | exit | emphasis | motion-path | ole-action | media-call"   +

presentation:preset-id Attribute

@@ -24456,7 +30684,7 @@

presentation:preset-id Attribut Datatypes - string  + string    @@ -24464,6 +30692,10 @@

presentation:preset-id Attribut   + + RNG Relations + presentation:preset-id="<string>"   +

presentation:preset-sub-type Attribute

@@ -24481,7 +30713,7 @@

presentation:preset-sub-t Datatypes - string  + string    @@ -24489,6 +30721,10 @@

presentation:preset-sub-t   + + RNG Relations + presentation:preset-sub-type="<string>"   +

presentation:show Attribute

@@ -24502,7 +30738,7 @@

presentation:show Attribute

Datatypes - string  + string    @@ -24510,6 +30746,10 @@

presentation:show Attribute

  + + RNG Relations + presentation:show="<string>"   +

presentation:show-logo Attribute

@@ -24528,10 +30768,14 @@

presentation:show-logo Attribut Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + presentation:show-logo="<boolean>"   +

presentation:source Attribute

@@ -24550,10 +30794,14 @@

presentation:source Attribute< Values - "current-date"  - "fixed"  + "current-date"  + "fixed"    + + RNG Relations + presentation:source="fixed | current-date"   +

presentation:speed Attribute

@@ -24577,11 +30825,15 @@

presentation:speed Attribute Values - "fast"  - "medium"  - "slow"  + "fast"  + "medium"  + "slow"    + + RNG Relations + presentation:speed="slow | medium | fast"   +

presentation:start-page Attribute

@@ -24595,7 +30847,7 @@

presentation:start-page Attrib Datatypes - string  + string    @@ -24603,6 +30855,10 @@

presentation:start-page Attrib   + + RNG Relations + presentation:start-page="<string>"   +

presentation:start-scale Attribute

@@ -24620,7 +30876,7 @@

presentation:start-scale Attr Datatypes - string  + string    @@ -24628,6 +30884,10 @@

presentation:start-scale Attr   + + RNG Relations + presentation:start-scale="string]"   +

presentation:start-with-navigator Attribute

@@ -24646,10 +30906,14 @@

presentation:start-w Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + presentation:start-with-navigator="<boolean>"   +

presentation:stay-on-top Attribute

@@ -24668,10 +30932,14 @@

presentation:stay-on-top Attr Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + presentation:stay-on-top="<boolean>"   +

presentation:style-name Attribute

@@ -24706,7 +30974,7 @@

presentation:style-name Attrib Datatypes - NCName  + NCName    @@ -24714,6 +30982,10 @@

presentation:style-name Attrib   + + RNG Relations + presentation:style-name="(<NCName>)?"   +

presentation:transition-on-click Attribute

@@ -24732,10 +31004,14 @@

presentation:transiti Values - "disabled"  - "enabled"  + "disabled"  + "enabled"    + + RNG Relations + presentation:transition-on-click="enabled | disabled"   +

presentation:use-date-time-name Attribute

@@ -24751,7 +31027,7 @@

presentation:use-date- Datatypes - string  + string    @@ -24759,6 +31035,10 @@

presentation:use-date-   + + RNG Relations + presentation:use-date-time-name="<string>"   +

presentation:use-footer-name Attribute

@@ -24774,7 +31054,7 @@

presentation:use-footer-n Datatypes - string  + string    @@ -24782,6 +31062,10 @@

presentation:use-footer-n   + + RNG Relations + presentation:use-footer-name="<string>"   +

presentation:use-header-name Attribute

@@ -24797,7 +31081,7 @@

presentation:use-header-n Datatypes - string  + string    @@ -24805,6 +31089,10 @@

presentation:use-header-n   + + RNG Relations + presentation:use-header-name="<string>"   +

presentation:user-transformed Attribute

@@ -24824,10 +31112,14 @@

presentation:user-transf Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + presentation:user-transformed="<boolean>"   +

presentation:verb Attribute

@@ -24841,7 +31133,7 @@

presentation:verb Attribute

Datatypes - nonNegativeInteger  + nonNegativeInteger    @@ -24849,6 +31141,10 @@

presentation:verb Attribute

  + + RNG Relations + presentation:verb="<nonNegativeInteger>"   +

script:event-name Attribute

@@ -24863,7 +31159,7 @@

script:event-name Attribute

Datatypes - string  + string    @@ -24871,6 +31167,10 @@

script:event-name Attribute

  + + RNG Relations + script:event-name="<string>"   +

script:language Attribute

@@ -24886,7 +31186,7 @@

script:language Attribute

Datatypes - string  + string    @@ -24894,6 +31194,10 @@

script:language Attribute

  + + RNG Relations + script:language="<string>"   +

script:macro-name Attribute

@@ -24907,7 +31211,7 @@

script:macro-name Attribute

Datatypes - string  + string    @@ -24915,6 +31219,10 @@

script:macro-name Attribute

  + + RNG Relations + script:macro-name="<string>"   +

smil:accelerate Attribute

@@ -24930,7 +31238,7 @@

smil:accelerate Attribute

Datatypes - double  + double    @@ -24938,6 +31246,10 @@

smil:accelerate Attribute

  + + RNG Relations + smil:accelerate="<double>"   +

smil:accumulate Attribute

@@ -24961,10 +31273,14 @@

smil:accumulate Attribute

Values - "none"  - "sum"  + "none"  + "sum"    + + RNG Relations + smil:accumulate="none | sum"   +

smil:additive Attribute

@@ -24988,10 +31304,14 @@

smil:additive Attribute

Values - "replace"  - "sum"  + "replace"  + "sum"    + + RNG Relations + smil:additive="replace | sum"   +

smil:attributeName Attribute

@@ -25009,7 +31329,7 @@

smil:attributeName Attribute Datatypes - string  + string    @@ -25017,6 +31337,10 @@

smil:attributeName Attribute   + + RNG Relations + smil:attributeName="<string>"   +

smil:autoReverse Attribute

@@ -25037,10 +31361,14 @@

smil:autoReverse Attribute

Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + smil:autoReverse="<boolean>"   +

smil:begin Attribute

@@ -25058,7 +31386,7 @@

smil:begin Attribute

Datatypes - string  + string    @@ -25066,6 +31394,10 @@

smil:begin Attribute

  + + RNG Relations + smil:begin="<string>"   +

smil:by Attribute

@@ -25083,7 +31415,7 @@

smil:by Attribute

Datatypes - string  + string    @@ -25091,6 +31423,10 @@

smil:by Attribute

  + + RNG Relations + smil:by="<string>"   +

smil:calcMode Attribute

@@ -25112,12 +31448,16 @@

smil:calcMode Attribute

Values - "discrete"  - "linear"  - "paced"  - "spline"  + "discrete"  + "linear"  + "paced"  + "spline"    + + RNG Relations + smil:calcMode="discrete | linear | paced | spline"   +

smil:decelerate Attribute

@@ -25133,7 +31473,7 @@

smil:decelerate Attribute

Datatypes - double  + double    @@ -25141,6 +31481,10 @@

smil:decelerate Attribute

  + + RNG Relations + smil:decelerate="<double>"   +

smil:direction Attribute

@@ -25159,10 +31503,14 @@

smil:direction Attribute

Values - "forward"  - "reverse"  + "forward"  + "reverse"    + + RNG Relations + smil:direction="forward | reverse"   +

smil:dur Attribute

@@ -25179,7 +31527,7 @@

smil:dur Attribute

Datatypes - string  + string    @@ -25187,6 +31535,10 @@

smil:dur Attribute

  + + RNG Relations + smil:dur="<string>"   +

smil:end Attribute

@@ -25204,7 +31556,7 @@

smil:end Attribute

Datatypes - string  + string    @@ -25212,6 +31564,10 @@

smil:end Attribute

  + + RNG Relations + smil:end="<string>"   +

smil:endsync Attribute

@@ -25232,12 +31588,16 @@

smil:endsync Attribute

Values - "all"  - "first"  - "last"  - "media"  + "all"  + "first"  + "last"  + "media"    + + RNG Relations + smil:endsync="first | last | all | media"   +

smil:fadeColor Attribute

@@ -25256,10 +31616,14 @@

smil:fadeColor Attribute

Values - "forward"  - "reverse"  + "forward"  + "reverse"    + + RNG Relations + smil:fadeColor="forward | reverse"   +

smil:fill Attribute

@@ -25286,14 +31650,18 @@

smil:fill Attribute

Values - "auto"  - "default"  - "freeze"  - "hold"  - "remove"  - "transition"  + "auto"  + "default"  + "freeze"  + "hold"  + "remove"  + "transition"    + + RNG Relations + smil:fill="remove | freeze | hold | auto | default | transition"   +

smil:fillDefault Attribute

@@ -25314,14 +31682,18 @@

smil:fillDefault Attribute

Values - "auto"  - "freeze"  - "hold"  - "inherit"  - "remove"  - "transition"  + "auto"  + "freeze"  + "hold"  + "inherit"  + "remove"  + "transition"    + + RNG Relations + smil:fillDefault="remove | freeze | hold | transition | auto | inherit"   +

smil:from Attribute

@@ -25339,7 +31711,7 @@

smil:from Attribute

Datatypes - string  + string    @@ -25347,6 +31719,10 @@

smil:from Attribute

  + + RNG Relations + smil:from="<string>"   +

smil:keySplines Attribute

@@ -25362,7 +31738,7 @@

smil:keySplines Attribute

Datatypes - string  + string    @@ -25370,6 +31746,10 @@

smil:keySplines Attribute

  + + RNG Relations + smil:keySplines="<string>"   +

smil:keyTimes Attribute

@@ -25385,7 +31765,7 @@

smil:keyTimes Attribute

Datatypes - string  + string    @@ -25393,6 +31773,10 @@

smil:keyTimes Attribute

  + + RNG Relations + smil:keyTimes="<string>"   +

smil:mode Attribute

@@ -25411,10 +31795,14 @@

smil:mode Attribute

Values - "in"  - "out"  + "in"  + "out"    + + RNG Relations + smil:mode="in | out"   +

smil:repeatCount Attribute

@@ -25432,7 +31820,7 @@

smil:repeatCount Attribute

Datatypes - nonNegativeInteger  + nonNegativeInteger    @@ -25440,6 +31828,10 @@

smil:repeatCount Attribute

  + + RNG Relations + smil:repeatCount="<nonNegativeInteger>"   +

smil:repeatDur Attribute

@@ -25457,7 +31849,7 @@

smil:repeatDur Attribute

Datatypes - string  + string    @@ -25465,6 +31857,10 @@

smil:repeatDur Attribute

  + + RNG Relations + smil:repeatDur="<string>"   +

smil:restart Attribute

@@ -25485,12 +31881,16 @@

smil:restart Attribute

Values - "always"  - "default"  - "never"  - "whenNotActive"  + "always"  + "default"  + "never"  + "whenNotActive"    + + RNG Relations + smil:restart="never | always | whenNotActive | default"   +

smil:restartDefault Attribute

@@ -25511,12 +31911,16 @@

smil:restartDefault Attribute< Values - "always"  - "inherit"  - "never"  - "whenNotActive"  + "always"  + "inherit"  + "never"  + "whenNotActive"    + + RNG Relations + smil:restartDefault="never | always | whenNotActive | inherit"   +

smil:subtype Attribute

@@ -25530,7 +31934,7 @@

smil:subtype Attribute

Datatypes - string  + string    @@ -25538,6 +31942,10 @@

smil:subtype Attribute

  + + RNG Relations + smil:subtype="<string>"   +

smil:targetElement Attribute

@@ -25558,7 +31966,7 @@

smil:targetElement Attribute Datatypes - IDREF  + IDREF    @@ -25566,6 +31974,10 @@

smil:targetElement Attribute   + + RNG Relations + smil:targetElement="<IDREF>"   +

smil:to Attribute

@@ -25584,7 +31996,7 @@

smil:to Attribute

Datatypes - string  + string    @@ -25592,6 +32004,10 @@

smil:to Attribute

  + + RNG Relations + smil:to="<string>"   +

smil:type Attribute

@@ -25605,7 +32021,7 @@

smil:type Attribute

Datatypes - string  + string    @@ -25613,6 +32029,10 @@

smil:type Attribute

  + + RNG Relations + smil:type="<string>"   +

smil:values Attribute

@@ -25630,7 +32050,7 @@

smil:values Attribute

Datatypes - string  + string    @@ -25638,6 +32058,10 @@

smil:values Attribute

  + + RNG Relations + smil:values="<string>"   +

style:apply-style-name Attribute

@@ -25651,7 +32075,7 @@

style:apply-style-name Attribut Datatypes - NCName  + NCName    @@ -25659,6 +32083,10 @@

style:apply-style-name Attribut   + + RNG Relations + style:apply-style-name="(<NCName>)?"   +

style:auto-update Attribute

@@ -25677,10 +32105,14 @@

style:auto-update Attribute

Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + style:auto-update="<boolean>"   +

style:base-cell-address Attribute

@@ -25694,7 +32126,7 @@

style:base-cell-address Attrib Datatypes - string  + string    @@ -25702,6 +32134,10 @@

style:base-cell-address Attrib   + + RNG Relations + style:base-cell-address="string]"   +

style:class Attribute

@@ -25715,7 +32151,7 @@

style:class Attribute

Datatypes - string  + string    @@ -25723,6 +32159,10 @@

style:class Attribute

  + + RNG Relations + style:class="<string>"   +

style:condition Attribute

@@ -25736,7 +32176,7 @@

style:condition Attribute

Datatypes - string  + string    @@ -25744,6 +32184,10 @@

style:condition Attribute

  + + RNG Relations + style:condition="<string>"   +

style:data-style-name Attribute

@@ -25776,7 +32220,7 @@

style:data-style-name Attribute< Datatypes - NCName  + NCName    @@ -25784,6 +32228,10 @@

style:data-style-name Attribute<   + + RNG Relations + style:data-style-name="(<NCName>)?"   +

style:default-outline-level Attribute

@@ -25797,7 +32245,7 @@

style:default-outline-leve Datatypes - positiveInteger  + positiveInteger    @@ -25805,6 +32253,10 @@

style:default-outline-leve   + + RNG Relations + style:default-outline-level="<positiveInteger>"   +

style:display Attribute

@@ -25826,10 +32278,14 @@

style:display Attribute

Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + style:display="<boolean>"   +

style:display-name Attribute

@@ -25846,7 +32302,7 @@

style:display-name Attribute Datatypes - string  + string    @@ -25854,6 +32310,10 @@

style:display-name Attribute   + + RNG Relations + style:display-name="<string>"   +

style:family[1] Attribute

@@ -25874,9 +32334,13 @@

style:family[1] Attribute

Values - "section"  + "paragraph"    + + RNG Relations + style:family="paragraph"   +

style:family[2] Attribute

@@ -25897,9 +32361,13 @@

style:family[2] Attribute

Values - "paragraph"  + "table-cell"    + + RNG Relations + style:family="table-cell"   +

style:family[3] Attribute

@@ -25920,9 +32388,14 @@

style:family[3] Attribute

Values - "drawing-page"  + "graphic"  + "presentation"    + + RNG Relations + style:family="graphic | presentation"   +

style:family[4] Attribute

@@ -25943,9 +32416,13 @@

style:family[4] Attribute

Values - "table-cell"  + "drawing-page"    + + RNG Relations + style:family="drawing-page"   +

style:family[5] Attribute

@@ -25966,9 +32443,13 @@

style:family[5] Attribute

Values - "table-row"  + "table-row"    + + RNG Relations + style:family="table-row"   +

style:family[6] Attribute

@@ -25989,9 +32470,13 @@

style:family[6] Attribute

Values - "ruby"  + "section"    + + RNG Relations + style:family="section"   +

style:family[7] Attribute

@@ -26012,9 +32497,13 @@

style:family[7] Attribute

Values - "table"  + "table-column"    + + RNG Relations + style:family="table-column"   +

style:family[8] Attribute

@@ -26035,9 +32524,13 @@

style:family[8] Attribute

Values - "chart"  + "table"    + + RNG Relations + style:family="table"   +

style:family[9] Attribute

@@ -26058,9 +32551,13 @@

style:family[9] Attribute

Values - "text"  + "ruby"    + + RNG Relations + style:family="ruby"   +

style:family[10] Attribute

@@ -26081,9 +32578,13 @@

style:family[10] Attribute

Values - "table-column"  + "chart"    + + RNG Relations + style:family="chart"   +

style:family[11] Attribute

@@ -26104,10 +32605,13 @@

style:family[11] Attribute

Values - "graphic"  - "presentation"  + "text"    + + RNG Relations + style:family="text"   +

style:font-adornments Attribute

@@ -26121,7 +32625,7 @@

style:font-adornments Attribute< Datatypes - string  + string    @@ -26129,6 +32633,10 @@

style:font-adornments Attribute<   + + RNG Relations + style:font-adornments="<string>"   +

style:font-charset Attribute

@@ -26142,7 +32650,7 @@

style:font-charset Attribute Datatypes - string  + string    @@ -26150,6 +32658,10 @@

style:font-charset Attribute   + + RNG Relations + style:font-charset="string]"   +

style:font-family-generic Attribute

@@ -26168,14 +32680,18 @@

style:font-family-generic At Values - "decorative"  - "modern"  - "roman"  - "script"  - "swiss"  - "system"  + "decorative"  + "modern"  + "roman"  + "script"  + "swiss"  + "system"    + + RNG Relations + style:font-family-generic="roman | swiss | modern | decorative | script | system"   +

style:font-pitch Attribute

@@ -26194,10 +32710,14 @@

style:font-pitch Attribute

Values - "fixed"  - "variable"  + "fixed"  + "variable"    + + RNG Relations + style:font-pitch="fixed | variable"   +

style:leader-char Attribute

@@ -26211,7 +32731,7 @@

style:leader-char Attribute

Datatypes - string  + string    @@ -26219,6 +32739,10 @@

style:leader-char Attribute

  + + RNG Relations + style:leader-char="string]"   +

style:legend-expansion[1] Attribute

@@ -26238,9 +32762,13 @@

style:legend-expansion[1] Attri Values - "custom"  + "custom"    + + RNG Relations + style:legend-expansion="custom"   +

style:legend-expansion[2] Attribute

@@ -26260,11 +32788,15 @@

style:legend-expansion[2] Attri Values - "balanced"  - "high"  - "wide"  + "balanced"  + "high"  + "wide"    + + RNG Relations + style:legend-expansion="wide | high | balanced"   +

style:legend-expansion-aspect-ratio Attribute

@@ -26278,7 +32810,7 @@

style:legend-expan Datatypes - double  + double    @@ -26286,6 +32818,10 @@

style:legend-expan   + + RNG Relations + style:legend-expansion-aspect-ratio="<double>"   +

style:list-style-name Attribute

@@ -26299,7 +32835,7 @@

style:list-style-name Attribute< Datatypes - NCName  + NCName    @@ -26307,6 +32843,10 @@

style:list-style-name Attribute<   + + RNG Relations + style:list-style-name="(<NCName>)?"   +

style:master-page-name Attribute

@@ -26320,7 +32860,7 @@

style:master-page-name Attribut Datatypes - NCName  + NCName    @@ -26328,6 +32868,10 @@

style:master-page-name Attribut   + + RNG Relations + style:master-page-name="(<NCName>)?"   +

style:name[1] Attribute

@@ -26353,7 +32897,7 @@

style:name[1] Attribute

Datatypes - NCName  + NCName    @@ -26361,6 +32905,10 @@

style:name[1] Attribute

  + + RNG Relations + style:name="<NCName>"   +

style:name[2] Attribute

@@ -26375,7 +32923,7 @@

style:name[2] Attribute

Datatypes - string  + string    @@ -26383,6 +32931,10 @@

style:name[2] Attribute

  + + RNG Relations + style:name="<string>"   +

style:next-style-name Attribute

@@ -26397,7 +32949,7 @@

style:next-style-name Attribute< Datatypes - NCName  + NCName    @@ -26405,6 +32957,10 @@

style:next-style-name Attribute<   + + RNG Relations + style:next-style-name="(<NCName>)?"   +

style:num-format[1] Attribute

@@ -26433,17 +32989,21 @@

style:num-format[1] Attribute

Datatypes - string  + string    Values - "1"  - "I"  - "i"  + "1"  + "I"  + "i"    + + RNG Relations + style:num-format="(1 | i | I | <string>)?"   +

style:num-format[2] Attribute

@@ -26477,10 +33037,14 @@

style:num-format[2] Attribute

Values - "A"  - "a"  + "A"  + "a"    + + RNG Relations + style:num-format="a | A"   +

style:num-letter-sync Attribute

@@ -26513,10 +33077,14 @@

style:num-letter-sync Attribute< Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + style:num-letter-sync="<boolean>"   +

style:num-prefix Attribute

@@ -26533,7 +33101,7 @@

style:num-prefix Attribute

Datatypes - string  + string    @@ -26541,6 +33109,10 @@

style:num-prefix Attribute

  + + RNG Relations + style:num-prefix="<string>"   +

style:num-suffix Attribute

@@ -26557,7 +33129,7 @@

style:num-suffix Attribute

Datatypes - string  + string    @@ -26565,6 +33137,10 @@

style:num-suffix Attribute

  + + RNG Relations + style:num-suffix="<string>"   +

style:page-layout-name Attribute

@@ -26580,7 +33156,7 @@

style:page-layout-name Attribut Datatypes - NCName  + NCName    @@ -26588,6 +33164,10 @@

style:page-layout-name Attribut   + + RNG Relations + style:page-layout-name="(<NCName>)?"   +

style:page-usage Attribute

@@ -26606,12 +33186,16 @@

style:page-usage Attribute

Values - "all"  - "left"  - "mirrored"  - "right"  + "all"  + "left"  + "mirrored"  + "right"    + + RNG Relations + style:page-usage="all | left | right | mirrored"   +

style:parent-style-name Attribute

@@ -26625,7 +33209,7 @@

style:parent-style-name Attrib Datatypes - NCName  + NCName    @@ -26633,6 +33217,10 @@

style:parent-style-name Attrib   + + RNG Relations + style:parent-style-name="(<NCName>)?"   +

style:position Attribute

@@ -26646,7 +33234,7 @@

style:position Attribute

Datatypes - string  + string    @@ -26654,6 +33242,10 @@

style:position Attribute

  + + RNG Relations + style:position="string]"   +

style:rel-height Attribute

@@ -26667,16 +33259,20 @@

style:rel-height Attribute

Datatypes - string  + string    Values - "scale"  - "scale-min"  + "scale"  + "scale-min"    + + RNG Relations + style:rel-height="string] | scale | scale-min"   +

style:rel-width Attribute

@@ -26690,16 +33286,20 @@

style:rel-width Attribute

Datatypes - string  + string    Values - "scale"  - "scale-min"  + "scale"  + "scale-min"    + + RNG Relations + style:rel-width="string] | scale | scale-min"   +

style:type[1] Attribute

@@ -26719,9 +33319,13 @@

style:type[1] Attribute

Values - "right"  + "right"    + + RNG Relations + style:type="right"   +

style:type[2] Attribute

@@ -26741,9 +33345,13 @@

style:type[2] Attribute

Values - "left"  + "left"    + + RNG Relations + style:type="left"   +

style:volatile Attribute

@@ -26768,10 +33376,14 @@

style:volatile Attribute

Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + style:volatile="<boolean>"   +

svg:accent-height Attribute

@@ -26785,7 +33397,7 @@

svg:accent-height Attribute

Datatypes - integer  + integer    @@ -26793,6 +33405,10 @@

svg:accent-height Attribute

  + + RNG Relations + svg:accent-height="<integer>"   +

svg:alphabetic Attribute

@@ -26806,7 +33422,7 @@

svg:alphabetic Attribute

Datatypes - integer  + integer    @@ -26814,6 +33430,10 @@

svg:alphabetic Attribute

  + + RNG Relations + svg:alphabetic="<integer>"   +

svg:ascent Attribute

@@ -26827,7 +33447,7 @@

svg:ascent Attribute

Datatypes - integer  + integer    @@ -26835,6 +33455,10 @@

svg:ascent Attribute

  + + RNG Relations + svg:ascent="<integer>"   +

svg:bbox Attribute

@@ -26855,6 +33479,10 @@

svg:bbox Attribute

  + + RNG Relations + svg:bbox="TEXT"   +

svg:cap-height Attribute

@@ -26868,7 +33496,7 @@

svg:cap-height Attribute

Datatypes - integer  + integer    @@ -26876,6 +33504,10 @@

svg:cap-height Attribute

  + + RNG Relations + svg:cap-height="<integer>"   +

svg:cx[1] Attribute

@@ -26892,7 +33524,7 @@

svg:cx[1] Attribute

Datatypes - string  + string    @@ -26900,6 +33532,10 @@

svg:cx[1] Attribute

  + + RNG Relations + svg:cx="string]"   +

svg:cx[2] Attribute

@@ -26914,8 +33550,8 @@

svg:cx[2] Attribute

Datatypes - string  - string  + string  + string    @@ -26923,6 +33559,10 @@

svg:cx[2] Attribute

  + + RNG Relations + svg:cx="string] | string]"   +

svg:cy[1] Attribute

@@ -26931,15 +33571,14 @@

svg:cy[1] Attribute

Parent Elements - draw:area-circle  - draw:circle  - draw:ellipse  + svg:radialGradient    Datatypes - string  + string  + string    @@ -26947,6 +33586,10 @@

svg:cy[1] Attribute

  + + RNG Relations + svg:cy="string] | string]"   +

svg:cy[2] Attribute

@@ -26955,14 +33598,15 @@

svg:cy[2] Attribute

Parent Elements - svg:radialGradient  + draw:area-circle  + draw:circle  + draw:ellipse    Datatypes - string  - string  + string    @@ -26970,6 +33614,10 @@

svg:cy[2] Attribute

  + + RNG Relations + svg:cy="string]"   +

svg:d Attribute

@@ -26987,7 +33635,7 @@

svg:d Attribute

Datatypes - string  + string    @@ -26995,6 +33643,10 @@

svg:d Attribute

  + + RNG Relations + svg:d="<string>"   +

svg:descent Attribute

@@ -27008,7 +33660,7 @@

svg:descent Attribute

Datatypes - integer  + integer    @@ -27016,6 +33668,10 @@

svg:descent Attribute

  + + RNG Relations + svg:descent="<integer>"   +

svg:font-family Attribute

@@ -27029,7 +33685,7 @@

svg:font-family Attribute

Datatypes - string  + string    @@ -27037,6 +33693,10 @@

svg:font-family Attribute

  + + RNG Relations + svg:font-family="<string>"   +

svg:font-size Attribute

@@ -27050,7 +33710,7 @@

svg:font-size Attribute

Datatypes - string  + string    @@ -27058,6 +33718,10 @@

svg:font-size Attribute

  + + RNG Relations + svg:font-size="string]"   +

svg:font-stretch Attribute

@@ -27076,17 +33740,21 @@

svg:font-stretch Attribute

Values - "condensed"  - "expanded"  - "extra-condensed"  - "extra-expanded"  - "normal"  - "semi-condensed"  - "semi-expanded"  - "ultra-condensed"  - "ultra-expanded"  + "condensed"  + "expanded"  + "extra-condensed"  + "extra-expanded"  + "normal"  + "semi-condensed"  + "semi-expanded"  + "ultra-condensed"  + "ultra-expanded"    + + RNG Relations + svg:font-stretch="normal | ultra-condensed | extra-condensed | condensed | semi-condensed | semi-expanded | expanded | extra-expanded | ultra-expanded"   +

svg:font-style Attribute

@@ -27105,11 +33773,15 @@

svg:font-style Attribute

Values - "italic"  - "normal"  - "oblique"  + "italic"  + "normal"  + "oblique"    + + RNG Relations + svg:font-style="normal | italic | oblique"   +

svg:font-variant Attribute

@@ -27128,10 +33800,14 @@

svg:font-variant Attribute

Values - "normal"  - "small-caps"  + "normal"  + "small-caps"    + + RNG Relations + svg:font-variant="normal | small-caps"   +

svg:font-weight Attribute

@@ -27150,19 +33826,23 @@

svg:font-weight Attribute

Values - "100"  - "200"  - "300"  - "400"  - "500"  - "600"  - "700"  - "800"  - "900"  - "bold"  - "normal"  + "100"  + "200"  + "300"  + "400"  + "500"  + "600"  + "700"  + "800"  + "900"  + "bold"  + "normal"    + + RNG Relations + svg:font-weight="normal | bold | 100 | 200 | 300 | 400 | 500 | 600 | 700 | 800 | 900"   +

svg:fx Attribute

@@ -27176,8 +33856,8 @@

svg:fx Attribute

Datatypes - string  - string  + string  + string    @@ -27185,6 +33865,10 @@

svg:fx Attribute

  + + RNG Relations + svg:fx="string] | string]"   +

svg:fy Attribute

@@ -27198,8 +33882,8 @@

svg:fy Attribute

Datatypes - string  - string  + string  + string    @@ -27207,6 +33891,10 @@

svg:fy Attribute

  + + RNG Relations + svg:fy="string] | string]"   +

svg:gradientTransform Attribute

@@ -27221,7 +33909,7 @@

svg:gradientTransform Attribute< Datatypes - string  + string    @@ -27229,6 +33917,10 @@

svg:gradientTransform Attribute<   + + RNG Relations + svg:gradientTransform="<string>"   +

svg:gradientUnits Attribute

@@ -27248,9 +33940,13 @@

svg:gradientUnits Attribute

Values - "objectBoundingBox"  + "objectBoundingBox"    + + RNG Relations + svg:gradientUnits="objectBoundingBox"   +

svg:hanging Attribute

@@ -27264,7 +33960,7 @@

svg:hanging Attribute

Datatypes - integer  + integer    @@ -27272,6 +33968,10 @@

svg:hanging Attribute

  + + RNG Relations + svg:hanging="<integer>"   +

svg:height[1] Attribute

@@ -27306,7 +34006,7 @@

svg:height[1] Attribute

Datatypes - string  + string    @@ -27314,6 +34014,10 @@

svg:height[1] Attribute

  + + RNG Relations + svg:height="string]"   +

svg:height[2] Attribute

@@ -27328,8 +34032,8 @@

svg:height[2] Attribute

Datatypes - string  - string  + string  + string    @@ -27337,6 +34041,10 @@

svg:height[2] Attribute

  + + RNG Relations + svg:height="string] | string]"   +

svg:ideographic Attribute

@@ -27350,7 +34058,7 @@

svg:ideographic Attribute

Datatypes - integer  + integer    @@ -27358,6 +34066,10 @@

svg:ideographic Attribute

  + + RNG Relations + svg:ideographic="<integer>"   +

svg:mathematical Attribute

@@ -27371,7 +34083,7 @@

svg:mathematical Attribute

Datatypes - integer  + integer    @@ -27379,6 +34091,10 @@

svg:mathematical Attribute

  + + RNG Relations + svg:mathematical="<integer>"   +

svg:offset Attribute

@@ -27392,8 +34108,8 @@

svg:offset Attribute

Datatypes - double  - string  + double  + string    @@ -27401,6 +34117,10 @@

svg:offset Attribute

  + + RNG Relations + svg:offset="<double> | string]"   +

svg:origin Attribute

@@ -27414,7 +34134,7 @@

svg:origin Attribute

Datatypes - string  + string    @@ -27422,6 +34142,10 @@

svg:origin Attribute

  + + RNG Relations + svg:origin="<string>"   +

svg:overline-position Attribute

@@ -27435,7 +34159,7 @@

svg:overline-position Attribute< Datatypes - integer  + integer    @@ -27443,6 +34167,10 @@

svg:overline-position Attribute<   + + RNG Relations + svg:overline-position="<integer>"   +

svg:overline-thickness Attribute

@@ -27456,7 +34184,7 @@

svg:overline-thickness Attribut Datatypes - integer  + integer    @@ -27464,6 +34192,10 @@

svg:overline-thickness Attribut   + + RNG Relations + svg:overline-thickness="<integer>"   +

svg:panose-1 Attribute

@@ -27484,6 +34216,10 @@

svg:panose-1 Attribute

  + + RNG Relations + svg:panose-1="TEXT"   +

svg:path Attribute

@@ -27497,7 +34233,7 @@

svg:path Attribute

Datatypes - string  + string    @@ -27505,6 +34241,10 @@

svg:path Attribute

  + + RNG Relations + svg:path="<string>"   +

svg:r[1] Attribute

@@ -27513,14 +34253,14 @@

svg:r[1] Attribute

Parent Elements - draw:area-circle  - draw:circle  + svg:radialGradient    Datatypes - string  + string  + string    @@ -27528,6 +34268,10 @@

svg:r[1] Attribute

  + + RNG Relations + svg:r="string] | string]"   +

svg:r[2] Attribute

@@ -27536,14 +34280,14 @@

svg:r[2] Attribute

Parent Elements - svg:radialGradient  + draw:area-circle  + draw:circle    Datatypes - string  - string  + string    @@ -27551,6 +34295,10 @@

svg:r[2] Attribute

  + + RNG Relations + svg:r="string]"   +

svg:rx Attribute

@@ -27564,7 +34312,7 @@

svg:rx Attribute

Datatypes - string  + string    @@ -27572,6 +34320,10 @@

svg:rx Attribute

  + + RNG Relations + svg:rx="string]"   +

svg:ry Attribute

@@ -27585,7 +34337,7 @@

svg:ry Attribute

Datatypes - string  + string    @@ -27593,6 +34345,10 @@

svg:ry Attribute

  + + RNG Relations + svg:ry="string]"   +

svg:slope Attribute

@@ -27606,7 +34362,7 @@

svg:slope Attribute

Datatypes - integer  + integer    @@ -27614,6 +34370,10 @@

svg:slope Attribute

  + + RNG Relations + svg:slope="<integer>"   +

svg:spreadMethod Attribute

@@ -27633,11 +34393,15 @@

svg:spreadMethod Attribute

Values - "pad"  - "reflect"  - "repeat"  + "pad"  + "reflect"  + "repeat"    + + RNG Relations + svg:spreadMethod="pad | reflect | repeat"   +

svg:stemh Attribute

@@ -27651,7 +34415,7 @@

svg:stemh Attribute

Datatypes - integer  + integer    @@ -27659,6 +34423,10 @@

svg:stemh Attribute

  + + RNG Relations + svg:stemh="<integer>"   +

svg:stemv Attribute

@@ -27672,7 +34440,7 @@

svg:stemv Attribute

Datatypes - integer  + integer    @@ -27680,6 +34448,10 @@

svg:stemv Attribute

  + + RNG Relations + svg:stemv="<integer>"   +

svg:stop-color Attribute

@@ -27693,7 +34465,7 @@

svg:stop-color Attribute

Datatypes - string  + string    @@ -27701,6 +34473,10 @@

svg:stop-color Attribute

  + + RNG Relations + svg:stop-color="string]"   +

svg:stop-opacity Attribute

@@ -27714,7 +34490,7 @@

svg:stop-opacity Attribute

Datatypes - double  + double    @@ -27722,6 +34498,10 @@

svg:stop-opacity Attribute

  + + RNG Relations + svg:stop-opacity="<double>"   +

svg:strikethrough-position Attribute

@@ -27735,7 +34515,7 @@

svg:strikethrough-position Datatypes - integer  + integer    @@ -27743,6 +34523,10 @@

svg:strikethrough-position   + + RNG Relations + svg:strikethrough-position="<integer>"   +

svg:strikethrough-thickness Attribute

@@ -27756,7 +34540,7 @@

svg:strikethrough-thicknes Datatypes - integer  + integer    @@ -27764,6 +34548,10 @@

svg:strikethrough-thicknes   + + RNG Relations + svg:strikethrough-thickness="<integer>"   +

svg:string Attribute

@@ -27784,6 +34572,10 @@

svg:string Attribute

  + + RNG Relations + svg:string="TEXT"   +

svg:type Attribute

@@ -27802,13 +34594,17 @@

svg:type Attribute

Values - "rotate"  - "scale"  - "skewX"  - "skewY"  - "translate"  + "rotate"  + "scale"  + "skewX"  + "skewY"  + "translate"    + + RNG Relations + svg:type="translate | scale | rotate | skewX | skewY"   +

svg:underline-position Attribute

@@ -27822,7 +34618,7 @@

svg:underline-position Attribut Datatypes - integer  + integer    @@ -27830,6 +34626,10 @@

svg:underline-position Attribut   + + RNG Relations + svg:underline-position="<integer>"   +

svg:underline-thickness Attribute

@@ -27843,7 +34643,7 @@

svg:underline-thickness Attrib Datatypes - integer  + integer    @@ -27851,6 +34651,10 @@

svg:underline-thickness Attrib   + + RNG Relations + svg:underline-thickness="<integer>"   +

svg:unicode-range Attribute

@@ -27871,6 +34675,10 @@

svg:unicode-range Attribute

  + + RNG Relations + svg:unicode-range="TEXT"   +

svg:units-per-em Attribute

@@ -27884,7 +34692,7 @@

svg:units-per-em Attribute

Datatypes - integer  + integer    @@ -27892,6 +34700,10 @@

svg:units-per-em Attribute

  + + RNG Relations + svg:units-per-em="<integer>"   +

svg:v-alphabetic Attribute

@@ -27905,7 +34717,7 @@

svg:v-alphabetic Attribute

Datatypes - integer  + integer    @@ -27913,6 +34725,10 @@

svg:v-alphabetic Attribute

  + + RNG Relations + svg:v-alphabetic="<integer>"   +

svg:v-hanging Attribute

@@ -27926,7 +34742,7 @@

svg:v-hanging Attribute

Datatypes - integer  + integer    @@ -27934,6 +34750,10 @@

svg:v-hanging Attribute

  + + RNG Relations + svg:v-hanging="<integer>"   +

svg:v-ideographic Attribute

@@ -27947,7 +34767,7 @@

svg:v-ideographic Attribute

Datatypes - integer  + integer    @@ -27955,6 +34775,10 @@

svg:v-ideographic Attribute

  + + RNG Relations + svg:v-ideographic="<integer>"   +

svg:v-mathematical Attribute

@@ -27968,7 +34792,7 @@

svg:v-mathematical Attribute Datatypes - integer  + integer    @@ -27976,6 +34800,10 @@

svg:v-mathematical Attribute   + + RNG Relations + svg:v-mathematical="<integer>"   +

svg:viewBox Attribute

@@ -27998,7 +34826,7 @@

svg:viewBox Attribute

Datatypes - integer  + integer    @@ -28006,6 +34834,12 @@

svg:viewBox Attribute

  + + RNG Relations + svg:viewBox=" +START_list<integer><integer><integer><integer> +END_list"   +

svg:width[1] Attribute

@@ -28042,7 +34876,7 @@

svg:width[1] Attribute

Datatypes - string  + string    @@ -28050,6 +34884,10 @@

svg:width[1] Attribute

  + + RNG Relations + svg:width="string]"   +

svg:width[2] Attribute

@@ -28064,8 +34902,8 @@

svg:width[2] Attribute

Datatypes - string  - string  + string  + string    @@ -28073,6 +34911,10 @@

svg:width[2] Attribute

  + + RNG Relations + svg:width="string] | string]"   +

svg:widths Attribute

@@ -28093,33 +34935,13 @@

svg:widths Attribute

  - -
-

svg:x[1] Attribute

-

There are more than one Definitions by this name.

- - - - - - - - - - - + +
Parent Elements - draw:glue-point  - presentation:placeholder  - 
Datatypes - string  - string  - 
ValuesRNG Relationssvg:widths="TEXT"  

-

svg:x[2] Attribute

+

svg:x[1] Attribute

There are more than one Definitions by this name.

@@ -28151,7 +34973,35 @@

svg:x[2] Attribute

+ + + + + + + + + +
Datatypes - string  + string  + 
Values
RNG Relationssvg:x="string]"  
+
+

svg:x[2] Attribute

+

There are more than one Definitions by this name.

+ + + + + + + + @@ -28159,6 +35009,10 @@

svg:x[2] Attribute

+ + + +
Parent Elements + draw:glue-point  + presentation:placeholder  + 
Datatypes + string  + string   
 
RNG Relationssvg:x="string] | string]"  

svg:x-height Attribute

@@ -28172,7 +35026,7 @@

svg:x-height Attribute

Datatypes - integer  + integer    @@ -28180,6 +35034,10 @@

svg:x-height Attribute

  + + RNG Relations + svg:x-height="<integer>"   +

svg:x1[1] Attribute

@@ -28196,7 +35054,7 @@

svg:x1[1] Attribute

Datatypes - string  + string    @@ -28204,6 +35062,10 @@

svg:x1[1] Attribute

  + + RNG Relations + svg:x1="string]"   +

svg:x1[2] Attribute

@@ -28218,8 +35080,8 @@

svg:x1[2] Attribute

Datatypes - string  - string  + string  + string    @@ -28227,6 +35089,10 @@

svg:x1[2] Attribute

  + + RNG Relations + svg:x1="string] | string]"   +

svg:x2[1] Attribute

@@ -28235,14 +35101,15 @@

svg:x2[1] Attribute

Parent Elements - svg:linearGradient  + draw:connector  + draw:line  + draw:measure    Datatypes - string  - string  + string    @@ -28250,6 +35117,10 @@

svg:x2[1] Attribute

  + + RNG Relations + svg:x2="string]"   +

svg:x2[2] Attribute

@@ -28258,15 +35129,14 @@

svg:x2[2] Attribute

Parent Elements - draw:connector  - draw:line  - draw:measure  + svg:linearGradient    Datatypes - string  + string  + string    @@ -28274,6 +35144,10 @@

svg:x2[2] Attribute

  + + RNG Relations + svg:x2="string] | string]"   +

svg:y[1] Attribute

@@ -28289,8 +35163,8 @@

svg:y[1] Attribute

Datatypes - string  - string  + string  + string    @@ -28298,6 +35172,10 @@

svg:y[1] Attribute

  + + RNG Relations + svg:y="string] | string]"   +

svg:y[2] Attribute

@@ -28333,7 +35211,7 @@

svg:y[2] Attribute

Datatypes - string  + string    @@ -28341,6 +35219,10 @@

svg:y[2] Attribute

  + + RNG Relations + svg:y="string]"   +

svg:y1[1] Attribute

@@ -28349,14 +35231,15 @@

svg:y1[1] Attribute

Parent Elements - svg:linearGradient  + draw:connector  + draw:line  + draw:measure    Datatypes - string  - string  + string    @@ -28364,6 +35247,10 @@

svg:y1[1] Attribute

  + + RNG Relations + svg:y1="string]"   +

svg:y1[2] Attribute

@@ -28372,15 +35259,14 @@

svg:y1[2] Attribute

Parent Elements - draw:connector  - draw:line  - draw:measure  + svg:linearGradient    Datatypes - string  + string  + string    @@ -28388,6 +35274,10 @@

svg:y1[2] Attribute

  + + RNG Relations + svg:y1="string] | string]"   +

svg:y2[1] Attribute

@@ -28396,14 +35286,15 @@

svg:y2[1] Attribute

Parent Elements - svg:linearGradient  + draw:connector  + draw:line  + draw:measure    Datatypes - string  - string  + string    @@ -28411,6 +35302,10 @@

svg:y2[1] Attribute

  + + RNG Relations + svg:y2="string]"   +

svg:y2[2] Attribute

@@ -28419,15 +35314,14 @@

svg:y2[2] Attribute

Parent Elements - draw:connector  - draw:line  - draw:measure  + svg:linearGradient    Datatypes - string  + string  + string    @@ -28435,6 +35329,10 @@

svg:y2[2] Attribute

  + + RNG Relations + svg:y2="string] | string]"   +

table:acceptance-state Attribute

@@ -28456,11 +35354,15 @@

table:acceptance-state Attribut Values - "accepted"  - "pending"  - "rejected"  + "accepted"  + "pending"  + "rejected"    + + RNG Relations + table:acceptance-state="accepted | rejected | pending"   +

table:add-empty-lines Attribute

@@ -28479,10 +35381,14 @@

table:add-empty-lines Attribute< Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + table:add-empty-lines="<boolean>"   +

table:algorithm Attribute

@@ -28496,7 +35402,7 @@

table:algorithm Attribute

Datatypes - string  + string    @@ -28504,6 +35410,10 @@

table:algorithm Attribute

  + + RNG Relations + table:algorithm="<string>"   +

table:allow-empty-cell Attribute

@@ -28522,10 +35432,14 @@

table:allow-empty-cell Attribut Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + table:allow-empty-cell="<boolean>"   +

table:application-data Attribute

@@ -28539,7 +35453,7 @@

table:application-data Attribut Datatypes - string  + string    @@ -28547,6 +35461,10 @@

table:application-data Attribut   + + RNG Relations + table:application-data="<string>"   +

table:automatic-find-labels Attribute

@@ -28565,10 +35483,14 @@

table:automatic-find-label Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + table:automatic-find-labels="<boolean>"   +

table:base-cell-address Attribute

@@ -28584,7 +35506,7 @@

table:base-cell-address Attrib Datatypes - string  + string    @@ -28592,6 +35514,10 @@

table:base-cell-address Attrib   + + RNG Relations + table:base-cell-address="string]"   +

table:bind-styles-to-content Attribute

@@ -28611,10 +35537,14 @@

table:bind-styles-to-cont Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + table:bind-styles-to-content="<boolean>"   +

table:border-color Attribute

@@ -28628,7 +35558,7 @@

table:border-color Attribute Datatypes - string  + string    @@ -28636,6 +35566,10 @@

table:border-color Attribute   + + RNG Relations + table:border-color="string]"   +

table:buttons Attribute

@@ -28649,7 +35583,7 @@

table:buttons Attribute

Datatypes - string  + string    @@ -28657,6 +35591,10 @@

table:buttons Attribute

  + + RNG Relations + table:buttons="<string>"   +

table:case-sensitive[1] Attribute

@@ -28665,20 +35603,27 @@

table:case-sensitive[1] Attribute Parent Elements - table:filter-condition  + table:calculation-settings  + table:sort  + table:subtotal-rules    Datatypes - string    Values + "false"  + "true"    + + RNG Relations + table:case-sensitive="<boolean>"   +

table:case-sensitive[2] Attribute

@@ -28687,23 +35632,24 @@

table:case-sensitive[2] Attribute Parent Elements - table:calculation-settings  - table:sort  - table:subtotal-rules  + table:filter-condition    Datatypes + string    Values - "false"  - "true"    + + RNG Relations + table:case-sensitive="<string>"   +

table:cell-address Attribute

@@ -28717,7 +35663,7 @@

table:cell-address Attribute Datatypes - string  + string    @@ -28725,6 +35671,10 @@

table:cell-address Attribute   + + RNG Relations + table:cell-address="string]"   +

table:cell-range Attribute

@@ -28740,7 +35690,7 @@

table:cell-range Attribute

Datatypes - string  + string    @@ -28748,6 +35698,10 @@

table:cell-range Attribute

  + + RNG Relations + table:cell-range="string]"   +

table:cell-range-address Attribute

@@ -28766,7 +35720,7 @@

table:cell-range-address Attr Datatypes - string  + string    @@ -28774,6 +35728,10 @@

table:cell-range-address Attr   + + RNG Relations + table:cell-range-address="string]"   +

table:column Attribute

@@ -28789,7 +35747,7 @@

table:column Attribute

Datatypes - integer  + integer    @@ -28797,6 +35755,10 @@

table:column Attribute

  + + RNG Relations + table:column="<integer>"   +

table:comment Attribute

@@ -28810,7 +35772,7 @@

table:comment Attribute

Datatypes - string  + string    @@ -28818,6 +35780,10 @@

table:comment Attribute

  + + RNG Relations + table:comment="<string>"   +

table:condition Attribute

@@ -28831,7 +35797,7 @@

table:condition Attribute

Datatypes - string  + string    @@ -28839,6 +35805,10 @@

table:condition Attribute

  + + RNG Relations + table:condition="<string>"   +

table:condition-source Attribute

@@ -28857,10 +35827,14 @@

table:condition-source Attribut Values - "cell-range"  - "self"  + "cell-range"  + "self"    + + RNG Relations + table:condition-source="self | cell-range"   +

table:condition-source-range-address Attribute

@@ -28874,7 +35848,7 @@

table:condition-s Datatypes - string  + string    @@ -28882,6 +35856,10 @@

table:condition-s   + + RNG Relations + table:condition-source-range-address="string]"   +

table:contains-error Attribute

@@ -28900,10 +35878,14 @@

table:contains-error Attribute Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + table:contains-error="<boolean>"   +

table:contains-header Attribute

@@ -28922,10 +35904,14 @@

table:contains-header Attribute< Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + table:contains-header="<boolean>"   +

table:content-validation-name Attribute

@@ -28940,7 +35926,7 @@

table:content-validation Datatypes - string  + string    @@ -28948,6 +35934,10 @@

table:content-validation   + + RNG Relations + table:content-validation-name="<string>"   +

table:copy-back Attribute

@@ -28966,10 +35956,14 @@

table:copy-back Attribute

Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + table:copy-back="<boolean>"   +

table:copy-formulas Attribute

@@ -28988,10 +35982,14 @@

table:copy-formulas Attribute< Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + table:copy-formulas="<boolean>"   +

table:copy-styles Attribute

@@ -29010,10 +36008,14 @@

table:copy-styles Attribute

Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + table:copy-styles="<boolean>"   +

table:count Attribute

@@ -29027,7 +36029,7 @@

table:count Attribute

Datatypes - positiveInteger  + positiveInteger    @@ -29035,6 +36037,10 @@

table:count Attribute

  + + RNG Relations + table:count="<positiveInteger>"   +

table:country Attribute

@@ -29048,7 +36054,7 @@

table:country Attribute

Datatypes - token  + token    @@ -29056,6 +36062,10 @@

table:country Attribute

  + + RNG Relations + table:country="token]"   +

table:data-cell-range-address Attribute

@@ -29069,7 +36079,7 @@

table:data-cell-range-ad Datatypes - string  + string    @@ -29077,6 +36087,10 @@

table:data-cell-range-ad   + + RNG Relations + table:data-cell-range-address="string]"   +

table:data-field Attribute

@@ -29091,7 +36105,7 @@

table:data-field Attribute

Datatypes - string  + string    @@ -29099,6 +36113,10 @@

table:data-field Attribute

  + + RNG Relations + table:data-field="<string>"   +

table:data-type[1] Attribute

@@ -29114,17 +36132,21 @@

table:data-type[1] Attribute

Datatypes - string  + string    Values - "automatic"  - "number"  - "text"  + "automatic"  + "number"  + "text"    + + RNG Relations + table:data-type="text | number | automatic | <string>"   +

table:data-type[2] Attribute

@@ -29144,10 +36166,14 @@

table:data-type[2] Attribute

Values - "number"  - "text"  + "number"  + "text"    + + RNG Relations + table:data-type="text | number"   +

table:database-name Attribute

@@ -29163,7 +36189,7 @@

table:database-name Attribute< Datatypes - string  + string    @@ -29171,6 +36197,10 @@

table:database-name Attribute<   + + RNG Relations + table:database-name="<string>"   +

table:database-table-name Attribute

@@ -29184,7 +36214,7 @@

table:database-table-name At Datatypes - string  + string    @@ -29192,6 +36222,10 @@

table:database-table-name At   + + RNG Relations + table:database-table-name="<string>"   +

table:date-end Attribute

@@ -29205,16 +36239,20 @@

table:date-end Attribute

Datatypes - date  - dateTime  + date  + dateTime    Values - "auto"  + "auto"    + + RNG Relations + table:date-end="<date> | <dateTime> | auto"   +

table:date-start Attribute

@@ -29228,16 +36266,20 @@

table:date-start Attribute

Datatypes - date  - dateTime  + date  + dateTime    Values - "auto"  + "auto"    + + RNG Relations + table:date-start="<date> | <dateTime> | auto"   +

table:date-value-type Attribute

@@ -29251,7 +36293,7 @@

table:date-value-type Attribute< Datatypes - date  + date    @@ -29259,6 +36301,10 @@

table:date-value-type Attribute<   + + RNG Relations + table:date-value-type="<date>"   +

table:default-cell-style-name Attribute

@@ -29273,7 +36319,7 @@

table:default-cell-style Datatypes - NCName  + NCName    @@ -29281,6 +36327,10 @@

table:default-cell-style   + + RNG Relations + table:default-cell-style-name="(<NCName>)?"   +

table:direction Attribute

@@ -29299,11 +36349,15 @@

table:direction Attribute

Values - "from-another-table"  - "from-same-table"  - "to-another-table"  + "from-another-table"  + "from-same-table"  + "to-another-table"    + + RNG Relations + table:direction="from-another-table | to-another-table | from-same-table"   +

table:display Attribute

@@ -29326,10 +36380,14 @@

table:display Attribute

Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + table:display="<boolean>"   +

table:display-border Attribute

@@ -29348,10 +36406,14 @@

table:display-border Attribute Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + table:display-border="<boolean>"   +

table:display-duplicates Attribute

@@ -29370,10 +36432,14 @@

table:display-duplicates Attr Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + table:display-duplicates="<boolean>"   +

table:display-filter-buttons Attribute

@@ -29392,10 +36458,14 @@

table:display-filter-butt Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + table:display-filter-buttons="<boolean>"   +

table:display-list Attribute

@@ -29414,11 +36484,15 @@

table:display-list Attribute Values - "none"  - "sort-ascending"  - "unsorted"  + "none"  + "sort-ascending"  + "unsorted"    + + RNG Relations + table:display-list="none | unsorted | sort-ascending"   +

table:display-member-mode Attribute

@@ -29437,10 +36511,14 @@

table:display-member-mode At Values - "from-bottom"  - "from-top"  + "from-bottom"  + "from-top"    + + RNG Relations + table:display-member-mode="from-top | from-bottom"   +

table:drill-down-on-double-click Attribute

@@ -29459,10 +36537,14 @@

table:drill-down-on-d Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + table:drill-down-on-double-click="<boolean>"   +

table:enabled Attribute

@@ -29481,10 +36563,14 @@

table:enabled Attribute

Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + table:enabled="<boolean>"   +

table:end Attribute

@@ -29498,15 +36584,19 @@

table:end Attribute

Datatypes - double  + double    Values - "auto"  + "auto"    + + RNG Relations + table:end="<double> | auto"   +

table:end-cell-address Attribute

@@ -29537,7 +36627,7 @@

table:end-cell-address Attribut Datatypes - string  + string    @@ -29545,6 +36635,10 @@

table:end-cell-address Attribut   + + RNG Relations + table:end-cell-address="string]"   +

table:end-column Attribute

@@ -29559,7 +36653,7 @@

table:end-column Attribute

Datatypes - integer  + integer    @@ -29567,6 +36661,10 @@

table:end-column Attribute

  + + RNG Relations + table:end-column="<integer>"   +

table:end-position Attribute

@@ -29580,7 +36678,7 @@

table:end-position Attribute Datatypes - integer  + integer    @@ -29588,6 +36686,10 @@

table:end-position Attribute   + + RNG Relations + table:end-position="<integer>"   +

table:end-row Attribute

@@ -29602,7 +36704,7 @@

table:end-row Attribute

Datatypes - integer  + integer    @@ -29610,6 +36712,10 @@

table:end-row Attribute

  + + RNG Relations + table:end-row="<integer>"   +

table:end-table Attribute

@@ -29624,7 +36730,7 @@

table:end-table Attribute

Datatypes - integer  + integer    @@ -29632,6 +36738,10 @@

table:end-table Attribute

  + + RNG Relations + table:end-table="<integer>"   +

table:end-x Attribute

@@ -29662,7 +36772,7 @@

table:end-x Attribute

Datatypes - string  + string    @@ -29670,6 +36780,10 @@

table:end-x Attribute

  + + RNG Relations + table:end-x="string]"   +

table:end-y Attribute

@@ -29700,7 +36814,7 @@

table:end-y Attribute

Datatypes - string  + string    @@ -29708,6 +36822,10 @@

table:end-y Attribute

  + + RNG Relations + table:end-y="string]"   +

table:execute Attribute

@@ -29726,10 +36844,14 @@

table:execute Attribute

Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + table:execute="<boolean>"   +

table:expression Attribute

@@ -29743,7 +36865,7 @@

table:expression Attribute

Datatypes - string  + string    @@ -29751,6 +36873,10 @@

table:expression Attribute

  + + RNG Relations + table:expression="<string>"   +

table:field-name Attribute

@@ -29764,7 +36890,7 @@

table:field-name Attribute

Datatypes - string  + string    @@ -29772,6 +36898,10 @@

table:field-name Attribute

  + + RNG Relations + table:field-name="<string>"   +

table:field-number Attribute

@@ -29787,7 +36917,7 @@

table:field-number Attribute Datatypes - nonNegativeInteger  + nonNegativeInteger    @@ -29795,6 +36925,10 @@

table:field-number Attribute   + + RNG Relations + table:field-number="<nonNegativeInteger>"   +

table:filter-name Attribute

@@ -29809,7 +36943,7 @@

table:filter-name Attribute

Datatypes - string  + string    @@ -29817,6 +36951,10 @@

table:filter-name Attribute

  + + RNG Relations + table:filter-name="<string>"   +

table:filter-options Attribute

@@ -29831,7 +36969,7 @@

table:filter-options Attribute Datatypes - string  + string    @@ -29839,6 +36977,10 @@

table:filter-options Attribute   + + RNG Relations + table:filter-options="<string>"   +

table:formula Attribute

@@ -29854,7 +36996,7 @@

table:formula Attribute

Datatypes - string  + string    @@ -29862,6 +37004,10 @@

table:formula Attribute

  + + RNG Relations + table:formula="<string>"   +

table:function Attribute

@@ -29878,26 +37024,30 @@

table:function Attribute

Datatypes - string  + string    Values - "auto"  - "average"  - "count"  - "countnums"  - "max"  - "min"  - "product"  - "stdev"  - "stdevp"  - "sum"  - "var"  - "varp"  + "auto"  + "average"  + "count"  + "countnums"  + "max"  + "min"  + "product"  + "stdev"  + "stdevp"  + "sum"  + "var"  + "varp"    + + RNG Relations + table:function="auto | average | count | countnums | max | min | product | stdev | stdevp | sum | var | varp | <string>"   +

table:grand-total Attribute

@@ -29916,12 +37066,16 @@

table:grand-total Attribute

Values - "both"  - "column"  - "none"  - "row"  + "both"  + "column"  + "none"  + "row"    + + RNG Relations + table:grand-total="none | row | column | both"   +

table:group-by-field-number Attribute

@@ -29935,7 +37089,7 @@

table:group-by-field-numbe Datatypes - nonNegativeInteger  + nonNegativeInteger    @@ -29943,6 +37097,10 @@

table:group-by-field-numbe   + + RNG Relations + table:group-by-field-number="<nonNegativeInteger>"   +

table:grouped-by Attribute

@@ -29961,15 +37119,19 @@

table:grouped-by Attribute

Values - "days"  - "hours"  - "minutes"  - "months"  - "quarters"  - "seconds"  - "years"  + "days"  + "hours"  + "minutes"  + "months"  + "quarters"  + "seconds"  + "years"    + + RNG Relations + table:grouped-by="seconds | minutes | hours | days | months | quarters | years"   +

table:has-persistent-data Attribute

@@ -29988,10 +37150,14 @@

table:has-persistent-data At Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + table:has-persistent-data="<boolean>"   +

table:id Attribute

@@ -30013,7 +37179,7 @@

table:id Attribute

Datatypes - string  + string    @@ -30021,6 +37187,10 @@

table:id Attribute

  + + RNG Relations + table:id="<string>"   +

table:identify-categories Attribute

@@ -30039,10 +37209,14 @@

table:identify-categories At Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + table:identify-categories="<boolean>"   +

table:ignore-empty-rows Attribute

@@ -30061,10 +37235,14 @@

table:ignore-empty-rows Attrib Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + table:ignore-empty-rows="<boolean>"   +

table:index Attribute

@@ -30078,7 +37256,7 @@

table:index Attribute

Datatypes - nonNegativeInteger  + nonNegativeInteger    @@ -30086,6 +37264,10 @@

table:index Attribute

  + + RNG Relations + table:index="<nonNegativeInteger>"   +

table:is-active Attribute

@@ -30104,10 +37286,14 @@

table:is-active Attribute

Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + table:is-active="<boolean>"   +

table:is-data-layout-field Attribute

@@ -30121,7 +37307,7 @@

table:is-data-layout-field Datatypes - string  + string    @@ -30129,6 +37315,10 @@

table:is-data-layout-field   + + RNG Relations + table:is-data-layout-field="<string>"   +

table:is-selection Attribute

@@ -30147,10 +37337,14 @@

table:is-selection Attribute Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + table:is-selection="<boolean>"   +

table:is-sub-table Attribute

@@ -30169,10 +37363,14 @@

table:is-sub-table Attribute Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + table:is-sub-table="<boolean>"   +

table:label-cell-range-address Attribute

@@ -30186,7 +37384,7 @@

table:label-cell-range- Datatypes - string  + string    @@ -30194,6 +37392,10 @@

table:label-cell-range-   + + RNG Relations + table:label-cell-range-address="string]"   +

table:language Attribute

@@ -30207,7 +37409,7 @@

table:language Attribute

Datatypes - token  + token    @@ -30215,6 +37417,10 @@

table:language Attribute

  + + RNG Relations + table:language="token]"   +

table:last-column-spanned Attribute

@@ -30228,7 +37434,7 @@

table:last-column-spanned At Datatypes - positiveInteger  + positiveInteger    @@ -30236,6 +37442,10 @@

table:last-column-spanned At   + + RNG Relations + table:last-column-spanned="<positiveInteger>"   +

table:last-row-spanned Attribute

@@ -30249,7 +37459,7 @@

table:last-row-spanned Attribut Datatypes - positiveInteger  + positiveInteger    @@ -30257,6 +37467,10 @@

table:last-row-spanned Attribut   + + RNG Relations + table:last-row-spanned="<positiveInteger>"   +

table:layout-mode Attribute

@@ -30275,11 +37489,15 @@

table:layout-mode Attribute

Values - "outline-subtotals-bottom"  - "outline-subtotals-top"  - "tabular-layout"  + "outline-subtotals-bottom"  + "outline-subtotals-top"  + "tabular-layout"    + + RNG Relations + table:layout-mode="tabular-layout | outline-subtotals-top | outline-subtotals-bottom"   +

table:link-to-source-data Attribute

@@ -30298,10 +37516,14 @@

table:link-to-source-data At Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + table:link-to-source-data="<boolean>"   +

table:marked-invalid Attribute

@@ -30320,10 +37542,14 @@

table:marked-invalid Attribute Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + table:marked-invalid="<boolean>"   +

table:matrix-covered Attribute

@@ -30342,10 +37568,14 @@

table:matrix-covered Attribute Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + table:matrix-covered="<boolean>"   +

table:maximum-difference Attribute

@@ -30359,7 +37589,7 @@

table:maximum-difference Attr Datatypes - double  + double    @@ -30367,6 +37597,10 @@

table:maximum-difference Attr   + + RNG Relations + table:maximum-difference="<double>"   +

table:member-count Attribute

@@ -30380,7 +37614,7 @@

table:member-count Attribute Datatypes - nonNegativeInteger  + nonNegativeInteger    @@ -30388,6 +37622,10 @@

table:member-count Attribute   + + RNG Relations + table:member-count="<nonNegativeInteger>"   +

table:member-name Attribute

@@ -30401,7 +37639,7 @@

table:member-name Attribute

Datatypes - string  + string    @@ -30409,6 +37647,10 @@

table:member-name Attribute

  + + RNG Relations + table:member-name="<string>"   +

table:member-type[1] Attribute

@@ -30428,10 +37670,14 @@

table:member-type[1] Attribute Values - "next"  - "previous"  + "next"  + "previous"    + + RNG Relations + table:member-type="previous | next"   +

table:member-type[2] Attribute

@@ -30451,9 +37697,13 @@

table:member-type[2] Attribute Values - "named"  + "named"    + + RNG Relations + table:member-type="named"   +

table:message-type Attribute

@@ -30472,11 +37722,15 @@

table:message-type Attribute Values - "information"  - "stop"  - "warning"  + "information"  + "stop"  + "warning"    + + RNG Relations + table:message-type="stop | warning | information"   +

table:mode Attribute

@@ -30495,10 +37749,14 @@

table:mode Attribute

Values - "copy-all"  - "copy-results-only"  + "copy-all"  + "copy-results-only"    + + RNG Relations + table:mode="copy-all | copy-results-only"   +

table:multi-deletion-spanned Attribute

@@ -30512,7 +37770,7 @@

table:multi-deletion-span Datatypes - integer  + integer    @@ -30520,6 +37778,10 @@

table:multi-deletion-span   + + RNG Relations + table:multi-deletion-spanned="<integer>"   +

table:name[1] Attribute

@@ -30544,7 +37806,7 @@

table:name[1] Attribute

Datatypes - string  + string    @@ -30552,6 +37814,10 @@

table:name[1] Attribute

  + + RNG Relations + table:name="<string>"   +

table:name[2] Attribute

@@ -30571,13 +37837,17 @@

table:name[2] Attribute

Values - "remove-dependents"  - "remove-precedents"  - "trace-dependents"  - "trace-errors"  - "trace-precedents"  + "remove-dependents"  + "remove-precedents"  + "trace-dependents"  + "trace-errors"  + "trace-precedents"    + + RNG Relations + table:name="trace-dependents | remove-dependents | trace-precedents | remove-precedents | trace-errors"   +

table:null-year Attribute

@@ -30591,7 +37861,7 @@

table:null-year Attribute

Datatypes - positiveInteger  + positiveInteger    @@ -30599,6 +37869,10 @@

table:null-year Attribute

  + + RNG Relations + table:null-year="<positiveInteger>"   +

table:number-columns-repeated Attribute

@@ -30614,7 +37888,7 @@

table:number-columns-rep Datatypes - positiveInteger  + positiveInteger    @@ -30622,6 +37896,10 @@

table:number-columns-rep   + + RNG Relations + table:number-columns-repeated="<positiveInteger>"   +

table:number-columns-spanned Attribute

@@ -30635,7 +37913,7 @@

table:number-columns-span Datatypes - positiveInteger  + positiveInteger    @@ -30643,6 +37921,10 @@

table:number-columns-span   + + RNG Relations + table:number-columns-spanned="<positiveInteger>"   +

table:number-matrix-columns-spanned Attribute

@@ -30657,7 +37939,7 @@

table:number-matri Datatypes - positiveInteger  + positiveInteger    @@ -30665,6 +37947,10 @@

table:number-matri   + + RNG Relations + table:number-matrix-columns-spanned="<positiveInteger>"   +

table:number-matrix-rows-spanned Attribute

@@ -30679,7 +37965,7 @@

table:number-matrix-r Datatypes - positiveInteger  + positiveInteger    @@ -30687,6 +37973,10 @@

table:number-matrix-r   + + RNG Relations + table:number-matrix-rows-spanned="<positiveInteger>"   +

table:number-rows-repeated Attribute

@@ -30700,7 +37990,7 @@

table:number-rows-repeated Datatypes - positiveInteger  + positiveInteger    @@ -30708,6 +37998,10 @@

table:number-rows-repeated   + + RNG Relations + table:number-rows-repeated="<positiveInteger>"   +

table:number-rows-spanned Attribute

@@ -30721,7 +38015,7 @@

table:number-rows-spanned At Datatypes - positiveInteger  + positiveInteger    @@ -30729,6 +38023,10 @@

table:number-rows-spanned At   + + RNG Relations + table:number-rows-spanned="<positiveInteger>"   +

table:object-name Attribute

@@ -30742,7 +38040,7 @@

table:object-name Attribute

Datatypes - string  + string    @@ -30750,6 +38048,10 @@

table:object-name Attribute

  + + RNG Relations + table:object-name="<string>"   +

table:on-update-keep-size Attribute

@@ -30768,10 +38070,14 @@

table:on-update-keep-size At Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + table:on-update-keep-size="<boolean>"   +

table:on-update-keep-styles Attribute

@@ -30790,10 +38096,14 @@

table:on-update-keep-style Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + table:on-update-keep-styles="<boolean>"   +

table:operator Attribute

@@ -30807,7 +38117,7 @@

table:operator Attribute

Datatypes - string  + string    @@ -30815,6 +38125,10 @@

table:operator Attribute

  + + RNG Relations + table:operator="<string>"   +

table:order Attribute

@@ -30835,10 +38149,14 @@

table:order Attribute

Values - "ascending"  - "descending"  + "ascending"  + "descending"    + + RNG Relations + table:order="ascending | descending"   +

table:orientation[1] Attribute

@@ -30847,7 +38165,8 @@

table:orientation[1] Attribute Parent Elements - table:data-pilot-field  + table:database-range  + table:label-range    @@ -30858,12 +38177,14 @@

table:orientation[1] Attribute Values - "column"  - "data"  - "hidden"  - "row"  + "column"  + "row"    + + RNG Relations + table:orientation="column | row"   +

table:orientation[2] Attribute

@@ -30872,8 +38193,7 @@

table:orientation[2] Attribute Parent Elements - table:database-range  - table:label-range  + table:data-pilot-field    @@ -30884,10 +38204,13 @@

table:orientation[2] Attribute Values - "column"  - "row"  + "page"    + + RNG Relations + table:orientation="page"   +

table:orientation[3] Attribute

@@ -30907,9 +38230,16 @@

table:orientation[3] Attribute Values - "page"  + "column"  + "data"  + "hidden"  + "row"    + + RNG Relations + table:orientation="row | column | data | hidden"   +

table:page-breaks-on-group-change Attribute

@@ -30928,10 +38258,14 @@

table:page-breaks-on Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + table:page-breaks-on-group-change="<boolean>"   +

table:parse-sql-statement Attribute

@@ -30950,10 +38284,14 @@

table:parse-sql-statement At Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + table:parse-sql-statement="<boolean>"   +

table:password Attribute

@@ -30967,7 +38305,7 @@

table:password Attribute

Datatypes - string  + string    @@ -30975,6 +38313,10 @@

table:password Attribute

  + + RNG Relations + table:password="<string>"   +

table:position Attribute

@@ -30991,7 +38333,7 @@

table:position Attribute

Datatypes - integer  + integer    @@ -30999,6 +38341,10 @@

table:position Attribute

  + + RNG Relations + table:position="<integer>"   +

table:precision-as-shown Attribute

@@ -31017,10 +38363,14 @@

table:precision-as-shown Attr Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + table:precision-as-shown="<boolean>"   +

table:print Attribute

@@ -31039,10 +38389,14 @@

table:print Attribute

Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + table:print="<boolean>"   +

table:print-ranges Attribute

@@ -31056,7 +38410,7 @@

table:print-ranges Attribute Datatypes - string  + string    @@ -31064,6 +38418,10 @@

table:print-ranges Attribute   + + RNG Relations + table:print-ranges="<string>"   +

table:protect Attribute

@@ -31083,10 +38441,14 @@

table:protect Attribute

Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + table:protect="<boolean>"   +

table:protected Attribute

@@ -31106,10 +38468,14 @@

table:protected Attribute

Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + table:protected="<boolean>"   +

table:protection-key[1] Attribute

@@ -31124,7 +38490,7 @@

table:protection-key[1] Attribute Datatypes - string  + string    @@ -31132,6 +38498,10 @@

table:protection-key[1] Attribute   + + RNG Relations + table:protection-key="<string>"   +

table:protection-key[2] Attribute

@@ -31153,6 +38523,10 @@

table:protection-key[2] Attribute   + + RNG Relations + table:protection-key="TEXT"   +

table:query-name Attribute

@@ -31166,7 +38540,7 @@

table:query-name Attribute

Datatypes - string  + string    @@ -31174,6 +38548,10 @@

table:query-name Attribute

  + + RNG Relations + table:query-name="<string>"   +

table:range-usable-as Attribute

@@ -31192,13 +38570,19 @@

table:range-usable-as Attribute< Values - "filter"  - "none"  - "print-range"  - "repeat-column"  - "repeat-row"  + "filter"  + "none"  + "print-range"  + "repeat-column"  + "repeat-row"    + + RNG Relations + table:range-usable-as="none | +START_list(print-range | filter | repeat-row | repeat-column)+ +END_list"   +

table:refresh-delay[1] Attribute

@@ -31207,21 +38591,25 @@

table:refresh-delay[1] Attribute Parent Elements - table:database-range  + table:cell-range-source  + table:table-source    Datatypes + duration    Values - "false"  - "true"    + + RNG Relations + table:refresh-delay="<duration>"   +

table:refresh-delay[2] Attribute

@@ -31230,21 +38618,25 @@

table:refresh-delay[2] Attribute Parent Elements - table:cell-range-source  - table:table-source  + table:database-range    Datatypes - duration    Values + "false"  + "true"    + + RNG Relations + table:refresh-delay="<boolean>"   +

table:rejecting-change-id Attribute

@@ -31261,7 +38653,7 @@

table:rejecting-change-id At Datatypes - string  + string    @@ -31269,6 +38661,10 @@

table:rejecting-change-id At   + + RNG Relations + table:rejecting-change-id="<string>"   +

table:row Attribute

@@ -31284,7 +38680,7 @@

table:row Attribute

Datatypes - integer  + integer    @@ -31292,6 +38688,10 @@

table:row Attribute

  + + RNG Relations + table:row="<integer>"   +

table:scenario-ranges Attribute

@@ -31305,7 +38705,7 @@

table:scenario-ranges Attribute< Datatypes - string  + string    @@ -31313,6 +38713,10 @@

table:scenario-ranges Attribute<   + + RNG Relations + table:scenario-ranges="<string>"   +

table:search-criteria-must-apply-to-whole-cell Attribute

@@ -31331,10 +38735,14 @@

table:s Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + table:search-criteria-must-apply-to-whole-cell="<boolean>"   +

table:selected-page Attribute

@@ -31348,7 +38756,7 @@

table:selected-page Attribute< Datatypes - string  + string    @@ -31356,6 +38764,10 @@

table:selected-page Attribute<   + + RNG Relations + table:selected-page="<string>"   +

table:show-details Attribute

@@ -31374,10 +38786,14 @@

table:show-details Attribute Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + table:show-details="<boolean>"   +

table:show-empty Attribute

@@ -31396,10 +38812,14 @@

table:show-empty Attribute

Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + table:show-empty="<boolean>"   +

table:show-filter-button Attribute

@@ -31418,10 +38838,14 @@

table:show-filter-button Attr Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + table:show-filter-button="<boolean>"   +

table:sort-mode[1] Attribute

@@ -31441,11 +38865,13 @@

table:sort-mode[1] Attribute

Values - "manual"  - "name"  - "none"  + "data"    + + RNG Relations + table:sort-mode="data"   +

table:sort-mode[2] Attribute

@@ -31465,9 +38891,15 @@

table:sort-mode[2] Attribute

Values - "data"  + "manual"  + "name"  + "none"    + + RNG Relations + table:sort-mode="none | manual | name"   +

table:source-cell-range-addresses Attribute

@@ -31481,7 +38913,7 @@

table:source-cell-ra Datatypes - string  + string    @@ -31489,6 +38921,10 @@

table:source-cell-ra   + + RNG Relations + table:source-cell-range-addresses="<string>"   +

table:source-field-name Attribute

@@ -31503,7 +38939,7 @@

table:source-field-name Attrib Datatypes - string  + string    @@ -31511,6 +38947,10 @@

table:source-field-name Attrib   + + RNG Relations + table:source-field-name="<string>"   +

table:source-name Attribute

@@ -31524,7 +38964,7 @@

table:source-name Attribute

Datatypes - string  + string    @@ -31532,6 +38972,10 @@

table:source-name Attribute

  + + RNG Relations + table:source-name="<string>"   +

table:sql-statement Attribute

@@ -31545,7 +38989,7 @@

table:sql-statement Attribute< Datatypes - string  + string    @@ -31553,6 +38997,10 @@

table:sql-statement Attribute<   + + RNG Relations + table:sql-statement="<string>"   +

table:start Attribute

@@ -31566,15 +39014,19 @@

table:start Attribute

Datatypes - double  + double    Values - "auto"  + "auto"    + + RNG Relations + table:start="<double> | auto"   +

table:start-column Attribute

@@ -31589,7 +39041,7 @@

table:start-column Attribute Datatypes - integer  + integer    @@ -31597,6 +39049,10 @@

table:start-column Attribute   + + RNG Relations + table:start-column="<integer>"   +

table:start-position Attribute

@@ -31610,7 +39066,7 @@

table:start-position Attribute Datatypes - integer  + integer    @@ -31618,6 +39074,10 @@

table:start-position Attribute   + + RNG Relations + table:start-position="<integer>"   +

table:start-row Attribute

@@ -31632,7 +39092,7 @@

table:start-row Attribute

Datatypes - integer  + integer    @@ -31640,6 +39100,10 @@

table:start-row Attribute

  + + RNG Relations + table:start-row="<integer>"   +

table:start-table Attribute

@@ -31654,7 +39118,7 @@

table:start-table Attribute

Datatypes - integer  + integer    @@ -31662,6 +39126,10 @@

table:start-table Attribute

  + + RNG Relations + table:start-table="<integer>"   +

table:status Attribute

@@ -31680,10 +39148,14 @@

table:status Attribute

Values - "disable"  - "enable"  + "disable"  + "enable"    + + RNG Relations + table:status="enable | disable"   +

table:step Attribute

@@ -31697,7 +39169,7 @@

table:step Attribute

Datatypes - double  + double    @@ -31705,6 +39177,10 @@

table:step Attribute

  + + RNG Relations + table:step="<double>"   +

table:steps Attribute

@@ -31718,7 +39194,7 @@

table:steps Attribute

Datatypes - positiveInteger  + positiveInteger    @@ -31726,6 +39202,10 @@

table:steps Attribute

  + + RNG Relations + table:steps="<positiveInteger>"   +

table:structure-protected Attribute

@@ -31744,10 +39224,14 @@

table:structure-protected At Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + table:structure-protected="<boolean>"   +

table:style-name Attribute

@@ -31765,7 +39249,7 @@

table:style-name Attribute

Datatypes - NCName  + NCName    @@ -31773,6 +39257,10 @@

table:style-name Attribute

  + + RNG Relations + table:style-name="(<NCName>)?"   +

table:table Attribute

@@ -31790,7 +39278,7 @@

table:table Attribute

Datatypes - integer  + integer    @@ -31798,6 +39286,10 @@

table:table Attribute

  + + RNG Relations + table:table="<integer>"   +

table:table-background Attribute

@@ -31833,10 +39325,14 @@

table:table-background Attribut Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + table:table-background="<boolean>"   +

table:table-name Attribute

@@ -31850,7 +39346,7 @@

table:table-name Attribute

Datatypes - string  + string    @@ -31858,6 +39354,10 @@

table:table-name Attribute

  + + RNG Relations + table:table-name="<string>"   +

table:target-cell-address Attribute

@@ -31871,7 +39371,7 @@

table:target-cell-address At Datatypes - string  + string    @@ -31879,6 +39379,10 @@

table:target-cell-address At   + + RNG Relations + table:target-cell-address="string]"   +

table:target-range-address Attribute

@@ -31895,7 +39399,7 @@

table:target-range-address Datatypes - string  + string    @@ -31903,6 +39407,10 @@

table:target-range-address   + + RNG Relations + table:target-range-address="string]"   +

table:title Attribute

@@ -31917,7 +39425,7 @@

table:title Attribute

Datatypes - string  + string    @@ -31925,6 +39433,10 @@

table:title Attribute

  + + RNG Relations + table:title="<string>"   +

table:track-changes Attribute

@@ -31943,10 +39455,14 @@

table:track-changes Attribute< Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + table:track-changes="<boolean>"   +

table:type[1] Attribute

@@ -31966,17 +39482,21 @@

table:type[1] Attribute

Values - "column-percentage"  - "index"  - "member-difference"  - "member-percentage"  - "member-percentage-difference"  - "none"  - "row-percentage"  - "running-total"  - "total-percentage"  + "column-percentage"  + "index"  + "member-difference"  + "member-percentage"  + "member-percentage-difference"  + "none"  + "row-percentage"  + "running-total"  + "total-percentage"    + + RNG Relations + table:type="none | member-difference | member-percentage | member-percentage-difference | running-total | row-percentage | column-percentage | total-percentage | index"   +

table:type[2] Attribute

@@ -31997,11 +39517,15 @@

table:type[2] Attribute

Values - "column"  - "row"  - "table"  + "column"  + "row"  + "table"    + + RNG Relations + table:type="row | column | table"   +

table:use-labels Attribute

@@ -32020,12 +39544,16 @@

table:use-labels Attribute

Values - "both"  - "column"  - "none"  - "row"  + "both"  + "column"  + "none"  + "row"    + + RNG Relations + table:use-labels="none | row | column | both"   +

table:use-regular-expressions Attribute

@@ -32044,10 +39572,14 @@

table:use-regular-expres Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + table:use-regular-expressions="<boolean>"   +

table:used-hierarchy Attribute

@@ -32061,7 +39593,7 @@

table:used-hierarchy Attribute Datatypes - integer  + integer    @@ -32069,6 +39601,10 @@

table:used-hierarchy Attribute   + + RNG Relations + table:used-hierarchy="<integer>"   +

table:user-name Attribute

@@ -32082,7 +39618,7 @@

table:user-name Attribute

Datatypes - string  + string    @@ -32090,6 +39626,10 @@

table:user-name Attribute

  + + RNG Relations + table:user-name="<string>"   +

table:value Attribute

@@ -32103,7 +39643,7 @@

table:value Attribute

Datatypes - string  + string    @@ -32111,6 +39651,10 @@

table:value Attribute

  + + RNG Relations + table:value="<string>"   +

table:value-type Attribute

@@ -32129,15 +39673,19 @@

table:value-type Attribute

Values - "boolean"  - "currency"  - "date"  - "float"  - "percentage"  - "string"  - "time"  + "boolean"  + "currency"  + "date"  + "float"  + "percentage"  + "string"  + "time"    + + RNG Relations + table:value-type="float | time | date | percentage | currency | boolean | string"   +

table:visibility Attribute

@@ -32157,11 +39705,15 @@

table:visibility Attribute

Values - "collapse"  - "filter"  - "visible"  + "collapse"  + "filter"  + "visible"    + + RNG Relations + table:visibility="visible | collapse | filter"   +

text:active Attribute

@@ -32180,10 +39732,14 @@

text:active Attribute

Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + text:active="<boolean>"   +

text:address Attribute

@@ -32197,7 +39753,7 @@

text:address Attribute

Datatypes - string  + string    @@ -32205,6 +39761,10 @@

text:address Attribute

  + + RNG Relations + CHOICE_NAME_CLASS="<string>"   +

text:alphabetical-separators Attribute

@@ -32223,10 +39783,14 @@

text:alphabetical-separat Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + text:alphabetical-separators="<boolean>"   +

text:anchor-page-number Attribute

@@ -32257,7 +39821,7 @@

text:anchor-page-number Attrib Datatypes - positiveInteger  + positiveInteger    @@ -32265,6 +39829,10 @@

text:anchor-page-number Attrib   + + RNG Relations + text:anchor-page-number="<positiveInteger>"   +

text:anchor-type Attribute

@@ -32300,13 +39868,17 @@

text:anchor-type Attribute

Values - "as-char"  - "char"  - "frame"  - "page"  - "paragraph"  + "as-char"  + "char"  + "frame"  + "page"  + "paragraph"    + + RNG Relations + text:anchor-type="page | frame | paragraph | char | as-char"   +

text:annote Attribute

@@ -32320,7 +39892,7 @@

text:annote Attribute

Datatypes - string  + string    @@ -32328,6 +39900,10 @@

text:annote Attribute

  + + RNG Relations + CHOICE_NAME_CLASS="<string>"   +

text:author Attribute

@@ -32341,7 +39917,7 @@

text:author Attribute

Datatypes - string  + string    @@ -32349,6 +39925,10 @@

text:author Attribute

  + + RNG Relations + CHOICE_NAME_CLASS="<string>"   +

text:bibliography-data-field Attribute

@@ -32367,40 +39947,44 @@

text:bibliography-data-fi Values - "address"  - "annote"  - "author"  - "bibliography-type"  - "booktitle"  - "chapter"  - "custom1"  - "custom2"  - "custom3"  - "custom4"  - "custom5"  - "edition"  - "editor"  - "howpublished"  - "identifier"  - "institution"  - "isbn"  - "issn"  - "journal"  - "month"  - "note"  - "number"  - "organizations"  - "pages"  - "publisher"  - "report-type"  - "school"  - "series"  - "title"  - "url"  - "volume"  - "year"  + "address"  + "annote"  + "author"  + "bibliography-type"  + "booktitle"  + "chapter"  + "custom1"  + "custom2"  + "custom3"  + "custom4"  + "custom5"  + "edition"  + "editor"  + "howpublished"  + "identifier"  + "institution"  + "isbn"  + "issn"  + "journal"  + "month"  + "note"  + "number"  + "organizations"  + "pages"  + "publisher"  + "report-type"  + "school"  + "series"  + "title"  + "url"  + "volume"  + "year"    + + RNG Relations + text:bibliography-data-field="address | annote | author | bibliography-type | booktitle | chapter | custom1 | custom2 | custom3 | custom4 | custom5 | edition | editor | howpublished | identifier | institution | isbn | issn | journal | month | note | number | organizations | pages | publisher | report-type | school | series | title | url | volume | year"   +

text:bibliography-type Attribute

@@ -32420,30 +40004,34 @@

text:bibliography-type Attribut Values - "article"  - "book"  - "booklet"  - "conference"  - "custom1"  - "custom2"  - "custom3"  - "custom4"  - "custom5"  - "email"  - "inbook"  - "incollection"  - "inproceedings"  - "journal"  - "manual"  - "mastersthesis"  - "misc"  - "phdthesis"  - "proceedings"  - "techreport"  - "unpublished"  - "www"  + "article"  + "book"  + "booklet"  + "conference"  + "custom1"  + "custom2"  + "custom3"  + "custom4"  + "custom5"  + "email"  + "inbook"  + "incollection"  + "inproceedings"  + "journal"  + "manual"  + "mastersthesis"  + "misc"  + "phdthesis"  + "proceedings"  + "techreport"  + "unpublished"  + "www"    + + RNG Relations + text:bibliography-type="article | book | booklet | conference | custom1 | custom2 | custom3 | custom4 | custom5 | email | inbook | incollection | inproceedings | journal | manual | mastersthesis | misc | phdthesis | proceedings | techreport | unpublished | www"   +

text:booktitle Attribute

@@ -32457,7 +40045,7 @@

text:booktitle Attribute

Datatypes - string  + string    @@ -32465,6 +40053,10 @@

text:booktitle Attribute

  + + RNG Relations + CHOICE_NAME_CLASS="<string>"   +

text:bullet-char Attribute

@@ -32478,7 +40070,7 @@

text:bullet-char Attribute

Datatypes - string  + string    @@ -32486,6 +40078,10 @@

text:bullet-char Attribute

  + + RNG Relations + text:bullet-char="string]"   +

text:bullet-relative-size Attribute

@@ -32499,7 +40095,7 @@

text:bullet-relative-size At Datatypes - string  + string    @@ -32507,6 +40103,10 @@

text:bullet-relative-size At   + + RNG Relations + text:bullet-relative-size="string]"   +

text:c Attribute

@@ -32520,7 +40120,7 @@

text:c Attribute

Datatypes - nonNegativeInteger  + nonNegativeInteger    @@ -32528,6 +40128,10 @@

text:c Attribute

  + + RNG Relations + text:c="<nonNegativeInteger>"   +

text:capitalize-entries Attribute

@@ -32546,10 +40150,14 @@

text:capitalize-entries Attrib Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + text:capitalize-entries="<boolean>"   +

text:caption-sequence-format Attribute

@@ -32569,11 +40177,15 @@

text:caption-sequence-for Values - "caption"  - "category-and-value"  - "text"  + "caption"  + "category-and-value"  + "text"    + + RNG Relations + text:caption-sequence-format="text | category-and-value | caption"   +

text:caption-sequence-name Attribute

@@ -32588,7 +40200,7 @@

text:caption-sequence-name Datatypes - string  + string    @@ -32596,6 +40208,10 @@

text:caption-sequence-name   + + RNG Relations + text:caption-sequence-name="<string>"   +

text:change-id Attribute

@@ -32611,7 +40227,7 @@

text:change-id Attribute

Datatypes - IDREF  + IDREF    @@ -32619,6 +40235,10 @@

text:change-id Attribute

  + + RNG Relations + text:change-id="<IDREF>"   +

text:chapter Attribute

@@ -32632,7 +40252,7 @@

text:chapter Attribute

Datatypes - string  + string    @@ -32640,6 +40260,10 @@

text:chapter Attribute

  + + RNG Relations + CHOICE_NAME_CLASS="<string>"   +

text:citation-body-style-name Attribute

@@ -32653,7 +40277,7 @@

text:citation-body-style Datatypes - NCName  + NCName    @@ -32661,6 +40285,10 @@

text:citation-body-style   + + RNG Relations + text:citation-body-style-name="(<NCName>)?"   +

text:citation-style-name Attribute

@@ -32674,7 +40302,7 @@

text:citation-style-name Attr Datatypes - NCName  + NCName    @@ -32682,6 +40310,10 @@

text:citation-style-name Attr   + + RNG Relations + text:citation-style-name="(<NCName>)?"   +

text:class-names Attribute

@@ -32697,7 +40329,7 @@

text:class-names Attribute

Datatypes - NCName  + NCName    @@ -32705,6 +40337,12 @@

text:class-names Attribute

  + + RNG Relations + text:class-names=" +START_list(<NCName>)* +END_list"   +

text:column-name Attribute

@@ -32718,7 +40356,7 @@

text:column-name Attribute

Datatypes - string  + string    @@ -32726,6 +40364,10 @@

text:column-name Attribute

  + + RNG Relations + text:column-name="<string>"   +

text:combine-entries Attribute

@@ -32744,10 +40386,14 @@

text:combine-entries Attribute Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + text:combine-entries="<boolean>"   +

text:combine-entries-with-dash Attribute

@@ -32766,10 +40412,14 @@

text:combine-entries-wi Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + text:combine-entries-with-dash="<boolean>"   +

text:combine-entries-with-pp Attribute

@@ -32788,10 +40438,14 @@

text:combine-entries-with Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + text:combine-entries-with-pp="<boolean>"   +

text:comma-separated Attribute

@@ -32810,10 +40464,14 @@

text:comma-separated Attribute Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + text:comma-separated="<boolean>"   +

text:cond-style-name Attribute

@@ -32828,7 +40486,7 @@

text:cond-style-name Attribute Datatypes - NCName  + NCName    @@ -32836,6 +40494,10 @@

text:cond-style-name Attribute   + + RNG Relations + text:cond-style-name="(<NCName>)?"   +

text:condition Attribute

@@ -32854,7 +40516,7 @@

text:condition Attribute

Datatypes - string  + string    @@ -32862,6 +40524,10 @@

text:condition Attribute

  + + RNG Relations + text:condition="<string>"   +

text:connection-name Attribute

@@ -32875,7 +40541,7 @@

text:connection-name Attribute Datatypes - string  + string    @@ -32883,6 +40549,10 @@

text:connection-name Attribute   + + RNG Relations + text:connection-name="<string>"   +

text:consecutive-numbering Attribute

@@ -32901,10 +40571,14 @@

text:consecutive-numbering Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + text:consecutive-numbering="<boolean>"   +

text:continue-numbering Attribute

@@ -32924,10 +40598,14 @@

text:continue-numbering Attrib Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + text:continue-numbering="<boolean>"   +

text:copy-outline-levels Attribute

@@ -32946,10 +40624,14 @@

text:copy-outline-levels Attr Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + text:copy-outline-levels="<boolean>"   +

text:count-empty-lines Attribute

@@ -32968,10 +40650,14 @@

text:count-empty-lines Attribut Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + text:count-empty-lines="<boolean>"   +

text:count-in-text-boxes Attribute

@@ -32990,10 +40676,14 @@

text:count-in-text-boxes Attr Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + text:count-in-text-boxes="<boolean>"   +

text:current-value Attribute

@@ -33012,10 +40702,14 @@

text:current-value Attribute Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + text:current-value="<boolean>"   +

text:custom1 Attribute

@@ -33029,7 +40723,7 @@

text:custom1 Attribute

Datatypes - string  + string    @@ -33037,6 +40731,10 @@

text:custom1 Attribute

  + + RNG Relations + CHOICE_NAME_CLASS="<string>"   +

text:custom2 Attribute

@@ -33050,7 +40748,7 @@

text:custom2 Attribute

Datatypes - string  + string    @@ -33058,6 +40756,10 @@

text:custom2 Attribute

  + + RNG Relations + CHOICE_NAME_CLASS="<string>"   +

text:custom3 Attribute

@@ -33071,7 +40773,7 @@

text:custom3 Attribute

Datatypes - string  + string    @@ -33079,6 +40781,10 @@

text:custom3 Attribute

  + + RNG Relations + CHOICE_NAME_CLASS="<string>"   +

text:custom4 Attribute

@@ -33092,7 +40798,7 @@

text:custom4 Attribute

Datatypes - string  + string    @@ -33100,6 +40806,10 @@

text:custom4 Attribute

  + + RNG Relations + CHOICE_NAME_CLASS="<string>"   +

text:custom5 Attribute

@@ -33113,7 +40823,7 @@

text:custom5 Attribute

Datatypes - string  + string    @@ -33121,6 +40831,10 @@

text:custom5 Attribute

  + + RNG Relations + CHOICE_NAME_CLASS="<string>"   +

text:database-name Attribute

@@ -33138,7 +40852,7 @@

text:database-name Attribute Datatypes - string  + string    @@ -33146,6 +40860,10 @@

text:database-name Attribute   + + RNG Relations + text:database-name="<string>"   +

text:date-adjust Attribute

@@ -33159,7 +40877,7 @@

text:date-adjust Attribute

Datatypes - duration  + duration    @@ -33167,6 +40885,10 @@

text:date-adjust Attribute

  + + RNG Relations + text:date-adjust="<duration>"   +

text:date-value[1] Attribute

@@ -33175,14 +40897,15 @@

text:date-value[1] Attribute

Parent Elements - text:modification-date  - text:print-date  + text:creation-date  + text:date    Datatypes - date  + date  + dateTime    @@ -33190,6 +40913,10 @@

text:date-value[1] Attribute

  + + RNG Relations + text:date-value="<date> | <dateTime>"   +

text:date-value[2] Attribute

@@ -33198,15 +40925,14 @@

text:date-value[2] Attribute

Parent Elements - text:creation-date  - text:date  + text:modification-date  + text:print-date    Datatypes - date  - dateTime  + date    @@ -33214,6 +40940,10 @@

text:date-value[2] Attribute

  + + RNG Relations + text:date-value="<date>"   +

text:default-style-name Attribute

@@ -33227,7 +40957,7 @@

text:default-style-name Attrib Datatypes - NCName  + NCName    @@ -33235,6 +40965,10 @@

text:default-style-name Attrib   + + RNG Relations + text:default-style-name="(<NCName>)?"   +

text:description Attribute

@@ -33258,6 +40992,10 @@

text:description Attribute

  + + RNG Relations + text:description="TEXT"   +

text:display[1] Attribute

@@ -33266,7 +41004,7 @@

text:display[1] Attribute

Parent Elements - text:section  + text:chapter    @@ -33277,10 +41015,17 @@

text:display[1] Attribute

Values - "none"  - "true"  + "name"  + "number"  + "number-and-name"  + "plain-number"  + "plain-number-and-name"    + + RNG Relations + text:display="name | number | number-and-name | plain-number-and-name | plain-number"   +

text:display[2] Attribute

@@ -33289,9 +41034,7 @@

text:display[2] Attribute

Parent Elements - text:expression  - text:table-formula  - text:variable-get  + text:section    @@ -33302,10 +41045,14 @@

text:display[2] Attribute

Values - "formula"  - "value"  + "none"  + "true"    + + RNG Relations + text:display="true | none"   +

text:display[3] Attribute

@@ -33314,8 +41061,7 @@

text:display[3] Attribute

Parent Elements - text:variable-input  - text:variable-set  + text:user-field-get    @@ -33326,10 +41072,15 @@

text:display[3] Attribute

Values - "none"  - "value"  + "formula"  + "none"  + "value"    + + RNG Relations + text:display="value | formula | none"   +

text:display[4] Attribute

@@ -33338,7 +41089,7 @@

text:display[4] Attribute

Parent Elements - text:user-field-get  + text:section    @@ -33349,11 +41100,13 @@

text:display[4] Attribute

Values - "formula"  - "none"  - "value"  + "condition"    + + RNG Relations + text:display="condition"   +

text:display[5] Attribute

@@ -33362,7 +41115,8 @@

text:display[5] Attribute

Parent Elements - text:file-name  + text:variable-input  + text:variable-set    @@ -33373,12 +41127,14 @@

text:display[5] Attribute

Values - "full"  - "name"  - "name-and-extension"  - "path"  + "none"  + "value"    + + RNG Relations + text:display="value | none"   +

text:display[6] Attribute

@@ -33387,7 +41143,7 @@

text:display[6] Attribute

Parent Elements - text:template-name  + text:file-name    @@ -33398,14 +41154,16 @@

text:display[6] Attribute

Values - "area"  - "full"  - "name"  - "name-and-extension"  - "path"  - "title"  + "full"  + "name"  + "name-and-extension"  + "path"    + + RNG Relations + text:display="full | path | name | name-and-extension"   +

text:display[7] Attribute

@@ -33414,7 +41172,7 @@

text:display[7] Attribute

Parent Elements - text:section  + text:index-entry-chapter    @@ -33425,9 +41183,15 @@

text:display[7] Attribute

Values - "condition"  + "name"  + "number"  + "number-and-name"    + + RNG Relations + text:display="name | number | number-and-name"   +

text:display[8] Attribute

@@ -33436,7 +41200,7 @@

text:display[8] Attribute

Parent Elements - text:chapter  + text:template-name    @@ -33447,13 +41211,18 @@

text:display[8] Attribute

Values - "name"  - "number"  - "number-and-name"  - "plain-number"  - "plain-number-and-name"  + "area"  + "full"  + "name"  + "name-and-extension"  + "path"  + "title"    + + RNG Relations + text:display="full | path | name | name-and-extension | area | title"   +

text:display[9] Attribute

@@ -33462,7 +41231,9 @@

text:display[9] Attribute

Parent Elements - text:index-entry-chapter  + text:expression  + text:table-formula  + text:variable-get    @@ -33473,11 +41244,14 @@

text:display[9] Attribute

Values - "name"  - "number"  - "number-and-name"  + "formula"  + "value"    + + RNG Relations + text:display="value | formula"   +

text:display-levels Attribute

@@ -33492,7 +41266,7 @@

text:display-levels Attribute< Datatypes - positiveInteger  + positiveInteger    @@ -33500,6 +41274,10 @@

text:display-levels Attribute<   + + RNG Relations + text:display-levels="<positiveInteger>"   +

text:display-outline-level Attribute

@@ -33513,7 +41291,7 @@

text:display-outline-level Datatypes - nonNegativeInteger  + nonNegativeInteger    @@ -33521,6 +41299,10 @@

text:display-outline-level   + + RNG Relations + text:display-outline-level="<nonNegativeInteger>"   +

text:duration Attribute

@@ -33534,7 +41316,7 @@

text:duration Attribute

Datatypes - duration  + duration    @@ -33542,6 +41324,10 @@

text:duration Attribute

  + + RNG Relations + text:duration="<duration>"   +

text:edition Attribute

@@ -33555,7 +41341,7 @@

text:edition Attribute

Datatypes - string  + string    @@ -33563,6 +41349,10 @@

text:edition Attribute

  + + RNG Relations + CHOICE_NAME_CLASS="<string>"   +

text:editor Attribute

@@ -33576,7 +41366,7 @@

text:editor Attribute

Datatypes - string  + string    @@ -33584,6 +41374,10 @@

text:editor Attribute

  + + RNG Relations + CHOICE_NAME_CLASS="<string>"   +

text:filter-name Attribute

@@ -33597,7 +41391,7 @@

text:filter-name Attribute

Datatypes - string  + string    @@ -33605,6 +41399,10 @@

text:filter-name Attribute

  + + RNG Relations + text:filter-name="<string>"   +

text:fixed Attribute

@@ -33659,10 +41457,14 @@

text:fixed Attribute

Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + text:fixed="<boolean>"   +

text:footnotes-position Attribute

@@ -33681,12 +41483,16 @@

text:footnotes-position Attrib Values - "document"  - "page"  - "section"  - "text"  + "document"  + "page"  + "section"  + "text"    + + RNG Relations + text:footnotes-position="text | page | section | document"   +

text:formula Attribute

@@ -33704,7 +41510,7 @@

text:formula Attribute

Datatypes - string  + string    @@ -33712,6 +41518,10 @@

text:formula Attribute

  + + RNG Relations + text:formula="<string>"   +

text:global Attribute

@@ -33730,10 +41540,14 @@

text:global Attribute

Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + text:global="<boolean>"   +

text:howpublished Attribute

@@ -33747,7 +41561,7 @@

text:howpublished Attribute

Datatypes - string  + string    @@ -33755,6 +41569,10 @@

text:howpublished Attribute

  + + RNG Relations + CHOICE_NAME_CLASS="<string>"   +

text:id[1] Attribute

@@ -33777,7 +41595,7 @@

text:id[1] Attribute

Datatypes - string  + string    @@ -33785,6 +41603,10 @@

text:id[1] Attribute

  + + RNG Relations + text:id="<string>"   +

text:id[2] Attribute

@@ -33799,7 +41621,7 @@

text:id[2] Attribute

Datatypes - ID  + ID    @@ -33807,6 +41629,10 @@

text:id[2] Attribute

  + + RNG Relations + text:id="<ID>"   +

text:identifier Attribute

@@ -33820,7 +41646,7 @@

text:identifier Attribute

Datatypes - string  + string    @@ -33828,6 +41654,10 @@

text:identifier Attribute

  + + RNG Relations + CHOICE_NAME_CLASS="<string>"   +

text:ignore-case Attribute

@@ -33846,10 +41676,14 @@

text:ignore-case Attribute

Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + text:ignore-case="<boolean>"   +

text:increment Attribute

@@ -33864,7 +41698,7 @@

text:increment Attribute

Datatypes - nonNegativeInteger  + nonNegativeInteger    @@ -33872,6 +41706,10 @@

text:increment Attribute

  + + RNG Relations + text:increment="<nonNegativeInteger>"   +

text:index-name Attribute

@@ -33887,7 +41725,7 @@

text:index-name Attribute

Datatypes - string  + string    @@ -33895,6 +41733,10 @@

text:index-name Attribute

  + + RNG Relations + text:index-name="<string>"   +

text:index-scope Attribute

@@ -33918,10 +41760,14 @@

text:index-scope Attribute

Values - "chapter"  - "document"  + "chapter"  + "document"    + + RNG Relations + text:index-scope="document | chapter"   +

text:institution Attribute

@@ -33935,7 +41781,7 @@

text:institution Attribute

Datatypes - string  + string    @@ -33943,6 +41789,10 @@

text:institution Attribute

  + + RNG Relations + CHOICE_NAME_CLASS="<string>"   +

text:is-hidden Attribute

@@ -33962,10 +41812,14 @@

text:is-hidden Attribute

Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + text:is-hidden="<boolean>"   +

text:is-list-header Attribute

@@ -33984,10 +41838,14 @@

text:is-list-header Attribute< Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + text:is-list-header="<boolean>"   +

text:isbn Attribute

@@ -34001,7 +41859,7 @@

text:isbn Attribute

Datatypes - string  + string    @@ -34009,6 +41867,10 @@

text:isbn Attribute

  + + RNG Relations + CHOICE_NAME_CLASS="<string>"   +

text:issn Attribute

@@ -34022,7 +41884,7 @@

text:issn Attribute

Datatypes - string  + string    @@ -34030,6 +41892,10 @@

text:issn Attribute

  + + RNG Relations + CHOICE_NAME_CLASS="<string>"   +

text:journal Attribute

@@ -34043,7 +41909,7 @@

text:journal Attribute

Datatypes - string  + string    @@ -34051,6 +41917,10 @@

text:journal Attribute

  + + RNG Relations + CHOICE_NAME_CLASS="<string>"   +

text:key Attribute

@@ -34069,40 +41939,44 @@

text:key Attribute

Values - "address"  - "annote"  - "author"  - "bibliography-type"  - "booktitle"  - "chapter"  - "custom1"  - "custom2"  - "custom3"  - "custom4"  - "custom5"  - "edition"  - "editor"  - "howpublished"  - "identifier"  - "institution"  - "isbn"  - "issn"  - "journal"  - "month"  - "note"  - "number"  - "organizations"  - "pages"  - "publisher"  - "report-type"  - "school"  - "series"  - "title"  - "url"  - "volume"  - "year"  + "address"  + "annote"  + "author"  + "bibliography-type"  + "booktitle"  + "chapter"  + "custom1"  + "custom2"  + "custom3"  + "custom4"  + "custom5"  + "edition"  + "editor"  + "howpublished"  + "identifier"  + "institution"  + "isbn"  + "issn"  + "journal"  + "month"  + "note"  + "number"  + "organizations"  + "pages"  + "publisher"  + "report-type"  + "school"  + "series"  + "title"  + "url"  + "volume"  + "year"    + + RNG Relations + text:key="address | annote | author | bibliography-type | booktitle | chapter | custom1 | custom2 | custom3 | custom4 | custom5 | edition | editor | howpublished | identifier | institution | isbn | issn | journal | month | note | number | organizations | pages | publisher | report-type | school | series | title | url | volume | year"   +

text:key1 Attribute

@@ -34117,7 +41991,7 @@

text:key1 Attribute

Datatypes - string  + string    @@ -34125,6 +41999,10 @@

text:key1 Attribute

  + + RNG Relations + text:key1="<string>"   +

text:key1-phonetic Attribute

@@ -34139,7 +42017,7 @@

text:key1-phonetic Attribute Datatypes - string  + string    @@ -34147,6 +42025,10 @@

text:key1-phonetic Attribute   + + RNG Relations + text:key1-phonetic="<string>"   +

text:key2 Attribute

@@ -34161,7 +42043,7 @@

text:key2 Attribute

Datatypes - string  + string    @@ -34169,6 +42051,10 @@

text:key2 Attribute

  + + RNG Relations + text:key2="<string>"   +

text:key2-phonetic Attribute

@@ -34183,7 +42069,7 @@

text:key2-phonetic Attribute Datatypes - string  + string    @@ -34191,6 +42077,10 @@

text:key2-phonetic Attribute   + + RNG Relations + text:key2-phonetic="<string>"   +

text:kind Attribute

@@ -34209,11 +42099,15 @@

text:kind Attribute

Values - "gap"  - "unit"  - "value"  + "gap"  + "unit"  + "value"    + + RNG Relations + text:kind="value | unit | gap"   +

text:label Attribute

@@ -34227,7 +42121,7 @@

text:label Attribute

Datatypes - string  + string    @@ -34235,6 +42129,10 @@

text:label Attribute

  + + RNG Relations + text:label="<string>"   +

text:level Attribute

@@ -34252,7 +42150,7 @@

text:level Attribute

Datatypes - positiveInteger  + positiveInteger    @@ -34260,6 +42158,10 @@

text:level Attribute

  + + RNG Relations + text:level="<positiveInteger>"   +

text:main-entry Attribute

@@ -34279,10 +42181,14 @@

text:main-entry Attribute

Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + text:main-entry="<boolean>"   +

text:main-entry-style-name Attribute

@@ -34296,7 +42202,7 @@

text:main-entry-style-name Datatypes - NCName  + NCName    @@ -34304,6 +42210,10 @@

text:main-entry-style-name   + + RNG Relations + text:main-entry-style-name="(<NCName>)?"   +

text:master-page-name Attribute

@@ -34318,7 +42228,7 @@

text:master-page-name Attribute< Datatypes - NCName  + NCName    @@ -34326,6 +42236,10 @@

text:master-page-name Attribute<   + + RNG Relations + text:master-page-name="(<NCName>)?"   +

text:month Attribute

@@ -34339,7 +42253,7 @@

text:month Attribute

Datatypes - string  + string    @@ -34347,6 +42261,10 @@

text:month Attribute

  + + RNG Relations + CHOICE_NAME_CLASS="<string>"   +

text:name Attribute

@@ -34385,7 +42303,7 @@

text:name Attribute

Datatypes - string  + string    @@ -34393,6 +42311,10 @@

text:name Attribute

  + + RNG Relations + text:name="<string>"   +

text:note Attribute

@@ -34406,7 +42328,7 @@

text:note Attribute

Datatypes - string  + string    @@ -34414,6 +42336,10 @@

text:note Attribute

  + + RNG Relations + CHOICE_NAME_CLASS="<string>"   +

text:note-class Attribute

@@ -34434,10 +42360,14 @@

text:note-class Attribute

Values - "endnote"  - "footnote"  + "endnote"  + "footnote"    + + RNG Relations + text:note-class="footnote | endnote"   +

text:number Attribute

@@ -34451,7 +42381,7 @@

text:number Attribute

Datatypes - string  + string    @@ -34459,6 +42389,10 @@

text:number Attribute

  + + RNG Relations + CHOICE_NAME_CLASS="<string>"   +

text:number-lines Attribute

@@ -34477,10 +42411,14 @@

text:number-lines Attribute

Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + text:number-lines="<boolean>"   +

text:number-position Attribute

@@ -34499,12 +42437,16 @@

text:number-position Attribute Values - "inner"  - "left"  - "outer"  - "rigth"  + "inner"  + "left"  + "outer"  + "rigth"    + + RNG Relations + text:number-position="left | rigth | inner | outer"   +

text:numbered-entries Attribute

@@ -34523,10 +42465,14 @@

text:numbered-entries Attribute< Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + text:numbered-entries="<boolean>"   +

text:offset Attribute

@@ -34540,7 +42486,7 @@

text:offset Attribute

Datatypes - string  + string    @@ -34548,6 +42494,10 @@

text:offset Attribute

  + + RNG Relations + text:offset="string]"   +

text:organizations Attribute

@@ -34561,7 +42511,7 @@

text:organizations Attribute Datatypes - string  + string    @@ -34569,6 +42519,10 @@

text:organizations Attribute   + + RNG Relations + CHOICE_NAME_CLASS="<string>"   +

text:outline-level[1] Attribute

@@ -34577,22 +42531,13 @@

text:outline-level[1] Attribute Parent Elements - text:h  - text:index-source-styles  - text:table-of-content-entry-template  - text:table-of-content-source  - text:toc-mark  - text:toc-mark-start  - text:user-index-entry-template  - text:user-index-mark  - text:user-index-mark-end  - text:user-index-mark-start  + text:chapter    Datatypes - positiveInteger  + nonNegativeInteger    @@ -34600,6 +42545,10 @@

text:outline-level[1] Attribute   + + RNG Relations + text:outline-level="<nonNegativeInteger>"   +

text:outline-level[2] Attribute

@@ -34619,12 +42568,16 @@

text:outline-level[2] Attribute Values - "1"  - "2"  - "3"  - "separator"  + "1"  + "2"  + "3"  + "separator"    + + RNG Relations + text:outline-level="1 | 2 | 3 | separator"   +

text:outline-level[3] Attribute

@@ -34633,13 +42586,22 @@

text:outline-level[3] Attribute Parent Elements - text:chapter  + text:h  + text:index-source-styles  + text:table-of-content-entry-template  + text:table-of-content-source  + text:toc-mark  + text:toc-mark-start  + text:user-index-entry-template  + text:user-index-mark  + text:user-index-mark-end  + text:user-index-mark-start    Datatypes - nonNegativeInteger  + positiveInteger    @@ -34647,6 +42609,10 @@

text:outline-level[3] Attribute   + + RNG Relations + text:outline-level="<positiveInteger>"   +

text:page-adjust Attribute

@@ -34661,7 +42627,7 @@

text:page-adjust Attribute

Datatypes - integer  + integer    @@ -34669,6 +42635,10 @@

text:page-adjust Attribute

  + + RNG Relations + text:page-adjust="<integer>"   +

text:pages Attribute

@@ -34682,7 +42652,7 @@

text:pages Attribute

Datatypes - string  + string    @@ -34690,6 +42660,10 @@

text:pages Attribute

  + + RNG Relations + CHOICE_NAME_CLASS="<string>"   +

text:placeholder-type Attribute

@@ -34708,13 +42682,17 @@

text:placeholder-type Attribute< Values - "image"  - "object"  - "table"  - "text"  - "text-box"  + "image"  + "object"  + "table"  + "text"  + "text-box"    + + RNG Relations + text:placeholder-type="text | table | text-box | image | object"   +

text:prefix Attribute

@@ -34728,7 +42706,7 @@

text:prefix Attribute

Datatypes - string  + string    @@ -34736,6 +42714,10 @@

text:prefix Attribute

  + + RNG Relations + text:prefix="<string>"   +

text:protected Attribute

@@ -34762,10 +42744,14 @@

text:protected Attribute

Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + text:protected="<boolean>"   +

text:protection-key Attribute

@@ -34787,7 +42773,7 @@

text:protection-key Attribute< Datatypes - string  + string    @@ -34795,6 +42781,10 @@

text:protection-key Attribute<   + + RNG Relations + text:protection-key="<string>"   +

text:publisher Attribute

@@ -34808,7 +42798,7 @@

text:publisher Attribute

Datatypes - string  + string    @@ -34816,6 +42806,10 @@

text:publisher Attribute

  + + RNG Relations + CHOICE_NAME_CLASS="<string>"   +

text:ref-name Attribute

@@ -34833,7 +42827,7 @@

text:ref-name Attribute

Datatypes - string  + string    @@ -34841,6 +42835,10 @@

text:ref-name Attribute

  + + RNG Relations + text:ref-name="<string>"   +

text:reference-format[1] Attribute

@@ -34849,7 +42847,9 @@

text:reference-format[1] Attribu Parent Elements - text:sequence-ref  + text:bookmark-ref  + text:note-ref  + text:reference-ref    @@ -34860,15 +42860,16 @@

text:reference-format[1] Attribu Values - "caption"  - "category-and-value"  - "chapter"  - "direction"  - "page"  - "text"  - "value"  + "chapter"  + "direction"  + "page"  + "text"    + + RNG Relations + text:reference-format="page | chapter | direction | text"   +

text:reference-format[2] Attribute

@@ -34877,9 +42878,7 @@

text:reference-format[2] Attribu Parent Elements - text:bookmark-ref  - text:note-ref  - text:reference-ref  + text:sequence-ref    @@ -34890,12 +42889,19 @@

text:reference-format[2] Attribu Values - "chapter"  - "direction"  - "page"  - "text"  + "caption"  + "category-and-value"  + "chapter"  + "direction"  + "page"  + "text"  + "value"    + + RNG Relations + text:reference-format="page | chapter | direction | text | category-and-value | caption | value"   +

text:relative-tab-stop-position Attribute

@@ -34919,10 +42925,14 @@

text:relative-tab-stop Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + text:relative-tab-stop-position="<boolean>"   +

text:report-type Attribute

@@ -34936,7 +42946,7 @@

text:report-type Attribute

Datatypes - string  + string    @@ -34944,6 +42954,10 @@

text:report-type Attribute

  + + RNG Relations + CHOICE_NAME_CLASS="<string>"   +

text:restart-numbering Attribute

@@ -34962,10 +42976,14 @@

text:restart-numbering Attribut Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + text:restart-numbering="<boolean>"   +

text:restart-on-page Attribute

@@ -34984,10 +43002,14 @@

text:restart-on-page Attribute Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + text:restart-on-page="<boolean>"   +

text:row-number Attribute

@@ -35001,7 +43023,7 @@

text:row-number Attribute

Datatypes - nonNegativeInteger  + nonNegativeInteger    @@ -35009,6 +43031,10 @@

text:row-number Attribute

  + + RNG Relations + text:row-number="<nonNegativeInteger>"   +

text:school Attribute

@@ -35022,7 +43048,7 @@

text:school Attribute

Datatypes - string  + string    @@ -35030,6 +43056,10 @@

text:school Attribute

  + + RNG Relations + CHOICE_NAME_CLASS="<string>"   +

text:section-name Attribute

@@ -35043,7 +43073,7 @@

text:section-name Attribute

Datatypes - string  + string    @@ -35051,6 +43081,10 @@

text:section-name Attribute

  + + RNG Relations + text:section-name="<string>"   +

text:select-page[1] Attribute

@@ -35070,10 +43104,14 @@

text:select-page[1] Attribute

Values - "next"  - "previous"  + "next"  + "previous"    + + RNG Relations + text:select-page="previous | next"   +

text:select-page[2] Attribute

@@ -35093,11 +43131,15 @@

text:select-page[2] Attribute

Values - "current"  - "next"  - "previous"  + "current"  + "next"  + "previous"    + + RNG Relations + text:select-page="previous | current | next"   +

text:separation-character Attribute

@@ -35111,7 +43153,7 @@

text:separation-character At Datatypes - string  + string    @@ -35119,6 +43161,10 @@

text:separation-character At   + + RNG Relations + text:separation-character="string]"   +

text:series Attribute

@@ -35132,7 +43178,7 @@

text:series Attribute

Datatypes - string  + string    @@ -35140,6 +43186,10 @@

text:series Attribute

  + + RNG Relations + CHOICE_NAME_CLASS="<string>"   +

text:sort-algorithm Attribute

@@ -35154,7 +43204,7 @@

text:sort-algorithm Attribute< Datatypes - string  + string    @@ -35162,6 +43212,10 @@

text:sort-algorithm Attribute<   + + RNG Relations + text:sort-algorithm="<string>"   +

text:sort-ascending Attribute

@@ -35180,10 +43234,14 @@

text:sort-ascending Attribute< Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + text:sort-ascending="<boolean>"   +

text:sort-by-position Attribute

@@ -35202,10 +43260,14 @@

text:sort-by-position Attribute< Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + text:sort-by-position="<boolean>"   +

text:start-numbering-at Attribute

@@ -35224,11 +43286,15 @@

text:start-numbering-at Attrib Values - "chapter"  - "document"  - "page"  + "chapter"  + "document"  + "page"    + + RNG Relations + text:start-numbering-at="document | chapter | page"   +

text:start-value[1] Attribute

@@ -35246,7 +43312,7 @@

text:start-value[1] Attribute

Datatypes - nonNegativeInteger  + nonNegativeInteger    @@ -35254,6 +43320,10 @@

text:start-value[1] Attribute

  + + RNG Relations + text:start-value="<nonNegativeInteger>"   +

text:start-value[2] Attribute

@@ -35269,7 +43339,7 @@

text:start-value[2] Attribute

Datatypes - positiveInteger  + positiveInteger    @@ -35277,6 +43347,10 @@

text:start-value[2] Attribute

  + + RNG Relations + text:start-value="<positiveInteger>"   +

text:string-value Attribute

@@ -35294,7 +43368,7 @@

text:string-value Attribute

Datatypes - string  + string    @@ -35302,6 +43376,10 @@

text:string-value Attribute

  + + RNG Relations + text:string-value="<string>"   +

text:string-value-if-false Attribute

@@ -35315,7 +43393,7 @@

text:string-value-if-false Datatypes - string  + string    @@ -35323,6 +43401,10 @@

text:string-value-if-false   + + RNG Relations + text:string-value-if-false="<string>"   +

text:string-value-if-true Attribute

@@ -35336,7 +43418,7 @@

text:string-value-if-true At Datatypes - string  + string    @@ -35344,6 +43426,10 @@

text:string-value-if-true At   + + RNG Relations + text:string-value-if-true="<string>"   +

text:string-value-phonetic Attribute

@@ -35358,7 +43444,7 @@

text:string-value-phonetic Datatypes - string  + string    @@ -35366,6 +43452,10 @@

text:string-value-phonetic   + + RNG Relations + text:string-value-phonetic="<string>"   +

text:style-name Attribute

@@ -35416,7 +43506,7 @@

text:style-name Attribute

Datatypes - NCName  + NCName    @@ -35424,6 +43514,10 @@

text:style-name Attribute

  + + RNG Relations + text:style-name="(<NCName>)?"   +

text:suffix Attribute

@@ -35437,7 +43531,7 @@

text:suffix Attribute

Datatypes - string  + string    @@ -35445,6 +43539,10 @@

text:suffix Attribute

  + + RNG Relations + text:suffix="<string>"   +

text:tab-ref Attribute

@@ -35458,7 +43556,7 @@

text:tab-ref Attribute

Datatypes - nonNegativeInteger  + nonNegativeInteger    @@ -35466,6 +43564,10 @@

text:tab-ref Attribute

  + + RNG Relations + text:tab-ref="<nonNegativeInteger>"   +

text:table-name Attribute

@@ -35483,7 +43585,7 @@

text:table-name Attribute

Datatypes - string  + string    @@ -35491,6 +43593,10 @@

text:table-name Attribute

  + + RNG Relations + text:table-name="<string>"   +

text:table-type Attribute

@@ -35513,11 +43619,15 @@

text:table-type Attribute

Values - "command"  - "query"  - "table"  + "command"  + "query"  + "table"    + + RNG Relations + text:table-type="table | query | command"   +

text:time-adjust Attribute

@@ -35531,7 +43641,7 @@

text:time-adjust Attribute

Datatypes - duration  + duration    @@ -35539,6 +43649,10 @@

text:time-adjust Attribute

  + + RNG Relations + text:time-adjust="<duration>"   +

text:time-value[1] Attribute

@@ -35547,14 +43661,15 @@

text:time-value[1] Attribute

Parent Elements - text:modification-time  - text:print-time  + text:creation-time  + text:time    Datatypes - time  + dateTime  + time    @@ -35562,6 +43677,10 @@

text:time-value[1] Attribute

  + + RNG Relations + text:time-value="<time> | <dateTime>"   +

text:time-value[2] Attribute

@@ -35570,15 +43689,14 @@

text:time-value[2] Attribute

Parent Elements - text:creation-time  - text:time  + text:modification-time  + text:print-time    Datatypes - dateTime  - time  + time    @@ -35586,6 +43704,10 @@

text:time-value[2] Attribute

  + + RNG Relations + text:time-value="<time>"   +

text:title Attribute

@@ -35599,7 +43721,7 @@

text:title Attribute

Datatypes - string  + string    @@ -35607,6 +43729,10 @@

text:title Attribute

  + + RNG Relations + CHOICE_NAME_CLASS="<string>"   +

text:track-changes Attribute

@@ -35625,10 +43751,14 @@

text:track-changes Attribute Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + text:track-changes="<boolean>"   +

text:url Attribute

@@ -35642,7 +43772,7 @@

text:url Attribute

Datatypes - string  + string    @@ -35650,6 +43780,10 @@

text:url Attribute

  + + RNG Relations + CHOICE_NAME_CLASS="<string>"   +

text:use-caption Attribute

@@ -35669,10 +43803,14 @@

text:use-caption Attribute

Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + text:use-caption="<boolean>"   +

text:use-chart-objects Attribute

@@ -35691,10 +43829,14 @@

text:use-chart-objects Attribut Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + text:use-chart-objects="<boolean>"   +

text:use-draw-objects Attribute

@@ -35713,10 +43855,14 @@

text:use-draw-objects Attribute< Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + text:use-draw-objects="<boolean>"   +

text:use-floating-frames Attribute

@@ -35735,10 +43881,14 @@

text:use-floating-frames Attr Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + text:use-floating-frames="<boolean>"   +

text:use-graphics Attribute

@@ -35757,10 +43907,14 @@

text:use-graphics Attribute

Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + text:use-graphics="<boolean>"   +

text:use-index-marks Attribute

@@ -35780,10 +43934,14 @@

text:use-index-marks Attribute Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + text:use-index-marks="<boolean>"   +

text:use-index-source-styles Attribute

@@ -35802,10 +43960,14 @@

text:use-index-source-sty Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + text:use-index-source-styles="<boolean>"   +

text:use-keys-as-entries Attribute

@@ -35824,10 +43986,14 @@

text:use-keys-as-entries Attr Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + text:use-keys-as-entries="<boolean>"   +

text:use-math-objects Attribute

@@ -35846,10 +44012,14 @@

text:use-math-objects Attribute< Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + text:use-math-objects="<boolean>"   +

text:use-objects Attribute

@@ -35868,10 +44038,14 @@

text:use-objects Attribute

Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + text:use-objects="<boolean>"   +

text:use-other-objects Attribute

@@ -35890,10 +44064,14 @@

text:use-other-objects Attribut Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + text:use-other-objects="<boolean>"   +

text:use-outline-level Attribute

@@ -35912,10 +44090,14 @@

text:use-outline-level Attribut Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + text:use-outline-level="<boolean>"   +

text:use-spreadsheet-objects Attribute

@@ -35934,10 +44116,14 @@

text:use-spreadsheet-obje Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + text:use-spreadsheet-objects="<boolean>"   +

text:use-tables Attribute

@@ -35956,10 +44142,14 @@

text:use-tables Attribute

Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + text:use-tables="<boolean>"   +

text:value Attribute

@@ -35973,7 +44163,7 @@

text:value Attribute

Datatypes - nonNegativeInteger  + nonNegativeInteger    @@ -35981,6 +44171,10 @@

text:value Attribute

  + + RNG Relations + text:value="<nonNegativeInteger>"   +

text:visited-style-name Attribute

@@ -35994,7 +44188,7 @@

text:visited-style-name Attrib Datatypes - NCName  + NCName    @@ -36002,6 +44196,10 @@

text:visited-style-name Attrib   + + RNG Relations + text:visited-style-name="(<NCName>)?"   +

text:volume Attribute

@@ -36015,7 +44213,7 @@

text:volume Attribute

Datatypes - string  + string    @@ -36023,6 +44221,10 @@

text:volume Attribute

  + + RNG Relations + CHOICE_NAME_CLASS="<string>"   +

text:year Attribute

@@ -36036,7 +44238,7 @@

text:year Attribute

Datatypes - string  + string    @@ -36044,6 +44246,10 @@

text:year Attribute

  + + RNG Relations + CHOICE_NAME_CLASS="<string>"   +

xforms:bind Attribute

@@ -36077,7 +44283,7 @@

xforms:bind Attribute

Datatypes - string  + string    @@ -36085,6 +44291,10 @@

xforms:bind Attribute

  + + RNG Relations + xforms:bind="<string>"   +

xlink:actuate[1] Attribute

@@ -36113,9 +44323,13 @@

xlink:actuate[1] Attribute

Values - "onRequest"  + "onRequest"    + + RNG Relations + xlink:actuate="onRequest"   +

xlink:actuate[2] Attribute

@@ -36142,9 +44356,13 @@

xlink:actuate[2] Attribute

Values - "onLoad"  + "onLoad"    + + RNG Relations + xlink:actuate="onLoad"   +

xlink:href Attribute

@@ -36185,7 +44403,7 @@

xlink:href Attribute

Datatypes - anyURI  + anyURI    @@ -36193,6 +44411,10 @@

xlink:href Attribute

  + + RNG Relations + xlink:href="<anyURI>"   +

xlink:show[1] Attribute

@@ -36217,10 +44439,14 @@

xlink:show[1] Attribute

Values - "new"  - "replace"  + "new"  + "replace"    + + RNG Relations + xlink:show="new | replace"   +

xlink:show[2] Attribute

@@ -36249,9 +44475,13 @@

xlink:show[2] Attribute

Values - "embed"  + "embed"    + + RNG Relations + xlink:show="embed"   +

xlink:type Attribute

@@ -36293,9 +44523,13 @@

xlink:type Attribute

Values - "simple"  + "simple"    + + RNG Relations + xlink:type="simple"   +
diff --git a/generator/schema2template/src/test/resources/test-reference/odf/generation/odf-reference/odf-schema-1.1/OdfReference.html b/generator/schema2template/src/test/resources/test-reference/odf/generation/odf-reference/odf-schema-1.1/OdfReference.html index cba0d92343..3420b79b69 100644 --- a/generator/schema2template/src/test/resources/test-reference/odf/generation/odf-reference/odf-schema-1.1/OdfReference.html +++ b/generator/schema2template/src/test/resources/test-reference/odf/generation/odf-reference/odf-schema-1.1/OdfReference.html @@ -78,6 +78,38 @@

anim:animate Element

  + + Child Relations + <anim:animate (smil:targetElement="<IDREF>" )? + (anim:sub-item="<string>" )? + smil:attributeName="<string>" (smil:values="<string>" )? + (anim:formula="<string>" )? + + ( (smil:to="<string>" )? + (smil:from="<string>" )? + (smil:by="<string>" )? + ) (smil:calcMode="discrete | linear | paced | spline" )? + (smil:keyTimes="<string>" )? + (smil:keySplines="<string>" )? + + ( + ( (smil:begin="<string>" )? + (smil:end="<string>" )? + (smil:dur="<string>" )? + + ( (smil:repeatDur="<string>" )? + (smil:repeatCount="<nonNegativeInteger> | indefinite" )? + )) (smil:restart="never | always | whenNotActive | default" )? + (smil:restartDefault="never | always | whenNotActive | inherit" )? + (smil:fill="remove | freeze | hold | auto | default | transition" )? + (smil:fillDefault="remove | freeze | hold | transition | auto | inherit" )? + (smil:accelerate="<double>" )? + (smil:decelerate="<double>" )? + (smil:autoReverse="<boolean>" )? + ) (smil:accumulate="none | sum" )? + (smil:additive="replace | sum" )? + >  +
@@ -129,6 +161,40 @@

anim:animateColor Element

  + + Child Relations + <anim:animateColor (smil:targetElement="<IDREF>" )? + (anim:sub-item="<string>" )? + smil:attributeName="<string>" (smil:accumulate="none | sum" )? + (smil:additive="replace | sum" )? + (smil:values="<string>" )? + (anim:formula="<string>" )? + + ( (smil:to="<string>" )? + (smil:from="<string>" )? + (smil:by="<string>" )? + ) (smil:calcMode="discrete | linear | paced | spline" )? + (smil:keyTimes="<string>" )? + (smil:keySplines="<string>" )? + (anim:color-interpolation="rgb | hsl" )? + (anim:color-interpolation-direction="clockwise | counter-clockwise" )? + + ( + ( (smil:begin="<string>" )? + (smil:end="<string>" )? + (smil:dur="<string>" )? + + ( (smil:repeatDur="<string>" )? + (smil:repeatCount="<nonNegativeInteger> | indefinite" )? + )) (smil:restart="never | always | whenNotActive | default" )? + (smil:restartDefault="never | always | whenNotActive | inherit" )? + (smil:fill="remove | freeze | hold | auto | default | transition" )? + (smil:fillDefault="remove | freeze | hold | transition | auto | inherit" )? + (smil:accelerate="<double>" )? + (smil:decelerate="<double>" )? + (smil:autoReverse="<boolean>" )? + )>  +
@@ -180,6 +246,40 @@

anim:animateMotion Element

  + + Child Relations + <anim:animateMotion (svg:path="<string>" )? + (svg:origin="<string>" )? + (smil:calcMode="discrete | linear | paced | spline" )? + (smil:targetElement="<IDREF>" )? + (anim:sub-item="<string>" )? + smil:attributeName="<string>" (smil:accumulate="none | sum" )? + (smil:additive="replace | sum" )? + (smil:values="<string>" )? + (anim:formula="<string>" )? + + ( (smil:to="<string>" )? + (smil:from="<string>" )? + (smil:by="<string>" )? + ) + ( + ( (smil:begin="<string>" )? + (smil:end="<string>" )? + (smil:dur="<string>" )? + + ( (smil:repeatDur="<string>" )? + (smil:repeatCount="<nonNegativeInteger> | indefinite" )? + )) (smil:restart="never | always | whenNotActive | default" )? + (smil:restartDefault="never | always | whenNotActive | inherit" )? + (smil:fill="remove | freeze | hold | auto | default | transition" )? + (smil:fillDefault="remove | freeze | hold | transition | auto | inherit" )? + (smil:accelerate="<double>" )? + (smil:decelerate="<double>" )? + (smil:autoReverse="<boolean>" )? + ) (smil:keyTimes="<string>" )? + (smil:keySplines="<string>" )? + >  +
@@ -227,6 +327,35 @@

anim:animateTransform Element<   + + Child Relations + <anim:animateTransform (smil:targetElement="<IDREF>" )? + (anim:sub-item="<string>" )? + smil:attributeName="<string>" (smil:accumulate="none | sum" )? + (smil:additive="replace | sum" )? + (smil:values="<string>" )? + (anim:formula="<string>" )? + + ( (smil:to="<string>" )? + (smil:from="<string>" )? + (smil:by="<string>" )? + )svg:type="translate | scale | rotate | skewX | skewY" + ( + ( (smil:begin="<string>" )? + (smil:end="<string>" )? + (smil:dur="<string>" )? + + ( (smil:repeatDur="<string>" )? + (smil:repeatCount="<nonNegativeInteger> | indefinite" )? + )) (smil:restart="never | always | whenNotActive | default" )? + (smil:restartDefault="never | always | whenNotActive | inherit" )? + (smil:fill="remove | freeze | hold | auto | default | transition" )? + (smil:fillDefault="remove | freeze | hold | transition | auto | inherit" )? + (smil:accelerate="<double>" )? + (smil:decelerate="<double>" )? + (smil:autoReverse="<boolean>" )? + )>  +
@@ -265,6 +394,26 @@

anim:audio Element

  + + Child Relations + <anim:audio (presentation:node-type="default | on-click | with-previous | after-previous | timing-root | main-sequence | interactive-sequence" )? + (presentation:preset-id="<string>" )? + (presentation:preset-sub-type="<string>" )? + (presentation:preset-class="custom | entrance | exit | emphasis | motion-path | ole-action | media-call" )? + (presentation:master-element="<IDREF>" )? + (presentation:group-id="<string>" )? + (anim:id="<ID>" )? + (xlink:href="<anyURI>" )? + (anim:audio-level="<double>" )? + + ( (smil:begin="<string>" )? + (smil:end="<string>" )? + (smil:dur="<string>" )? + + ( (smil:repeatDur="<string>" )? + (smil:repeatCount="<nonNegativeInteger> | indefinite" )? + ))>  +
@@ -302,6 +451,21 @@

anim:command Element

<anim:param>*    + + Child Relations + <anim:command (presentation:node-type="default | on-click | with-previous | after-previous | timing-root | main-sequence | interactive-sequence" )? + (presentation:preset-id="<string>" )? + (presentation:preset-sub-type="<string>" )? + (presentation:preset-class="custom | entrance | exit | emphasis | motion-path | ole-action | media-call" )? + (presentation:master-element="<IDREF>" )? + (presentation:group-id="<string>" )? + (anim:id="<ID>" )? + anim:command="<string>" (smil:begin="<string>" )? + (smil:end="<string>" )? + (smil:targetElement="<IDREF>" )? + (anim:sub-item="<string>" )? + (<anim:param ... >)* >  +
@@ -361,6 +525,37 @@

anim:iterate Element

<anim:transitionFilter>*    + + Child Relations + <anim:iterate (presentation:node-type="default | on-click | with-previous | after-previous | timing-root | main-sequence | interactive-sequence" )? + (presentation:preset-id="<string>" )? + (presentation:preset-sub-type="<string>" )? + (presentation:preset-class="custom | entrance | exit | emphasis | motion-path | ole-action | media-call" )? + (presentation:master-element="<IDREF>" )? + (presentation:group-id="<string>" )? + (anim:id="<ID>" )? + (smil:targetElement="<IDREF>" )? + (anim:sub-item="<string>" )? + (anim:iterate-type="<string>" )? + (anim:iterate-interval="<duration>" )? + + ( + ( (smil:begin="<string>" )? + (smil:end="<string>" )? + (smil:dur="<string>" )? + + ( (smil:repeatDur="<string>" )? + (smil:repeatCount="<nonNegativeInteger> | indefinite" )? + )) (smil:restart="never | always | whenNotActive | default" )? + (smil:restartDefault="never | always | whenNotActive | inherit" )? + (smil:fill="remove | freeze | hold | auto | default | transition" )? + (smil:fillDefault="remove | freeze | hold | transition | auto | inherit" )? + (smil:accelerate="<double>" )? + (smil:decelerate="<double>" )? + (smil:autoReverse="<boolean>" )? + ) (smil:endsync="first | last | all | media" )? + (<anim:animate ... > | <anim:set ... > | <anim:animateMotion ... > | <anim:animateColor ... > | <anim:animateTransform ... > | <anim:transitionFilter ... > | <anim:par ... > | <anim:seq ... > | <anim:iterate ... > | <anim:audio ... > | <anim:command ... >)* >  +
@@ -416,6 +611,33 @@

anim:par Element

<anim:transitionFilter>*    + + Child Relations + <anim:par (presentation:node-type="default | on-click | with-previous | after-previous | timing-root | main-sequence | interactive-sequence" )? + (presentation:preset-id="<string>" )? + (presentation:preset-sub-type="<string>" )? + (presentation:preset-class="custom | entrance | exit | emphasis | motion-path | ole-action | media-call" )? + (presentation:master-element="<IDREF>" )? + (presentation:group-id="<string>" )? + (anim:id="<ID>" )? + + ( + ( (smil:begin="<string>" )? + (smil:end="<string>" )? + (smil:dur="<string>" )? + + ( (smil:repeatDur="<string>" )? + (smil:repeatCount="<nonNegativeInteger> | indefinite" )? + )) (smil:restart="never | always | whenNotActive | default" )? + (smil:restartDefault="never | always | whenNotActive | inherit" )? + (smil:fill="remove | freeze | hold | auto | default | transition" )? + (smil:fillDefault="remove | freeze | hold | transition | auto | inherit" )? + (smil:accelerate="<double>" )? + (smil:decelerate="<double>" )? + (smil:autoReverse="<boolean>" )? + ) (smil:endsync="first | last | all | media" )? + (<anim:animate ... > | <anim:set ... > | <anim:animateMotion ... > | <anim:animateColor ... > | <anim:animateTransform ... > | <anim:transitionFilter ... > | <anim:par ... > | <anim:seq ... > | <anim:iterate ... > | <anim:audio ... > | <anim:command ... >)* >  +
@@ -439,6 +661,10 @@

anim:param Element

  + + Child Relations + <anim:param anim:name="TEXT" anim:value="TEXT" >  +
@@ -494,6 +720,33 @@

anim:seq Element

<anim:transitionFilter>*    + + Child Relations + <anim:seq (presentation:node-type="default | on-click | with-previous | after-previous | timing-root | main-sequence | interactive-sequence" )? + (presentation:preset-id="<string>" )? + (presentation:preset-sub-type="<string>" )? + (presentation:preset-class="custom | entrance | exit | emphasis | motion-path | ole-action | media-call" )? + (presentation:master-element="<IDREF>" )? + (presentation:group-id="<string>" )? + (anim:id="<ID>" )? + (smil:endsync="first | last | all | media" )? + + ( + ( (smil:begin="<string>" )? + (smil:end="<string>" )? + (smil:dur="<string>" )? + + ( (smil:repeatDur="<string>" )? + (smil:repeatCount="<nonNegativeInteger> | indefinite" )? + )) (smil:restart="never | always | whenNotActive | default" )? + (smil:restartDefault="never | always | whenNotActive | inherit" )? + (smil:fill="remove | freeze | hold | auto | default | transition" )? + (smil:fillDefault="remove | freeze | hold | transition | auto | inherit" )? + (smil:accelerate="<double>" )? + (smil:decelerate="<double>" )? + (smil:autoReverse="<boolean>" )? + )(<anim:animate ... > | <anim:set ... > | <anim:animateMotion ... > | <anim:animateColor ... > | <anim:animateTransform ... > | <anim:transitionFilter ... > | <anim:par ... > | <anim:seq ... > | <anim:iterate ... > | <anim:audio ... > | <anim:command ... >)* >  +
@@ -536,6 +789,30 @@

anim:set Element

  + + Child Relations + <anim:set (smil:targetElement="<IDREF>" )? + (anim:sub-item="<string>" )? + smil:attributeName="<string>" (smil:to="<string>" )? + + ( + ( (smil:begin="<string>" )? + (smil:end="<string>" )? + (smil:dur="<string>" )? + + ( (smil:repeatDur="<string>" )? + (smil:repeatCount="<nonNegativeInteger> | indefinite" )? + )) (smil:restart="never | always | whenNotActive | default" )? + (smil:restartDefault="never | always | whenNotActive | inherit" )? + (smil:fill="remove | freeze | hold | auto | default | transition" )? + (smil:fillDefault="remove | freeze | hold | transition | auto | inherit" )? + (smil:accelerate="<double>" )? + (smil:decelerate="<double>" )? + (smil:autoReverse="<boolean>" )? + ) (smil:accumulate="none | sum" )? + (smil:additive="replace | sum" )? + >  +
@@ -587,6 +864,40 @@

anim:transitionFilter Element<   + + Child Relations + <anim:transitionFilter (smil:targetElement="<IDREF>" )? + (anim:sub-item="<string>" )? + (smil:accumulate="none | sum" )? + (smil:additive="replace | sum" )? + (smil:values="<string>" )? + (anim:formula="<string>" )? + + ( (smil:to="<string>" )? + (smil:from="<string>" )? + (smil:by="<string>" )? + ) (smil:calcMode="discrete | linear | paced | spline" )? + smil:type="<string>" (smil:subtype="<string>" )? + (smil:direction="forward | reverse" )? + (smil:fadeColor="forward | reverse" )? + (smil:mode="in | out" )? + + ( + ( (smil:begin="<string>" )? + (smil:end="<string>" )? + (smil:dur="<string>" )? + + ( (smil:repeatDur="<string>" )? + (smil:repeatCount="<nonNegativeInteger> | indefinite" )? + )) (smil:restart="never | always | whenNotActive | default" )? + (smil:restartDefault="never | always | whenNotActive | inherit" )? + (smil:fill="remove | freeze | hold | auto | default | transition" )? + (smil:fillDefault="remove | freeze | hold | transition | auto | inherit" )? + (smil:accelerate="<double>" )? + (smil:decelerate="<double>" )? + (smil:autoReverse="<boolean>" )? + )>  +
@@ -614,6 +925,14 @@

chart:axis Element

<chart:title>    + + Child Relations + <chart:axis chart:dimension="x | y | z" (chart:name="<string>" )? + (chart:style-name="(<NCName>)?" )? + (<chart:title ... >)? + (<chart:categories ... >)? + (<chart:grid ... >)* >  +
@@ -636,6 +955,11 @@

chart:categories Element

  + + Child Relations + <chart:categories (table:cell-range-address="string]" )? + >  +
@@ -650,12 +974,12 @@

chart:chart Element

Attributes - chart:class[1]  + chart:class[2]  chart:column-mapping  chart:row-mapping  chart:style-name  - svg:height[1]  - svg:width[1]  + svg:height[2]  + svg:width[2]    @@ -669,6 +993,21 @@

chart:chart Element

<table:table>    + + Child Relations + <chart:chart chart:class="string]" + ( (svg:width="string]" )? + (svg:height="string]" )? + ) (chart:column-mapping="<string>" )? + (chart:row-mapping="<string>" )? + (chart:style-name="(<NCName>)?" )? + (<chart:title ... >)? + (<chart:subtitle ... >)? + (<chart:footer ... >)? + (<chart:legend ... >)? + <chart:plot-area ... > (<table:table ... >)? + >  +
@@ -692,6 +1031,12 @@

chart:data-point Element

  + + Child Relations + <chart:data-point (chart:repeated="<nonNegativeInteger>" )? + (chart:style-name="(<NCName>)?" )? + >  +
@@ -714,6 +1059,11 @@

chart:domain Element

  + + Child Relations + <chart:domain (table:cell-range-address="string]" )? + >  +
@@ -736,6 +1086,11 @@

chart:error-indicator Element<   + + Child Relations + <chart:error-indicator (chart:style-name="(<NCName>)?" )? + >  +
@@ -751,7 +1106,7 @@

chart:floor Element

Attributes chart:style-name  - svg:width[1]  + svg:width[2]    @@ -759,6 +1114,12 @@

chart:floor Element

  + + Child Relations + <chart:floor (svg:width="string]" )? + (chart:style-name="(<NCName>)?" )? + >  +
@@ -774,7 +1135,7 @@

chart:footer Element

Attributes chart:style-name  - svg:x[1]  + svg:x[2]  svg:y[2]  table:cell-range    @@ -785,6 +1146,16 @@

chart:footer Element

<text:p>    + + Child Relations + <chart:footer (table:cell-range="string]" )? + + ( (svg:x="string]" )? + (svg:y="string]" )? + ) (chart:style-name="(<NCName>)?" )? + (<text:p ... >)? + >  +
@@ -799,7 +1170,7 @@

chart:grid Element

Attributes - chart:class[2]  + chart:class[1]  chart:style-name    @@ -808,6 +1179,12 @@

chart:grid Element

  + + Child Relations + <chart:grid (chart:class="major | minor" )? + (chart:style-name="(<NCName>)?" )? + >  +
@@ -829,7 +1206,7 @@

chart:legend Element

style:legend-expansion[1]  style:legend-expansion[2]  style:legend-expansion-aspect-ratio  - svg:x[1]  + svg:x[2]  svg:y[2]    @@ -838,6 +1215,19 @@

chart:legend Element

  + + Child Relations + <chart:legend ( + (chart:legend-position="start | end | top | bottom" (chart:legend-align="start | center | end" )? + ) | chart:legend-position="top-start | bottom-start | top-end | bottom-end" )? + + ( (svg:x="string]" )? + (svg:y="string]" )? + ) (style:legend-expansion="wide | high | balanced" | + (style:legend-expansion="custom" style:legend-expansion-aspect-ratio="<double>" ))? + (chart:style-name="(<NCName>)?" )? + >  +
@@ -860,6 +1250,11 @@

chart:mean-value Element

  + + Child Relations + <chart:mean-value (chart:style-name="(<NCName>)?" )? + >  +
@@ -887,9 +1282,9 @@

chart:plot-area Element

dr3d:vpn  dr3d:vrp  dr3d:vup  - svg:height[1]  - svg:width[1]  - svg:x[1]  + svg:height[2]  + svg:width[2]  + svg:x[2]  svg:y[2]  table:cell-range-address    @@ -907,6 +1302,38 @@

chart:plot-area Element

<dr3d:light>*    + + Child Relations + <chart:plot-area + ( + ( (svg:x="string]" )? + (svg:y="string]" )? + ) + ( (svg:width="string]" )? + (svg:height="string]" )? + )) (chart:style-name="(<NCName>)?" )? + (table:cell-range-address="string]" )? + (chart:data-source-has-labels="none | row | column | both" )? + + ( + ( (dr3d:vrp="string]" )? + (dr3d:vpn="string]" )? + (dr3d:vup="string]" )? + ) (dr3d:projection="parallel | perspective" )? + (dr3d:distance="string]" )? + (dr3d:focal-length="string]" )? + (dr3d:shadow-slant="<nonNegativeInteger>" )? + (dr3d:shade-mode="flat | phong | gouraud | draft" )? + (dr3d:ambient-color="string]" )? + (dr3d:lighting-mode="<boolean>" )? + (dr3d:transform="TEXT" )? + )(<dr3d:light ... >)* (<chart:axis ... >)* (<chart:series ... >)* (<chart:stock-gain-marker ... >)? + (<chart:stock-loss-marker ... >)? + (<chart:stock-range-line ... >)? + (<chart:wall ... >)? + (<chart:floor ... >)? + >  +
@@ -929,6 +1356,11 @@

chart:regression-curve Element   + + Child Relations + <chart:regression-curve (chart:style-name="(<NCName>)?" )? + >  +
@@ -944,7 +1376,7 @@

chart:series Element

Attributes chart:attached-axis  - chart:class[1]  + chart:class[2]  chart:label-cell-address  chart:style-name  chart:values-cell-range-address  @@ -960,6 +1392,18 @@

chart:series Element

<chart:regression-curve>    + + Child Relations + <chart:series (chart:values-cell-range-address="string]" )? + (chart:label-cell-address="string]" )? + (chart:class="string]" )? + (chart:attached-axis="<string>" )? + (chart:style-name="(<NCName>)?" )? + (<chart:domain ... >)* (<chart:mean-value ... >)? + (<chart:regression-curve ... >)? + (<chart:error-indicator ... >)? + (<chart:data-point ... >)* >  +
@@ -982,6 +1426,11 @@

chart:stock-gain-marker Element<   + + Child Relations + <chart:stock-gain-marker (chart:style-name="(<NCName>)?" )? + >  +
@@ -1004,6 +1453,11 @@

chart:stock-loss-marker Element<   + + Child Relations + <chart:stock-loss-marker (chart:style-name="(<NCName>)?" )? + >  +
@@ -1026,6 +1480,11 @@

chart:stock-range-line Element   + + Child Relations + <chart:stock-range-line (chart:style-name="(<NCName>)?" )? + >  +
@@ -1041,7 +1500,7 @@

chart:subtitle Element

Attributes chart:style-name  - svg:x[1]  + svg:x[2]  svg:y[2]  table:cell-range    @@ -1052,6 +1511,16 @@

chart:subtitle Element

<text:p>    + + Child Relations + <chart:subtitle (table:cell-range="string]" )? + + ( (svg:x="string]" )? + (svg:y="string]" )? + ) (chart:style-name="(<NCName>)?" )? + (<text:p ... >)? + >  +
@@ -1068,7 +1537,7 @@

chart:title Element

Attributes chart:style-name  - svg:x[1]  + svg:x[2]  svg:y[2]  table:cell-range    @@ -1079,6 +1548,16 @@

chart:title Element

<text:p>    + + Child Relations + <chart:title (table:cell-range="string]" )? + + ( (svg:x="string]" )? + (svg:y="string]" )? + ) (chart:style-name="(<NCName>)?" )? + (<text:p ... >)? + >  +
@@ -1094,7 +1573,7 @@

chart:wall Element

Attributes chart:style-name  - svg:width[1]  + svg:width[2]    @@ -1102,6 +1581,12 @@

chart:wall Element

  + + Child Relations + <chart:wall (svg:width="string]" )? + (chart:style-name="(<NCName>)?" )? + >  +
@@ -1127,6 +1612,10 @@

config:config-item Element

  + + Child Relations + <config:config-item config:name="<string>" config:type="boolean | short | int | long | double | string | datetime | base64Binary" TEXT>  +
@@ -1154,6 +1643,11 @@

config:config-item-map-entr <config:config-item-set>*    + + Child Relations + <config:config-item-map-entry (config:name="<string>" )? + (<config:config-item ... > | <config:config-item-set ... > | <config:config-item-map-named ... > | <config:config-item-map-indexed ... >)+ >  +
@@ -1178,6 +1672,10 @@

config:config-item-map-in <config:config-item-map-entry>*    + + Child Relations + <config:config-item-map-indexed config:name="<string>" (<config:config-item-map-entry ... >)+ >  +
@@ -1202,6 +1700,10 @@

config:config-item-map-name <config:config-item-map-entry>*    + + Child Relations + <config:config-item-map-named config:name="<string>" (<config:config-item-map-entry ... >)+ >  +
@@ -1230,6 +1732,10 @@

config:config-item-set Element<config:config-item-set>*    + + Child Relations + <config:config-item-set config:name="<string>" (<config:config-item ... > | <config:config-item-set ... > | <config:config-item-map-named ... > | <config:config-item-map-indexed ... >)+ >  +
@@ -1252,6 +1758,10 @@

dc:creator Element

  + + Child Relations + <dc:creator <string>>  +
@@ -1274,6 +1784,10 @@

dc:date Element

  + + Child Relations + <dc:date <dateTime>>  +
@@ -1292,7 +1806,7 @@

dr3d:cube Element

dr3d:min-edge  dr3d:transform  draw:class-names  - draw:id[1]  + draw:id[2]  draw:layer  draw:style-name  draw:z-index  @@ -1305,6 +1819,27 @@

dr3d:cube Element

  + + Child Relations + <dr3d:cube + ( (dr3d:min-edge="string]" )? + (dr3d:max-edge="string]" )? + ) (draw:z-index="<nonNegativeInteger>" )? + (draw:id="<ID>" )? + (draw:layer="<string>" )? + + ( (draw:style-name="(<NCName>)?" )? + (draw:class-names=" +START_list(<NCName>)* +END_list" )? + ) | + ( (presentation:style-name="(<NCName>)?" )? + (presentation:class-names=" +START_list(<NCName>)* +END_list" )? + ) (dr3d:transform="TEXT" )? + >  +
@@ -1321,7 +1856,7 @@

dr3d:extrude Element

dr3d:transform  draw:class-names  - draw:id[1]  + draw:id[2]  draw:layer  draw:style-name  draw:z-index  @@ -1336,6 +1871,26 @@

dr3d:extrude Element

  + + Child Relations + <dr3d:extrude svg:d="<string>" svg:viewBox=" +START_list<integer><integer><integer><integer> +END_list" (draw:id="<ID>" )? + (draw:z-index="<nonNegativeInteger>" )? + (draw:layer="<string>" )? + + ( (draw:style-name="(<NCName>)?" )? + (draw:class-names=" +START_list(<NCName>)* +END_list" )? + ) | + ( (presentation:style-name="(<NCName>)?" )? + (presentation:class-names=" +START_list(<NCName>)* +END_list" )? + ) (dr3d:transform="TEXT" )? + >  +
@@ -1362,6 +1917,13 @@

dr3d:light Element

  + + Child Relations + <dr3d:light (dr3d:diffuse-color="string]" )? + dr3d:direction="string]" (dr3d:enabled="<boolean>" )? + (dr3d:specular="<boolean>" )? + >  +
@@ -1378,7 +1940,7 @@

dr3d:rotate Element

dr3d:transform  draw:class-names  - draw:id[1]  + draw:id[2]  draw:layer  draw:style-name  draw:z-index  @@ -1393,6 +1955,26 @@

dr3d:rotate Element

  + + Child Relations + <dr3d:rotate svg:viewBox=" +START_list<integer><integer><integer><integer> +END_list" svg:d="<string>" (draw:z-index="<nonNegativeInteger>" )? + (draw:id="<ID>" )? + (draw:layer="<string>" )? + + ( (draw:style-name="(<NCName>)?" )? + (draw:class-names=" +START_list(<NCName>)* +END_list" )? + ) | + ( (presentation:style-name="(<NCName>)?" )? + (presentation:class-names=" +START_list(<NCName>)* +END_list" )? + ) (dr3d:transform="TEXT" )? + >  +
@@ -1440,15 +2022,15 @@

dr3d:scene Element

dr3d:vup  draw:caption-id  draw:class-names  - draw:id[1]  + draw:id[2]  draw:layer  draw:style-name  draw:z-index  presentation:class-names  presentation:style-name  - svg:height[1]  - svg:width[1]  - svg:x[1]  + svg:height[2]  + svg:width[2]  + svg:x[2]  svg:y[2]  table:end-cell-address  table:end-x  @@ -1471,6 +2053,51 @@

dr3d:scene Element

<svg:title>    + + Child Relations + <dr3d:scene + ( (dr3d:vrp="string]" )? + (dr3d:vpn="string]" )? + (dr3d:vup="string]" )? + ) (dr3d:projection="parallel | perspective" )? + (dr3d:distance="string]" )? + (dr3d:focal-length="string]" )? + (dr3d:shadow-slant="<nonNegativeInteger>" )? + (dr3d:shade-mode="flat | phong | gouraud | draft" )? + (dr3d:ambient-color="string]" )? + (dr3d:lighting-mode="<boolean>" )? + + ( (svg:x="string]" )? + (svg:y="string]" )? + ) + ( (svg:width="string]" )? + (svg:height="string]" )? + ) + ( (draw:style-name="(<NCName>)?" )? + (draw:class-names=" +START_list(<NCName>)* +END_list" )? + ) | + ( (presentation:style-name="(<NCName>)?" )? + (presentation:class-names=" +START_list(<NCName>)* +END_list" )? + ) (draw:z-index="<nonNegativeInteger>" )? + (draw:id="<ID>" )? + (draw:layer="<string>" )? + + ( (table:end-cell-address="string]" )? + (table:end-x="string]" )? + (table:end-y="string]" )? + ) (table:table-background="<boolean>" )? + (text:anchor-type="page | frame | paragraph | char | as-char" )? + (text:anchor-page-number="<positiveInteger>" )? + (dr3d:transform="TEXT" )? + (draw:caption-id="<IDREF>" )? + (<svg:title ... >)? + (<svg:desc ... >)? + (<dr3d:light ... >)* (<dr3d:scene ... > | <dr3d:extrude ... > | <dr3d:sphere ... > | <dr3d:rotate ... > | <dr3d:cube ... >)* >  +
@@ -1489,7 +2116,7 @@

dr3d:sphere Element

dr3d:size  dr3d:transform  draw:class-names  - draw:id[1]  + draw:id[2]  draw:layer  draw:style-name  draw:z-index  @@ -1502,6 +2129,26 @@

dr3d:sphere Element

  + + Child Relations + <dr3d:sphere (dr3d:center="string]" )? + (dr3d:size="string]" )? + (draw:z-index="<nonNegativeInteger>" )? + (draw:id="<ID>" )? + (draw:layer="<string>" )? + + ( (draw:style-name="(<NCName>)?" )? + (draw:class-names=" +START_list(<NCName>)* +END_list" )? + ) | + ( (presentation:style-name="(<NCName>)?" )? + (presentation:class-names=" +START_list(<NCName>)* +END_list" )? + ) (dr3d:transform="TEXT" )? + >  +
@@ -1545,6 +2192,19 @@

draw:a Element

<draw:frame>    + + Child Relations + <draw:a + (xlink:href="<anyURI>" (xlink:type="simple" )? + (xlink:actuate="onRequest" )? + ) + ( (office:target-frame-name="_self | _blank | _parent | _top | <string>" )? + (xlink:show="new | replace" )? + ) (office:name="<string>" )? + (office:title="<string>" )? + (office:server-map="<boolean>" )? + <draw:frame ... >>  +
@@ -1575,6 +2235,19 @@

draw:applet Element

<draw:param>*    + + Child Relations + <draw:applet (draw:code="TEXT" )? + (draw:object="TEXT" )? + (draw:archive="TEXT" )? + (draw:may-script="<boolean>" )? + ( + (xlink:href="<anyURI>" (xlink:type="simple" )? + (xlink:show="embed" )? + (xlink:actuate="onLoad" )? + ))? + (<draw:param ... >)* >  +
@@ -1592,8 +2265,8 @@

draw:area-circle Element

draw:nohref  office:name  office:target-frame-name  - svg:cx[1]  - svg:cy[2]  + svg:cx[2]  + svg:cy[1]  svg:r[2]  xlink:href  xlink:show[1]  @@ -1608,6 +2281,20 @@

draw:area-circle Element

<svg:title>    + + Child Relations + <draw:area-circle + ( (xlink:href="<anyURI>" )? + (xlink:type="simple" )? + (office:target-frame-name="_self | _blank | _parent | _top | <string>" )? + (xlink:show="new | replace" )? + ) (office:name="<string>" )? + (draw:nohref="nohref" )? + svg:cx="string]" svg:cy="string]" svg:r="string]" (<svg:title ... >)? + (<svg:desc ... >)? + (<office:event-listeners ... >)? + >  +
@@ -1626,10 +2313,10 @@

draw:area-polygon Element

draw:points  office:name  office:target-frame-name  - svg:height[1]  + svg:height[2]  svg:viewBox  - svg:width[1]  - svg:x[1]  + svg:width[2]  + svg:x[2]  svg:y[2]  xlink:href  xlink:show[1]  @@ -1644,6 +2331,22 @@

draw:area-polygon Element

<svg:title>    + + Child Relations + <draw:area-polygon + ( (xlink:href="<anyURI>" )? + (xlink:type="simple" )? + (office:target-frame-name="_self | _blank | _parent | _top | <string>" )? + (xlink:show="new | replace" )? + ) (office:name="<string>" )? + (draw:nohref="nohref" )? + svg:x="string]" svg:y="string]" svg:width="string]" svg:height="string]" svg:viewBox=" +START_list<integer><integer><integer><integer> +END_list" draw:points="string]" (<svg:title ... >)? + (<svg:desc ... >)? + (<office:event-listeners ... >)? + >  +
@@ -1661,9 +2364,9 @@

draw:area-rectangle Element

draw:nohref  office:name  office:target-frame-name  - svg:height[1]  - svg:width[1]  - svg:x[1]  + svg:height[2]  + svg:width[2]  + svg:x[2]  svg:y[2]  xlink:href  xlink:show[1]  @@ -1678,6 +2381,20 @@

draw:area-rectangle Element

<svg:title>    + + Child Relations + <draw:area-rectangle + ( (xlink:href="<anyURI>" )? + (xlink:type="simple" )? + (office:target-frame-name="_self | _blank | _parent | _top | <string>" )? + (xlink:show="new | replace" )? + ) (office:name="<string>" )? + (draw:nohref="nohref" )? + svg:x="string]" svg:y="string]" svg:width="string]" svg:height="string]" (<svg:title ... >)? + (<svg:desc ... >)? + (<office:event-listeners ... >)? + >  +
@@ -1716,7 +2433,7 @@

draw:caption Element

draw:caption-point-y  draw:class-names  draw:corner-radius  - draw:id[1]  + draw:id[2]  draw:layer  draw:name[2]  draw:style-name  @@ -1725,9 +2442,9 @@

draw:caption Element

draw:z-index  presentation:class-names  presentation:style-name  - svg:height[1]  - svg:width[1]  - svg:x[1]  + svg:height[2]  + svg:width[2]  + svg:x[2]  svg:y[2]  table:end-cell-address  table:end-x  @@ -1748,6 +2465,47 @@

draw:caption Element

<text:p>*    + + Child Relations + <draw:caption (draw:caption-point-x="string]" draw:caption-point-y="string]" )? + (draw:corner-radius="string]" )? + + ( (svg:x="string]" )? + (svg:y="string]" )? + ) + ( (svg:width="string]" )? + (svg:height="string]" )? + ) + ( + ( (draw:z-index="<nonNegativeInteger>" )? + (draw:id="<ID>" )? + (draw:layer="<string>" )? + + ( (draw:style-name="(<NCName>)?" )? + (draw:class-names=" +START_list(<NCName>)* +END_list" )? + ) | + ( (presentation:style-name="(<NCName>)?" )? + (presentation:class-names=" +START_list(<NCName>)* +END_list" )? + ) (draw:transform="<string>" )? + (draw:name="<string>" )? + + ( (table:end-cell-address="string]" )? + (table:end-x="string]" )? + (table:end-y="string]" )? + ) (table:table-background="<boolean>" )? + (text:anchor-type="page | frame | paragraph | char | as-char" )? + (text:anchor-page-number="<positiveInteger>" )? + ) (draw:text-style-name="(<NCName>)?" )? + ) (draw:caption-id="<IDREF>" )? + (<svg:title ... >)? + (<svg:desc ... >)? + (<office:event-listeners ... >)? + (<draw:glue-point ... >)* (<text:p ... > | <text:list ... >)* >  +
@@ -1784,7 +2542,7 @@

draw:circle Element

draw:caption-id  draw:class-names  draw:end-angle  - draw:id[1]  + draw:id[2]  draw:kind  draw:layer  draw:name[2]  @@ -1795,12 +2553,12 @@

draw:circle Element

draw:z-index  presentation:class-names  presentation:style-name  - svg:cx[1]  - svg:cy[2]  - svg:height[1]  + svg:cx[2]  + svg:cy[1]  + svg:height[2]  svg:r[2]  - svg:width[1]  - svg:x[1]  + svg:width[2]  + svg:x[2]  svg:y[2]  table:end-cell-address  table:end-x  @@ -1821,6 +2579,50 @@

draw:circle Element

<text:p>*    + + Child Relations + <draw:circle (svg:r="string]" )? + (svg:cx="string]" svg:cy="string]" )? + (draw:kind="full | section | cut | arc" )? + (draw:start-angle="<double>" )? + (draw:end-angle="<double>" )? + + ( (svg:x="string]" )? + (svg:y="string]" )? + ) + ( (svg:width="string]" )? + (svg:height="string]" )? + ) + ( + ( (draw:z-index="<nonNegativeInteger>" )? + (draw:id="<ID>" )? + (draw:layer="<string>" )? + + ( (draw:style-name="(<NCName>)?" )? + (draw:class-names=" +START_list(<NCName>)* +END_list" )? + ) | + ( (presentation:style-name="(<NCName>)?" )? + (presentation:class-names=" +START_list(<NCName>)* +END_list" )? + ) (draw:transform="<string>" )? + (draw:name="<string>" )? + + ( (table:end-cell-address="string]" )? + (table:end-x="string]" )? + (table:end-y="string]" )? + ) (table:table-background="<boolean>" )? + (text:anchor-type="page | frame | paragraph | char | as-char" )? + (text:anchor-page-number="<positiveInteger>" )? + ) (draw:text-style-name="(<NCName>)?" )? + ) (draw:caption-id="<IDREF>" )? + (<svg:title ... >)? + (<svg:desc ... >)? + (<office:event-listeners ... >)? + (<draw:glue-point ... >)* (<text:p ... > | <text:list ... >)* >  +
@@ -1858,7 +2660,7 @@

draw:connector Element

draw:class-names  draw:end-glue-point  draw:end-shape  - draw:id[1]  + draw:id[2]  draw:layer  draw:line-skew  draw:name[2]  @@ -1872,9 +2674,9 @@

draw:connector Element

presentation:class-names  presentation:style-name  svg:x1[2]  - svg:x2[2]  + svg:x2[1]  svg:y1[2]  - svg:y2[2]  + svg:y2[1]  table:end-cell-address  table:end-x  table:end-y  @@ -1894,6 +2696,49 @@

draw:connector Element

<text:p>*    + + Child Relations + <draw:connector (draw:type="standard | lines | line | curve" )? + (svg:x1="string]" svg:y1="string]" )? + (draw:start-shape="<IDREF>" )? + (draw:start-glue-point="<nonNegativeInteger>" )? + (svg:x2="string]" svg:y2="string]" )? + (draw:end-shape="<IDREF>" )? + (draw:end-glue-point="<nonNegativeInteger>" )? + (draw:line-skew=" +START_liststring](string](string])?)? +END_list" )? + + ( + ( (draw:z-index="<nonNegativeInteger>" )? + (draw:id="<ID>" )? + (draw:layer="<string>" )? + + ( (draw:style-name="(<NCName>)?" )? + (draw:class-names=" +START_list(<NCName>)* +END_list" )? + ) | + ( (presentation:style-name="(<NCName>)?" )? + (presentation:class-names=" +START_list(<NCName>)* +END_list" )? + ) (draw:transform="<string>" )? + (draw:name="<string>" )? + + ( (table:end-cell-address="string]" )? + (table:end-x="string]" )? + (table:end-y="string]" )? + ) (table:table-background="<boolean>" )? + (text:anchor-type="page | frame | paragraph | char | as-char" )? + (text:anchor-page-number="<positiveInteger>" )? + ) (draw:text-style-name="(<NCName>)?" )? + ) (draw:caption-id="<IDREF>" )? + (<svg:title ... >)? + (<svg:desc ... >)? + (<office:event-listeners ... >)? + (<draw:glue-point ... >)* (<text:p ... > | <text:list ... >)* >  +
@@ -1910,9 +2755,9 @@

draw:contour-path Element

draw:recreate-on-edit  svg:d  - svg:height[1]  + svg:height[2]  svg:viewBox  - svg:width[1]  + svg:width[2]    @@ -1920,6 +2765,15 @@

draw:contour-path Element

  + + Child Relations + <draw:contour-path draw:recreate-on-edit="<boolean>" + ( (svg:width="string]" )? + (svg:height="string]" )? + )svg:viewBox=" +START_list<integer><integer><integer><integer> +END_list" svg:d="<string>" >  +
@@ -1936,9 +2790,9 @@

draw:contour-polygon Element draw:points  draw:recreate-on-edit  - svg:height[1]  + svg:height[2]  svg:viewBox  - svg:width[1]  + svg:width[2]    @@ -1946,6 +2800,15 @@

draw:contour-polygon Element   + + Child Relations + <draw:contour-polygon draw:recreate-on-edit="<boolean>" + ( (svg:width="string]" )? + (svg:height="string]" )? + )svg:viewBox=" +START_list<integer><integer><integer><integer> +END_list" draw:points="string]" >  +
@@ -1982,7 +2845,7 @@

draw:control Element

draw:caption-id  draw:class-names  draw:control  - draw:id[1]  + draw:id[2]  draw:layer  draw:name[2]  draw:style-name  @@ -1991,9 +2854,9 @@

draw:control Element

draw:z-index  presentation:class-names  presentation:style-name  - svg:height[1]  - svg:width[1]  - svg:x[1]  + svg:height[2]  + svg:width[2]  + svg:x[2]  svg:y[2]  table:end-cell-address  table:end-x  @@ -2011,6 +2874,44 @@

draw:control Element

<svg:title>    + + Child Relations + <draw:control draw:control="<IDREF>" + ( (svg:x="string]" )? + (svg:y="string]" )? + ) + ( (svg:width="string]" )? + (svg:height="string]" )? + ) + ( + ( (draw:z-index="<nonNegativeInteger>" )? + (draw:id="<ID>" )? + (draw:layer="<string>" )? + + ( (draw:style-name="(<NCName>)?" )? + (draw:class-names=" +START_list(<NCName>)* +END_list" )? + ) | + ( (presentation:style-name="(<NCName>)?" )? + (presentation:class-names=" +START_list(<NCName>)* +END_list" )? + ) (draw:transform="<string>" )? + (draw:name="<string>" )? + + ( (table:end-cell-address="string]" )? + (table:end-x="string]" )? + (table:end-y="string]" )? + ) (table:table-background="<boolean>" )? + (text:anchor-type="page | frame | paragraph | char | as-char" )? + (text:anchor-page-number="<positiveInteger>" )? + ) (draw:text-style-name="(<NCName>)?" )? + ) (draw:caption-id="<IDREF>" )? + (<svg:title ... >)? + (<svg:desc ... >)? + (<draw:glue-point ... >)* >  +
@@ -2048,7 +2949,7 @@

draw:custom-shape Element

draw:class-names  draw:data  draw:engine  - draw:id[1]  + draw:id[2]  draw:layer  draw:name[2]  draw:style-name  @@ -2057,9 +2958,9 @@

draw:custom-shape Element

draw:z-index  presentation:class-names  presentation:style-name  - svg:height[1]  - svg:width[1]  - svg:x[1]  + svg:height[2]  + svg:width[2]  + svg:x[2]  svg:y[2]  table:end-cell-address  table:end-x  @@ -2081,6 +2982,48 @@

draw:custom-shape Element

<text:p>*    + + Child Relations + <draw:custom-shape (draw:engine="string]" )? + (draw:data="<string>" )? + + ( (svg:x="string]" )? + (svg:y="string]" )? + ) + ( (svg:width="string]" )? + (svg:height="string]" )? + ) + ( + ( (draw:z-index="<nonNegativeInteger>" )? + (draw:id="<ID>" )? + (draw:layer="<string>" )? + + ( (draw:style-name="(<NCName>)?" )? + (draw:class-names=" +START_list(<NCName>)* +END_list" )? + ) | + ( (presentation:style-name="(<NCName>)?" )? + (presentation:class-names=" +START_list(<NCName>)* +END_list" )? + ) (draw:transform="<string>" )? + (draw:name="<string>" )? + + ( (table:end-cell-address="string]" )? + (table:end-x="string]" )? + (table:end-y="string]" )? + ) (table:table-background="<boolean>" )? + (text:anchor-type="page | frame | paragraph | char | as-char" )? + (text:anchor-page-number="<positiveInteger>" )? + ) (draw:text-style-name="(<NCName>)?" )? + ) (draw:caption-id="<IDREF>" )? + (<svg:title ... >)? + (<svg:desc ... >)? + (<office:event-listeners ... >)? + (<draw:glue-point ... >)* (<text:p ... > | <text:list ... >)* (<draw:enhanced-geometry ... >)? + >  +
@@ -2117,7 +3060,7 @@

draw:ellipse Element

draw:caption-id  draw:class-names  draw:end-angle  - draw:id[1]  + draw:id[2]  draw:kind  draw:layer  draw:name[2]  @@ -2128,13 +3071,13 @@

draw:ellipse Element

draw:z-index  presentation:class-names  presentation:style-name  - svg:cx[1]  - svg:cy[2]  - svg:height[1]  + svg:cx[2]  + svg:cy[1]  + svg:height[2]  svg:rx  svg:ry  - svg:width[1]  - svg:x[1]  + svg:width[2]  + svg:x[2]  svg:y[2]  table:end-cell-address  table:end-x  @@ -2155,6 +3098,50 @@

draw:ellipse Element

<text:p>*    + + Child Relations + <draw:ellipse (svg:cx="string]" svg:cy="string]" )? + (draw:kind="full | section | cut | arc" )? + (draw:start-angle="<double>" )? + (draw:end-angle="<double>" )? + (svg:rx="string]" svg:ry="string]" )? + + ( (svg:x="string]" )? + (svg:y="string]" )? + ) + ( (svg:width="string]" )? + (svg:height="string]" )? + ) + ( + ( (draw:z-index="<nonNegativeInteger>" )? + (draw:id="<ID>" )? + (draw:layer="<string>" )? + + ( (draw:style-name="(<NCName>)?" )? + (draw:class-names=" +START_list(<NCName>)* +END_list" )? + ) | + ( (presentation:style-name="(<NCName>)?" )? + (presentation:class-names=" +START_list(<NCName>)* +END_list" )? + ) (draw:transform="<string>" )? + (draw:name="<string>" )? + + ( (table:end-cell-address="string]" )? + (table:end-x="string]" )? + (table:end-y="string]" )? + ) (table:table-background="<boolean>" )? + (text:anchor-type="page | frame | paragraph | char | as-char" )? + (text:anchor-page-number="<positiveInteger>" )? + ) (draw:text-style-name="(<NCName>)?" )? + ) (draw:caption-id="<IDREF>" )? + (<svg:title ... >)? + (<svg:desc ... >)? + (<office:event-listeners ... >)? + (<draw:glue-point ... >)* (<text:p ... > | <text:list ... >)* >  +
@@ -2221,6 +3208,65 @@

draw:enhanced-geometry Element<draw:handle>*    + + Child Relations + <draw:enhanced-geometry (draw:type="non-primitive | <string>" )? + (svg:viewBox=" +START_list<integer><integer><integer><integer> +END_list" )? + + ( (draw:mirror-vertical="<boolean>" )? + (draw:mirror-horizontal="<boolean>" )? + ) (draw:text-rotate-angle="<double>" )? + (draw:extrusion-allowed="<boolean>" )? + (draw:text-path-allowed="<boolean>" )? + (draw:concentric-gradient-fill-allowed="<boolean>" )? + (draw:extrusion="<boolean>" )? + (draw:extrusion-brightness="string]" )? + (draw:extrusion-depth=" +START_liststring]<double> +END_list" )? + (draw:extrusion-diffusion="string]" )? + (draw:extrusion-number-of-line-segments="<integer>" )? + (draw:extrusion-light-face="<boolean>" )? + (draw:extrusion-first-light-harsh="<boolean>" )? + (draw:extrusion-second-light-harsh="<boolean>" )? + (draw:extrusion-first-light-level="string]" )? + (draw:extrusion-second-light-level="string]" )? + (draw:extrusion-first-light-direction="string]" )? + (draw:extrusion-second-light-direction="string]" )? + (draw:extrusion-metal="<boolean>" )? + (dr3d:shade-mode="flat | phong | gouraud | draft" )? + (draw:extrusion-rotation-angle=" +START_list<double><double> +END_list" )? + (draw:extrusion-rotation-center="string]" )? + (draw:extrusion-shininess="string]" )? + (draw:extrusion-skew=" +START_list<double><double> +END_list" )? + (draw:extrusion-specularity="string]" )? + (dr3d:projection="parallel | perspective" )? + (draw:extrusion-viewpoint="<string>" )? + (draw:extrusion-origin=" +START_list<double><double> +END_list" )? + (draw:extrusion-color="<boolean>" )? + (draw:enhanced-path="<string>" )? + + ( (draw:path-stretchpoint-x="<double>" )? + (draw:path-stretchpoint-y="<double>" )? + ) (draw:text-areas="<string>" )? + (draw:glue-points="<string>" )? + (draw:glue-point-type="none | segments | rectangle" )? + (draw:glue-point-leaving-directions="TEXT" )? + (draw:text-path="<boolean>" )? + (draw:text-path-mode="normal | path | shape" )? + (draw:text-path-scale="path | shape" )? + (draw:text-path-same-letter-heights="<boolean>" )? + (draw:modifiers="<string>" )? + (<draw:equation ... >)* (<draw:handle ... >)* >  +
@@ -2244,6 +3290,12 @@

draw:equation Element

  + + Child Relations + <draw:equation (draw:name="<string>" )? + (draw:formula="<string>" )? + >  +
@@ -2259,9 +3311,9 @@

draw:fill-image Element

Attributes draw:display-name  - draw:name[1]  - svg:height[1]  - svg:width[1]  + draw:name[3]  + svg:height[2]  + svg:width[2]  xlink:actuate[2]  xlink:href  xlink:show[2]  @@ -2273,6 +3325,17 @@

draw:fill-image Element

  + + Child Relations + <draw:fill-image draw:name="<NCName>" (draw:display-name="<string>" )? + + ( (svg:width="string]" )? + (svg:height="string]" )? + )xlink:href="<anyURI>" (xlink:type="simple" )? + (xlink:show="embed" )? + (xlink:actuate="onLoad" )? + >  +
@@ -2299,6 +3362,15 @@

draw:floating-frame Element

  + + Child Relations + <draw:floating-frame (draw:frame-name="<string>" )? + + (xlink:href="<anyURI>" (xlink:type="simple" )? + (xlink:show="embed" )? + (xlink:actuate="onLoad" )? + )>  +
@@ -2337,7 +3409,7 @@

draw:frame Element

draw:caption-id  draw:class-names  draw:copy-of  - draw:id[1]  + draw:id[2]  draw:layer  draw:name[2]  draw:style-name  @@ -2351,9 +3423,9 @@

draw:frame Element

presentation:user-transformed  style:rel-height  style:rel-width  - svg:height[1]  - svg:width[1]  - svg:x[1]  + svg:height[2]  + svg:width[2]  + svg:x[2]  svg:y[2]  table:end-cell-address  table:end-x  @@ -2382,6 +3454,54 @@

draw:frame Element

<svg:title>    + + Child Relations + <draw:frame + ( + ( (draw:z-index="<nonNegativeInteger>" )? + (draw:id="<ID>" )? + (draw:layer="<string>" )? + + ( (draw:style-name="(<NCName>)?" )? + (draw:class-names=" +START_list(<NCName>)* +END_list" )? + ) | + ( (presentation:style-name="(<NCName>)?" )? + (presentation:class-names=" +START_list(<NCName>)* +END_list" )? + ) (draw:transform="<string>" )? + (draw:name="<string>" )? + + ( (table:end-cell-address="string]" )? + (table:end-x="string]" )? + (table:end-y="string]" )? + ) (table:table-background="<boolean>" )? + (text:anchor-type="page | frame | paragraph | char | as-char" )? + (text:anchor-page-number="<positiveInteger>" )? + ) (draw:text-style-name="(<NCName>)?" )? + ) + ( (svg:x="string]" )? + (svg:y="string]" )? + ) + ( + ( (svg:width="string]" )? + (svg:height="string]" )? + ) (style:rel-width="string] | scale | scale-min" )? + (style:rel-height="string] | scale | scale-min" )? + ) (draw:caption-id="<IDREF>" )? + (presentation:class="title | outline | subtitle | text | graphic | object | chart | table | orgchart | page | notes | handout | header | footer | date-time | page-number" )? + (presentation:placeholder="<boolean>" )? + (presentation:user-transformed="<boolean>" )? + (draw:copy-of="<string>" )? + (<draw:text-box ... > | <draw:image ... > | <draw:object ... > | <draw:object-ole ... > | <draw:applet ... > | <draw:floating-frame ... > | <draw:plugin ... >)* (<office:event-listeners ... >)? + (<draw:glue-point ... >)* (<draw:image-map ... >)? + (<svg:title ... >)? + (<svg:desc ... >)? + (<draw:contour-polygon ... > | <draw:contour-path ... >)? + >  +
@@ -2417,7 +3537,7 @@

draw:g Element

draw:caption-id  draw:class-names  - draw:id[1]  + draw:id[2]  draw:name[2]  draw:style-name  draw:z-index  @@ -2458,6 +3578,35 @@

draw:g Element

<svg:title>    + + Child Relations + <draw:g (svg:y="string]" )? + (draw:z-index="<nonNegativeInteger>" )? + (draw:name="<string>" )? + (draw:id="<ID>" )? + + ( (draw:style-name="(<NCName>)?" )? + (draw:class-names=" +START_list(<NCName>)* +END_list" )? + ) | + ( (presentation:style-name="(<NCName>)?" )? + (presentation:class-names=" +START_list(<NCName>)* +END_list" )? + ) + ( (table:end-cell-address="string]" )? + (table:end-x="string]" )? + (table:end-y="string]" )? + ) (table:table-background="<boolean>" )? + (text:anchor-type="page | frame | paragraph | char | as-char" )? + (text:anchor-page-number="<positiveInteger>" )? + (draw:caption-id="<IDREF>" )? + (<svg:title ... >)? + (<svg:desc ... >)? + (<office:event-listeners ... >)? + (<draw:glue-point ... >)* (<draw:rect ... > | <draw:line ... > | <draw:polyline ... > | <draw:polygon ... > | <draw:regular-polygon ... > | <draw:path ... > | <draw:circle ... > | <draw:ellipse ... > | <draw:g ... > | <draw:page-thumbnail ... > | <draw:frame ... > | <draw:measure ... > | <draw:caption ... > | <draw:connector ... > | <draw:control ... > | <dr3d:scene ... > | <draw:custom-shape ... >)* >  +
@@ -2487,8 +3636,8 @@

draw:glue-point Element

Attributes draw:align  - draw:id[2]  - svg:x[2]  + draw:id[1]  + svg:x[1]  svg:y[1]    @@ -2497,6 +3646,12 @@

draw:glue-point Element

  + + Child Relations + <draw:glue-point draw:id="<nonNegativeInteger>" + (svg:x="string] | string]" svg:y="string] | string]" ) (draw:align="top-left | top | top-right | left | center | right | bottom-left | bottom-right" )? + >  +
@@ -2518,7 +3673,7 @@

draw:gradient Element

draw:display-name  draw:end-color  draw:end-intensity  - draw:name[1]  + draw:name[3]  draw:start-color  draw:start-intensity  draw:style[1]  @@ -2529,6 +3684,23 @@

draw:gradient Element

  + + Child Relations + <draw:gradient (draw:name="<NCName>" )? + (draw:display-name="<string>" )? + draw:style="linear | axial | radial | ellipsoid | square | rectangular" + ( (draw:cx="string]" )? + (draw:cy="string]" )? + ) (draw:angle="<integer>" )? + (draw:border="string]" )? + + ( (draw:start-color="string]" )? + (draw:end-color="string]" )? + ) + ( (draw:start-intensity="string]" )? + (draw:end-intensity="string]" )? + )>  +
@@ -2561,6 +3733,20 @@

draw:handle Element

  + + Child Relations + <draw:handle (draw:handle-mirror-vertical="<boolean>" )? + (draw:handle-mirror-horizontal="<boolean>" )? + (draw:handle-switched="<boolean>" )? + draw:handle-position="<string>" (draw:handle-range-x-minimum="<string>" )? + (draw:handle-range-x-maximum="<string>" )? + (draw:handle-range-y-minimum="<string>" )? + (draw:handle-range-y-maximum="<string>" )? + (draw:handle-polar="<string>" )? + (draw:handle-radius-range-minimum="<string>" )? + (draw:handle-radius-range-maximum="<string>" )? + >  +
@@ -2578,7 +3764,7 @@

draw:hatch Element

draw:color  draw:display-name  draw:distance  - draw:name[1]  + draw:name[3]  draw:rotation  draw:style[3]    @@ -2588,6 +3774,14 @@

draw:hatch Element

  + + Child Relations + <draw:hatch draw:name="<NCName>" (draw:display-name="<string>" )? + draw:style="single | double | triple" (draw:color="string]" )? + (draw:distance="string]" )? + (draw:rotation="<integer>" )? + >  +
@@ -2617,6 +3811,15 @@

draw:image Element

<text:p>*    + + Child Relations + <draw:image (draw:filter-name="<string>" )? + + (xlink:href="<anyURI>" (xlink:type="simple" )? + (xlink:show="embed" )? + (xlink:actuate="onLoad" )? + ) | <office:binary-data ... >(<text:p ... > | <text:list ... >)* >  +
@@ -2641,6 +3844,10 @@

draw:image-map Element

<draw:area-rectangle>*    + + Child Relations + <draw:image-map (<draw:area-rectangle ... > | <draw:area-circle ... > | <draw:area-polygon ... >)* >  +
@@ -2667,6 +3874,14 @@

draw:layer Element

<svg:title>    + + Child Relations + <draw:layer draw:name="<string>" (draw:protected="<boolean>" )? + (draw:display="always | screen | printer | none" )? + (<svg:title ... >)? + (<svg:desc ... >)? + >  +
@@ -2689,6 +3904,10 @@

draw:layer-set Element

<draw:layer>*    + + Child Relations + <draw:layer-set (<draw:layer ... >)* >  +
@@ -2724,7 +3943,7 @@

draw:line Element

draw:caption-id  draw:class-names  - draw:id[1]  + draw:id[2]  draw:layer  draw:name[2]  draw:style-name  @@ -2734,9 +3953,9 @@

draw:line Element

presentation:class-names  presentation:style-name  svg:x1[2]  - svg:x2[2]  + svg:x2[1]  svg:y1[2]  - svg:y2[2]  + svg:y2[1]  table:end-cell-address  table:end-x  table:end-y  @@ -2756,6 +3975,41 @@

draw:line Element

<text:p>*    + + Child Relations + <draw:line + (svg:x1="string]" svg:y1="string]" ) + (svg:x2="string]" svg:y2="string]" ) + ( + ( (draw:z-index="<nonNegativeInteger>" )? + (draw:id="<ID>" )? + (draw:layer="<string>" )? + + ( (draw:style-name="(<NCName>)?" )? + (draw:class-names=" +START_list(<NCName>)* +END_list" )? + ) | + ( (presentation:style-name="(<NCName>)?" )? + (presentation:class-names=" +START_list(<NCName>)* +END_list" )? + ) (draw:transform="<string>" )? + (draw:name="<string>" )? + + ( (table:end-cell-address="string]" )? + (table:end-x="string]" )? + (table:end-y="string]" )? + ) (table:table-background="<boolean>" )? + (text:anchor-type="page | frame | paragraph | char | as-char" )? + (text:anchor-page-number="<positiveInteger>" )? + ) (draw:text-style-name="(<NCName>)?" )? + ) (draw:caption-id="<IDREF>" )? + (<svg:title ... >)? + (<svg:desc ... >)? + (<office:event-listeners ... >)? + (<draw:glue-point ... >)* (<text:p ... > | <text:list ... >)* >  +
@@ -2771,7 +4025,7 @@

draw:marker Element

Attributes draw:display-name  - draw:name[1]  + draw:name[3]  svg:d  svg:viewBox    @@ -2781,6 +4035,13 @@

draw:marker Element

  + + Child Relations + <draw:marker draw:name="<NCName>" (draw:display-name="<string>" )? + svg:viewBox=" +START_list<integer><integer><integer><integer> +END_list" svg:d="<string>" >  +
@@ -2816,7 +4077,7 @@

draw:measure Element

draw:caption-id  draw:class-names  - draw:id[1]  + draw:id[2]  draw:layer  draw:name[2]  draw:style-name  @@ -2826,9 +4087,9 @@

draw:measure Element

presentation:class-names  presentation:style-name  svg:x1[2]  - svg:x2[2]  + svg:x2[1]  svg:y1[2]  - svg:y2[2]  + svg:y2[1]  table:end-cell-address  table:end-x  table:end-y  @@ -2848,6 +4109,41 @@

draw:measure Element

<text:p>*    + + Child Relations + <draw:measure + (svg:x1="string]" svg:y1="string]" ) + (svg:x2="string]" svg:y2="string]" ) + ( + ( (draw:z-index="<nonNegativeInteger>" )? + (draw:id="<ID>" )? + (draw:layer="<string>" )? + + ( (draw:style-name="(<NCName>)?" )? + (draw:class-names=" +START_list(<NCName>)* +END_list" )? + ) | + ( (presentation:style-name="(<NCName>)?" )? + (presentation:class-names=" +START_list(<NCName>)* +END_list" )? + ) (draw:transform="<string>" )? + (draw:name="<string>" )? + + ( (table:end-cell-address="string]" )? + (table:end-x="string]" )? + (table:end-y="string]" )? + ) (table:table-background="<boolean>" )? + (text:anchor-type="page | frame | paragraph | char | as-char" )? + (text:anchor-page-number="<positiveInteger>" )? + ) (draw:text-style-name="(<NCName>)?" )? + ) (draw:caption-id="<IDREF>" )? + (<svg:title ... >)? + (<svg:desc ... >)? + (<office:event-listeners ... >)? + (<draw:glue-point ... >)* (<text:p ... > | <text:list ... >)* >  +
@@ -2876,6 +4172,15 @@

draw:object Element

<office:document>    + + Child Relations + <draw:object (draw:notify-on-update-of-ranges="<string>" )? + + (xlink:href="<anyURI>" (xlink:type="simple" )? + (xlink:show="embed" )? + (xlink:actuate="onLoad" )? + ) | <office:document ... > | <math:math ... >>  +
@@ -2903,6 +4208,15 @@

draw:object-ole Element

<office:binary-data>    + + Child Relations + <draw:object-ole (draw:class-id="TEXT" )? + + (xlink:href="<anyURI>" (xlink:type="simple" )? + (xlink:show="embed" )? + (xlink:actuate="onLoad" )? + ) | <office:binary-data ... >>  +
@@ -2923,7 +4237,7 @@

draw:opacity Element

draw:cy  draw:display-name  draw:end  - draw:name[1]  + draw:name[3]  draw:start  draw:style[1]    @@ -2933,6 +4247,20 @@

draw:opacity Element

  + + Child Relations + <draw:opacity (draw:name="<NCName>" )? + (draw:display-name="<string>" )? + draw:style="linear | axial | radial | ellipsoid | square | rectangular" + ( (draw:cx="string]" )? + (draw:cy="string]" )? + ) (draw:angle="<integer>" )? + (draw:border="string]" )? + + ( (draw:start="string]" )? + (draw:end="string]" )? + )>  +
@@ -2948,7 +4276,7 @@

draw:page Element

Attributes - draw:id[1]  + draw:id[2]  draw:master-page-name  draw:name[2]  draw:nav-order  @@ -2995,6 +4323,22 @@

draw:page Element

<presentation:notes>    + + Child Relations + <draw:page (presentation:use-header-name="<string>" )? + (presentation:use-footer-name="<string>" )? + (presentation:use-date-time-name="<string>" )? + (draw:name="<string>" )? + (draw:style-name="(<NCName>)?" )? + draw:master-page-name="(<NCName>)?" (presentation:presentation-page-layout-name="(<NCName>)?" )? + (draw:id="<ID>" )? + (draw:nav-order="<IDREFS>" )? + ( (<office:forms ... >)? + )? + (<draw:rect ... > | <draw:line ... > | <draw:polyline ... > | <draw:polygon ... > | <draw:regular-polygon ... > | <draw:path ... > | <draw:circle ... > | <draw:ellipse ... > | <draw:g ... > | <draw:page-thumbnail ... > | <draw:frame ... > | <draw:measure ... > | <draw:caption ... > | <draw:connector ... > | <draw:control ... > | <dr3d:scene ... > | <draw:custom-shape ... >)* (<presentation:animations ... > | <anim:animate ... > | <anim:set ... > | <anim:animateMotion ... > | <anim:animateColor ... > | <anim:animateTransform ... > | <anim:transitionFilter ... > | <anim:par ... > | <anim:seq ... > | <anim:iterate ... > | <anim:audio ... > | <anim:command ... >)? + (<presentation:notes ... >)? + >  +
@@ -3030,7 +4374,7 @@

draw:page-thumbnail Element

draw:caption-id  draw:class-names  - draw:id[1]  + draw:id[2]  draw:layer  draw:name[2]  draw:page-number  @@ -3042,9 +4386,9 @@

draw:page-thumbnail Element

presentation:placeholder  presentation:style-name  presentation:user-transformed  - svg:height[1]  - svg:width[1]  - svg:x[1]  + svg:height[2]  + svg:width[2]  + svg:x[2]  svg:y[2]  table:end-cell-address  table:end-x  @@ -3061,6 +4405,46 @@

draw:page-thumbnail Element

<svg:title>    + + Child Relations + <draw:page-thumbnail (draw:page-number="<positiveInteger>" )? + + ( (svg:x="string]" )? + (svg:y="string]" )? + ) + ( (svg:width="string]" )? + (svg:height="string]" )? + ) (presentation:class="title | outline | subtitle | text | graphic | object | chart | table | orgchart | page | notes | handout | header | footer | date-time | page-number" )? + (presentation:placeholder="<boolean>" )? + (presentation:user-transformed="<boolean>" )? + + ( (draw:z-index="<nonNegativeInteger>" )? + (draw:id="<ID>" )? + (draw:layer="<string>" )? + + ( (draw:style-name="(<NCName>)?" )? + (draw:class-names=" +START_list(<NCName>)* +END_list" )? + ) | + ( (presentation:style-name="(<NCName>)?" )? + (presentation:class-names=" +START_list(<NCName>)* +END_list" )? + ) (draw:transform="<string>" )? + (draw:name="<string>" )? + + ( (table:end-cell-address="string]" )? + (table:end-x="string]" )? + (table:end-y="string]" )? + ) (table:table-background="<boolean>" )? + (text:anchor-type="page | frame | paragraph | char | as-char" )? + (text:anchor-page-number="<positiveInteger>" )? + ) (draw:caption-id="<IDREF>" )? + (<svg:title ... >)? + (<svg:desc ... >)? + >  +
@@ -3076,7 +4460,7 @@

draw:param Element

Attributes - draw:name[3]  + draw:name[1]  draw:value    @@ -3085,6 +4469,12 @@

draw:param Element

  + + Child Relations + <draw:param (draw:name="TEXT" )? + (draw:value="TEXT" )? + >  +
@@ -3120,7 +4510,7 @@

draw:path Element

draw:caption-id  draw:class-names  - draw:id[1]  + draw:id[2]  draw:layer  draw:name[2]  draw:style-name  @@ -3130,10 +4520,10 @@

draw:path Element

presentation:class-names  presentation:style-name  svg:d  - svg:height[1]  + svg:height[2]  svg:viewBox  - svg:width[1]  - svg:x[1]  + svg:width[2]  + svg:x[2]  svg:y[2]  table:end-cell-address  table:end-x  @@ -3154,6 +4544,47 @@

draw:path Element

<text:p>*    + + Child Relations + <draw:path svg:d="<string>" + ( (svg:x="string]" )? + (svg:y="string]" )? + ) + ( (svg:width="string]" )? + (svg:height="string]" )? + )svg:viewBox=" +START_list<integer><integer><integer><integer> +END_list" + ( + ( (draw:z-index="<nonNegativeInteger>" )? + (draw:id="<ID>" )? + (draw:layer="<string>" )? + + ( (draw:style-name="(<NCName>)?" )? + (draw:class-names=" +START_list(<NCName>)* +END_list" )? + ) | + ( (presentation:style-name="(<NCName>)?" )? + (presentation:class-names=" +START_list(<NCName>)* +END_list" )? + ) (draw:transform="<string>" )? + (draw:name="<string>" )? + + ( (table:end-cell-address="string]" )? + (table:end-x="string]" )? + (table:end-y="string]" )? + ) (table:table-background="<boolean>" )? + (text:anchor-type="page | frame | paragraph | char | as-char" )? + (text:anchor-page-number="<positiveInteger>" )? + ) (draw:text-style-name="(<NCName>)?" )? + ) (draw:caption-id="<IDREF>" )? + (<svg:title ... >)? + (<svg:desc ... >)? + (<office:event-listeners ... >)? + (<draw:glue-point ... >)* (<text:p ... > | <text:list ... >)* >  +
@@ -3181,6 +4612,15 @@

draw:plugin Element

<draw:param>*    + + Child Relations + <draw:plugin (draw:mime-type="TEXT" )? + + (xlink:href="<anyURI>" (xlink:type="simple" )? + (xlink:show="embed" )? + (xlink:actuate="onLoad" )? + )(<draw:param ... >)* >  +
@@ -3216,7 +4656,7 @@

draw:polygon Element

draw:caption-id  draw:class-names  - draw:id[1]  + draw:id[2]  draw:layer  draw:name[2]  draw:points  @@ -3226,10 +4666,10 @@

draw:polygon Element

draw:z-index  presentation:class-names  presentation:style-name  - svg:height[1]  + svg:height[2]  svg:viewBox  - svg:width[1]  - svg:x[1]  + svg:width[2]  + svg:x[2]  svg:y[2]  table:end-cell-address  table:end-x  @@ -3250,6 +4690,47 @@

draw:polygon Element

<text:p>*    + + Child Relations + <draw:polygon draw:points="string]" + ( (svg:x="string]" )? + (svg:y="string]" )? + ) + ( (svg:width="string]" )? + (svg:height="string]" )? + )svg:viewBox=" +START_list<integer><integer><integer><integer> +END_list" + ( + ( (draw:z-index="<nonNegativeInteger>" )? + (draw:id="<ID>" )? + (draw:layer="<string>" )? + + ( (draw:style-name="(<NCName>)?" )? + (draw:class-names=" +START_list(<NCName>)* +END_list" )? + ) | + ( (presentation:style-name="(<NCName>)?" )? + (presentation:class-names=" +START_list(<NCName>)* +END_list" )? + ) (draw:transform="<string>" )? + (draw:name="<string>" )? + + ( (table:end-cell-address="string]" )? + (table:end-x="string]" )? + (table:end-y="string]" )? + ) (table:table-background="<boolean>" )? + (text:anchor-type="page | frame | paragraph | char | as-char" )? + (text:anchor-page-number="<positiveInteger>" )? + ) (draw:text-style-name="(<NCName>)?" )? + ) (draw:caption-id="<IDREF>" )? + (<svg:title ... >)? + (<svg:desc ... >)? + (<office:event-listeners ... >)? + (<draw:glue-point ... >)* (<text:p ... > | <text:list ... >)* >  +
@@ -3285,7 +4766,7 @@

draw:polyline Element

draw:caption-id  draw:class-names  - draw:id[1]  + draw:id[2]  draw:layer  draw:name[2]  draw:points  @@ -3295,10 +4776,10 @@

draw:polyline Element

draw:z-index  presentation:class-names  presentation:style-name  - svg:height[1]  + svg:height[2]  svg:viewBox  - svg:width[1]  - svg:x[1]  + svg:width[2]  + svg:x[2]  svg:y[2]  table:end-cell-address  table:end-x  @@ -3319,6 +4800,47 @@

draw:polyline Element

<text:p>*    + + Child Relations + <draw:polyline draw:points="string]" + ( (svg:x="string]" )? + (svg:y="string]" )? + ) + ( (svg:width="string]" )? + (svg:height="string]" )? + )svg:viewBox=" +START_list<integer><integer><integer><integer> +END_list" + ( + ( (draw:z-index="<nonNegativeInteger>" )? + (draw:id="<ID>" )? + (draw:layer="<string>" )? + + ( (draw:style-name="(<NCName>)?" )? + (draw:class-names=" +START_list(<NCName>)* +END_list" )? + ) | + ( (presentation:style-name="(<NCName>)?" )? + (presentation:class-names=" +START_list(<NCName>)* +END_list" )? + ) (draw:transform="<string>" )? + (draw:name="<string>" )? + + ( (table:end-cell-address="string]" )? + (table:end-x="string]" )? + (table:end-y="string]" )? + ) (table:table-background="<boolean>" )? + (text:anchor-type="page | frame | paragraph | char | as-char" )? + (text:anchor-page-number="<positiveInteger>" )? + ) (draw:text-style-name="(<NCName>)?" )? + ) (draw:caption-id="<IDREF>" )? + (<svg:title ... >)? + (<svg:desc ... >)? + (<office:event-listeners ... >)? + (<draw:glue-point ... >)* (<text:p ... > | <text:list ... >)* >  +
@@ -3355,7 +4877,7 @@

draw:rect Element

draw:caption-id  draw:class-names  draw:corner-radius  - draw:id[1]  + draw:id[2]  draw:layer  draw:name[2]  draw:style-name  @@ -3364,9 +4886,9 @@

draw:rect Element

draw:z-index  presentation:class-names  presentation:style-name  - svg:height[1]  - svg:width[1]  - svg:x[1]  + svg:height[2]  + svg:width[2]  + svg:x[2]  svg:y[2]  table:end-cell-address  table:end-x  @@ -3387,6 +4909,46 @@

draw:rect Element

<text:p>*    + + Child Relations + <draw:rect (draw:corner-radius="string]" )? + + ( (svg:x="string]" )? + (svg:y="string]" )? + ) + ( (svg:width="string]" )? + (svg:height="string]" )? + ) + ( + ( (draw:z-index="<nonNegativeInteger>" )? + (draw:id="<ID>" )? + (draw:layer="<string>" )? + + ( (draw:style-name="(<NCName>)?" )? + (draw:class-names=" +START_list(<NCName>)* +END_list" )? + ) | + ( (presentation:style-name="(<NCName>)?" )? + (presentation:class-names=" +START_list(<NCName>)* +END_list" )? + ) (draw:transform="<string>" )? + (draw:name="<string>" )? + + ( (table:end-cell-address="string]" )? + (table:end-x="string]" )? + (table:end-y="string]" )? + ) (table:table-background="<boolean>" )? + (text:anchor-type="page | frame | paragraph | char | as-char" )? + (text:anchor-page-number="<positiveInteger>" )? + ) (draw:text-style-name="(<NCName>)?" )? + ) (draw:caption-id="<IDREF>" )? + (<svg:title ... >)? + (<svg:desc ... >)? + (<office:event-listeners ... >)? + (<draw:glue-point ... >)* (<text:p ... > | <text:list ... >)* >  +
@@ -3425,7 +4987,7 @@

draw:regular-polygon Elementdraw:concave[1]  draw:concave[2]  draw:corners  - draw:id[1]  + draw:id[2]  draw:layer  draw:name[2]  draw:sharpness  @@ -3435,9 +4997,9 @@

draw:regular-polygon Elementdraw:z-index  presentation:class-names  presentation:style-name  - svg:height[1]  - svg:width[1]  - svg:x[1]  + svg:height[2]  + svg:width[2]  + svg:x[2]  svg:y[2]  table:end-cell-address  table:end-x  @@ -3458,6 +5020,46 @@

draw:regular-polygon Element<text:p>*    + + Child Relations + <draw:regular-polygon draw:concave="false" | + (draw:concave="true" draw:sharpness="string]" )draw:corners="<positiveInteger>" + ( (svg:x="string]" )? + (svg:y="string]" )? + ) + ( (svg:width="string]" )? + (svg:height="string]" )? + ) + ( + ( (draw:z-index="<nonNegativeInteger>" )? + (draw:id="<ID>" )? + (draw:layer="<string>" )? + + ( (draw:style-name="(<NCName>)?" )? + (draw:class-names=" +START_list(<NCName>)* +END_list" )? + ) | + ( (presentation:style-name="(<NCName>)?" )? + (presentation:class-names=" +START_list(<NCName>)* +END_list" )? + ) (draw:transform="<string>" )? + (draw:name="<string>" )? + + ( (table:end-cell-address="string]" )? + (table:end-x="string]" )? + (table:end-y="string]" )? + ) (table:table-background="<boolean>" )? + (text:anchor-type="page | frame | paragraph | char | as-char" )? + (text:anchor-page-number="<positiveInteger>" )? + ) (draw:text-style-name="(<NCName>)?" )? + ) (draw:caption-id="<IDREF>" )? + (<svg:title ... >)? + (<svg:desc ... >)? + (<office:event-listeners ... >)? + (<draw:glue-point ... >)* (<text:p ... > | <text:list ... >)* >  +
@@ -3478,7 +5080,7 @@

draw:stroke-dash Element

draw:dots1-length  draw:dots2  draw:dots2-length  - draw:name[1]  + draw:name[3]  draw:style[2]    @@ -3487,6 +5089,18 @@

draw:stroke-dash Element

  + + Child Relations + <draw:stroke-dash draw:name="<NCName>" (draw:display-name="<string>" )? + (draw:style="rect | round" )? + + ( (draw:dots1="<integer>" )? + (draw:dots1-length="string]" )? + (draw:dots2="<integer>" )? + (draw:dots2-length="string]" )? + ) (draw:distance="string]" )? + >  +
@@ -3507,7 +5121,7 @@

draw:text-box Element

fo:max-width  fo:min-height  fo:min-width  - text:id[1]  + text:id[2]    @@ -3550,6 +5164,19 @@

draw:text-box Element

<text:user-index>*    + + Child Relations + <draw:text-box (draw:chain-next-name="<string>" )? + (draw:corner-radius="string]" )? + + ( (fo:min-height="string] | string]" )? + (fo:min-width="string] | string]" )? + ) + ( (fo:max-height="string] | string]" )? + (fo:max-width="string] | string]" )? + ) (text:id="<string>" )? + (<text:h ... > | <text:p ... > | <text:list ... > | <text:numbered-paragraph ... > | <table:table ... > | <draw:a ... > | <text:section ... > | <text:soft-page-break ... > | <text:table-of-content ... > | <text:illustration-index ... > | <text:table-index ... > | <text:object-index ... > | <text:user-index ... > | <text:alphabetical-index ... > | <text:bibliography ... > | <draw:rect ... > | <draw:line ... > | <draw:polyline ... > | <draw:polygon ... > | <draw:regular-polygon ... > | <draw:path ... > | <draw:circle ... > | <draw:ellipse ... > | <draw:g ... > | <draw:page-thumbnail ... > | <draw:frame ... > | <draw:measure ... > | <draw:caption ... > | <draw:connector ... > | <draw:control ... > | <dr3d:scene ... > | <draw:custom-shape ... > | <text:change ... > | <text:change-start ... > | <text:change-end ... >)* >  +
@@ -3595,6 +5222,35 @@

form:button Element

<office:event-listeners>    + + Child Relations + <form:button + ( + ( (form:name="<string>" )? + (form:control-implementation="string]" )? + form:id="<ID>" (xforms:bind="<string>" )? + ) (form:button-type="submit | reset | push | url" )? + (form:disabled="<boolean>" )? + (form:label="<string>" )? + (form:image-data="<anyURI>" )? + (form:printable="<boolean>" )? + (form:tab-index="<nonNegativeInteger>" )? + (form:tab-stop="<boolean>" )? + (office:target-frame="_self | _blank | _parent | _top | <string>" )? + (xlink:href="<anyURI>" )? + (form:title="TEXT" )? + (form:value="<string>" )? + form:image-position="center" | EMPTY | + (form:image-position="start | end | top | bottom" (form:image-align="start | center | end" )? + )) (form:default-button="<boolean>" )? + (form:toggle="<boolean>" )? + (form:focus-on-click="<boolean>" )? + (form:xforms-submission="<string>" )? + + ( (<form:properties ... >)? + (<office:event-listeners ... >)? + )>  +
@@ -3638,6 +5294,32 @@

form:checkbox Element

<office:event-listeners>    + + Child Relations + <form:checkbox + ( + ( (form:name="<string>" )? + (form:control-implementation="string]" )? + form:id="<ID>" (xforms:bind="<string>" )? + ) (form:disabled="<boolean>" )? + (form:label="<string>" )? + (form:printable="<boolean>" )? + (form:tab-index="<nonNegativeInteger>" )? + (form:tab-stop="<boolean>" )? + (form:title="TEXT" )? + (form:value="<string>" )? + (form:data-field="<string>" )? + (form:visual-effect="flat | 3d" )? + form:image-position="center" | EMPTY | + (form:image-position="start | end | top | bottom" (form:image-align="start | center | end" )? + )) (form:current-state="unchecked | checked | unknown" )? + (form:is-tristate="<boolean>" )? + (form:state="unchecked | checked | unknown" )? + + ( (<form:properties ... >)? + (<office:event-listeners ... >)? + )>  +
@@ -3671,6 +5353,15 @@

form:column Element

<form:textarea>*    + + Child Relations + <form:column + ( (form:name="<string>" )? + (form:control-implementation="string]" )? + (form:label="<string>" )? + (form:text-style-name="(<NCName>)?" )? + )(<form:text ... > | <form:textarea ... > | <form:formatted-text ... > | <form:number ... > | <form:date ... > | <form:combobox ... > | <form:listbox ... > | <form:checkbox ... >)+ >  +
@@ -3689,7 +5380,7 @@

form:combobox Element

form:auto-complete  form:control-implementation  form:convert-empty-to-null  - form:current-value[1]  + form:current-value[2]  form:data-field  form:disabled  form:dropdown  @@ -3716,6 +5407,34 @@

form:combobox Element

<office:event-listeners>    + + Child Relations + <form:combobox + ( + ( (form:name="<string>" )? + (form:control-implementation="string]" )? + form:id="<ID>" (xforms:bind="<string>" )? + ) (form:current-value="<string>" )? + (form:disabled="<boolean>" )? + (form:dropdown="<boolean>" )? + (form:max-length="<nonNegativeInteger>" )? + (form:printable="<boolean>" )? + (form:readonly="<boolean>" )? + (form:size="<nonNegativeInteger>" )? + (form:tab-index="<nonNegativeInteger>" )? + (form:tab-stop="<boolean>" )? + (form:title="TEXT" )? + (form:value="<string>" )? + (form:convert-empty-to-null="<boolean>" )? + (form:data-field="<string>" )? + (form:list-source="<string>" )? + (form:list-source-type="table | query | sql | sql-pass-through | value-list | table-fields" )? + ) (form:auto-complete="<boolean>" )? + + ( (<form:properties ... >)? + (<office:event-listeners ... >)? + )(<form:item ... >)* >  +
@@ -3743,6 +5462,10 @@

form:connection-resource Elemen   + + Child Relations + <form:connection-resource xlink:href="<anyURI>" >  +
@@ -3760,13 +5483,13 @@

form:date Element

form:control-implementation  form:convert-empty-to-null  - form:current-value[2]  + form:current-value[3]  form:data-field  form:disabled  form:id  form:max-length  - form:max-value[2]  - form:min-value[1]  + form:max-value[4]  + form:min-value[2]  form:name  form:printable  form:readonly  @@ -3784,6 +5507,31 @@

form:date Element

<office:event-listeners>    + + Child Relations + <form:date (form:value="<date>" )? + (form:current-value="<date>" )? + (form:min-value="<date>" )? + (form:max-value="<date>" )? + + ( + ( (form:name="<string>" )? + (form:control-implementation="string]" )? + form:id="<ID>" (xforms:bind="<string>" )? + ) (form:disabled="<boolean>" )? + (form:max-length="<nonNegativeInteger>" )? + (form:printable="<boolean>" )? + (form:readonly="<boolean>" )? + (form:tab-index="<nonNegativeInteger>" )? + (form:tab-stop="<boolean>" )? + (form:title="TEXT" )? + (form:convert-empty-to-null="<boolean>" )? + (form:data-field="<string>" )? + ) + ( (<form:properties ... >)? + (<office:event-listeners ... >)? + )>  +
@@ -3799,7 +5547,7 @@

form:file Element

Attributes form:control-implementation  - form:current-value[1]  + form:current-value[2]  form:disabled  form:id  form:max-length  @@ -3820,6 +5568,27 @@

form:file Element

<office:event-listeners>    + + Child Relations + <form:file + ( + ( (form:name="<string>" )? + (form:control-implementation="string]" )? + form:id="<ID>" (xforms:bind="<string>" )? + ) (form:current-value="<string>" )? + (form:disabled="<boolean>" )? + (form:max-length="<nonNegativeInteger>" )? + (form:printable="<boolean>" )? + (form:readonly="<boolean>" )? + (form:tab-index="<nonNegativeInteger>" )? + (form:tab-stop="<boolean>" )? + (form:title="TEXT" )? + (form:value="<string>" )? + ) + ( (<form:properties ... >)? + (<office:event-listeners ... >)? + )>  +
@@ -3853,6 +5622,24 @@

form:fixed-text Element

<office:event-listeners>    + + Child Relations + <form:fixed-text + ( + ( (form:name="<string>" )? + (form:control-implementation="string]" )? + form:id="<ID>" (xforms:bind="<string>" )? + ) (form:for="<string>" )? + (form:disabled="<boolean>" )? + (form:label="<string>" )? + (form:printable="<boolean>" )? + (form:title="TEXT" )? + ) (form:multi-line="<boolean>" )? + + ( (<form:properties ... >)? + (<office:event-listeners ... >)? + )>  +
@@ -3923,6 +5710,36 @@

form:form Element

<office:event-listeners>    + + Child Relations + <form:form (form:name="<string>" )? + (form:control-implementation="string]" )? + (xlink:href="<anyURI>" (xlink:type="simple" )? + (xlink:actuate="onRequest" )? + )? + (office:target-frame="_self | _blank | _parent | _top | <string>" )? + (form:method="get | post | <string>" )? + (form:enctype="<string>" )? + (form:allow-deletes="<boolean>" )? + (form:allow-inserts="<boolean>" )? + (form:allow-updates="<boolean>" )? + (form:apply-filter="<boolean>" )? + (form:command-type="table | query | command" )? + (form:command="TEXT" )? + (form:datasource="<anyURI> | <string>" )? + (form:master-fields="<string>" )? + (form:detail-fields="<string>" )? + (form:escape-processing="<boolean>" )? + (form:filter="<string>" )? + (form:ignore-result="<boolean>" )? + (form:navigation-mode="none | current | parent" )? + (form:order="<string>" )? + (form:tab-cycle="records | current | page" )? + (<form:properties ... >)? + (<office:event-listeners ... >)? + (<form:text ... > | <form:textarea ... > | <form:formatted-text ... > | <form:number ... > | <form:date ... > | <form:combobox ... > | <form:listbox ... > | <form:checkbox ... > | <form:password ... > | <form:file ... > | <form:time ... > | <form:fixed-text ... > | <form:button ... > | <form:image ... > | <form:radio ... > | <form:frame ... > | <form:image-frame ... > | <form:hidden ... > | <form:grid ... > | <form:value-range ... > | <form:generic-control ... > | <form:form ... >)* (<form:connection-resource ... >)? + >  +
@@ -3940,13 +5757,13 @@

form:formatted-text Element

form:control-implementation  form:convert-empty-to-null  - form:current-value[1]  + form:current-value[2]  form:data-field  form:disabled  form:id  form:max-length  - form:max-value[1]  - form:min-value[4]  + form:max-value[3]  + form:min-value[1]  form:name  form:printable  form:readonly  @@ -3965,6 +5782,32 @@

form:formatted-text Element

<office:event-listeners>    + + Child Relations + <form:formatted-text + ( + ( (form:name="<string>" )? + (form:control-implementation="string]" )? + form:id="<ID>" (xforms:bind="<string>" )? + ) (form:current-value="<string>" )? + (form:disabled="<boolean>" )? + (form:max-length="<nonNegativeInteger>" )? + (form:printable="<boolean>" )? + (form:readonly="<boolean>" )? + (form:tab-index="<nonNegativeInteger>" )? + (form:tab-stop="<boolean>" )? + (form:title="TEXT" )? + (form:value="<string>" )? + (form:convert-empty-to-null="<boolean>" )? + (form:data-field="<string>" )? + ) (form:max-value="<string>" )? + (form:min-value="<string>" )? + (form:validation="<boolean>" )? + + ( (<form:properties ... >)? + (<office:event-listeners ... >)? + )>  +
@@ -3997,6 +5840,23 @@

form:frame Element

<office:event-listeners>    + + Child Relations + <form:frame + ( + ( (form:name="<string>" )? + (form:control-implementation="string]" )? + form:id="<ID>" (xforms:bind="<string>" )? + ) (form:disabled="<boolean>" )? + (form:for="<string>" )? + (form:label="<string>" )? + (form:printable="<boolean>" )? + (form:title="TEXT" )? + ) + ( (<form:properties ... >)? + (<office:event-listeners ... >)? + )>  +
@@ -4024,6 +5884,17 @@

form:generic-control Element<office:event-listeners>    + + Child Relations + <form:generic-control + ( (form:name="<string>" )? + (form:control-implementation="string]" )? + form:id="<ID>" (xforms:bind="<string>" )? + ) + ( (<form:properties ... >)? + (<office:event-listeners ... >)? + )>  +
@@ -4057,6 +5928,23 @@

form:grid Element

<office:event-listeners>    + + Child Relations + <form:grid + ( + ( (form:name="<string>" )? + (form:control-implementation="string]" )? + form:id="<ID>" (xforms:bind="<string>" )? + ) (form:disabled="<boolean>" )? + (form:printable="<boolean>" )? + (form:tab-index="<nonNegativeInteger>" )? + (form:tab-stop="<boolean>" )? + (form:title="TEXT" )? + ) + ( (<form:properties ... >)? + (<office:event-listeners ... >)? + )(<form:column ... >)* >  +
@@ -4085,6 +5973,19 @@

form:hidden Element

<office:event-listeners>    + + Child Relations + <form:hidden + ( + ( (form:name="<string>" )? + (form:control-implementation="string]" )? + form:id="<ID>" (xforms:bind="<string>" )? + ) (form:value="<string>" )? + ) + ( (<form:properties ... >)? + (<office:event-listeners ... >)? + )>  +
@@ -4122,6 +6023,28 @@

form:image Element

<office:event-listeners>    + + Child Relations + <form:image + ( + ( (form:name="<string>" )? + (form:control-implementation="string]" )? + form:id="<ID>" (xforms:bind="<string>" )? + ) (form:button-type="submit | reset | push | url" )? + (form:disabled="<boolean>" )? + (form:image-data="<anyURI>" )? + (form:printable="<boolean>" )? + (form:tab-index="<nonNegativeInteger>" )? + (form:tab-stop="<boolean>" )? + (office:target-frame="_self | _blank | _parent | _top | <string>" )? + (xlink:href="<anyURI>" )? + (form:title="TEXT" )? + (form:value="<string>" )? + ) + ( (<form:properties ... >)? + (<office:event-listeners ... >)? + )>  +
@@ -4155,6 +6078,24 @@

form:image-frame Element

<office:event-listeners>    + + Child Relations + <form:image-frame + ( + ( (form:name="<string>" )? + (form:control-implementation="string]" )? + form:id="<ID>" (xforms:bind="<string>" )? + ) (form:disabled="<boolean>" )? + (form:image-data="<anyURI>" )? + (form:printable="<boolean>" )? + (form:readonly="<boolean>" )? + (form:title="TEXT" )? + (form:data-field="<string>" )? + ) + ( (<form:properties ... >)? + (<office:event-listeners ... >)? + )>  +
@@ -4178,6 +6119,11 @@

form:item Element

  + + Child Relations + <form:item (form:label="<string>" )? + TEXT>  +
@@ -4200,7 +6146,7 @@

form:list-property Element

office:value-type[5]  office:value-type[6]  office:value-type[7]  - office:value-type[9]  + office:value-type[8]    @@ -4215,6 +6161,17 @@

form:list-property Element

<form:list-value[7]>*    + + Child Relations + <form:list-property form:property-name="<string>" + (office:value-type="float" (<form:list-value ... >)* ) | + (office:value-type="percentage" (<form:list-value ... >)* ) | + (office:value-type="currency" (<form:list-value ... >)* ) | + (office:value-type="date" (<form:list-value ... >)* ) | + (office:value-type="time" (<form:list-value ... >)* ) | + (office:value-type="boolean" (<form:list-value ... >)* ) | + (office:value-type="string" (<form:list-value ... >)* ) | office:value-type="void" >  +
@@ -4230,7 +6187,8 @@

form:list-value[1] Element

Attributes - office:time-value  + office:currency  + office:value    @@ -4238,6 +6196,11 @@

form:list-value[1] Element

  + + Child Relations + <form:list-value office:value="<double>" (office:currency="<string>" )? + >  +
@@ -4253,7 +6216,7 @@

form:list-value[2] Element

Attributes - office:string-value  + office:date-value    @@ -4261,6 +6224,10 @@

form:list-value[2] Element

  + + Child Relations + <form:list-value office:date-value="<date> | <dateTime>" >  +
@@ -4276,7 +6243,7 @@

form:list-value[3] Element

Attributes - office:value  + office:string-value    @@ -4284,6 +6251,10 @@

form:list-value[3] Element

  + + Child Relations + <form:list-value office:string-value="<string>" >  +
@@ -4299,7 +6270,7 @@

form:list-value[4] Element

Attributes - office:boolean-value  + office:time-value    @@ -4307,6 +6278,10 @@

form:list-value[4] Element

  + + Child Relations + <form:list-value office:time-value="<duration>" >  +
@@ -4322,7 +6297,6 @@

form:list-value[5] Element

Attributes - office:currency  office:value    @@ -4331,6 +6305,10 @@

form:list-value[5] Element

  + + Child Relations + <form:list-value office:value="<double>" >  +
@@ -4346,7 +6324,7 @@

form:list-value[6] Element

Attributes - office:value  + office:boolean-value    @@ -4354,6 +6332,10 @@

form:list-value[6] Element

  + + Child Relations + <form:list-value office:boolean-value="<boolean>" >  +
@@ -4369,7 +6351,7 @@

form:list-value[7] Element

Attributes - office:date-value  + office:value    @@ -4377,6 +6359,10 @@

form:list-value[7] Element

  + + Child Relations + <form:list-value office:value="<double>" >  +
@@ -4419,6 +6405,31 @@

form:listbox Element

<office:event-listeners>    + + Child Relations + <form:listbox + ( + ( (form:name="<string>" )? + (form:control-implementation="string]" )? + form:id="<ID>" (xforms:bind="<string>" )? + ) (form:disabled="<boolean>" )? + (form:dropdown="<boolean>" )? + (form:printable="<boolean>" )? + (form:size="<nonNegativeInteger>" )? + (form:tab-index="<nonNegativeInteger>" )? + (form:tab-stop="<boolean>" )? + (form:title="TEXT" )? + (form:bound-column="<string>" )? + (form:data-field="<string>" )? + (form:list-source="<string>" )? + (form:list-source-type="table | query | sql | sql-pass-through | value-list | table-fields" )? + ) (form:multiple="<boolean>" )? + (form:xforms-list-source="<string>" )? + + ( (<form:properties ... >)? + (<office:event-listeners ... >)? + )(<form:option ... >)* >  +
@@ -4436,12 +6447,12 @@

form:number Element

form:control-implementation  form:convert-empty-to-null  - form:current-value[3]  + form:current-value[1]  form:data-field  form:disabled  form:id  form:max-length  - form:max-value[4]  + form:max-value[2]  form:min-value[3]  form:name  form:printable  @@ -4460,6 +6471,31 @@

form:number Element

<office:event-listeners>    + + Child Relations + <form:number (form:value="<double>" )? + (form:current-value="<double>" )? + (form:min-value="<double>" )? + (form:max-value="<double>" )? + + ( + ( (form:name="<string>" )? + (form:control-implementation="string]" )? + form:id="<ID>" (xforms:bind="<string>" )? + ) (form:disabled="<boolean>" )? + (form:max-length="<nonNegativeInteger>" )? + (form:printable="<boolean>" )? + (form:readonly="<boolean>" )? + (form:tab-index="<nonNegativeInteger>" )? + (form:tab-stop="<boolean>" )? + (form:title="TEXT" )? + (form:convert-empty-to-null="<boolean>" )? + (form:data-field="<string>" )? + ) + ( (<form:properties ... >)? + (<office:event-listeners ... >)? + )>  +
@@ -4486,6 +6522,15 @@

form:option Element

  + + Child Relations + <form:option + ( (form:current-selected="<boolean>" )? + (form:selected="<boolean>" )? + (form:label="<string>" )? + (form:value="<string>" )? + )TEXT>  +
@@ -4522,6 +6567,27 @@

form:password Element

<office:event-listeners>    + + Child Relations + <form:password + ( + ( (form:name="<string>" )? + (form:control-implementation="string]" )? + form:id="<ID>" (xforms:bind="<string>" )? + ) (form:disabled="<boolean>" )? + (form:max-length="<nonNegativeInteger>" )? + (form:printable="<boolean>" )? + (form:tab-index="<nonNegativeInteger>" )? + (form:tab-stop="<boolean>" )? + (form:title="TEXT" )? + (form:value="<string>" )? + (form:convert-empty-to-null="<boolean>" )? + ) (form:echo-char="string]" )? + + ( (<form:properties ... >)? + (<office:event-listeners ... >)? + )>  +
@@ -4566,6 +6632,10 @@

form:properties Element

<form:property>*    + + Child Relations + <form:properties (<form:property ... > | <form:list-property ... >)+ >  +
@@ -4594,7 +6664,7 @@

form:property Element

office:value-type[5]  office:value-type[6]  office:value-type[7]  - office:value-type[9]  + office:value-type[8]    @@ -4602,6 +6672,19 @@

form:property Element

  + + Child Relations + <form:property form:property-name="<string>" + (office:value-type="float" office:value="<double>" ) | + (office:value-type="percentage" office:value="<double>" ) | + (office:value-type="currency" office:value="<double>" (office:currency="<string>" )? + ) | + (office:value-type="date" office:date-value="<date> | <dateTime>" ) | + (office:value-type="time" office:time-value="<duration>" ) | + (office:value-type="boolean" office:boolean-value="<boolean>" ) | + (office:value-type="string" (office:string-value="<string>" )? + ) | office:value-type="void" >  +
@@ -4643,6 +6726,31 @@

form:radio Element

<office:event-listeners>    + + Child Relations + <form:radio + ( + ( (form:name="<string>" )? + (form:control-implementation="string]" )? + form:id="<ID>" (xforms:bind="<string>" )? + ) (form:current-selected="<boolean>" )? + (form:disabled="<boolean>" )? + (form:label="<string>" )? + (form:printable="<boolean>" )? + (form:selected="<boolean>" )? + (form:tab-index="<nonNegativeInteger>" )? + (form:tab-stop="<boolean>" )? + (form:title="TEXT" )? + (form:value="<string>" )? + (form:data-field="<string>" )? + (form:visual-effect="flat | 3d" )? + form:image-position="center" | EMPTY | + (form:image-position="start | end | top | bottom" (form:image-align="start | center | end" )? + )) + ( (<form:properties ... >)? + (<office:event-listeners ... >)? + )>  +
@@ -4660,7 +6768,7 @@

form:text Element

form:control-implementation  form:convert-empty-to-null  - form:current-value[1]  + form:current-value[2]  form:data-field  form:disabled  form:id  @@ -4682,6 +6790,29 @@

form:text Element

<office:event-listeners>    + + Child Relations + <form:text + ( + ( (form:name="<string>" )? + (form:control-implementation="string]" )? + form:id="<ID>" (xforms:bind="<string>" )? + ) (form:current-value="<string>" )? + (form:disabled="<boolean>" )? + (form:max-length="<nonNegativeInteger>" )? + (form:printable="<boolean>" )? + (form:readonly="<boolean>" )? + (form:tab-index="<nonNegativeInteger>" )? + (form:tab-stop="<boolean>" )? + (form:title="TEXT" )? + (form:value="<string>" )? + (form:convert-empty-to-null="<boolean>" )? + (form:data-field="<string>" )? + ) + ( (<form:properties ... >)? + (<office:event-listeners ... >)? + )>  +
@@ -4699,7 +6830,7 @@

form:textarea Element

form:control-implementation  form:convert-empty-to-null  - form:current-value[1]  + form:current-value[2]  form:data-field  form:disabled  form:id  @@ -4722,6 +6853,29 @@

form:textarea Element

<text:p>*    + + Child Relations + <form:textarea + ( + ( (form:name="<string>" )? + (form:control-implementation="string]" )? + form:id="<ID>" (xforms:bind="<string>" )? + ) (form:current-value="<string>" )? + (form:disabled="<boolean>" )? + (form:max-length="<nonNegativeInteger>" )? + (form:printable="<boolean>" )? + (form:readonly="<boolean>" )? + (form:tab-index="<nonNegativeInteger>" )? + (form:tab-stop="<boolean>" )? + (form:title="TEXT" )? + (form:value="<string>" )? + (form:convert-empty-to-null="<boolean>" )? + (form:data-field="<string>" )? + ) + ( (<form:properties ... >)? + (<office:event-listeners ... >)? + )(<text:p ... >)* >  +
@@ -4743,8 +6897,8 @@

form:time Element

form:disabled  form:id  form:max-length  - form:max-value[3]  - form:min-value[2]  + form:max-value[1]  + form:min-value[4]  form:name  form:printable  form:readonly  @@ -4762,6 +6916,31 @@

form:time Element

<office:event-listeners>    + + Child Relations + <form:time (form:value="<time>" )? + (form:current-value="<time>" )? + (form:min-value="<time>" )? + (form:max-value="<time>" )? + + ( + ( (form:name="<string>" )? + (form:control-implementation="string]" )? + form:id="<ID>" (xforms:bind="<string>" )? + ) (form:disabled="<boolean>" )? + (form:max-length="<nonNegativeInteger>" )? + (form:printable="<boolean>" )? + (form:readonly="<boolean>" )? + (form:tab-index="<nonNegativeInteger>" )? + (form:tab-stop="<boolean>" )? + (form:title="TEXT" )? + (form:convert-empty-to-null="<boolean>" )? + (form:data-field="<string>" )? + ) + ( (<form:properties ... >)? + (<office:event-listeners ... >)? + )>  +
@@ -4780,8 +6959,8 @@

form:value-range Element

form:delay-for-repeat  form:disabled  form:id  - form:max-value[1]  - form:min-value[4]  + form:max-value[3]  + form:min-value[1]  form:name  form:orientation  form:page-step-size  @@ -4801,6 +6980,30 @@

form:value-range Element

<office:event-listeners>    + + Child Relations + <form:value-range + ( + ( (form:name="<string>" )? + (form:control-implementation="string]" )? + form:id="<ID>" (xforms:bind="<string>" )? + ) (form:disabled="<boolean>" )? + (form:printable="<boolean>" )? + (form:tab-index="<nonNegativeInteger>" )? + (form:tab-stop="<boolean>" )? + (form:title="TEXT" )? + (form:value="<string>" )? + ) (form:max-value="<string>" )? + (form:min-value="<string>" )? + (form:step-size="<positiveInteger>" )? + (form:page-step-size="<positiveInteger>" )? + (form:delay-for-repeat="<duration>" )? + (form:orientation="horizontal | vertical" )? + + ( (<form:properties ... >)? + (<office:event-listeners ... >)? + )>  +
@@ -4825,6 +7028,10 @@

math:math Element

[any org.w3c.dom.Element]    + + Child Relations + <math:math (*:*="TEXT" | TEXT | <*:* ... >)+ >  +
@@ -4846,6 +7053,10 @@

meta:date-string Element

  + + Child Relations + <meta:date-string <string>>  +
@@ -4868,6 +7079,10 @@

number:am-pm Element

  + + Child Relations + <number:am-pm EMPTY>  +
@@ -4889,6 +7104,10 @@

number:boolean Element

  + + Child Relations + <number:boolean EMPTY>  +
@@ -4924,6 +7143,22 @@

number:boolean-style Element<style:text-properties>    + + Child Relations + <number:boolean-style style:name="<NCName>" (number:language="token]" )? + (number:country="token]" )? + (number:title="TEXT" )? + (style:volatile="<boolean>" )? + (number:transliteration-format="<string>" )? + (number:transliteration-language="token]" )? + (number:transliteration-country="token]" )? + (number:transliteration-style="short | medium | long" )? + (<style:text-properties ... >)? + (<number:text ... >)? + (<number:boolean ... > (<number:text ... >)? + )? + (<style:map ... >)* >  +
@@ -4961,6 +7196,34 @@

number:currency-style Element< <style:text-properties>    + + Child Relations + <number:currency-style style:name="<NCName>" (number:language="token]" )? + (number:country="token]" )? + (number:title="TEXT" )? + (style:volatile="<boolean>" )? + (number:transliteration-format="<string>" )? + (number:transliteration-language="token]" )? + (number:transliteration-country="token]" )? + (number:transliteration-style="short | medium | long" )? + (number:automatic-order="<boolean>" )? + (<style:text-properties ... >)? + (<number:text ... >)? + ( + ( + (<number:number ... > (<number:text ... >)? + ) ( + (<number:currency-symbol ... > (<number:text ... >)? + ))? + ) | + ( + (<number:currency-symbol ... > (<number:text ... >)? + ) ( + (<number:number ... > (<number:text ... >)? + ))? + ))? + (<style:map ... >)* >  +
@@ -4985,6 +7248,13 @@

number:currency-symbol Element   + + Child Relations + <number:currency-symbol + ( (number:language="token]" )? + (number:country="token]" )? + )TEXT>  +
@@ -5032,6 +7302,23 @@

number:date-style Element

<style:text-properties>    + + Child Relations + <number:date-style style:name="<NCName>" (number:language="token]" )? + (number:country="token]" )? + (number:title="TEXT" )? + (style:volatile="<boolean>" )? + (number:transliteration-format="<string>" )? + (number:transliteration-language="token]" )? + (number:transliteration-country="token]" )? + (number:transliteration-style="short | medium | long" )? + (number:automatic-order="<boolean>" )? + (number:format-source="fixed | language" )? + (<style:text-properties ... >)? + (<number:text ... >)? + (<number:day ... > | <number:month ... > | <number:year ... > | <number:era ... > | <number:day-of-week ... > | <number:week-of-year ... > | <number:quarter ... > | <number:hours ... > | <number:am-pm ... > | <number:minutes ... > | <number:seconds ... > (<number:text ... >)? + )+ (<style:map ... >)* >  +
@@ -5055,6 +7342,12 @@

number:day Element

  + + Child Relations + <number:day (number:style="short | long" )? + (number:calendar="gregorian | gengou | ROC | hanja_yoil | hanja | hijri | jewish | buddhist | <string>" )? + >  +
@@ -5078,6 +7371,12 @@

number:day-of-week Element

  + + Child Relations + <number:day-of-week (number:style="short | long" )? + (number:calendar="gregorian | gengou | ROC | hanja_yoil | hanja | hijri | jewish | buddhist | <string>" )? + >  +
@@ -5101,6 +7400,10 @@

number:embedded-text Element   + + Child Relations + <number:embedded-text number:position="<integer>" TEXT>  +
@@ -5124,6 +7427,12 @@

number:era Element

  + + Child Relations + <number:era (number:style="short | long" )? + (number:calendar="gregorian | gengou | ROC | hanja_yoil | hanja | hijri | jewish | buddhist | <string>" )? + >  +
@@ -5150,6 +7459,15 @@

number:fraction Element

  + + Child Relations + <number:fraction (number:min-numerator-digits="<integer>" )? + (number:min-denominator-digits="<integer>" )? + (number:denominator-value="<integer>" )? + (number:min-integer-digits="<integer>" )? + (number:grouping="<boolean>" )? + >  +
@@ -5173,6 +7491,11 @@

number:hours Element

  + + Child Relations + <number:hours (number:style="short | long" )? + >  +
@@ -5196,6 +7519,11 @@

number:minutes Element

  + + Child Relations + <number:minutes (number:style="short | long" )? + >  +
@@ -5221,6 +7549,14 @@

number:month Element

  + + Child Relations + <number:month (number:textual="<boolean>" )? + (number:possessive-form="<boolean>" )? + (number:style="short | long" )? + (number:calendar="gregorian | gengou | ROC | hanja_yoil | hanja | hijri | jewish | buddhist | <string>" )? + >  +
@@ -5250,6 +7586,15 @@

number:number Element

<number:embedded-text>*    + + Child Relations + <number:number (number:decimal-replacement="TEXT" )? + (number:display-factor="<double>" )? + (number:decimal-places="<integer>" )? + (number:min-integer-digits="<integer>" )? + (number:grouping="<boolean>" )? + (<number:embedded-text ... >)* >  +
@@ -5287,6 +7632,22 @@

number:number-style Element

<style:text-properties>    + + Child Relations + <number:number-style style:name="<NCName>" (number:language="token]" )? + (number:country="token]" )? + (number:title="TEXT" )? + (style:volatile="<boolean>" )? + (number:transliteration-format="<string>" )? + (number:transliteration-language="token]" )? + (number:transliteration-country="token]" )? + (number:transliteration-style="short | medium | long" )? + (<style:text-properties ... >)? + (<number:text ... >)? + (<number:number ... > | <number:scientific-number ... > | <number:fraction ... > (<number:text ... >)? + )? + (<style:map ... >)* >  +
@@ -5322,6 +7683,23 @@

number:percentage-style Element< <style:text-properties>    + + Child Relations + <number:percentage-style style:name="<NCName>" (number:language="token]" )? + (number:country="token]" )? + (number:title="TEXT" )? + (style:volatile="<boolean>" )? + (number:transliteration-format="<string>" )? + (number:transliteration-language="token]" )? + (number:transliteration-country="token]" )? + (number:transliteration-style="short | medium | long" )? + (<style:text-properties ... >)? + (<number:text ... >)? + ( + (<number:number ... > (<number:text ... >)? + ))? + (<style:map ... >)* >  +
@@ -5345,6 +7723,12 @@

number:quarter Element

  + + Child Relations + <number:quarter (number:style="short | long" )? + (number:calendar="gregorian | gengou | ROC | hanja_yoil | hanja | hijri | jewish | buddhist | <string>" )? + >  +
@@ -5370,6 +7754,14 @@

number:scientific-number Elemen   + + Child Relations + <number:scientific-number (number:min-exponent-digits="<integer>" )? + (number:decimal-places="<integer>" )? + (number:min-integer-digits="<integer>" )? + (number:grouping="<boolean>" )? + >  +
@@ -5394,6 +7786,12 @@

number:seconds Element

  + + Child Relations + <number:seconds (number:style="short | long" )? + (number:decimal-places="<integer>" )? + >  +
@@ -5422,6 +7820,10 @@

number:text Element

  + + Child Relations + <number:text TEXT>  +
@@ -5443,6 +7845,10 @@

number:text-content Element

  + + Child Relations + <number:text-content EMPTY>  +
@@ -5478,6 +7884,21 @@

number:text-style Element

<style:text-properties>    + + Child Relations + <number:text-style style:name="<NCName>" (number:language="token]" )? + (number:country="token]" )? + (number:title="TEXT" )? + (style:volatile="<boolean>" )? + (number:transliteration-format="<string>" )? + (number:transliteration-language="token]" )? + (number:transliteration-country="token]" )? + (number:transliteration-style="short | medium | long" )? + (<style:text-properties ... >)? + (<number:text ... >)? + (<number:text-content ... > (<number:text ... >)? + )* (<style:map ... >)* >  +
@@ -5518,6 +7939,23 @@

number:time-style Element

<style:text-properties>    + + Child Relations + <number:time-style (number:truncate-on-overflow="<boolean>" )? + style:name="<NCName>" (number:language="token]" )? + (number:country="token]" )? + (number:title="TEXT" )? + (style:volatile="<boolean>" )? + (number:transliteration-format="<string>" )? + (number:transliteration-language="token]" )? + (number:transliteration-country="token]" )? + (number:transliteration-style="short | medium | long" )? + (number:format-source="fixed | language" )? + (<style:text-properties ... >)? + (<number:text ... >)? + (<number:hours ... > | <number:am-pm ... > | <number:minutes ... > | <number:seconds ... > (<number:text ... >)? + )+ (<style:map ... >)* >  +
@@ -5540,6 +7978,11 @@

number:week-of-year Element

  + + Child Relations + <number:week-of-year (number:calendar="gregorian | gengou | ROC | hanja_yoil | hanja | hijri | jewish | buddhist | <string>" )? + >  +
@@ -5563,6 +8006,12 @@

number:year Element

  + + Child Relations + <number:year (number:style="short | long" )? + (number:calendar="gregorian | gengou | ROC | hanja_yoil | hanja | hijri | jewish | buddhist | <string>" )? + >  +
@@ -5587,7 +8036,7 @@

office:annotation Element

draw:caption-point-y  draw:class-names  draw:corner-radius  - draw:id[1]  + draw:id[2]  draw:layer  draw:name[2]  draw:style-name  @@ -5597,9 +8046,9 @@

office:annotation Element

office:display  presentation:class-names  presentation:style-name  - svg:height[1]  - svg:width[1]  - svg:x[1]  + svg:height[2]  + svg:width[2]  + svg:x[2]  svg:y[2]  table:end-cell-address  table:end-x  @@ -5619,6 +8068,47 @@

office:annotation Element

<text:p>*    + + Child Relations + <office:annotation (office:display="<boolean>" )? + (draw:caption-point-x="string]" draw:caption-point-y="string]" )? + (draw:corner-radius="string]" )? + + ( (svg:x="string]" )? + (svg:y="string]" )? + ) + ( (svg:width="string]" )? + (svg:height="string]" )? + ) + ( + ( (draw:z-index="<nonNegativeInteger>" )? + (draw:id="<ID>" )? + (draw:layer="<string>" )? + + ( (draw:style-name="(<NCName>)?" )? + (draw:class-names=" +START_list(<NCName>)* +END_list" )? + ) | + ( (presentation:style-name="(<NCName>)?" )? + (presentation:class-names=" +START_list(<NCName>)* +END_list" )? + ) (draw:transform="<string>" )? + (draw:name="<string>" )? + + ( (table:end-cell-address="string]" )? + (table:end-x="string]" )? + (table:end-y="string]" )? + ) (table:table-background="<boolean>" )? + (text:anchor-type="page | frame | paragraph | char | as-char" )? + (text:anchor-page-number="<positiveInteger>" )? + ) (draw:text-style-name="(<NCName>)?" )? + ) (<dc:creator ... >)? + (<dc:date ... >)? + (<meta:date-string ... >)? + (<text:p ... > | <text:list ... >)* >  +
@@ -5652,6 +8142,10 @@

office:automatic-styles Element< <text:list-style>*    + + Child Relations + <office:automatic-styles (<style:style ... >)* (<text:list-style ... >)* (<number:number-style ... >)* (<number:currency-style ... >)* (<number:percentage-style ... >)* (<number:date-style ... >)* (<number:time-style ... >)* (<number:boolean-style ... >)* (<number:text-style ... >)* (<style:page-layout ... >)* >  +
@@ -5675,6 +8169,10 @@

office:binary-data Element

  + + Child Relations + <office:binary-data <base64Binary>>  +
@@ -5703,6 +8201,10 @@

office:body Element

<office:text>    + + Child Relations + <office:body <office:text ... > | <office:drawing ... > | <office:presentation ... > | <office:spreadsheet ... > | <office:chart ... > | <office:image ... >>  +
@@ -5733,6 +8235,10 @@

office:change-info Element

<text:p>*    + + Child Relations + <office:change-info <dc:creator ... ><dc:date ... >(<text:p ... >)* >  +
@@ -5768,6 +8274,27 @@

office:chart Element

<text:variable-decls>    + + Child Relations + <office:chart EMPTY + ( + ( (<text:variable-decls ... >)? + (<text:sequence-decls ... >)? + (<text:user-field-decls ... >)? + (<text:dde-connection-decls ... >)? + (<text:alphabetical-index-auto-mark-file ... >)? + ) + ( (<table:calculation-settings ... >)? + (<table:content-validations ... >)? + (<table:label-ranges ... >)? + ))<chart:chart ... > + ( (<table:named-expressions ... >)? + (<table:database-ranges ... >)? + (<table:data-pilot-tables ... >)? + (<table:consolidation ... >)? + (<table:dde-links ... >)? + )>  +
@@ -5797,6 +8324,13 @@

office:dde-source Element

  + + Child Relations + <office:dde-source (office:name="<string>" )? + (office:conversion-mode="into-default-style-data-style | into-english-number | keep-text" )? + office:dde-application="<string>" office:dde-topic="<string>" office:dde-item="<string>" (office:automatic-update="<boolean>" )? + >  +
@@ -5828,6 +8362,18 @@

office:document Element

<office:styles>    + + Child Relations + <office:document office:mimetype="<string>" (office:version="<string>" )? + (<office:meta ... >)? + (<office:settings ... >)? + (<office:scripts ... >)? + (<office:font-face-decls ... >)? + (<office:styles ... >)? + (<office:automatic-styles ... >)? + (<office:master-styles ... >)? + <office:body ... >>  +
@@ -5853,6 +8399,14 @@

office:document-content Element< <office:scripts>    + + Child Relations + <office:document-content (office:version="<string>" )? + (<office:scripts ... >)? + (<office:font-face-decls ... >)? + (<office:automatic-styles ... >)? + <office:body ... >>  +
@@ -5875,6 +8429,12 @@

office:document-meta Element<office:meta>    + + Child Relations + <office:document-meta (office:version="<string>" )? + (<office:meta ... >)? + >  +
@@ -5897,6 +8457,12 @@

office:document-settings Elemen <office:settings>    + + Child Relations + <office:document-settings (office:version="<string>" )? + (<office:settings ... >)? + >  +
@@ -5922,6 +8488,15 @@

office:document-styles Element<office:styles>    + + Child Relations + <office:document-styles (office:version="<string>" )? + (<office:font-face-decls ... >)? + (<office:styles ... >)? + (<office:automatic-styles ... >)? + (<office:master-styles ... >)? + >  +
@@ -5957,6 +8532,27 @@

office:drawing Element

<text:variable-decls>    + + Child Relations + <office:drawing EMPTY + ( + ( (<text:variable-decls ... >)? + (<text:sequence-decls ... >)? + (<text:user-field-decls ... >)? + (<text:dde-connection-decls ... >)? + (<text:alphabetical-index-auto-mark-file ... >)? + ) + ( (<table:calculation-settings ... >)? + (<table:content-validations ... >)? + (<table:label-ranges ... >)? + ))(<draw:page ... >)* + ( (<table:named-expressions ... >)? + (<table:database-ranges ... >)? + (<table:data-pilot-tables ... >)? + (<table:consolidation ... >)? + (<table:dde-links ... >)? + )>  +
@@ -6022,6 +8618,10 @@

office:event-listeners Element<script:event-listener>*    + + Child Relations + <office:event-listeners (<script:event-listener ... > | <presentation:event-listener ... >)* >  +
@@ -6046,6 +8646,10 @@

office:font-face-decls Element<style:font-face>*    + + Child Relations + <office:font-face-decls (<style:font-face ... >)* >  +
@@ -6075,6 +8679,12 @@

office:forms Element

<xforms:model>*    + + Child Relations + <office:forms (form:automatic-focus="<boolean>" )? + (form:apply-design-mode="<boolean>" )? + (<form:form ... > | <xforms:model ... >)* >  +
@@ -6097,6 +8707,10 @@

office:image Element

<draw:frame>    + + Child Relations + <office:image EMPTYEMPTY<draw:frame ... >EMPTY>  +
@@ -6122,6 +8736,12 @@

office:master-styles Element<style:master-page>*    + + Child Relations + <office:master-styles (<style:master-page ... >)* (<style:handout-master ... >)? + (<draw:layer-set ... >)? + >  +
@@ -6145,6 +8765,10 @@

office:meta Element

[any org.w3c.dom.Element]    + + Child Relations + <office:meta (<*:* ... >)* >  +
@@ -6184,6 +8808,29 @@

office:presentation Element

<text:variable-decls>    + + Child Relations + <office:presentation EMPTY + ( + ( (<text:variable-decls ... >)? + (<text:sequence-decls ... >)? + (<text:user-field-decls ... >)? + (<text:dde-connection-decls ... >)? + (<text:alphabetical-index-auto-mark-file ... >)? + ) + ( (<table:calculation-settings ... >)? + (<table:content-validations ... >)? + (<table:label-ranges ... >)? + )(<presentation:header-decl ... > | <presentation:footer-decl ... > | <presentation:date-time-decl ... >)* )(<draw:page ... >)* + ( (<presentation:settings ... >)? + + ( (<table:named-expressions ... >)? + (<table:database-ranges ... >)? + (<table:data-pilot-tables ... >)? + (<table:consolidation ... >)? + (<table:dde-links ... >)? + ))>  +
@@ -6207,6 +8854,10 @@

office:script Element

[any org.w3c.dom.Element]    + + Child Relations + <office:script script:language="<string>" (<*:* ... >)* >  +
@@ -6231,6 +8882,11 @@

office:scripts Element

<office:script>*    + + Child Relations + <office:scripts (<office:script ... >)* (<office:event-listeners ... >)? + >  +
@@ -6254,6 +8910,10 @@

office:settings Element

<config:config-item-set>*    + + Child Relations + <office:settings (<config:config-item-set ... >)+ >  +
@@ -6292,6 +8952,31 @@

office:spreadsheet Element

<text:variable-decls>    + + Child Relations + <office:spreadsheet + ( (table:structure-protected="<boolean>" )? + (table:protection-key="<string>" )? + ) + ( (<table:tracked-changes ... >)? + + ( (<text:variable-decls ... >)? + (<text:sequence-decls ... >)? + (<text:user-field-decls ... >)? + (<text:dde-connection-decls ... >)? + (<text:alphabetical-index-auto-mark-file ... >)? + ) + ( (<table:calculation-settings ... >)? + (<table:content-validations ... >)? + (<table:label-ranges ... >)? + ))(<table:table ... >)* + ( (<table:named-expressions ... >)? + (<table:database-ranges ... >)? + (<table:data-pilot-tables ... >)? + (<table:consolidation ... >)? + (<table:dde-links ... >)? + )>  +
@@ -6337,6 +9022,13 @@

office:styles Element

<text:outline-style>    + + Child Relations + <office:styles (<style:style ... >)* (<text:list-style ... >)* (<number:number-style ... >)* (<number:currency-style ... >)* (<number:percentage-style ... >)* (<number:date-style ... >)* (<number:time-style ... >)* (<number:boolean-style ... >)* (<number:text-style ... >)* (<style:default-style ... >)* (<text:outline-style ... >)? + (<text:notes-configuration ... >)* (<text:bibliography-configuration ... >)? + (<text:linenumbering-configuration ... >)? + (<draw:gradient ... >)* (<svg:linearGradient ... >)* (<svg:radialGradient ... >)* (<draw:hatch ... >)* (<draw:fill-image ... >)* (<draw:marker ... >)* (<draw:stroke-dash ... >)* (<draw:opacity ... >)* (<style:presentation-page-layout ... >)* >  +
@@ -6411,6 +9103,32 @@

office:text Element

<text:variable-decls>    + + Child Relations + <office:text (text:global="<boolean>" )? + (text:use-soft-page-breaks="<boolean>" )? + + ( (<office:forms ... >)? + (<text:tracked-changes ... >)? + + ( (<text:variable-decls ... >)? + (<text:sequence-decls ... >)? + (<text:user-field-decls ... >)? + (<text:dde-connection-decls ... >)? + (<text:alphabetical-index-auto-mark-file ... >)? + ) + ( (<table:calculation-settings ... >)? + (<table:content-validations ... >)? + (<table:label-ranges ... >)? + ))((<text:h ... > | <text:p ... > | <text:list ... > | <text:numbered-paragraph ... > | <table:table ... > | <draw:a ... > | <text:section ... > | <text:soft-page-break ... > | <text:table-of-content ... > | <text:illustration-index ... > | <text:table-index ... > | <text:object-index ... > | <text:user-index ... > | <text:alphabetical-index ... > | <text:bibliography ... > | <draw:rect ... > | <draw:line ... > | <draw:polyline ... > | <draw:polygon ... > | <draw:regular-polygon ... > | <draw:path ... > | <draw:circle ... > | <draw:ellipse ... > | <draw:g ... > | <draw:page-thumbnail ... > | <draw:frame ... > | <draw:measure ... > | <draw:caption ... > | <draw:connector ... > | <draw:control ... > | <dr3d:scene ... > | <draw:custom-shape ... > | <text:change ... > | <text:change-start ... > | <text:change-end ... >)+ | EMPTY | + (<text:page-sequence ... >(<draw:a ... > | <draw:rect ... > | <draw:line ... > | <draw:polyline ... > | <draw:polygon ... > | <draw:regular-polygon ... > | <draw:path ... > | <draw:circle ... > | <draw:ellipse ... > | <draw:g ... > | <draw:page-thumbnail ... > | <draw:frame ... > | <draw:measure ... > | <draw:caption ... > | <draw:connector ... > | <draw:control ... > | <dr3d:scene ... > | <draw:custom-shape ... >)* ))* + ( (<table:named-expressions ... >)? + (<table:database-ranges ... >)? + (<table:data-pilot-tables ... >)? + (<table:consolidation ... >)? + (<table:dde-links ... >)? + )>  +
@@ -6438,6 +9156,10 @@

presentation:animation-grou <presentation:show-text>*    + + Child Relations + <presentation:animation-group (<presentation:show-shape ... > | <presentation:show-text ... > | <presentation:hide-shape ... > | <presentation:hide-text ... > | <presentation:dim ... > | <presentation:play ... >)* >  +
@@ -6466,6 +9188,10 @@

presentation:animations Element< <presentation:show-text>*    + + Child Relations + <presentation:animations (<presentation:show-shape ... > | <presentation:show-text ... > | <presentation:hide-shape ... > | <presentation:hide-text ... > | <presentation:dim ... > | <presentation:play ... > | <presentation:animation-group ... >)* >  +
@@ -6491,6 +9217,10 @@

presentation:date-time Element   + + Child Relations + <presentation:date-time EMPTY>  +
@@ -6516,6 +9246,11 @@

presentation:date-time-decl   + + Child Relations + <presentation:date-time-decl presentation:name="<string>" presentation:source="fixed | current-date" (style:data-style-name="(<NCName>)?" )? + TEXT>  +
@@ -6541,6 +9276,11 @@

presentation:dim Element

<presentation:sound>    + + Child Relations + <presentation:dim draw:shape-id="<IDREF>" draw:color="string]" (<presentation:sound ... >)? + >  +
@@ -6574,6 +9314,21 @@

presentation:event-listener <presentation:sound>    + + Child Relations + <presentation:event-listener script:event-name="<string>" presentation:action="none | previous-page | next-page | first-page | last-page | hide | stop | execute | show | verb | fade-out | sound" (presentation:effect="none | fade | move | stripes | open | close | dissolve | wavyline | random | lines | laser | appear | hide | move-short | checkerboard | rotate | stretch" )? + (presentation:direction="none | from-left | from-top | from-right | from-bottom | from-center | from-upper-left | from-upper-right | from-lower-left | from-lower-right | to-left | to-top | to-right | to-bottom | to-upper-left | to-upper-right | to-lower-right | to-lower-left | path | spiral-inward-left | spiral-inward-right | spiral-outward-left | spiral-outward-right | vertical | horizontal | to-center | clockwise | counter-clockwise" )? + (presentation:speed="slow | medium | fast" )? + (presentation:start-scale="string]" )? + + ( (xlink:href="<anyURI>" )? + (xlink:type="simple" )? + (xlink:show="embed" )? + (xlink:actuate="onRequest" )? + ) (presentation:verb="<nonNegativeInteger>" )? + (<presentation:sound ... >)? + >  +
@@ -6599,6 +9354,10 @@

presentation:footer Element

  + + Child Relations + <presentation:footer EMPTY>  +
@@ -6622,6 +9381,10 @@

presentation:footer-decl Elemen   + + Child Relations + <presentation:footer-decl presentation:name="<string>" TEXT>  +
@@ -6647,6 +9410,10 @@

presentation:header Element

  + + Child Relations + <presentation:header EMPTY>  +
@@ -6670,6 +9437,10 @@

presentation:header-decl Elemen   + + Child Relations + <presentation:header-decl presentation:name="<string>" TEXT>  +
@@ -6700,6 +9471,17 @@

presentation:hide-shape Element< <presentation:sound>    + + Child Relations + <presentation:hide-shape draw:shape-id="<IDREF>" (presentation:effect="none | fade | move | stripes | open | close | dissolve | wavyline | random | lines | laser | appear | hide | move-short | checkerboard | rotate | stretch" )? + (presentation:direction="none | from-left | from-top | from-right | from-bottom | from-center | from-upper-left | from-upper-right | from-lower-left | from-lower-right | to-left | to-top | to-right | to-bottom | to-upper-left | to-upper-right | to-lower-right | to-lower-left | path | spiral-inward-left | spiral-inward-right | spiral-outward-left | spiral-outward-right | vertical | horizontal | to-center | clockwise | counter-clockwise" )? + (presentation:speed="slow | medium | fast" )? + (presentation:delay="<duration>" )? + (presentation:start-scale="string]" )? + (presentation:path-id="TEXT" )? + (<presentation:sound ... >)? + >  +
@@ -6730,6 +9512,17 @@

presentation:hide-text Element<presentation:sound>    + + Child Relations + <presentation:hide-text draw:shape-id="<IDREF>" (presentation:effect="none | fade | move | stripes | open | close | dissolve | wavyline | random | lines | laser | appear | hide | move-short | checkerboard | rotate | stretch" )? + (presentation:direction="none | from-left | from-top | from-right | from-bottom | from-center | from-upper-left | from-upper-right | from-lower-left | from-lower-right | to-left | to-top | to-right | to-bottom | to-upper-left | to-upper-right | to-lower-right | to-lower-left | path | spiral-inward-left | spiral-inward-right | spiral-outward-left | spiral-outward-right | vertical | horizontal | to-center | clockwise | counter-clockwise" )? + (presentation:speed="slow | medium | fast" )? + (presentation:delay="<duration>" )? + (presentation:start-scale="string]" )? + (presentation:path-id="TEXT" )? + (<presentation:sound ... >)? + >  +
@@ -6775,6 +9568,16 @@

presentation:notes Element

<office:forms>    + + Child Relations + <presentation:notes (presentation:use-header-name="<string>" )? + (presentation:use-footer-name="<string>" )? + (presentation:use-date-time-name="<string>" )? + (style:page-layout-name="(<NCName>)?" )? + (draw:style-name="(<NCName>)?" )? + (<office:forms ... >)? + (<draw:rect ... > | <draw:line ... > | <draw:polyline ... > | <draw:polygon ... > | <draw:regular-polygon ... > | <draw:path ... > | <draw:circle ... > | <draw:ellipse ... > | <draw:g ... > | <draw:page-thumbnail ... > | <draw:frame ... > | <draw:measure ... > | <draw:caption ... > | <draw:connector ... > | <draw:control ... > | <dr3d:scene ... > | <draw:custom-shape ... >)* >  +
@@ -6790,9 +9593,9 @@

presentation:placeholder Elemen Attributes presentation:object  - svg:height[2]  - svg:width[2]  - svg:x[2]  + svg:height[1]  + svg:width[1]  + svg:x[1]  svg:y[1]    @@ -6801,6 +9604,10 @@

presentation:placeholder Elemen   + + Child Relations + <presentation:placeholder presentation:object="title | outline | subtitle | text | graphic | object | chart | table | orgchart | page | notes | handout | header | footer | date-time | page-number" svg:x="string] | string]" svg:y="string] | string]" svg:width="string] | string]" svg:height="string] | string]" >  +
@@ -6825,6 +9632,12 @@

presentation:play Element

  + + Child Relations + <presentation:play + (draw:shape-id="<IDREF>" (presentation:speed="slow | medium | fast" )? + )>  +
@@ -6861,6 +9674,24 @@

presentation:settings Element< <presentation:show>*    + + Child Relations + <presentation:settings (presentation:start-page="<string>" )? + (presentation:show="<string>" )? + (presentation:full-screen="<boolean>" )? + (presentation:endless="<boolean>" )? + (presentation:pause="<duration>" )? + (presentation:show-logo="<boolean>" )? + (presentation:force-manual="<boolean>" )? + (presentation:mouse-visible="<boolean>" )? + (presentation:mouse-as-pen="<boolean>" )? + (presentation:start-with-navigator="<boolean>" )? + (presentation:animations="enabled | disabled" )? + (presentation:transition-on-click="enabled | disabled" )? + (presentation:stay-on-top="<boolean>" )? + (presentation:show-end-of-presentation-slide="<boolean>" )? + (<presentation:show ... >)* >  +
@@ -6884,6 +9715,10 @@

presentation:show Element

  + + Child Relations + <presentation:show presentation:name="<string>" presentation:pages="TEXT" >  +
@@ -6914,6 +9749,17 @@

presentation:show-shape Element< <presentation:sound>    + + Child Relations + <presentation:show-shape draw:shape-id="<IDREF>" (presentation:effect="none | fade | move | stripes | open | close | dissolve | wavyline | random | lines | laser | appear | hide | move-short | checkerboard | rotate | stretch" )? + (presentation:direction="none | from-left | from-top | from-right | from-bottom | from-center | from-upper-left | from-upper-right | from-lower-left | from-lower-right | to-left | to-top | to-right | to-bottom | to-upper-left | to-upper-right | to-lower-right | to-lower-left | path | spiral-inward-left | spiral-inward-right | spiral-outward-left | spiral-outward-right | vertical | horizontal | to-center | clockwise | counter-clockwise" )? + (presentation:speed="slow | medium | fast" )? + (presentation:delay="<duration>" )? + (presentation:start-scale="string]" )? + (presentation:path-id="TEXT" )? + (<presentation:sound ... >)? + >  +
@@ -6944,6 +9790,17 @@

presentation:show-text Element<presentation:sound>    + + Child Relations + <presentation:show-text draw:shape-id="<IDREF>" (presentation:effect="none | fade | move | stripes | open | close | dissolve | wavyline | random | lines | laser | appear | hide | move-short | checkerboard | rotate | stretch" )? + (presentation:direction="none | from-left | from-top | from-right | from-bottom | from-center | from-upper-left | from-upper-right | from-lower-left | from-lower-right | to-left | to-top | to-right | to-bottom | to-upper-left | to-upper-right | to-lower-right | to-lower-left | path | spiral-inward-left | spiral-inward-right | spiral-outward-left | spiral-outward-right | vertical | horizontal | to-center | clockwise | counter-clockwise" )? + (presentation:speed="slow | medium | fast" )? + (presentation:delay="<duration>" )? + (presentation:start-scale="string]" )? + (presentation:path-id="TEXT" )? + (<presentation:sound ... >)? + >  +
@@ -6975,6 +9832,14 @@

presentation:sound Element

  + + Child Relations + <presentation:sound (presentation:play-full="<boolean>" )? + xlink:href="<anyURI>" (xlink:type="simple" )? + (xlink:actuate="onRequest" )? + (xlink:show="new | replace" )? + >  +
@@ -7002,6 +9867,13 @@

script:event-listener Element<   + + Child Relations + <script:event-listener script:event-name="<string>" script:language="<string>" script:macro-name="<string>" | + (xlink:href="<anyURI>" (xlink:type="simple" )? + (xlink:actuate="onRequest" )? + )>  +
@@ -7026,6 +9898,11 @@

style:chart-properties Element + + Child Relations + <style:chart-properties + ((*:*="TEXT" )* (<*:* ... >)* )>  +
@@ -7069,6 +9946,40 @@

style:default-style Element

<style:text-properties>    + + Child Relations + <style:default-style + (style:family="text" (<style:text-properties ... >)? + ) | + (style:family="paragraph" (<style:paragraph-properties ... >)? + (<style:text-properties ... >)? + ) | + (style:family="section" (<style:section-properties ... >)? + ) | + (style:family="ruby" (<style:ruby-properties ... >)? + ) | + (style:family="table" (<style:table-properties ... >)? + ) | + (style:family="table-column" (<style:table-column-properties ... >)? + ) | + (style:family="table-row" (<style:table-row-properties ... >)? + ) | + (style:family="table-cell" (<style:table-cell-properties ... >)? + (<style:paragraph-properties ... >)? + (<style:text-properties ... >)? + ) | + (style:family="graphic | presentation" (<style:graphic-properties ... >)? + (<style:paragraph-properties ... >)? + (<style:text-properties ... >)? + ) | + (style:family="drawing-page" (<style:drawing-page-properties ... >)? + ) | + (style:family="chart" (<style:chart-properties ... >)? + (<style:graphic-properties ... >)? + (<style:paragraph-properties ... >)? + (<style:text-properties ... >)? + )>  +
@@ -7093,6 +10004,11 @@

style:drawing-page-propert [any org.w3c.dom.Element]    + + Child Relations + <style:drawing-page-properties + ((*:*="TEXT" )* (<*:* ... >)* )>  +
@@ -7154,6 +10070,50 @@

style:font-face Element

<svg:font-face-src>    + + Child Relations + <style:font-face + ( (svg:font-family="<string>" )? + (svg:font-style="normal | italic | oblique" )? + (svg:font-variant="normal | small-caps" )? + (svg:font-weight="normal | bold | 100 | 200 | 300 | 400 | 500 | 600 | 700 | 800 | 900" )? + (svg:font-stretch="normal | ultra-condensed | extra-condensed | condensed | semi-condensed | semi-expanded | expanded | extra-expanded | ultra-expanded" )? + (svg:font-size="string]" )? + (svg:unicode-range="TEXT" )? + (svg:units-per-em="<integer>" )? + (svg:panose-1="TEXT" )? + (svg:stemv="<integer>" )? + (svg:stemh="<integer>" )? + (svg:slope="<integer>" )? + (svg:cap-height="<integer>" )? + (svg:x-height="<integer>" )? + (svg:accent-height="<integer>" )? + (svg:ascent="<integer>" )? + (svg:descent="<integer>" )? + (svg:widths="TEXT" )? + (svg:bbox="TEXT" )? + (svg:ideographic="<integer>" )? + (svg:alphabetic="<integer>" )? + (svg:mathematical="<integer>" )? + (svg:hanging="<integer>" )? + (svg:v-ideographic="<integer>" )? + (svg:v-alphabetic="<integer>" )? + (svg:v-mathematical="<integer>" )? + (svg:v-hanging="<integer>" )? + (svg:underline-position="<integer>" )? + (svg:underline-thickness="<integer>" )? + (svg:strikethrough-position="<integer>" )? + (svg:strikethrough-thickness="<integer>" )? + (svg:overline-position="<integer>" )? + (svg:overline-thickness="<integer>" )? + )style:name="<string>" (style:font-adornments="<string>" )? + (style:font-family-generic="roman | swiss | modern | decorative | script | system" )? + (style:font-pitch="fixed | variable" )? + (style:font-charset="string]" )? + (<svg:font-face-src ... >)? + (<svg:definition-src ... >)? + >  +
@@ -7201,6 +10161,23 @@

style:footer Element

<text:variable-decls>    + + Child Relations + <style:footer (style:display="<boolean>" )? + + ( (<text:tracked-changes ... >)? + + ( (<text:variable-decls ... >)? + (<text:sequence-decls ... >)? + (<text:user-field-decls ... >)? + (<text:dde-connection-decls ... >)? + (<text:alphabetical-index-auto-mark-file ... >)? + )(<text:h ... > | <text:p ... > | <text:list ... > | <table:table ... > | <text:section ... > | <text:table-of-content ... > | <text:illustration-index ... > | <text:table-index ... > | <text:object-index ... > | <text:user-index ... > | <text:alphabetical-index ... > | <text:bibliography ... > | <text:index-title ... > | <text:change ... > | <text:change-start ... > | <text:change-end ... >)* ) | + ( (<style:region-left ... >)? + (<style:region-center ... >)? + (<style:region-right ... >)? + )>  +
@@ -7248,6 +10225,23 @@

style:footer-left Element

<text:variable-decls>    + + Child Relations + <style:footer-left (style:display="<boolean>" )? + + ( (<text:tracked-changes ... >)? + + ( (<text:variable-decls ... >)? + (<text:sequence-decls ... >)? + (<text:user-field-decls ... >)? + (<text:dde-connection-decls ... >)? + (<text:alphabetical-index-auto-mark-file ... >)? + )(<text:h ... > | <text:p ... > | <text:list ... > | <table:table ... > | <text:section ... > | <text:table-of-content ... > | <text:illustration-index ... > | <text:table-index ... > | <text:object-index ... > | <text:user-index ... > | <text:alphabetical-index ... > | <text:bibliography ... > | <text:index-title ... > | <text:change ... > | <text:change-start ... > | <text:change-end ... >)* ) | + ( (<style:region-left ... >)? + (<style:region-center ... >)? + (<style:region-right ... >)? + )>  +
@@ -7270,6 +10264,11 @@

style:footer-style Element

<style:header-footer-properties>    + + Child Relations + <style:footer-style (<style:header-footer-properties ... >)? + >  +
@@ -7294,6 +10293,11 @@

style:graphic-properties Elemen [any org.w3c.dom.Element]    + + Child Relations + <style:graphic-properties + ((*:*="TEXT" )* (<*:* ... >)* )>  +
@@ -7338,6 +10342,15 @@

style:handout-master Element<draw:regular-polygon>*    + + Child Relations + <style:handout-master (presentation:use-header-name="<string>" )? + (presentation:use-footer-name="<string>" )? + (presentation:use-date-time-name="<string>" )? + (presentation:presentation-page-layout-name="(<NCName>)?" )? + style:page-layout-name="(<NCName>)?" (draw:style-name="(<NCName>)?" )? + (<draw:rect ... > | <draw:line ... > | <draw:polyline ... > | <draw:polygon ... > | <draw:regular-polygon ... > | <draw:path ... > | <draw:circle ... > | <draw:ellipse ... > | <draw:g ... > | <draw:page-thumbnail ... > | <draw:frame ... > | <draw:measure ... > | <draw:caption ... > | <draw:connector ... > | <draw:control ... > | <dr3d:scene ... > | <draw:custom-shape ... >)* >  +
@@ -7385,6 +10398,23 @@

style:header Element

<text:variable-decls>    + + Child Relations + <style:header (style:display="<boolean>" )? + + ( (<text:tracked-changes ... >)? + + ( (<text:variable-decls ... >)? + (<text:sequence-decls ... >)? + (<text:user-field-decls ... >)? + (<text:dde-connection-decls ... >)? + (<text:alphabetical-index-auto-mark-file ... >)? + )(<text:h ... > | <text:p ... > | <text:list ... > | <table:table ... > | <text:section ... > | <text:table-of-content ... > | <text:illustration-index ... > | <text:table-index ... > | <text:object-index ... > | <text:user-index ... > | <text:alphabetical-index ... > | <text:bibliography ... > | <text:index-title ... > | <text:change ... > | <text:change-start ... > | <text:change-end ... >)* ) | + ( (<style:region-left ... >)? + (<style:region-center ... >)? + (<style:region-right ... >)? + )>  +
@@ -7409,6 +10439,11 @@

style:header-footer-prope [any org.w3c.dom.Element]    + + Child Relations + <style:header-footer-properties + ((*:*="TEXT" )* (<*:* ... >)* )>  +
@@ -7456,6 +10491,23 @@

style:header-left Element

<text:variable-decls>    + + Child Relations + <style:header-left (style:display="<boolean>" )? + + ( (<text:tracked-changes ... >)? + + ( (<text:variable-decls ... >)? + (<text:sequence-decls ... >)? + (<text:user-field-decls ... >)? + (<text:dde-connection-decls ... >)? + (<text:alphabetical-index-auto-mark-file ... >)? + )(<text:h ... > | <text:p ... > | <text:list ... > | <table:table ... > | <text:section ... > | <text:table-of-content ... > | <text:illustration-index ... > | <text:table-index ... > | <text:object-index ... > | <text:user-index ... > | <text:alphabetical-index ... > | <text:bibliography ... > | <text:index-title ... > | <text:change ... > | <text:change-start ... > | <text:change-end ... >)* ) | + ( (<style:region-left ... >)? + (<style:region-center ... >)? + (<style:region-right ... >)? + )>  +
@@ -7478,6 +10530,11 @@

style:header-style Element

<style:header-footer-properties>    + + Child Relations + <style:header-style (<style:header-footer-properties ... >)? + >  +
@@ -7504,6 +10561,11 @@

style:list-level-properties [any org.w3c.dom.Element]    + + Child Relations + <style:list-level-properties + ((*:*="TEXT" )* (<*:* ... >)* )>  +
@@ -7535,6 +10597,11 @@

style:map Element

  + + Child Relations + <style:map style:condition="<string>" style:apply-style-name="(<NCName>)?" (style:base-cell-address="string]" )? + >  +
@@ -7585,6 +10652,20 @@

style:master-page Element

<style:style>*    + + Child Relations + <style:master-page style:name="<NCName>" (style:display-name="<string>" )? + style:page-layout-name="(<NCName>)?" (draw:style-name="(<NCName>)?" )? + (style:next-style-name="(<NCName>)?" )? + (<style:header ... > (<style:header-left ... >)? + )? + (<style:footer ... > (<style:footer-left ... >)? + )? + ( (<office:forms ... >)? + )? + (<style:style ... >)* (<draw:rect ... > | <draw:line ... > | <draw:polyline ... > | <draw:polygon ... > | <draw:regular-polygon ... > | <draw:path ... > | <draw:circle ... > | <draw:ellipse ... > | <draw:g ... > | <draw:page-thumbnail ... > | <draw:frame ... > | <draw:measure ... > | <draw:caption ... > | <draw:connector ... > | <draw:control ... > | <dr3d:scene ... > | <draw:custom-shape ... >)* (<presentation:notes ... >)? + >  +
@@ -7611,6 +10692,14 @@

style:page-layout Element

<style:page-layout-properties>    + + Child Relations + <style:page-layout style:name="<NCName>" (style:page-usage="all | left | right | mirrored" )? + (<style:page-layout-properties ... >)? + (<style:header-style ... >)? + (<style:footer-style ... >)? + >  +
@@ -7634,6 +10723,11 @@

style:page-layout-propertie [any org.w3c.dom.Element]    + + Child Relations + <style:page-layout-properties + ((*:*="TEXT" )* (<*:* ... >)* )>  +
@@ -7658,6 +10752,11 @@

style:paragraph-properties El [any org.w3c.dom.Element]    + + Child Relations + <style:paragraph-properties + ((*:*="TEXT" )* (<*:* ... >)* )>  +
@@ -7682,6 +10781,11 @@

style:presentation-page-l <presentation:placeholder>*    + + Child Relations + <style:presentation-page-layout style:name="<NCName>" (style:display-name="<string>" )? + (<presentation:placeholder ... >)* >  +
@@ -7707,6 +10811,10 @@

style:region-center Element

<text:p>*    + + Child Relations + <style:region-center (<text:p ... >)* >  +
@@ -7732,6 +10840,10 @@

style:region-left Element

<text:p>*    + + Child Relations + <style:region-left (<text:p ... >)* >  +
@@ -7757,6 +10869,10 @@

style:region-right Element

<text:p>*    + + Child Relations + <style:region-right (<text:p ... >)* >  +
@@ -7781,6 +10897,11 @@

style:ruby-properties Element< [any org.w3c.dom.Element]    + + Child Relations + <style:ruby-properties + ((*:*="TEXT" )* (<*:* ... >)* )>  +
@@ -7805,6 +10926,11 @@

style:section-properties Elemen [any org.w3c.dom.Element]    + + Child Relations + <style:section-properties + ((*:*="TEXT" )* (<*:* ... >)* )>  +
@@ -7861,6 +10987,49 @@

style:style Element

<style:text-properties>    + + Child Relations + <style:style style:name="<NCName>" (style:display-name="<string>" )? + (style:parent-style-name="(<NCName>)?" )? + (style:next-style-name="(<NCName>)?" )? + (style:list-style-name="(<NCName>)?" )? + (style:master-page-name="(<NCName>)?" )? + (style:auto-update="<boolean>" )? + (style:data-style-name="(<NCName>)?" )? + (style:class="<string>" )? + (style:default-outline-level="<positiveInteger>" )? + + (style:family="text" (<style:text-properties ... >)? + ) | + (style:family="paragraph" (<style:paragraph-properties ... >)? + (<style:text-properties ... >)? + ) | + (style:family="section" (<style:section-properties ... >)? + ) | + (style:family="ruby" (<style:ruby-properties ... >)? + ) | + (style:family="table" (<style:table-properties ... >)? + ) | + (style:family="table-column" (<style:table-column-properties ... >)? + ) | + (style:family="table-row" (<style:table-row-properties ... >)? + ) | + (style:family="table-cell" (<style:table-cell-properties ... >)? + (<style:paragraph-properties ... >)? + (<style:text-properties ... >)? + ) | + (style:family="graphic | presentation" (<style:graphic-properties ... >)? + (<style:paragraph-properties ... >)? + (<style:text-properties ... >)? + ) | + (style:family="drawing-page" (<style:drawing-page-properties ... >)? + ) | + (style:family="chart" (<style:chart-properties ... >)? + (<style:graphic-properties ... >)? + (<style:paragraph-properties ... >)? + (<style:text-properties ... >)? + )(<style:map ... >)* >  +
@@ -7885,6 +11054,11 @@

style:table-cell-properties [any org.w3c.dom.Element]    + + Child Relations + <style:table-cell-properties + ((*:*="TEXT" )* (<*:* ... >)* )>  +
@@ -7909,6 +11083,11 @@

style:table-column-propert [any org.w3c.dom.Element]    + + Child Relations + <style:table-column-properties + ((*:*="TEXT" )* (<*:* ... >)* )>  +
@@ -7933,6 +11112,11 @@

style:table-properties Element + + Child Relations + <style:table-properties + ((*:*="TEXT" )* (<*:* ... >)* )>  +
@@ -7957,6 +11141,11 @@

style:table-row-properties El [any org.w3c.dom.Element]    + + Child Relations + <style:table-row-properties + ((*:*="TEXT" )* (<*:* ... >)* )>  +
@@ -7991,6 +11180,11 @@

style:text-properties Element< [any org.w3c.dom.Element]    + + Child Relations + <style:text-properties + ((*:*="TEXT" )* (<*:* ... >)* )>  +
@@ -8015,6 +11209,13 @@

svg:definition-src Element

  + + Child Relations + <svg:definition-src + (xlink:href="<anyURI>" (xlink:type="simple" )? + (xlink:actuate="onRequest" )? + )>  +
@@ -8057,6 +11258,10 @@

svg:desc Element

  + + Child Relations + <svg:desc TEXT>  +
@@ -8079,6 +11284,11 @@

svg:font-face-format Element   + + Child Relations + <svg:font-face-format (svg:string="TEXT" )? + >  +
@@ -8101,6 +11311,11 @@

svg:font-face-name Element

  + + Child Relations + <svg:font-face-name (svg:name="TEXT" )? + >  +
@@ -8124,6 +11339,10 @@

svg:font-face-src Element

<svg:font-face-uri>*    + + Child Relations + <svg:font-face-src (<svg:font-face-uri ... > | <svg:font-face-name ... >)+ >  +
@@ -8149,6 +11368,13 @@

svg:font-face-uri Element

<svg:font-face-format>*    + + Child Relations + <svg:font-face-uri + (xlink:href="<anyURI>" (xlink:type="simple" )? + (xlink:actuate="onRequest" )? + )(<svg:font-face-format ... >)* >  +
@@ -8164,14 +11390,14 @@

svg:linearGradient Element

Attributes draw:display-name  - draw:name[1]  + draw:name[3]  svg:gradientTransform  svg:gradientUnits  svg:spreadMethod  svg:x1[1]  - svg:x2[1]  + svg:x2[2]  svg:y1[1]  - svg:y2[1]  + svg:y2[2]    @@ -8180,6 +11406,19 @@

svg:linearGradient Element

<svg:stop>*    + + Child Relations + <svg:linearGradient + ( (svg:gradientUnits="objectBoundingBox" )? + (svg:gradientTransform="<string>" )? + (svg:spreadMethod="pad | reflect | repeat" )? + )draw:name="<NCName>" (draw:display-name="<string>" )? + (svg:x1="string] | string]" )? + (svg:y1="string] | string]" )? + (svg:x2="string] | string]" )? + (svg:y2="string] | string]" )? + (<svg:stop ... >)* >  +
@@ -8195,9 +11434,9 @@

svg:radialGradient Element

Attributes draw:display-name  - draw:name[1]  - svg:cx[2]  - svg:cy[1]  + draw:name[3]  + svg:cx[1]  + svg:cy[2]  svg:fx  svg:fy  svg:gradientTransform  @@ -8212,6 +11451,20 @@

svg:radialGradient Element

<svg:stop>*    + + Child Relations + <svg:radialGradient + ( (svg:gradientUnits="objectBoundingBox" )? + (svg:gradientTransform="<string>" )? + (svg:spreadMethod="pad | reflect | repeat" )? + )draw:name="<NCName>" (draw:display-name="<string>" )? + (svg:cx="string] | string]" )? + (svg:cy="string] | string]" )? + (svg:r="string] | string]" )? + (svg:fx="string] | string]" )? + (svg:fy="string] | string]" )? + (<svg:stop ... >)* >  +
@@ -8237,6 +11490,12 @@

svg:stop Element

  + + Child Relations + <svg:stop svg:offset="<double> | string]" (svg:stop-color="string]" )? + (svg:stop-opacity="<double>" )? + >  +
@@ -8279,6 +11538,10 @@

svg:title Element (new in ODF 1.1)   + + Child Relations + <svg:title TEXT>  +
@@ -8312,6 +11575,18 @@

table:calculation-settings El <table:null-date>    + + Child Relations + <table:calculation-settings (table:case-sensitive="<boolean>" )? + (table:precision-as-shown="<boolean>" )? + (table:search-criteria-must-apply-to-whole-cell="<boolean>" )? + (table:automatic-find-labels="<boolean>" )? + (table:use-regular-expressions="<boolean>" )? + (table:null-year="<positiveInteger>" )? + (<table:null-date ... >)? + (<table:iteration ... >)? + >  +
@@ -8337,6 +11612,11 @@

table:cell-address Element

  + + Child Relations + <table:cell-address + (table:column="<integer>" table:row="<integer>" table:table="<integer>" )>  +
@@ -8366,6 +11646,14 @@

table:cell-content-change Elem <table:previous>    + + Child Relations + <table:cell-content-change table:id="<string>" (table:acceptance-state="accepted | rejected | pending" )? + (table:rejecting-change-id="<string>" )? + <table:cell-address ... ><office:change-info ... > (<table:dependencies ... >)? + (<table:deletions ... >)? + <table:previous ... >>  +
@@ -8390,6 +11678,13 @@

table:cell-content-deletion <table:change-track-table-cell>    + + Child Relations + <table:cell-content-deletion (table:id="<string>" )? + (<table:cell-address ... >)? + (<table:change-track-table-cell ... >)? + >  +
@@ -8410,7 +11705,7 @@

table:cell-range-source Element< table:last-column-spanned  table:last-row-spanned  table:name[2]  - table:refresh-delay[2]  + table:refresh-delay[1]  xlink:actuate[1]  xlink:href  xlink:type  @@ -8421,6 +11716,17 @@

table:cell-range-source Element<   + + Child Relations + <table:cell-range-source table:name="<string>" + (table:last-column-spanned="<positiveInteger>" table:last-row-spanned="<positiveInteger>" ) + ( (xlink:type="simple" )? + (xlink:actuate="onRequest" )? + xlink:href="<anyURI>" ) (table:filter-name="<string>" )? + (table:filter-options="<string>" )? + (table:refresh-delay="<duration>" )? + >  +
@@ -8443,6 +11749,11 @@

table:change-deletion Element<   + + Child Relations + <table:change-deletion (table:id="<string>" )? + >  +
@@ -8468,9 +11779,9 @@

table:change-track-table-c office:value-type[2]  office:value-type[3]  office:value-type[4]  + office:value-type[5]  office:value-type[6]  - office:value-type[7]  - office:value-type[9]  + office:value-type[8]  table:cell-address  table:formula  table:matrix-covered  @@ -8484,6 +11795,26 @@

table:change-track-table-c <text:p>*    + + Child Relations + <table:change-track-table-cell (table:cell-address="string]" )? + (table:matrix-covered="<boolean>" )? + + ( (table:formula="<string>" )? + (table:number-matrix-columns-spanned="<positiveInteger>" )? + (table:number-matrix-rows-spanned="<positiveInteger>" )? + ( + (office:value-type="float" office:value="<double>" ) | + (office:value-type="percentage" office:value="<double>" ) | + (office:value-type="currency" office:value="<double>" (office:currency="<string>" )? + ) | + (office:value-type="date" office:date-value="<date> | <dateTime>" ) | + (office:value-type="time" office:time-value="<duration>" ) | + (office:value-type="boolean" office:boolean-value="<boolean>" ) | + (office:value-type="string" (office:string-value="<string>" )? + ))? + )(<text:p ... >)* >  +
@@ -8514,6 +11845,12 @@

table:consolidation Element

  + + Child Relations + <table:consolidation table:function="auto | average | count | countnums | max | min | product | stdev | stdevp | sum | var | varp | <string>" table:source-cell-range-addresses="<string>" table:target-cell-address="string]" (table:use-labels="none | row | column | both" )? + (table:link-to-source-data="<boolean>" )? + >  +
@@ -8544,6 +11881,18 @@

table:content-validation Elemen <table:help-message>    + + Child Relations + <table:content-validation table:name="<string>" (table:condition="<string>" )? + (table:base-cell-address="string]" )? + (table:allow-empty-cell="<boolean>" )? + (table:display-list="none | unsorted | sort-ascending" )? + (<table:help-message ... >)? + (<table:error-message ... > | + (<table:error-macro ... > (<office:event-listeners ... >)? + ))? + >  +
@@ -8570,6 +11919,10 @@

table:content-validations Elem <table:content-validation>*    + + Child Relations + <table:content-validations (<table:content-validation ... >)+ >  +
@@ -8594,9 +11947,9 @@

table:covered-table-cell Elemen office:value-type[2]  office:value-type[3]  office:value-type[4]  + office:value-type[5]  office:value-type[6]  - office:value-type[7]  - office:value-type[9]  + office:value-type[8]  table:content-validation-name  table:formula  table:number-columns-repeated  @@ -8647,6 +12000,29 @@

table:covered-table-cell Elemen <text:user-index>*    + + Child Relations + <table:covered-table-cell (table:number-columns-repeated="<positiveInteger>" )? + (table:style-name="(<NCName>)?" )? + (table:content-validation-name="<string>" )? + (table:formula="<string>" )? + ( + (office:value-type="float" office:value="<double>" ) | + (office:value-type="percentage" office:value="<double>" ) | + (office:value-type="currency" office:value="<double>" (office:currency="<string>" )? + ) | + (office:value-type="date" office:date-value="<date> | <dateTime>" ) | + (office:value-type="time" office:time-value="<duration>" ) | + (office:value-type="boolean" office:boolean-value="<boolean>" ) | + (office:value-type="string" (office:string-value="<string>" )? + ))? + (table:protect="<boolean>" )? + + ( (<table:cell-range-source ... >)? + (<office:annotation ... >)? + (<table:detective ... >)? + (<text:h ... > | <text:p ... > | <text:list ... > | <text:numbered-paragraph ... > | <table:table ... > | <draw:a ... > | <text:section ... > | <text:soft-page-break ... > | <text:table-of-content ... > | <text:illustration-index ... > | <text:table-index ... > | <text:object-index ... > | <text:user-index ... > | <text:alphabetical-index ... > | <text:bibliography ... > | <draw:rect ... > | <draw:line ... > | <draw:polyline ... > | <draw:polygon ... > | <draw:regular-polygon ... > | <draw:path ... > | <draw:circle ... > | <draw:ellipse ... > | <draw:g ... > | <draw:page-thumbnail ... > | <draw:frame ... > | <draw:measure ... > | <draw:caption ... > | <draw:connector ... > | <draw:control ... > | <dr3d:scene ... > | <draw:custom-shape ... > | <text:change ... > | <text:change-start ... > | <text:change-end ... >)* )>  +
@@ -8670,6 +12046,11 @@

table:cut-offs Element

<table:movement-cut-off>*    + + Child Relations + <table:cut-offs (<table:movement-cut-off ... >)+ | + (<table:insertion-cut-off ... >(<table:movement-cut-off ... >)* )>  +
@@ -8695,6 +12076,10 @@

table:data-pilot-display-i   + + Child Relations + <table:data-pilot-display-info table:enabled="<boolean>" table:data-field="<string>" table:member-count="<nonNegativeInteger>" table:display-member-mode="from-top | from-bottom" >  +
@@ -8726,6 +12111,17 @@

table:data-pilot-field Element<table:data-pilot-level>    + + Child Relations + <table:data-pilot-field table:source-field-name="<string>" table:orientation="row | column | data | hidden" | + (table:orientation="page" table:selected-page="<string>" ) (table:is-data-layout-field="<string>" )? + (table:function="auto | average | count | countnums | max | min | product | stdev | stdevp | sum | var | varp | <string>" )? + (table:used-hierarchy="<integer>" )? + (<table:data-pilot-level ... >)? + (<table:data-pilot-field-reference ... >)? + (<table:data-pilot-groups ... >)? + >  +
@@ -8752,6 +12148,11 @@

table:data-pilot-field-   + + Child Relations + <table:data-pilot-field-reference table:field-name="<string>" + (table:member-type="named" table:member-name="<string>" ) | table:member-type="previous | next" table:type="none | member-difference | member-percentage | member-percentage-difference | running-total | row-percentage | column-percentage | total-percentage | index" >  +
@@ -8775,6 +12176,10 @@

table:data-pilot-group Element<table:data-pilot-group-member>*    + + Child Relations + <table:data-pilot-group table:name="<string>" (<table:data-pilot-group-member ... >)+ >  +
@@ -8797,6 +12202,10 @@

table:data-pilot-group-mem   + + Child Relations + <table:data-pilot-group-member table:name="<string>" >  +
@@ -8826,6 +12235,10 @@

table:data-pilot-groups Element< <table:data-pilot-group>*    + + Child Relations + <table:data-pilot-groups table:source-field-name="<string>" table:date-start="<date> | <dateTime> | auto" | table:start="<double> | auto" table:date-end="<date> | <dateTime> | auto" | table:end="<double> | auto" table:step="<double>" table:grouped-by="seconds | minutes | hours | days | months | quarters | years" (<table:data-pilot-group ... >)+ >  +
@@ -8849,6 +12262,10 @@

table:data-pilot-layout-inf   + + Child Relations + <table:data-pilot-layout-info table:layout-mode="tabular-layout | outline-subtotals-top | outline-subtotals-bottom" table:add-empty-lines="<boolean>" >  +
@@ -8876,6 +12293,16 @@

table:data-pilot-level Element<table:data-pilot-subtotals>    + + Child Relations + <table:data-pilot-level (table:show-empty="<boolean>" )? + (<table:data-pilot-subtotals ... >)? + (<table:data-pilot-members ... >)? + (<table:data-pilot-display-info ... >)? + (<table:data-pilot-sort-info ... >)? + (<table:data-pilot-layout-info ... >)? + >  +
@@ -8900,6 +12327,12 @@

table:data-pilot-member Element<   + + Child Relations + <table:data-pilot-member table:name="<string>" (table:display="<boolean>" )? + (table:show-details="<boolean>" )? + >  +
@@ -8922,6 +12355,10 @@

table:data-pilot-members Elemen <table:data-pilot-member>*    + + Child Relations + <table:data-pilot-members (<table:data-pilot-member ... >)* >  +
@@ -8947,6 +12384,11 @@

table:data-pilot-sort-info El   + + Child Relations + <table:data-pilot-sort-info + (table:sort-mode="data" table:data-field="<string>" ) | table:sort-mode="none | manual | name" table:order="ascending | descending" >  +
@@ -8969,6 +12411,10 @@

table:data-pilot-subtotal Elem   + + Child Relations + <table:data-pilot-subtotal table:function="auto | average | count | countnums | max | min | product | stdev | stdevp | sum | var | varp | <string>" >  +
@@ -8991,6 +12437,10 @@

table:data-pilot-subtotals El <table:data-pilot-subtotal>*    + + Child Relations + <table:data-pilot-subtotals (<table:data-pilot-subtotal ... >)* >  +
@@ -9027,6 +12477,18 @@

table:data-pilot-table Element<table:source-service>    + + Child Relations + <table:data-pilot-table table:name="<string>" (table:application-data="<string>" )? + (table:grand-total="none | row | column | both" )? + (table:ignore-empty-rows="<boolean>" )? + (table:identify-categories="<boolean>" )? + table:target-range-address="string]" (table:buttons="<string>" )? + (table:show-filter-button="<boolean>" )? + (table:drill-down-on-double-click="<boolean>" )? + (<table:database-source-sql ... > | <table:database-source-query ... > | <table:database-source-table ... > | <table:source-service ... > | <table:source-cell-range ... >)? + (<table:data-pilot-field ... >)+ >  +
@@ -9053,6 +12515,10 @@

table:data-pilot-tables Element< <table:data-pilot-table>*    + + Child Relations + <table:data-pilot-tables (<table:data-pilot-table ... >)* >  +
@@ -9075,7 +12541,7 @@

table:database-range Elementtable:on-update-keep-size  table:on-update-keep-styles  table:orientation[1]  - table:refresh-delay[1]  + table:refresh-delay[2]  table:target-range-address    @@ -9090,6 +12556,23 @@

table:database-range Element<table:subtotal-rules>    + + Child Relations + <table:database-range (table:name="<string>" )? + (table:is-selection="<boolean>" )? + (table:on-update-keep-styles="<boolean>" )? + (table:on-update-keep-size="<boolean>" )? + (table:has-persistent-data="<boolean>" )? + (table:orientation="column | row" )? + (table:contains-header="<boolean>" )? + (table:display-filter-buttons="<boolean>" )? + table:target-range-address="string]" (table:refresh-delay="<boolean>" )? + (<table:database-source-sql ... > | <table:database-source-query ... > | <table:database-source-table ... >)? + (<table:filter ... >)? + (<table:sort ... >)? + (<table:subtotal-rules ... >)? + >  +
@@ -9116,6 +12599,10 @@

table:database-ranges Element< <table:database-range>*    + + Child Relations + <table:database-ranges (<table:database-range ... >)* >  +
@@ -9140,6 +12627,10 @@

table:database-source-query   + + Child Relations + <table:database-source-query table:database-name="<string>" table:query-name="<string>" >  +
@@ -9165,6 +12656,11 @@

table:database-source-sql Elem   + + Child Relations + <table:database-source-sql table:database-name="<string>" table:sql-statement="<string>" (table:parse-sql-statement="<boolean>" )? + >  +
@@ -9189,6 +12685,10 @@

table:database-source-table   + + Child Relations + <table:database-source-table table:database-name="<string>" table:database-table-name="<string>" >  +
@@ -9212,6 +12712,10 @@

table:dde-link Element

<table:table>    + + Child Relations + <table:dde-link <office:dde-source ... ><table:table ... >>  +
@@ -9238,6 +12742,10 @@

table:dde-links Element

<table:dde-link>*    + + Child Relations + <table:dde-links (<table:dde-link ... >)+ >  +
@@ -9270,6 +12778,17 @@

table:deletion Element

<table:dependencies>    + + Child Relations + <table:deletion table:type="row | column | table" table:position="<integer>" (table:table="<integer>" )? + (table:multi-deletion-spanned="<integer>" )? + table:id="<string>" (table:acceptance-state="accepted | rejected | pending" )? + (table:rejecting-change-id="<string>" )? + <office:change-info ... > (<table:dependencies ... >)? + (<table:deletions ... >)? + (<table:cut-offs ... >)? + >  +
@@ -9296,6 +12815,10 @@

table:deletions Element

<table:change-deletion>*    + + Child Relations + <table:deletions (<table:cell-content-deletion ... > | <table:change-deletion ... >)+ >  +
@@ -9321,6 +12844,10 @@

table:dependencies Element

<table:dependency>*    + + Child Relations + <table:dependencies (<table:dependency ... >)+ >  +
@@ -9343,6 +12870,10 @@

table:dependency Element

  + + Child Relations + <table:dependency table:id="<string>" >  +
@@ -9367,6 +12898,10 @@

table:detective Element

<table:operation>*    + + Child Relations + <table:detective (<table:highlighted-range ... >)* (<table:operation ... >)* >  +
@@ -9389,6 +12924,11 @@

table:error-macro Element

  + + Child Relations + <table:error-macro (table:execute="<boolean>" )? + >  +
@@ -9414,6 +12954,13 @@

table:error-message Element

<text:p>*    + + Child Relations + <table:error-message (table:title="<string>" )? + (table:display="<boolean>" )? + (table:message-type="stop | warning | information" )? + (<text:p ... >)* >  +
@@ -9443,6 +12990,14 @@

table:filter Element

<table:filter-or>    + + Child Relations + <table:filter (table:target-range-address="string]" )? + (table:condition-source="self | cell-range" )? + (table:condition-source-range-address="string]" )? + (table:display-duplicates="<boolean>" )? + <table:filter-condition ... > | <table:filter-and ... > | <table:filter-or ... >>  +
@@ -9467,6 +13022,10 @@

table:filter-and Element

<table:filter-or>*    + + Child Relations + <table:filter-and (<table:filter-or ... > | <table:filter-condition ... >)+ >  +
@@ -9495,6 +13054,12 @@

table:filter-condition Element   + + Child Relations + <table:filter-condition table:field-number="<nonNegativeInteger>" table:value="<string>" table:operator="<string>" (table:case-sensitive="<string>" )? + (table:data-type="text | number" )? + >  +
@@ -9519,6 +13084,10 @@

table:filter-or Element

<table:filter-condition>*    + + Child Relations + <table:filter-or (<table:filter-and ... > | <table:filter-condition ... >)+ >  +
@@ -9543,6 +13112,12 @@

table:help-message Element

<text:p>*    + + Child Relations + <table:help-message (table:title="<string>" )? + (table:display="<boolean>" )? + (<text:p ... >)* >  +
@@ -9568,6 +13143,12 @@

table:highlighted-range Element<   + + Child Relations + <table:highlighted-range (table:cell-range-address="string]" )? + table:direction="from-another-table | to-another-table | from-same-table" (table:contains-error="<boolean>" )? + | table:marked-invalid="<boolean>" >  +
@@ -9599,6 +13180,16 @@

table:insertion Element

<table:dependencies>    + + Child Relations + <table:insertion table:type="row | column | table" table:position="<integer>" (table:count="<positiveInteger>" )? + (table:table="<integer>" )? + table:id="<string>" (table:acceptance-state="accepted | rejected | pending" )? + (table:rejecting-change-id="<string>" )? + <office:change-info ... > (<table:dependencies ... >)? + (<table:deletions ... >)? + >  +
@@ -9622,6 +13213,10 @@

table:insertion-cut-off Element<   + + Child Relations + <table:insertion-cut-off table:id="<string>" table:position="<integer>" >  +
@@ -9646,6 +13241,13 @@

table:iteration Element

  + + Child Relations + <table:iteration (table:status="enable | disable" )? + (table:steps="<positiveInteger>" )? + (table:maximum-difference="<double>" )? + >  +
@@ -9670,6 +13272,10 @@

table:label-range Element

  + + Child Relations + <table:label-range table:label-cell-range-address="string]" table:data-cell-range-address="string]" table:orientation="column | row" >  +
@@ -9696,6 +13302,10 @@

table:label-ranges Element

<table:label-range>*    + + Child Relations + <table:label-ranges (<table:label-range ... >)* >  +
@@ -9725,6 +13335,14 @@

table:movement Element

<table:target-range-address>    + + Child Relations + <table:movement table:id="<string>" (table:acceptance-state="accepted | rejected | pending" )? + (table:rejecting-change-id="<string>" )? + <table:source-range-address ... ><table:target-range-address ... ><office:change-info ... > (<table:dependencies ... >)? + (<table:deletions ... >)? + >  +
@@ -9749,6 +13367,11 @@

table:movement-cut-off Element   + + Child Relations + <table:movement-cut-off table:position="<integer>" | + (table:start-position="<integer>" table:end-position="<integer>" )>  +
@@ -9773,6 +13396,12 @@

table:named-expression Element   + + Child Relations + <table:named-expression + (table:name="<string>" table:expression="<string>" (table:base-cell-address="string]" )? + )>  +
@@ -9800,6 +13429,10 @@

table:named-expressions Element< <table:named-range>*    + + Child Relations + <table:named-expressions (<table:named-range ... > | <table:named-expression ... >)* >  +
@@ -9825,6 +13458,15 @@

table:named-range Element

  + + Child Relations + <table:named-range + (table:name="<string>" table:cell-range-address="string]" (table:base-cell-address="string]" )? + (table:range-usable-as="none | +START_list(print-range | filter | repeat-row | repeat-column)+ +END_list" )? + )>  +
@@ -9848,6 +13490,12 @@

table:null-date Element

  + + Child Relations + <table:null-date (table:value-type="float | time | date | percentage | currency | boolean | string" )? + (table:date-value="<date>" )? + >  +
@@ -9871,6 +13519,10 @@

table:operation Element

  + + Child Relations + <table:operation table:name="trace-dependents | remove-dependents | trace-precedents | remove-precedents | trace-errors" table:index="<nonNegativeInteger>" >  +
@@ -9894,6 +13546,11 @@

table:previous Element

<table:change-track-table-cell>    + + Child Relations + <table:previous (table:id="<string>" )? + <table:change-track-table-cell ... >>  +
@@ -9924,6 +13581,17 @@

table:scenario Element

  + + Child Relations + <table:scenario table:scenario-ranges="<string>" table:is-active="<boolean>" (table:display-border="<boolean>" )? + (table:border-color="string]" )? + (table:copy-back="<boolean>" )? + (table:copy-styles="<boolean>" )? + (table:copy-formulas="<boolean>" )? + (table:comment="<string>" )? + (table:protected="<boolean>" )? + >  +
@@ -9962,6 +13630,10 @@

table:shapes Element

<draw:regular-polygon>*    + + Child Relations + <table:shapes (<draw:rect ... > | <draw:line ... > | <draw:polyline ... > | <draw:polygon ... > | <draw:regular-polygon ... > | <draw:path ... > | <draw:circle ... > | <draw:ellipse ... > | <draw:g ... > | <draw:page-thumbnail ... > | <draw:frame ... > | <draw:measure ... > | <draw:caption ... > | <draw:connector ... > | <draw:control ... > | <dr3d:scene ... > | <draw:custom-shape ... >)+ >  +
@@ -9990,6 +13662,16 @@

table:sort Element

<table:sort-by>*    + + Child Relations + <table:sort (table:bind-styles-to-content="<boolean>" )? + (table:target-range-address="string]" )? + (table:case-sensitive="<boolean>" )? + (table:language="token]" )? + (table:country="token]" )? + (table:algorithm="<string>" )? + (<table:sort-by ... >)+ >  +
@@ -10014,6 +13696,12 @@

table:sort-by Element

  + + Child Relations + <table:sort-by table:field-number="<nonNegativeInteger>" (table:data-type="text | number | automatic | <string>" )? + (table:order="ascending | descending" )? + >  +
@@ -10037,6 +13725,12 @@

table:sort-groups Element

  + + Child Relations + <table:sort-groups (table:data-type="text | number | automatic | <string>" )? + (table:order="ascending | descending" )? + >  +
@@ -10060,6 +13754,11 @@

table:source-cell-range Element< <table:filter>    + + Child Relations + <table:source-cell-range table:cell-range-address="string]" (<table:filter ... >)? + >  +
@@ -10090,6 +13789,12 @@

table:source-range-address El   + + Child Relations + <table:source-range-address + (table:column="<integer>" table:row="<integer>" table:table="<integer>" ) | + (table:start-column="<integer>" table:start-row="<integer>" table:start-table="<integer>" table:end-column="<integer>" table:end-row="<integer>" table:end-table="<integer>" )>  +
@@ -10116,6 +13821,12 @@

table:source-service Element   + + Child Relations + <table:source-service table:name="<string>" table:source-name="<string>" table:object-name="<string>" (table:user-name="<string>" )? + (table:password="<string>" )? + >  +
@@ -10139,6 +13850,10 @@

table:subtotal-field Element   + + Child Relations + <table:subtotal-field table:field-number="<nonNegativeInteger>" table:function="auto | average | count | countnums | max | min | product | stdev | stdevp | sum | var | varp | <string>" >  +
@@ -10162,6 +13877,10 @@

table:subtotal-rule Element

<table:subtotal-field>*    + + Child Relations + <table:subtotal-rule table:group-by-field-number="<nonNegativeInteger>" (<table:subtotal-field ... >)* >  +
@@ -10188,6 +13907,14 @@

table:subtotal-rules Element<table:subtotal-rule>*    + + Child Relations + <table:subtotal-rules (table:bind-styles-to-content="<boolean>" )? + (table:case-sensitive="<boolean>" )? + (table:page-breaks-on-group-change="<boolean>" )? + (<table:sort-groups ... >)? + (<table:subtotal-rule ... >)* >  +
@@ -10245,6 +13972,37 @@

table:table Element

<text:soft-page-break>*    + + Child Relations + <table:table (table:name="<string>" )? + (table:style-name="(<NCName>)?" )? + + ( (table:protected="<boolean>" )? + (table:protection-key="TEXT" )? + ) (table:print="<boolean>" )? + (table:print-ranges="<string>" )? + (table:is-sub-table="<boolean>" )? + (<table:table-source ... >)? + (<office:dde-source ... >)? + (<table:scenario ... >)? + ( (<office:forms ... >)? + )? + (<table:shapes ... >)? + (<table:table-column-group ... > | + (<table:table-columns ... > | (<table:table-column ... >)+ (<table:table-header-columns ... > (<table:table-columns ... > | (<table:table-column ... >)+ )? + )? + ) | + (<table:table-header-columns ... > (<table:table-columns ... > | (<table:table-column ... >)+ )? + ))+ (<table:table-row-group ... > | + (<table:table-rows ... > | ( (<text:soft-page-break ... >)? + <table:table-row ... >)+ (<table:table-header-rows ... > (<table:table-rows ... > | ( (<text:soft-page-break ... >)? + <table:table-row ... >)+ )? + )? + ) | + (<table:table-header-rows ... > (<table:table-rows ... > | ( (<text:soft-page-break ... >)? + <table:table-row ... >)+ )? + ))+ >  +
@@ -10269,9 +14027,9 @@

table:table-cell Element

office:value-type[2]  office:value-type[3]  office:value-type[4]  + office:value-type[5]  office:value-type[6]  - office:value-type[7]  - office:value-type[9]  + office:value-type[8]  table:content-validation-name  table:formula  table:number-columns-repeated  @@ -10326,6 +14084,35 @@

table:table-cell Element

<text:user-index>*    + + Child Relations + <table:table-cell (table:number-columns-repeated="<positiveInteger>" )? + (table:style-name="(<NCName>)?" )? + (table:content-validation-name="<string>" )? + (table:formula="<string>" )? + ( + (office:value-type="float" office:value="<double>" ) | + (office:value-type="percentage" office:value="<double>" ) | + (office:value-type="currency" office:value="<double>" (office:currency="<string>" )? + ) | + (office:value-type="date" office:date-value="<date> | <dateTime>" ) | + (office:value-type="time" office:time-value="<duration>" ) | + (office:value-type="boolean" office:boolean-value="<boolean>" ) | + (office:value-type="string" (office:string-value="<string>" )? + ))? + (table:protect="<boolean>" )? + + ( (table:number-columns-spanned="<positiveInteger>" )? + (table:number-rows-spanned="<positiveInteger>" )? + ) + ( (table:number-matrix-columns-spanned="<positiveInteger>" )? + (table:number-matrix-rows-spanned="<positiveInteger>" )? + ) + ( (<table:cell-range-source ... >)? + (<office:annotation ... >)? + (<table:detective ... >)? + (<text:h ... > | <text:p ... > | <text:list ... > | <text:numbered-paragraph ... > | <table:table ... > | <draw:a ... > | <text:section ... > | <text:soft-page-break ... > | <text:table-of-content ... > | <text:illustration-index ... > | <text:table-index ... > | <text:object-index ... > | <text:user-index ... > | <text:alphabetical-index ... > | <text:bibliography ... > | <draw:rect ... > | <draw:line ... > | <draw:polyline ... > | <draw:polygon ... > | <draw:regular-polygon ... > | <draw:path ... > | <draw:circle ... > | <draw:ellipse ... > | <draw:g ... > | <draw:page-thumbnail ... > | <draw:frame ... > | <draw:measure ... > | <draw:caption ... > | <draw:connector ... > | <draw:control ... > | <dr3d:scene ... > | <draw:custom-shape ... > | <text:change ... > | <text:change-start ... > | <text:change-end ... >)* )>  +
@@ -10354,6 +14141,14 @@

table:table-column Element

  + + Child Relations + <table:table-column (table:number-columns-repeated="<positiveInteger>" )? + (table:style-name="(<NCName>)?" )? + (table:visibility="visible | collapse | filter" )? + (table:default-cell-style-name="(<NCName>)?" )? + >  +
@@ -10381,6 +14176,16 @@

table:table-column-group Elemen <table:table-header-columns>*    + + Child Relations + <table:table-column-group (table:display="<boolean>" )? + (<table:table-column-group ... > | + (<table:table-columns ... > | (<table:table-column ... >)+ (<table:table-header-columns ... > (<table:table-columns ... > | (<table:table-column ... >)+ )? + )? + ) | + (<table:table-header-columns ... > (<table:table-columns ... > | (<table:table-column ... >)+ )? + ))+ >  +
@@ -10404,6 +14209,10 @@

table:table-columns Element

<table:table-column>*    + + Child Relations + <table:table-columns (<table:table-column ... >)+ >  +
@@ -10427,6 +14236,10 @@

table:table-header-columns El <table:table-column>*    + + Child Relations + <table:table-header-columns (<table:table-column ... >)+ >  +
@@ -10451,6 +14264,11 @@

table:table-header-rows Element< <text:soft-page-break>*    + + Child Relations + <table:table-header-rows ( (<text:soft-page-break ... >)? + <table:table-row ... >)+ >  +
@@ -10481,6 +14299,14 @@

table:table-row Element

<table:table-cell>*    + + Child Relations + <table:table-row (table:number-rows-repeated="<positiveInteger>" )? + (table:style-name="(<NCName>)?" )? + (table:default-cell-style-name="(<NCName>)?" )? + (table:visibility="visible | collapse | filter" )? + (<table:table-cell ... > | <table:covered-table-cell ... >)+ >  +
@@ -10509,6 +14335,19 @@

table:table-row-group Element< <text:soft-page-break>*    + + Child Relations + <table:table-row-group (table:display="<boolean>" )? + (<table:table-row-group ... > | + (<table:table-rows ... > | ( (<text:soft-page-break ... >)? + <table:table-row ... >)+ (<table:table-header-rows ... > (<table:table-rows ... > | ( (<text:soft-page-break ... >)? + <table:table-row ... >)+ )? + )? + ) | + (<table:table-header-rows ... > (<table:table-rows ... > | ( (<text:soft-page-break ... >)? + <table:table-row ... >)+ )? + ))+ >  +
@@ -10533,6 +14372,11 @@

table:table-rows Element

<text:soft-page-break>*    + + Child Relations + <table:table-rows ( (<text:soft-page-break ... >)? + <table:table-row ... >)+ >  +
@@ -10550,7 +14394,7 @@

table:table-source Element

table:filter-name  table:filter-options  table:mode  - table:refresh-delay[2]  + table:refresh-delay[1]  table:table-name  xlink:actuate[1]  xlink:href  @@ -10562,6 +14406,18 @@

table:table-source Element

  + + Child Relations + <table:table-source (table:mode="copy-all | copy-results-only" )? + (table:table-name="<string>" )? + + ( (xlink:type="simple" )? + (xlink:actuate="onRequest" )? + xlink:href="<anyURI>" ) (table:filter-name="<string>" )? + (table:filter-options="<string>" )? + (table:refresh-delay="<duration>" )? + >  +
@@ -10592,6 +14448,12 @@

table:target-range-address El   + + Child Relations + <table:target-range-address + (table:column="<integer>" table:row="<integer>" table:table="<integer>" ) | + (table:start-column="<integer>" table:start-row="<integer>" table:start-table="<integer>" table:end-column="<integer>" table:end-row="<integer>" table:end-table="<integer>" )>  +
@@ -10618,6 +14480,11 @@

table:tracked-changes Element< <table:movement>*    + + Child Relations + <table:tracked-changes (table:track-changes="<boolean>" )? + (<table:cell-content-change ... > | <table:insertion ... > | <table:deletion ... > | <table:movement ... >)* >  +
@@ -10779,6 +14646,22 @@

text:a Element

<text:word-count>*    + + Child Relations + <text:a (office:name="<string>" )? + (office:title="<string>" )? + + (xlink:href="<anyURI>" (xlink:type="simple" )? + (xlink:actuate="onRequest" )? + ) + ( (office:target-frame-name="_self | _blank | _parent | _top | <string>" )? + (xlink:show="new | replace" )? + ) + ( (text:style-name="(<NCName>)?" )? + (text:visited-style-name="(<NCName>)?" )? + ) (<office:event-listeners ... >)? + (TEXT | <text:s ... > | <text:tab ... > | <text:line-break ... > | <text:soft-page-break ... > | <text:span ... > | <text:a ... > | <text:bookmark ... > | <text:bookmark-start ... > | <text:bookmark-end ... > | <text:reference-mark ... > | <text:reference-mark-start ... > | <text:reference-mark-end ... > | <text:note ... > | <text:ruby ... > | <office:annotation ... > | <text:change ... > | <text:change-start ... > | <text:change-end ... > | <draw:rect ... > | <draw:line ... > | <draw:polyline ... > | <draw:polygon ... > | <draw:regular-polygon ... > | <draw:path ... > | <draw:circle ... > | <draw:ellipse ... > | <draw:g ... > | <draw:page-thumbnail ... > | <draw:frame ... > | <draw:measure ... > | <draw:caption ... > | <draw:connector ... > | <draw:control ... > | <dr3d:scene ... > | <draw:custom-shape ... > | <draw:a ... > | <text:date ... > | <text:time ... > | <text:page-number ... > | <text:page-continuation ... > | <text:sender-firstname ... > | <text:sender-lastname ... > | <text:sender-initials ... > | <text:sender-title ... > | <text:sender-position ... > | <text:sender-email ... > | <text:sender-phone-private ... > | <text:sender-fax ... > | <text:sender-company ... > | <text:sender-phone-work ... > | <text:sender-street ... > | <text:sender-city ... > | <text:sender-postal-code ... > | <text:sender-country ... > | <text:sender-state-or-province ... > | <text:author-name ... > | <text:author-initials ... > | <text:chapter ... > | <text:file-name ... > | <text:template-name ... > | <text:sheet-name ... > | <text:variable-set ... > | <text:variable-get ... > | <text:variable-input ... > | <text:user-field-get ... > | <text:user-field-input ... > | <text:sequence ... > | <text:expression ... > | <text:text-input ... > | <text:initial-creator ... > | <text:creation-date ... > | <text:creation-time ... > | <text:description ... > | <text:user-defined ... > | <text:print-time ... > | <text:print-date ... > | <text:printed-by ... > | <text:title ... > | <text:subject ... > | <text:keywords ... > | <text:editing-cycles ... > | <text:editing-duration ... > | <text:modification-time ... > | <text:modification-date ... > | <text:creator ... > | <CHOICE_NAME_CLASS ... > | <text:database-display ... > | <text:database-next ... > | <text:database-row-select ... > | <text:database-row-number ... > | <text:database-name ... > | <text:page-variable-set ... > | <text:page-variable-get ... > | <text:placeholder ... > | <text:conditional-text ... > | <text:hidden-text ... > | <CHOICE_NAME_CLASS ... > | <text:note-ref ... > | <text:sequence-ref ... > | <text:script ... > | <text:execute-macro ... > | <text:hidden-paragraph ... > | <text:dde-connection ... > | <text:measure ... > | <text:table-formula ... > | <text:toc-mark-start ... > | <text:toc-mark-end ... > | <text:toc-mark ... > | <text:user-index-mark-start ... > | <text:user-index-mark-end ... > | <text:user-index-mark ... > | <text:alphabetical-index-mark-start ... > | <text:alphabetical-index-mark-end ... > | <text:alphabetical-index-mark ... > | <text:bibliography-mark ... > | <presentation:header ... > | <presentation:footer ... > | <presentation:date-time ... >)* >  +
@@ -10818,6 +14701,13 @@

text:alphabetical-index Element< <text:index-body>    + + Child Relations + <text:alphabetical-index (text:style-name="(<NCName>)?" )? + text:name="<string>" (text:protected="<boolean>" )? + (text:protection-key="<string>" )? + <text:alphabetical-index-source ... ><text:index-body ... >>  +
@@ -10849,6 +14739,11 @@

text:alphabetical   + + Child Relations + <text:alphabetical-index-auto-mark-file xlink:href="<anyURI>" (xlink:type="simple" )? + >  +
@@ -10877,6 +14772,10 @@

text:alphabetical <text:index-entry-text>*    + + Child Relations + <text:alphabetical-index-entry-template text:outline-level="1 | 2 | 3 | separator" text:style-name="(<NCName>)?" (<text:index-entry-chapter ... > | <text:index-entry-page-number ... > | <text:index-entry-text ... > | <text:index-entry-span ... > | <text:index-entry-tab-stop ... >)* >  +
@@ -10909,6 +14808,18 @@

text:alphabetical-index-mar   + + Child Relations + <text:alphabetical-index-mark text:string-value="<string>" + ( (text:key1="<string>" )? + (text:key2="<string>" )? + ) + ( (text:string-value-phonetic="<string>" )? + (text:key1-phonetic="<string>" )? + (text:key2-phonetic="<string>" )? + ) (text:main-entry="<boolean>" )? + >  +
@@ -10927,7 +14838,7 @@

text:alphabetical-index Attributes - text:id[1]  + text:id[2]    @@ -10935,6 +14846,10 @@

text:alphabetical-index   + + Child Relations + <text:alphabetical-index-mark-end text:id="<string>" >  +
@@ -10953,7 +14868,7 @@

text:alphabetical-ind Attributes - text:id[1]  + text:id[2]  text:key1  text:key1-phonetic  text:key2  @@ -10967,6 +14882,18 @@

text:alphabetical-ind   + + Child Relations + <text:alphabetical-index-mark-start text:id="<string>" + ( (text:key1="<string>" )? + (text:key2="<string>" )? + ) + ( (text:string-value-phonetic="<string>" )? + (text:key1-phonetic="<string>" )? + (text:key2-phonetic="<string>" )? + ) (text:main-entry="<boolean>" )? + >  +
@@ -11004,6 +14931,27 @@

text:alphabetical-index-s <text:index-title-template>    + + Child Relations + <text:alphabetical-index-source + ( (text:index-scope="document | chapter" )? + (text:relative-tab-stop-position="<boolean>" )? + ) (text:ignore-case="<boolean>" )? + (text:main-entry-style-name="(<NCName>)?" )? + (text:alphabetical-separators="<boolean>" )? + + ( (text:combine-entries="<boolean>" )? + (text:combine-entries-with-dash="<boolean>" )? + (text:combine-entries-with-pp="<boolean>" )? + ) (text:use-keys-as-entries="<boolean>" )? + (text:capitalize-entries="<boolean>" )? + (text:comma-separated="<boolean>" )? + (fo:language="token]" )? + (fo:country="token]" )? + (text:sort-algorithm="<string>" )? + (<text:index-title-template ... >)? + (<text:alphabetical-index-entry-template ... >)* >  +
@@ -11031,6 +14979,11 @@

text:author-initials Element   + + Child Relations + <text:author-initials (text:fixed="<boolean>" )? + TEXT>  +
@@ -11058,6 +15011,11 @@

text:author-name Element

  + + Child Relations + <text:author-name (text:fixed="<boolean>" )? + TEXT>  +
@@ -11097,6 +15055,13 @@

text:bibliography Element

<text:index-body>    + + Child Relations + <text:bibliography (text:style-name="(<NCName>)?" )? + text:name="<string>" (text:protected="<boolean>" )? + (text:protection-key="<string>" )? + <text:bibliography-source ... ><text:index-body ... >>  +
@@ -11126,6 +15091,19 @@

text:bibliography-config <text:sort-key>*    + + Child Relations + <text:bibliography-configuration + ( (text:prefix="<string>" )? + (text:suffix="<string>" )? + ) (text:numbered-entries="<boolean>" )? + + ( (text:sort-by-position="<boolean>" )? + (fo:language="token]" )? + (fo:country="token]" )? + (text:sort-algorithm="<string>" )? + )(<text:sort-key ... >)* >  +
@@ -11152,6 +15130,10 @@

text:bibliography-entry <text:index-entry-tab-stop>*    + + Child Relations + <text:bibliography-entry-template text:bibliography-type="article | book | booklet | conference | custom1 | custom2 | custom3 | custom4 | custom5 | email | inbook | incollection | inproceedings | journal | manual | mastersthesis | misc | phdthesis | proceedings | techreport | unpublished | www" text:style-name="(<NCName>)?" (<text:index-entry-span ... > | <text:index-entry-tab-stop ... > | <text:index-entry-bibliography ... >)* >  +
@@ -11210,6 +15192,10 @@

text:bibliography-mark Element   + + Child Relations + <text:bibliography-mark text:bibliography-type="article | book | booklet | conference | custom1 | custom2 | custom3 | custom4 | custom5 | email | inbook | incollection | inproceedings | journal | manual | mastersthesis | misc | phdthesis | proceedings | techreport | unpublished | www" (CHOICE_NAME_CLASS="<string>" )* TEXT>  +
@@ -11233,6 +15219,11 @@

text:bibliography-source Elemen <text:index-title-template>    + + Child Relations + <text:bibliography-source (<text:index-title-template ... >)? + (<text:bibliography-entry-template ... >)* >  +
@@ -11259,6 +15250,10 @@

text:bookmark Element

  + + Child Relations + <text:bookmark text:name="<string>" >  +
@@ -11285,6 +15280,10 @@

text:bookmark-end Element

  + + Child Relations + <text:bookmark-end text:name="<string>" >  +
@@ -11313,6 +15312,12 @@

text:bookmark-ref Element

  + + Child Relations + <CHOICE_NAME_CLASS TEXT (text:ref-name="<string>" )? + (text:reference-format="page | chapter | direction | text" )? + >  +
@@ -11339,6 +15344,10 @@

text:bookmark-start Element

  + + Child Relations + <text:bookmark-start text:name="<string>" >  +
@@ -11378,6 +15387,10 @@

text:change Element

  + + Child Relations + <text:change text:change-id="<IDREF>" >  +
@@ -11417,6 +15430,10 @@

text:change-end Element

  + + Child Relations + <text:change-end text:change-id="<IDREF>" >  +
@@ -11456,6 +15473,10 @@

text:change-start Element

  + + Child Relations + <text:change-start text:change-id="<IDREF>" >  +
@@ -11470,7 +15491,7 @@

text:changed-region Element

Attributes - text:id[2]  + text:id[1]    @@ -11481,6 +15502,10 @@

text:changed-region Element

<text:insertion>    + + Child Relations + <text:changed-region text:id="<ID>" <text:insertion ... > | <text:deletion ... > | <text:format-change ... >>  +
@@ -11500,7 +15525,7 @@

text:chapter Element

Attributes - text:display[2]  + text:display[3]  text:outline-level[2]    @@ -11509,6 +15534,10 @@

text:chapter Element

  + + Child Relations + <text:chapter text:display="name | number | number-and-name | plain-number-and-name | plain-number" text:outline-level="<nonNegativeInteger>" TEXT>  +
@@ -11538,6 +15567,14 @@

text:character-count Element   + + Child Relations + <CHOICE_NAME_CLASS ( (style:num-format="(1 | i | I | <string>)?" | + (style:num-format="a | A" (style:num-letter-sync="<boolean>" )? + ))? + )? + TEXT>  +
@@ -11568,6 +15605,11 @@

text:conditional-text Element<   + + Child Relations + <text:conditional-text text:condition="<string>" text:string-value-if-true="<string>" text:string-value-if-false="<string>" (text:current-value="<boolean>" )? + TEXT>  +
@@ -11597,6 +15639,13 @@

text:creation-date Element

  + + Child Relations + <text:creation-date (text:fixed="<boolean>" )? + (style:data-style-name="(<NCName>)?" )? + (text:date-value="<date> | <dateTime>" )? + TEXT>  +
@@ -11618,7 +15667,7 @@

text:creation-time Element

style:data-style-name  text:fixed  - text:time-value[2]  + text:time-value[1]    @@ -11626,6 +15675,13 @@

text:creation-time Element

  + + Child Relations + <text:creation-time (text:fixed="<boolean>" )? + (style:data-style-name="(<NCName>)?" )? + (text:time-value="<time> | <dateTime>" )? + TEXT>  +
@@ -11653,6 +15709,11 @@

text:creator Element

  + + Child Relations + <text:creator (text:fixed="<boolean>" )? + TEXT>  +
@@ -11685,6 +15746,13 @@

text:database-display Element< <form:connection-resource>    + + Child Relations + <text:database-display + (text:table-name="<string>" (text:table-type="table | query | command" )? + text:database-name="<string>" | EMPTY | <form:connection-resource ... >) (style:data-style-name="(<NCName>)?" )? + text:column-name="<string>" TEXT>  +
@@ -11715,6 +15783,12 @@

text:database-name Element

<form:connection-resource>    + + Child Relations + <text:database-name + (text:table-name="<string>" (text:table-type="table | query | command" )? + text:database-name="<string>" | EMPTY | <form:connection-resource ... >)TEXT>  +
@@ -11745,6 +15819,13 @@

text:database-next Element

<form:connection-resource>    + + Child Relations + <text:database-next + (text:table-name="<string>" (text:table-type="table | query | command" )? + text:database-name="<string>" | EMPTY | <form:connection-resource ... >) (text:condition="<string>" )? + >  +
@@ -11779,6 +15860,17 @@

text:database-row-number Elemen <form:connection-resource>    + + Child Relations + <text:database-row-number + (text:table-name="<string>" (text:table-type="table | query | command" )? + text:database-name="<string>" | EMPTY | <form:connection-resource ... >) ( (style:num-format="(1 | i | I | <string>)?" | + (style:num-format="a | A" (style:num-letter-sync="<boolean>" )? + ))? + )? + (text:value="<nonNegativeInteger>" )? + TEXT>  +
@@ -11810,6 +15902,14 @@

text:database-row-select Elemen <form:connection-resource>    + + Child Relations + <text:database-row-select + (text:table-name="<string>" (text:table-type="table | query | command" )? + text:database-name="<string>" | EMPTY | <form:connection-resource ... >) (text:condition="<string>" )? + (text:row-number="<nonNegativeInteger>" )? + >  +
@@ -11840,6 +15940,14 @@

text:date Element

  + + Child Relations + <text:date (text:fixed="<boolean>" )? + (style:data-style-name="(<NCName>)?" )? + (text:date-value="<date> | <dateTime>" )? + (text:date-adjust="<duration>" )? + TEXT>  +
@@ -11867,6 +15975,10 @@

text:dde-connection Element

  + + Child Relations + <text:dde-connection text:connection-name="<string>" TEXT>  +
@@ -11893,6 +16005,11 @@

text:dde-connection-decl Elemen   + + Child Relations + <text:dde-connection-decl office:name="<string>" office:dde-application="<string>" office:dde-topic="<string>" office:dde-item="<string>" (office:automatic-update="<boolean>" )? + >  +
@@ -11923,6 +16040,10 @@

text:dde-connection-decls Elem <text:dde-connection-decl>*    + + Child Relations + <text:dde-connection-decls (<text:dde-connection-decl ... >)* >  +
@@ -11980,6 +16101,10 @@

text:deletion Element

<text:user-index>*    + + Child Relations + <text:deletion <office:change-info ... >(<text:h ... > | <text:p ... > | <text:list ... > | <text:numbered-paragraph ... > | <table:table ... > | <draw:a ... > | <text:section ... > | <text:soft-page-break ... > | <text:table-of-content ... > | <text:illustration-index ... > | <text:table-index ... > | <text:object-index ... > | <text:user-index ... > | <text:alphabetical-index ... > | <text:bibliography ... > | <draw:rect ... > | <draw:line ... > | <draw:polyline ... > | <draw:polygon ... > | <draw:regular-polygon ... > | <draw:path ... > | <draw:circle ... > | <draw:ellipse ... > | <draw:g ... > | <draw:page-thumbnail ... > | <draw:frame ... > | <draw:measure ... > | <draw:caption ... > | <draw:connector ... > | <draw:control ... > | <dr3d:scene ... > | <draw:custom-shape ... > | <text:change ... > | <text:change-start ... > | <text:change-end ... >)* >  +
@@ -12007,6 +16132,11 @@

text:description Element

  + + Child Relations + <text:description (text:fixed="<boolean>" )? + TEXT>  +
@@ -12034,6 +16164,11 @@

text:editing-cycles Element

  + + Child Relations + <text:editing-cycles (text:fixed="<boolean>" )? + TEXT>  +
@@ -12063,6 +16198,13 @@

text:editing-duration Element<   + + Child Relations + <text:editing-duration (text:fixed="<boolean>" )? + (style:data-style-name="(<NCName>)?" )? + (text:duration="<duration>" )? + TEXT>  +
@@ -12091,6 +16233,12 @@

text:execute-macro Element

<office:event-listeners>    + + Child Relations + <text:execute-macro (text:name="<string>" )? + (<office:event-listeners ... >)? + TEXT>  +
@@ -12120,11 +16268,11 @@

text:expression Element

office:value-type[2]  office:value-type[3]  office:value-type[4]  + office:value-type[5]  office:value-type[6]  - office:value-type[7]  - office:value-type[9]  + office:value-type[8]  style:data-style-name  - text:display[1]  + text:display[9]  text:formula    @@ -12133,6 +16281,23 @@

text:expression Element

  + + Child Relations + <text:expression (text:formula="<string>" )? + ( + (office:value-type="float" office:value="<double>" ) | + (office:value-type="percentage" office:value="<double>" ) | + (office:value-type="currency" office:value="<double>" (office:currency="<string>" )? + ) | + (office:value-type="date" office:date-value="<date> | <dateTime>" ) | + (office:value-type="time" office:time-value="<duration>" ) | + (office:value-type="boolean" office:boolean-value="<boolean>" ) | + (office:value-type="string" (office:string-value="<string>" )? + ))? + (text:display="value | formula" )? + (style:data-style-name="(<NCName>)?" )? + TEXT>  +
@@ -12152,7 +16317,7 @@

text:file-name Element

Attributes - text:display[6]  + text:display[1]  text:fixed    @@ -12161,6 +16326,12 @@

text:file-name Element

  + + Child Relations + <text:file-name (text:display="full | path | name | name-and-extension" )? + (text:fixed="<boolean>" )? + TEXT>  +
@@ -12183,6 +16354,10 @@

text:format-change Element

<office:change-info>    + + Child Relations + <text:format-change <office:change-info ... >>  +
@@ -12215,7 +16390,7 @@

text:h Element

text:class-names  text:cond-style-name  - text:id[1]  + text:id[2]  text:is-list-header  text:outline-level[1]  text:restart-numbering  @@ -12354,6 +16529,21 @@

text:h Element

<text:word-count>*    + + Child Relations + <text:h text:outline-level="<positiveInteger>" (text:restart-numbering="<boolean>" )? + (text:start-value="<nonNegativeInteger>" )? + (text:is-list-header="<boolean>" )? + + ( (text:style-name="(<NCName>)?" )? + (text:class-names=" +START_list(<NCName>)* +END_list" )? + (text:cond-style-name="(<NCName>)?" )? + ) (text:id="<string>" )? + (<text:number ... >)? + (TEXT | <text:s ... > | <text:tab ... > | <text:line-break ... > | <text:soft-page-break ... > | <text:span ... > | <text:a ... > | <text:bookmark ... > | <text:bookmark-start ... > | <text:bookmark-end ... > | <text:reference-mark ... > | <text:reference-mark-start ... > | <text:reference-mark-end ... > | <text:note ... > | <text:ruby ... > | <office:annotation ... > | <text:change ... > | <text:change-start ... > | <text:change-end ... > | <draw:rect ... > | <draw:line ... > | <draw:polyline ... > | <draw:polygon ... > | <draw:regular-polygon ... > | <draw:path ... > | <draw:circle ... > | <draw:ellipse ... > | <draw:g ... > | <draw:page-thumbnail ... > | <draw:frame ... > | <draw:measure ... > | <draw:caption ... > | <draw:connector ... > | <draw:control ... > | <dr3d:scene ... > | <draw:custom-shape ... > | <draw:a ... > | <text:date ... > | <text:time ... > | <text:page-number ... > | <text:page-continuation ... > | <text:sender-firstname ... > | <text:sender-lastname ... > | <text:sender-initials ... > | <text:sender-title ... > | <text:sender-position ... > | <text:sender-email ... > | <text:sender-phone-private ... > | <text:sender-fax ... > | <text:sender-company ... > | <text:sender-phone-work ... > | <text:sender-street ... > | <text:sender-city ... > | <text:sender-postal-code ... > | <text:sender-country ... > | <text:sender-state-or-province ... > | <text:author-name ... > | <text:author-initials ... > | <text:chapter ... > | <text:file-name ... > | <text:template-name ... > | <text:sheet-name ... > | <text:variable-set ... > | <text:variable-get ... > | <text:variable-input ... > | <text:user-field-get ... > | <text:user-field-input ... > | <text:sequence ... > | <text:expression ... > | <text:text-input ... > | <text:initial-creator ... > | <text:creation-date ... > | <text:creation-time ... > | <text:description ... > | <text:user-defined ... > | <text:print-time ... > | <text:print-date ... > | <text:printed-by ... > | <text:title ... > | <text:subject ... > | <text:keywords ... > | <text:editing-cycles ... > | <text:editing-duration ... > | <text:modification-time ... > | <text:modification-date ... > | <text:creator ... > | <CHOICE_NAME_CLASS ... > | <text:database-display ... > | <text:database-next ... > | <text:database-row-select ... > | <text:database-row-number ... > | <text:database-name ... > | <text:page-variable-set ... > | <text:page-variable-get ... > | <text:placeholder ... > | <text:conditional-text ... > | <text:hidden-text ... > | <CHOICE_NAME_CLASS ... > | <text:note-ref ... > | <text:sequence-ref ... > | <text:script ... > | <text:execute-macro ... > | <text:hidden-paragraph ... > | <text:dde-connection ... > | <text:measure ... > | <text:table-formula ... > | <text:toc-mark-start ... > | <text:toc-mark-end ... > | <text:toc-mark ... > | <text:user-index-mark-start ... > | <text:user-index-mark-end ... > | <text:user-index-mark ... > | <text:alphabetical-index-mark-start ... > | <text:alphabetical-index-mark-end ... > | <text:alphabetical-index-mark ... > | <text:bibliography-mark ... > | <presentation:header ... > | <presentation:footer ... > | <presentation:date-time ... >)* >  +
@@ -12382,6 +16572,11 @@

text:hidden-paragraph Element<   + + Child Relations + <text:hidden-paragraph text:condition="<string>" (text:is-hidden="<boolean>" )? + TEXT>  +
@@ -12411,6 +16606,11 @@

text:hidden-text Element

  + + Child Relations + <text:hidden-text text:condition="<string>" text:string-value="<string>" (text:is-hidden="<boolean>" )? + TEXT>  +
@@ -12450,6 +16650,13 @@

text:illustration-index Element< <text:index-body>    + + Child Relations + <text:illustration-index (text:style-name="(<NCName>)?" )? + text:name="<string>" (text:protected="<boolean>" )? + (text:protection-key="<string>" )? + <text:illustration-index-source ... ><text:index-body ... >>  +
@@ -12476,6 +16683,11 @@

text:illustration <text:index-entry-text>*    + + Child Relations + <text:illustration-index-entry-template + (text:style-name="(<NCName>)?" (<text:index-entry-page-number ... > | <text:index-entry-text ... > | <text:index-entry-span ... > | <text:index-entry-tab-stop ... >)* )>  +
@@ -12504,6 +16716,17 @@

text:illustration-index-s <text:index-title-template>    + + Child Relations + <text:illustration-index-source (text:index-scope="document | chapter" )? + (text:relative-tab-stop-position="<boolean>" )? + (text:use-caption="<boolean>" )? + (text:caption-sequence-name="<string>" )? + (text:caption-sequence-format="text | category-and-value | caption" )? + (<text:index-title-template ... >)? + (<text:illustration-index-entry-template ... >)? + >  +
@@ -12533,6 +16756,14 @@

text:image-count Element

  + + Child Relations + <CHOICE_NAME_CLASS ( (style:num-format="(1 | i | I | <string>)?" | + (style:num-format="a | A" (style:num-letter-sync="<boolean>" )? + ))? + )? + TEXT>  +
@@ -12596,6 +16827,10 @@

text:index-body Element

<text:user-index>*    + + Child Relations + <text:index-body (<text:h ... > | <text:p ... > | <text:list ... > | <text:numbered-paragraph ... > | <table:table ... > | <draw:a ... > | <text:section ... > | <text:soft-page-break ... > | <text:table-of-content ... > | <text:illustration-index ... > | <text:table-index ... > | <text:object-index ... > | <text:user-index ... > | <text:alphabetical-index ... > | <text:bibliography ... > | <draw:rect ... > | <draw:line ... > | <draw:polyline ... > | <draw:polygon ... > | <draw:regular-polygon ... > | <draw:path ... > | <draw:circle ... > | <draw:ellipse ... > | <draw:g ... > | <draw:page-thumbnail ... > | <draw:frame ... > | <draw:measure ... > | <draw:caption ... > | <draw:connector ... > | <draw:control ... > | <dr3d:scene ... > | <draw:custom-shape ... > | <text:change ... > | <text:change-start ... > | <text:change-end ... > | <text:index-title ... >)* >  +
@@ -12619,6 +16854,11 @@

text:index-entry-bibliogra   + + Child Relations + <text:index-entry-bibliography (text:style-name="(<NCName>)?" )? + text:bibliography-data-field="address | annote | author | bibliography-type | booktitle | chapter | custom1 | custom2 | custom3 | custom4 | custom5 | edition | editor | howpublished | identifier | institution | isbn | issn | journal | month | note | number | organizations | pages | publisher | report-type | school | series | title | url | volume | year" >  +
@@ -12635,7 +16875,7 @@

text:index-entry-chapter Elemen Attributes - text:display[9]  + text:display[8]  text:style-name    @@ -12644,6 +16884,12 @@

text:index-entry-chapter Elemen   + + Child Relations + <text:index-entry-chapter (text:style-name="(<NCName>)?" )? + (text:display="name | number | number-and-name" )? + >  +
@@ -12666,6 +16912,11 @@

text:index-entry-link-end Elem   + + Child Relations + <text:index-entry-link-end (text:style-name="(<NCName>)?" )? + >  +
@@ -12688,6 +16939,11 @@

text:index-entry-link-start   + + Child Relations + <text:index-entry-link-start (text:style-name="(<NCName>)?" )? + >  +
@@ -12715,6 +16971,11 @@

text:index-entry-page-numbe   + + Child Relations + <text:index-entry-page-number (text:style-name="(<NCName>)?" )? + >  +
@@ -12744,6 +17005,11 @@

text:index-entry-span Element<   + + Child Relations + <text:index-entry-span (text:style-name="(<NCName>)?" )? + TEXT>  +
@@ -12776,6 +17042,13 @@

text:index-entry-tab-stop Elem   + + Child Relations + <text:index-entry-tab-stop (text:style-name="(<NCName>)?" )? + (style:leader-char="string]" )? + style:type="right" | + (style:type="left" style:position="string]" )>  +
@@ -12803,6 +17076,11 @@

text:index-entry-text Element<   + + Child Relations + <text:index-entry-text (text:style-name="(<NCName>)?" )? + >  +
@@ -12825,6 +17103,10 @@

text:index-source-style Element<   + + Child Relations + <text:index-source-style text:style-name="<NCName>" >  +
@@ -12849,6 +17131,10 @@

text:index-source-styles Elemen <text:index-source-style>*    + + Child Relations + <text:index-source-styles text:outline-level="<positiveInteger>" (<text:index-source-style ... >)* >  +
@@ -12915,6 +17201,13 @@

text:index-title Element

<text:user-index>*    + + Child Relations + <text:index-title (text:style-name="(<NCName>)?" )? + text:name="<string>" (text:protected="<boolean>" )? + (text:protection-key="<string>" )? + (<text:h ... > | <text:p ... > | <text:list ... > | <text:numbered-paragraph ... > | <table:table ... > | <draw:a ... > | <text:section ... > | <text:soft-page-break ... > | <text:table-of-content ... > | <text:illustration-index ... > | <text:table-index ... > | <text:object-index ... > | <text:user-index ... > | <text:alphabetical-index ... > | <text:bibliography ... > | <draw:rect ... > | <draw:line ... > | <draw:polyline ... > | <draw:polygon ... > | <draw:regular-polygon ... > | <draw:path ... > | <draw:circle ... > | <draw:ellipse ... > | <draw:g ... > | <draw:page-thumbnail ... > | <draw:frame ... > | <draw:measure ... > | <draw:caption ... > | <draw:connector ... > | <draw:control ... > | <dr3d:scene ... > | <draw:custom-shape ... > | <text:change ... > | <text:change-start ... > | <text:change-end ... > | <text:index-title ... >)* >  +
@@ -12944,6 +17237,11 @@

text:index-title-template Elem   + + Child Relations + <text:index-title-template (text:style-name="(<NCName>)?" )? + TEXT>  +
@@ -12971,6 +17269,11 @@

text:initial-creator Element   + + Child Relations + <text:initial-creator (text:fixed="<boolean>" )? + TEXT>  +
@@ -12993,6 +17296,10 @@

text:insertion Element

<office:change-info>    + + Child Relations + <text:insertion <office:change-info ... >>  +
@@ -13020,6 +17327,11 @@

text:keywords Element

  + + Child Relations + <text:keywords (text:fixed="<boolean>" )? + TEXT>  +
@@ -13045,6 +17357,10 @@

text:line-break Element

  + + Child Relations + <text:line-break EMPTY>  +
@@ -13078,6 +17394,23 @@

text:linenumbering-conf <text:linenumbering-separator>    + + Child Relations + <text:linenumbering-configuration (text:number-lines="<boolean>" )? + ( (style:num-format="(1 | i | I | <string>)?" | + (style:num-format="a | A" (style:num-letter-sync="<boolean>" )? + ))? + )? + (text:style-name="(<NCName>)?" )? + (text:increment="<nonNegativeInteger>" )? + (text:number-position="left | right | inner | outer" )? + (text:offset="string]" )? + (text:count-empty-lines="<boolean>" )? + (text:count-in-text-boxes="<boolean>" )? + (text:restart-on-page="<boolean>" )? + (<text:linenumbering-separator ... >)? + >  +
@@ -13101,6 +17434,11 @@

text:linenumbering-separato   + + Child Relations + <text:linenumbering-separator (text:increment="<nonNegativeInteger>" )? + TEXT>  +
@@ -13154,6 +17492,13 @@

text:list Element

<text:list-item>*    + + Child Relations + <text:list (text:style-name="(<NCName>)?" )? + (text:continue-numbering="<boolean>" )? + (<text:list-header ... >)? + (<text:list-item ... >)* >  +
@@ -13180,6 +17525,12 @@

text:list-header Element

<text:soft-page-break>*    + + Child Relations + <text:list-header + ( (<text:number ... >)? + (<text:p ... > | <text:h ... > | <text:list ... > | <text:soft-page-break ... >)* )>  +
@@ -13207,6 +17558,13 @@

text:list-item Element

<text:soft-page-break>*    + + Child Relations + <text:list-item (text:start-value="<nonNegativeInteger>" )? + + ( (<text:number ... >)? + (<text:p ... > | <text:h ... > | <text:list ... > | <text:soft-page-break ... >)* )>  +
@@ -13236,6 +17594,17 @@

text:list-level-style-bulle <style:text-properties>    + + Child Relations + <text:list-level-style-bullet text:level="<positiveInteger>" (text:style-name="(<NCName>)?" )? + text:bullet-char="string]" + ( (style:num-prefix="<string>" )? + (style:num-suffix="<string>" )? + ) (text:bullet-relative-size="string]" )? + (<style:list-level-properties ... >)? + (<style:text-properties ... >)? + >  +
@@ -13264,6 +17633,15 @@

text:list-level-style-image <style:list-level-properties>    + + Child Relations + <text:list-level-style-image text:level="<positiveInteger>" + (xlink:href="<anyURI>" (xlink:type="simple" )? + (xlink:show="embed" )? + (xlink:actuate="onLoad" )? + ) | <office:binary-data ... > (<style:list-level-properties ... >)? + >  +
@@ -13296,6 +17674,22 @@

text:list-level-style-numbe <style:text-properties>    + + Child Relations + <text:list-level-style-number text:level="<positiveInteger>" (text:style-name="(<NCName>)?" )? + + ( (style:num-format="(1 | i | I | <string>)?" | + (style:num-format="a | A" (style:num-letter-sync="<boolean>" )? + ))? + + ( (style:num-prefix="<string>" )? + (style:num-suffix="<string>" )? + )) (text:display-levels="<positiveInteger>" )? + (text:start-value="<positiveInteger>" )? + (<style:list-level-properties ... >)? + (<style:text-properties ... >)? + >  +
@@ -13324,6 +17718,12 @@

text:list-style Element

<text:list-level-style-number>*    + + Child Relations + <text:list-style style:name="<NCName>" (style:display-name="<string>" )? + (text:consecutive-numbering="<boolean>" )? + (<text:list-level-style-number ... > | <text:list-level-style-bullet ... > | <text:list-level-style-image ... >)* >  +
@@ -13351,6 +17751,10 @@

text:measure Element

  + + Child Relations + <text:measure text:kind="value | unit | gap" TEXT>  +
@@ -13380,6 +17784,13 @@

text:modification-date Element   + + Child Relations + <text:modification-date (text:fixed="<boolean>" )? + (style:data-style-name="(<NCName>)?" )? + (text:date-value="<date>" )? + TEXT>  +
@@ -13401,7 +17812,7 @@

text:modification-time Element style:data-style-name  text:fixed  - text:time-value[1]  + text:time-value[2]    @@ -13409,6 +17820,13 @@

text:modification-time Element   + + Child Relations + <text:modification-time (text:fixed="<boolean>" )? + (style:data-style-name="(<NCName>)?" )? + (text:time-value="<time>" )? + TEXT>  +
@@ -13427,7 +17845,7 @@

text:note Element

Attributes - text:id[1]  + text:id[2]  text:note-class    @@ -13438,6 +17856,11 @@

text:note Element

<text:note-citation>    + + Child Relations + <text:note text:note-class="footnote | endnote" (text:id="<string>" )? + <text:note-citation ... ><text:note-body ... >>  +
@@ -13494,6 +17917,10 @@

text:note-body Element

<text:user-index>*    + + Child Relations + <text:note-body (<text:h ... > | <text:p ... > | <text:list ... > | <text:numbered-paragraph ... > | <table:table ... > | <draw:a ... > | <text:section ... > | <text:soft-page-break ... > | <text:table-of-content ... > | <text:illustration-index ... > | <text:table-index ... > | <text:object-index ... > | <text:user-index ... > | <text:alphabetical-index ... > | <text:bibliography ... > | <draw:rect ... > | <draw:line ... > | <draw:polyline ... > | <draw:polygon ... > | <draw:regular-polygon ... > | <draw:path ... > | <draw:circle ... > | <draw:ellipse ... > | <draw:g ... > | <draw:page-thumbnail ... > | <draw:frame ... > | <draw:measure ... > | <draw:caption ... > | <draw:connector ... > | <draw:control ... > | <dr3d:scene ... > | <draw:custom-shape ... > | <text:change ... > | <text:change-start ... > | <text:change-end ... >)* >  +
@@ -13517,6 +17944,11 @@

text:note-citation Element

  + + Child Relations + <text:note-citation (text:label="<string>" )? + TEXT>  +
@@ -13539,6 +17971,10 @@

text:note-continu   + + Child Relations + <text:note-continuation-notice-backward TEXT>  +
@@ -13561,6 +17997,10 @@

text:note-continua   + + Child Relations + <text:note-continuation-notice-forward TEXT>  +
@@ -13590,6 +18030,12 @@

text:note-ref Element

  + + Child Relations + <text:note-ref TEXT (text:ref-name="<string>" )? + text:note-class="footnote | endnote" (text:reference-format="page | chapter | direction | text" )? + >  +
@@ -13626,6 +18072,27 @@

text:notes-configuration Elemen <text:note-continuation-notice-forward>    + + Child Relations + <text:notes-configuration text:note-class="footnote | endnote" (text:citation-style-name="(<NCName>)?" )? + (text:citation-body-style-name="(<NCName>)?" )? + (text:default-style-name="(<NCName>)?" )? + (text:master-page-name="(<NCName>)?" )? + (text:start-value="<nonNegativeInteger>" )? + + ( + ( (style:num-prefix="<string>" )? + (style:num-suffix="<string>" )? + ) ( (style:num-format="(1 | i | I | <string>)?" | + (style:num-format="a | A" (style:num-letter-sync="<boolean>" )? + ))? + )? + ) (text:start-numbering-at="document | chapter | page" )? + (text:footnotes-position="text | page | section | document" )? + (<text:note-continuation-notice-forward ... >)? + (<text:note-continuation-notice-backward ... >)? + >  +
@@ -13650,6 +18117,10 @@

text:number Element

  + + Child Relations + <text:number <string>>  +
@@ -13686,6 +18157,15 @@

text:numbered-paragraph Element< <text:p>    + + Child Relations + <text:numbered-paragraph (text:level="<positiveInteger>" )? + (text:style-name="(<NCName>)?" )? + (text:continue-numbering="<boolean>" )? + (text:start-value="<nonNegativeInteger>" )? + (<text:number ... >)? + <text:p ... > | <text:h ... >>  +
@@ -13715,6 +18195,14 @@

text:object-count Element

  + + Child Relations + <CHOICE_NAME_CLASS ( (style:num-format="(1 | i | I | <string>)?" | + (style:num-format="a | A" (style:num-letter-sync="<boolean>" )? + ))? + )? + TEXT>  +
@@ -13754,6 +18242,13 @@

text:object-index Element

<text:object-index-source>    + + Child Relations + <text:object-index (text:style-name="(<NCName>)?" )? + text:name="<string>" (text:protected="<boolean>" )? + (text:protection-key="<string>" )? + <text:object-index-source ... ><text:index-body ... >>  +
@@ -13780,6 +18275,11 @@

text:object-index-entry <text:index-entry-text>*    + + Child Relations + <text:object-index-entry-template + (text:style-name="(<NCName>)?" (<text:index-entry-page-number ... > | <text:index-entry-text ... > | <text:index-entry-span ... > | <text:index-entry-tab-stop ... >)* )>  +
@@ -13810,6 +18310,19 @@

text:object-index-source Elemen <text:object-index-entry-template>    + + Child Relations + <text:object-index-source (text:index-scope="document | chapter" )? + (text:relative-tab-stop-position="<boolean>" )? + (text:use-spreadsheet-objects="<boolean>" )? + (text:use-math-objects="<boolean>" )? + (text:use-draw-objects="<boolean>" )? + (text:use-chart-objects="<boolean>" )? + (text:use-other-objects="<boolean>" )? + (<text:index-title-template ... >)? + (<text:object-index-entry-template ... >)? + >  +
@@ -13842,6 +18355,22 @@

text:outline-level-style Elemen <style:text-properties>    + + Child Relations + <text:outline-level-style text:level="<positiveInteger>" (text:style-name="(<NCName>)?" )? + + ( (style:num-format="(1 | i | I | <string>)?" | + (style:num-format="a | A" (style:num-letter-sync="<boolean>" )? + ))? + + ( (style:num-prefix="<string>" )? + (style:num-suffix="<string>" )? + )) (text:display-levels="<positiveInteger>" )? + (text:start-value="<positiveInteger>" )? + (<style:list-level-properties ... >)? + (<style:text-properties ... >)? + >  +
@@ -13864,6 +18393,10 @@

text:outline-style Element

<text:outline-level-style>*    + + Child Relations + <text:outline-style (<text:outline-level-style ... >)+ >  +
@@ -13921,7 +18454,7 @@

text:p Element

text:class-names  text:cond-style-name  - text:id[1]  + text:id[2]  text:style-name    @@ -14055,6 +18588,17 @@

text:p Element

<text:word-count>*    + + Child Relations + <text:p + ( (text:style-name="(<NCName>)?" )? + (text:class-names=" +START_list(<NCName>)* +END_list" )? + (text:cond-style-name="(<NCName>)?" )? + ) (text:id="<string>" )? + (TEXT | <text:s ... > | <text:tab ... > | <text:line-break ... > | <text:soft-page-break ... > | <text:span ... > | <text:a ... > | <text:bookmark ... > | <text:bookmark-start ... > | <text:bookmark-end ... > | <text:reference-mark ... > | <text:reference-mark-start ... > | <text:reference-mark-end ... > | <text:note ... > | <text:ruby ... > | <office:annotation ... > | <text:change ... > | <text:change-start ... > | <text:change-end ... > | <draw:rect ... > | <draw:line ... > | <draw:polyline ... > | <draw:polygon ... > | <draw:regular-polygon ... > | <draw:path ... > | <draw:circle ... > | <draw:ellipse ... > | <draw:g ... > | <draw:page-thumbnail ... > | <draw:frame ... > | <draw:measure ... > | <draw:caption ... > | <draw:connector ... > | <draw:control ... > | <dr3d:scene ... > | <draw:custom-shape ... > | <draw:a ... > | <text:date ... > | <text:time ... > | <text:page-number ... > | <text:page-continuation ... > | <text:sender-firstname ... > | <text:sender-lastname ... > | <text:sender-initials ... > | <text:sender-title ... > | <text:sender-position ... > | <text:sender-email ... > | <text:sender-phone-private ... > | <text:sender-fax ... > | <text:sender-company ... > | <text:sender-phone-work ... > | <text:sender-street ... > | <text:sender-city ... > | <text:sender-postal-code ... > | <text:sender-country ... > | <text:sender-state-or-province ... > | <text:author-name ... > | <text:author-initials ... > | <text:chapter ... > | <text:file-name ... > | <text:template-name ... > | <text:sheet-name ... > | <text:variable-set ... > | <text:variable-get ... > | <text:variable-input ... > | <text:user-field-get ... > | <text:user-field-input ... > | <text:sequence ... > | <text:expression ... > | <text:text-input ... > | <text:initial-creator ... > | <text:creation-date ... > | <text:creation-time ... > | <text:description ... > | <text:user-defined ... > | <text:print-time ... > | <text:print-date ... > | <text:printed-by ... > | <text:title ... > | <text:subject ... > | <text:keywords ... > | <text:editing-cycles ... > | <text:editing-duration ... > | <text:modification-time ... > | <text:modification-date ... > | <text:creator ... > | <CHOICE_NAME_CLASS ... > | <text:database-display ... > | <text:database-next ... > | <text:database-row-select ... > | <text:database-row-number ... > | <text:database-name ... > | <text:page-variable-set ... > | <text:page-variable-get ... > | <text:placeholder ... > | <text:conditional-text ... > | <text:hidden-text ... > | <CHOICE_NAME_CLASS ... > | <text:note-ref ... > | <text:sequence-ref ... > | <text:script ... > | <text:execute-macro ... > | <text:hidden-paragraph ... > | <text:dde-connection ... > | <text:measure ... > | <text:table-formula ... > | <text:toc-mark-start ... > | <text:toc-mark-end ... > | <text:toc-mark ... > | <text:user-index-mark-start ... > | <text:user-index-mark-end ... > | <text:user-index-mark ... > | <text:alphabetical-index-mark-start ... > | <text:alphabetical-index-mark-end ... > | <text:alphabetical-index-mark ... > | <text:bibliography-mark ... > | <presentation:header ... > | <presentation:footer ... > | <presentation:date-time ... >)* >  +
@@ -14077,6 +18621,10 @@

text:page Element

  + + Child Relations + <text:page text:master-page-name="(<NCName>)?" >  +
@@ -14096,7 +18644,7 @@

text:page-continuation Element Attributes - text:select-page[1]  + text:select-page[2]  text:string-value    @@ -14105,6 +18653,11 @@

text:page-continuation Element   + + Child Relations + <text:page-continuation text:select-page="previous | next" (text:string-value="<string>" )? + TEXT>  +
@@ -14134,6 +18687,14 @@

text:page-count Element

  + + Child Relations + <CHOICE_NAME_CLASS ( (style:num-format="(1 | i | I | <string>)?" | + (style:num-format="a | A" (style:num-letter-sync="<boolean>" )? + ))? + )? + TEXT>  +
@@ -14158,7 +18719,7 @@

text:page-number Element

style:num-letter-sync  text:fixed  text:page-adjust  - text:select-page[2]  + text:select-page[1]    @@ -14166,6 +18727,17 @@

text:page-number Element

  + + Child Relations + <text:page-number ( (style:num-format="(1 | i | I | <string>)?" | + (style:num-format="a | A" (style:num-letter-sync="<boolean>" )? + ))? + )? + (text:fixed="<boolean>" )? + (text:page-adjust="<integer>" )? + (text:select-page="previous | current | next" )? + TEXT>  +
@@ -14188,6 +18760,10 @@

text:page-sequence Element

<text:page>*    + + Child Relations + <text:page-sequence (<text:page ... >)+ >  +
@@ -14217,6 +18793,14 @@

text:page-variable-get Element   + + Child Relations + <text:page-variable-get ( (style:num-format="(1 | i | I | <string>)?" | + (style:num-format="a | A" (style:num-letter-sync="<boolean>" )? + ))? + )? + TEXT>  +
@@ -14245,6 +18829,12 @@

text:page-variable-set Element   + + Child Relations + <text:page-variable-set (text:active="<boolean>" )? + (text:page-adjust="<integer>" )? + TEXT>  +
@@ -14274,6 +18864,14 @@

text:paragraph-count Element   + + Child Relations + <CHOICE_NAME_CLASS ( (style:num-format="(1 | i | I | <string>)?" | + (style:num-format="a | A" (style:num-letter-sync="<boolean>" )? + ))? + )? + TEXT>  +
@@ -14302,6 +18900,11 @@

text:placeholder Element

  + + Child Relations + <text:placeholder text:placeholder-type="text | table | text-box | image | object" (text:description="TEXT" )? + TEXT>  +
@@ -14331,6 +18934,13 @@

text:print-date Element

  + + Child Relations + <text:print-date (text:fixed="<boolean>" )? + (style:data-style-name="(<NCName>)?" )? + (text:date-value="<date>" )? + TEXT>  +
@@ -14352,7 +18962,7 @@

text:print-time Element

style:data-style-name  text:fixed  - text:time-value[1]  + text:time-value[2]    @@ -14360,6 +18970,13 @@

text:print-time Element

  + + Child Relations + <text:print-time (text:fixed="<boolean>" )? + (style:data-style-name="(<NCName>)?" )? + (text:time-value="<time>" )? + TEXT>  +
@@ -14387,6 +19004,11 @@

text:printed-by Element

  + + Child Relations + <text:printed-by (text:fixed="<boolean>" )? + TEXT>  +
@@ -14413,6 +19035,10 @@

text:reference-mark Element

  + + Child Relations + <text:reference-mark text:name="<string>" >  +
@@ -14439,6 +19065,10 @@

text:reference-mark-end Element<   + + Child Relations + <text:reference-mark-end text:name="<string>" >  +
@@ -14465,6 +19095,10 @@

text:reference-mark-start Elem   + + Child Relations + <text:reference-mark-start text:name="<string>" >  +
@@ -14493,6 +19127,12 @@

text:reference-ref Element

  + + Child Relations + <CHOICE_NAME_CLASS TEXT (text:ref-name="<string>" )? + (text:reference-format="page | chapter | direction | text" )? + >  +
@@ -14521,6 +19161,11 @@

text:ruby Element

<text:ruby-text>    + + Child Relations + <text:ruby (text:style-name="(<NCName>)?" )? + <text:ruby-base ... ><text:ruby-text ... >>  +
@@ -14668,6 +19313,10 @@

text:ruby-base Element

<text:word-count>    + + Child Relations + <text:ruby-base TEXT | <text:s ... > | <text:tab ... > | <text:line-break ... > | <text:soft-page-break ... > | <text:span ... > | <text:a ... > | <text:bookmark ... > | <text:bookmark-start ... > | <text:bookmark-end ... > | <text:reference-mark ... > | <text:reference-mark-start ... > | <text:reference-mark-end ... > | <text:note ... > | <text:ruby ... > | <office:annotation ... > | <text:change ... > | <text:change-start ... > | <text:change-end ... > | <draw:rect ... > | <draw:line ... > | <draw:polyline ... > | <draw:polygon ... > | <draw:regular-polygon ... > | <draw:path ... > | <draw:circle ... > | <draw:ellipse ... > | <draw:g ... > | <draw:page-thumbnail ... > | <draw:frame ... > | <draw:measure ... > | <draw:caption ... > | <draw:connector ... > | <draw:control ... > | <dr3d:scene ... > | <draw:custom-shape ... > | <draw:a ... > | <text:date ... > | <text:time ... > | <text:page-number ... > | <text:page-continuation ... > | <text:sender-firstname ... > | <text:sender-lastname ... > | <text:sender-initials ... > | <text:sender-title ... > | <text:sender-position ... > | <text:sender-email ... > | <text:sender-phone-private ... > | <text:sender-fax ... > | <text:sender-company ... > | <text:sender-phone-work ... > | <text:sender-street ... > | <text:sender-city ... > | <text:sender-postal-code ... > | <text:sender-country ... > | <text:sender-state-or-province ... > | <text:author-name ... > | <text:author-initials ... > | <text:chapter ... > | <text:file-name ... > | <text:template-name ... > | <text:sheet-name ... > | <text:variable-set ... > | <text:variable-get ... > | <text:variable-input ... > | <text:user-field-get ... > | <text:user-field-input ... > | <text:sequence ... > | <text:expression ... > | <text:text-input ... > | <text:initial-creator ... > | <text:creation-date ... > | <text:creation-time ... > | <text:description ... > | <text:user-defined ... > | <text:print-time ... > | <text:print-date ... > | <text:printed-by ... > | <text:title ... > | <text:subject ... > | <text:keywords ... > | <text:editing-cycles ... > | <text:editing-duration ... > | <text:modification-time ... > | <text:modification-date ... > | <text:creator ... > | <CHOICE_NAME_CLASS ... > | <text:database-display ... > | <text:database-next ... > | <text:database-row-select ... > | <text:database-row-number ... > | <text:database-name ... > | <text:page-variable-set ... > | <text:page-variable-get ... > | <text:placeholder ... > | <text:conditional-text ... > | <text:hidden-text ... > | <CHOICE_NAME_CLASS ... > | <text:note-ref ... > | <text:sequence-ref ... > | <text:script ... > | <text:execute-macro ... > | <text:hidden-paragraph ... > | <text:dde-connection ... > | <text:measure ... > | <text:table-formula ... > | <text:toc-mark-start ... > | <text:toc-mark-end ... > | <text:toc-mark ... > | <text:user-index-mark-start ... > | <text:user-index-mark-end ... > | <text:user-index-mark ... > | <text:alphabetical-index-mark-start ... > | <text:alphabetical-index-mark-end ... > | <text:alphabetical-index-mark ... > | <text:bibliography-mark ... > | <presentation:header ... > | <presentation:footer ... > | <presentation:date-time ... >>  +
@@ -14691,6 +19340,11 @@

text:ruby-text Element

  + + Child Relations + <text:ruby-text (text:style-name="(<NCName>)?" )? + TEXT>  +
@@ -14717,6 +19371,11 @@

text:s Element

  + + Child Relations + <text:s (text:c="<nonNegativeInteger>" )? + >  +
@@ -14746,6 +19405,13 @@

text:script Element

  + + Child Relations + <text:script + (xlink:href="<anyURI>" (xlink:type="simple" )? + ) | TEXT (script:language="<string>" )? + >  +
@@ -14773,8 +19439,8 @@

text:section Element

Attributes text:condition  - text:display[4]  - text:display[8]  + text:display[5]  + text:display[7]  text:name  text:protected  text:protection-key  @@ -14823,6 +19489,16 @@

text:section Element

<text:user-index>*    + + Child Relations + <text:section (text:style-name="(<NCName>)?" )? + text:name="<string>" (text:protected="<boolean>" )? + (text:protection-key="<string>" )? + (text:display="true | none" | + (text:display="condition" text:condition="<string>" ))? + (<text:section-source ... > | <office:dde-source ... >)? + (<text:h ... > | <text:p ... > | <text:list ... > | <text:numbered-paragraph ... > | <table:table ... > | <draw:a ... > | <text:section ... > | <text:soft-page-break ... > | <text:table-of-content ... > | <text:illustration-index ... > | <text:table-index ... > | <text:object-index ... > | <text:user-index ... > | <text:alphabetical-index ... > | <text:bibliography ... > | <draw:rect ... > | <draw:line ... > | <draw:polyline ... > | <draw:polygon ... > | <draw:regular-polygon ... > | <draw:path ... > | <draw:circle ... > | <draw:ellipse ... > | <draw:g ... > | <draw:page-thumbnail ... > | <draw:frame ... > | <draw:measure ... > | <draw:caption ... > | <draw:connector ... > | <draw:control ... > | <dr3d:scene ... > | <draw:custom-shape ... > | <text:change ... > | <text:change-start ... > | <text:change-end ... >)* >  +
@@ -14849,6 +19525,15 @@

text:section-source Element

  + + Child Relations + <text:section-source (xlink:href="<anyURI>" (xlink:type="simple" )? + (xlink:show="embed" )? + )? + (text:section-name="<string>" )? + (text:filter-name="<string>" )? + >  +
@@ -14876,6 +19561,11 @@

text:sender-city Element

  + + Child Relations + <text:sender-city (text:fixed="<boolean>" )? + TEXT>  +
@@ -14903,6 +19593,11 @@

text:sender-company Element

  + + Child Relations + <text:sender-company (text:fixed="<boolean>" )? + TEXT>  +
@@ -14930,6 +19625,11 @@

text:sender-country Element

  + + Child Relations + <text:sender-country (text:fixed="<boolean>" )? + TEXT>  +
@@ -14957,6 +19657,11 @@

text:sender-email Element

  + + Child Relations + <text:sender-email (text:fixed="<boolean>" )? + TEXT>  +
@@ -14984,6 +19689,11 @@

text:sender-fax Element

  + + Child Relations + <text:sender-fax (text:fixed="<boolean>" )? + TEXT>  +
@@ -15011,6 +19721,11 @@

text:sender-firstname Element<   + + Child Relations + <text:sender-firstname (text:fixed="<boolean>" )? + TEXT>  +
@@ -15038,6 +19753,11 @@

text:sender-initials Element   + + Child Relations + <text:sender-initials (text:fixed="<boolean>" )? + TEXT>  +
@@ -15065,6 +19785,11 @@

text:sender-lastname Element   + + Child Relations + <text:sender-lastname (text:fixed="<boolean>" )? + TEXT>  +
@@ -15092,6 +19817,11 @@

text:sender-phone-private Elem   + + Child Relations + <text:sender-phone-private (text:fixed="<boolean>" )? + TEXT>  +
@@ -15119,6 +19849,11 @@

text:sender-phone-work Element   + + Child Relations + <text:sender-phone-work (text:fixed="<boolean>" )? + TEXT>  +
@@ -15146,6 +19881,11 @@

text:sender-position Element   + + Child Relations + <text:sender-position (text:fixed="<boolean>" )? + TEXT>  +
@@ -15173,6 +19913,11 @@

text:sender-postal-code Element<   + + Child Relations + <text:sender-postal-code (text:fixed="<boolean>" )? + TEXT>  +
@@ -15200,6 +19945,11 @@

text:sender-state-or-provi   + + Child Relations + <text:sender-state-or-province (text:fixed="<boolean>" )? + TEXT>  +
@@ -15227,6 +19977,11 @@

text:sender-street Element

  + + Child Relations + <text:sender-street (text:fixed="<boolean>" )? + TEXT>  +
@@ -15254,6 +20009,11 @@

text:sender-title Element

  + + Child Relations + <text:sender-title (text:fixed="<boolean>" )? + TEXT>  +
@@ -15286,6 +20046,16 @@

text:sequence Element

  + + Child Relations + <text:sequence text:name="<string>" (text:formula="<string>" )? + ( (style:num-format="(1 | i | I | <string>)?" | + (style:num-format="a | A" (style:num-letter-sync="<boolean>" )? + ))? + )? + (text:ref-name="<string>" )? + TEXT>  +
@@ -15310,6 +20080,11 @@

text:sequence-decl Element

  + + Child Relations + <text:sequence-decl text:name="<string>" text:display-outline-level="<nonNegativeInteger>" (text:separation-character="string]" )? + >  +
@@ -15340,6 +20115,10 @@

text:sequence-decls Element

<text:sequence-decl>*    + + Child Relations + <text:sequence-decls (<text:sequence-decl ... >)* >  +
@@ -15368,6 +20147,12 @@

text:sequence-ref Element

  + + Child Relations + <text:sequence-ref TEXT (text:ref-name="<string>" )? + (text:reference-format="page | chapter | direction | text | category-and-value | caption | value" )? + >  +
@@ -15394,6 +20179,10 @@

text:sheet-name Element

  + + Child Relations + <text:sheet-name TEXT>  +
@@ -15434,6 +20223,10 @@

text:soft-page-break Element&nb   + + Child Relations + <text:soft-page-break EMPTY>  +
@@ -15457,6 +20250,12 @@

text:sort-key Element

  + + Child Relations + <text:sort-key + (text:key="address | annote | author | bibliography-type | booktitle | chapter | custom1 | custom2 | custom3 | custom4 | custom5 | edition | editor | howpublished | identifier | institution | isbn | issn | journal | month | note | number | organizations | pages | publisher | report-type | school | series | title | url | volume | year" (text:sort-ascending="<boolean>" )? + )>  +
@@ -15610,6 +20409,14 @@

text:span Element

<text:word-count>*    + + Child Relations + <text:span (text:style-name="(<NCName>)?" )? + (text:class-names=" +START_list(<NCName>)* +END_list" )? + (TEXT | <text:s ... > | <text:tab ... > | <text:line-break ... > | <text:soft-page-break ... > | <text:span ... > | <text:a ... > | <text:bookmark ... > | <text:bookmark-start ... > | <text:bookmark-end ... > | <text:reference-mark ... > | <text:reference-mark-start ... > | <text:reference-mark-end ... > | <text:note ... > | <text:ruby ... > | <office:annotation ... > | <text:change ... > | <text:change-start ... > | <text:change-end ... > | <draw:rect ... > | <draw:line ... > | <draw:polyline ... > | <draw:polygon ... > | <draw:regular-polygon ... > | <draw:path ... > | <draw:circle ... > | <draw:ellipse ... > | <draw:g ... > | <draw:page-thumbnail ... > | <draw:frame ... > | <draw:measure ... > | <draw:caption ... > | <draw:connector ... > | <draw:control ... > | <dr3d:scene ... > | <draw:custom-shape ... > | <draw:a ... > | <text:date ... > | <text:time ... > | <text:page-number ... > | <text:page-continuation ... > | <text:sender-firstname ... > | <text:sender-lastname ... > | <text:sender-initials ... > | <text:sender-title ... > | <text:sender-position ... > | <text:sender-email ... > | <text:sender-phone-private ... > | <text:sender-fax ... > | <text:sender-company ... > | <text:sender-phone-work ... > | <text:sender-street ... > | <text:sender-city ... > | <text:sender-postal-code ... > | <text:sender-country ... > | <text:sender-state-or-province ... > | <text:author-name ... > | <text:author-initials ... > | <text:chapter ... > | <text:file-name ... > | <text:template-name ... > | <text:sheet-name ... > | <text:variable-set ... > | <text:variable-get ... > | <text:variable-input ... > | <text:user-field-get ... > | <text:user-field-input ... > | <text:sequence ... > | <text:expression ... > | <text:text-input ... > | <text:initial-creator ... > | <text:creation-date ... > | <text:creation-time ... > | <text:description ... > | <text:user-defined ... > | <text:print-time ... > | <text:print-date ... > | <text:printed-by ... > | <text:title ... > | <text:subject ... > | <text:keywords ... > | <text:editing-cycles ... > | <text:editing-duration ... > | <text:modification-time ... > | <text:modification-date ... > | <text:creator ... > | <CHOICE_NAME_CLASS ... > | <text:database-display ... > | <text:database-next ... > | <text:database-row-select ... > | <text:database-row-number ... > | <text:database-name ... > | <text:page-variable-set ... > | <text:page-variable-get ... > | <text:placeholder ... > | <text:conditional-text ... > | <text:hidden-text ... > | <CHOICE_NAME_CLASS ... > | <text:note-ref ... > | <text:sequence-ref ... > | <text:script ... > | <text:execute-macro ... > | <text:hidden-paragraph ... > | <text:dde-connection ... > | <text:measure ... > | <text:table-formula ... > | <text:toc-mark-start ... > | <text:toc-mark-end ... > | <text:toc-mark ... > | <text:user-index-mark-start ... > | <text:user-index-mark-end ... > | <text:user-index-mark ... > | <text:alphabetical-index-mark-start ... > | <text:alphabetical-index-mark-end ... > | <text:alphabetical-index-mark ... > | <text:bibliography-mark ... > | <presentation:header ... > | <presentation:footer ... > | <presentation:date-time ... >)* >  +
@@ -15637,6 +20444,11 @@

text:subject Element

  + + Child Relations + <text:subject (text:fixed="<boolean>" )? + TEXT>  +
@@ -15663,6 +20475,11 @@

text:tab Element

  + + Child Relations + <text:tab (text:tab-ref="<nonNegativeInteger>" )? + >  +
@@ -15692,6 +20509,14 @@

text:table-count Element

  + + Child Relations + <CHOICE_NAME_CLASS ( (style:num-format="(1 | i | I | <string>)?" | + (style:num-format="a | A" (style:num-letter-sync="<boolean>" )? + ))? + )? + TEXT>  +
@@ -15712,7 +20537,7 @@

text:table-formula Element

Attributes style:data-style-name  - text:display[1]  + text:display[9]  text:formula    @@ -15721,6 +20546,13 @@

text:table-formula Element

  + + Child Relations + <text:table-formula (text:formula="<string>" )? + (text:display="value | formula" )? + (style:data-style-name="(<NCName>)?" )? + TEXT>  +
@@ -15760,6 +20592,13 @@

text:table-index Element

<text:table-index-source>    + + Child Relations + <text:table-index (text:style-name="(<NCName>)?" )? + text:name="<string>" (text:protected="<boolean>" )? + (text:protection-key="<string>" )? + <text:table-index-source ... ><text:index-body ... >>  +
@@ -15786,6 +20625,11 @@

text:table-index-entry-t <text:index-entry-text>*    + + Child Relations + <text:table-index-entry-template + (text:style-name="(<NCName>)?" (<text:index-entry-page-number ... > | <text:index-entry-text ... > | <text:index-entry-span ... > | <text:index-entry-tab-stop ... >)* )>  +
@@ -15814,6 +20658,17 @@

text:table-index-source Element< <text:table-index-entry-template>    + + Child Relations + <text:table-index-source (text:index-scope="document | chapter" )? + (text:relative-tab-stop-position="<boolean>" )? + (text:use-caption="<boolean>" )? + (text:caption-sequence-name="<string>" )? + (text:caption-sequence-format="text | category-and-value | caption" )? + (<text:index-title-template ... >)? + (<text:table-index-entry-template ... >)? + >  +
@@ -15853,6 +20708,13 @@

text:table-of-content Element< <text:table-of-content-source>    + + Child Relations + <text:table-of-content (text:style-name="(<NCName>)?" )? + text:name="<string>" (text:protected="<boolean>" )? + (text:protection-key="<string>" )? + <text:table-of-content-source ... ><text:index-body ... >>  +
@@ -15883,6 +20745,10 @@

text:table-of-conte <text:index-entry-text>*    + + Child Relations + <text:table-of-content-entry-template text:outline-level="<positiveInteger>" text:style-name="(<NCName>)?" (<text:index-entry-chapter ... > | <text:index-entry-page-number ... > | <text:index-entry-text ... > | <text:index-entry-span ... > | <text:index-entry-tab-stop ... > | <text:index-entry-link-start ... > | <text:index-entry-link-end ... >)* >  +
@@ -15913,6 +20779,17 @@

text:table-of-content-sourc <text:table-of-content-entry-template>*    + + Child Relations + <text:table-of-content-source (text:outline-level="<positiveInteger>" )? + (text:use-outline-level="<boolean>" )? + (text:use-index-marks="<boolean>" )? + (text:use-index-source-styles="<boolean>" )? + (text:index-scope="document | chapter" )? + (text:relative-tab-stop-position="<boolean>" )? + (<text:index-title-template ... >)? + (<text:table-of-content-entry-template ... >)* (<text:index-source-styles ... >)* >  +
@@ -15932,7 +20809,7 @@

text:template-name Element

Attributes - text:display[7]  + text:display[6]    @@ -15940,6 +20817,11 @@

text:template-name Element

  + + Child Relations + <text:template-name (text:display="full | path | name | name-and-extension | area | title" )? + TEXT>  +
@@ -15967,6 +20849,11 @@

text:text-input Element

  + + Child Relations + <text:text-input (text:description="TEXT" )? + TEXT>  +
@@ -15989,7 +20876,7 @@

text:time Element

style:data-style-name  text:fixed  text:time-adjust  - text:time-value[2]  + text:time-value[1]    @@ -15997,6 +20884,14 @@

text:time Element

  + + Child Relations + <text:time (text:fixed="<boolean>" )? + (style:data-style-name="(<NCName>)?" )? + (text:time-value="<time> | <dateTime>" )? + (text:time-adjust="<duration>" )? + TEXT>  +
@@ -16024,6 +20919,11 @@

text:title Element

  + + Child Relations + <text:title (text:fixed="<boolean>" )? + TEXT>  +
@@ -16051,6 +20951,11 @@

text:toc-mark Element

  + + Child Relations + <text:toc-mark text:string-value="<string>" (text:outline-level="<positiveInteger>" )? + >  +
@@ -16069,7 +20974,7 @@

text:toc-mark-end Element

Attributes - text:id[1]  + text:id[2]    @@ -16077,6 +20982,10 @@

text:toc-mark-end Element

  + + Child Relations + <text:toc-mark-end text:id="<string>" >  +
@@ -16095,7 +21004,7 @@

text:toc-mark-start Element

Attributes - text:id[1]  + text:id[2]  text:outline-level[1]    @@ -16104,6 +21013,12 @@

text:toc-mark-start Element

  + + Child Relations + <text:toc-mark-start + (text:id="<string>" (text:outline-level="<positiveInteger>" )? + )>  +
@@ -16131,6 +21046,11 @@

text:tracked-changes Element<text:changed-region>*    + + Child Relations + <text:tracked-changes (text:track-changes="<boolean>" )? + (<text:changed-region ... >)* >  +
@@ -16165,6 +21085,17 @@

text:user-defined Element

  + + Child Relations + <text:user-defined (text:fixed="<boolean>" )? + text:name="<string>" (style:data-style-name="(<NCName>)?" )? + (office:value="<double>" )? + (office:date-value="<date> | <dateTime>" )? + (office:time-value="<duration>" )? + (office:boolean-value="<boolean>" )? + (office:string-value="<string>" )? + TEXT>  +
@@ -16189,9 +21120,9 @@

text:user-field-decl Elementoffice:value-type[2]  office:value-type[3]  office:value-type[4]  + office:value-type[5]  office:value-type[6]  - office:value-type[7]  - office:value-type[9]  + office:value-type[8]  text:formula  text:name    @@ -16201,6 +21132,21 @@

text:user-field-decl Element   + + Child Relations + <text:user-field-decl text:name="<string>" ( (text:formula="<string>" )? + )? + + (office:value-type="float" office:value="<double>" ) | + (office:value-type="percentage" office:value="<double>" ) | + (office:value-type="currency" office:value="<double>" (office:currency="<string>" )? + ) | + (office:value-type="date" office:date-value="<date> | <dateTime>" ) | + (office:value-type="time" office:time-value="<duration>" ) | + (office:value-type="boolean" office:boolean-value="<boolean>" ) | + (office:value-type="string" (office:string-value="<string>" )? + )>  +
@@ -16231,6 +21177,10 @@

text:user-field-decls Element< <text:user-field-decl>*    + + Child Relations + <text:user-field-decls (<text:user-field-decl ... >)* >  +
@@ -16251,7 +21201,7 @@

text:user-field-get Element

Attributes style:data-style-name  - text:display[3]  + text:display[2]  text:name    @@ -16260,6 +21210,12 @@

text:user-field-get Element

  + + Child Relations + <text:user-field-get text:name="<string>" (text:display="value | formula | none" )? + (style:data-style-name="(<NCName>)?" )? + TEXT>  +
@@ -16289,6 +21245,12 @@

text:user-field-input Element<   + + Child Relations + <text:user-field-input text:name="<string>" (text:description="TEXT" )? + (style:data-style-name="(<NCName>)?" )? + TEXT>  +
@@ -16328,6 +21290,13 @@

text:user-index Element

<text:user-index-source>    + + Child Relations + <text:user-index (text:style-name="(<NCName>)?" )? + text:name="<string>" (text:protected="<boolean>" )? + (text:protection-key="<string>" )? + <text:user-index-source ... ><text:index-body ... >>  +
@@ -16356,6 +21325,10 @@

text:user-index-entry-tem <text:index-entry-text>*    + + Child Relations + <text:user-index-entry-template text:outline-level="<positiveInteger>" text:style-name="(<NCName>)?" (<text:index-entry-chapter ... > | <text:index-entry-page-number ... > | <text:index-entry-text ... > | <text:index-entry-span ... > | <text:index-entry-tab-stop ... >)* >  +
@@ -16384,6 +21357,11 @@

text:user-index-mark Element   + + Child Relations + <text:user-index-mark text:string-value="<string>" (text:outline-level="<positiveInteger>" )? + text:index-name="<string>" >  +
@@ -16402,7 +21380,7 @@

text:user-index-mark-end Elemen Attributes - text:id[1]  + text:id[2]  text:outline-level[1]    @@ -16411,6 +21389,11 @@

text:user-index-mark-end Elemen   + + Child Relations + <text:user-index-mark-end text:id="<string>" (text:outline-level="<positiveInteger>" )? + >  +
@@ -16429,7 +21412,7 @@

text:user-index-mark-start El Attributes - text:id[1]  + text:id[2]  text:index-name  text:outline-level[1]    @@ -16439,6 +21422,11 @@

text:user-index-mark-start El   + + Child Relations + <text:user-index-mark-start text:id="<string>" (text:outline-level="<positiveInteger>" )? + text:index-name="<string>" >  +
@@ -16472,6 +21460,21 @@

text:user-index-source Element<text:user-index-entry-template>*    + + Child Relations + <text:user-index-source + ( (text:index-scope="document | chapter" )? + (text:relative-tab-stop-position="<boolean>" )? + text:index-name="<string>" ) + ( (text:use-index-marks="<boolean>" )? + (text:use-graphics="<boolean>" )? + (text:use-tables="<boolean>" )? + (text:use-floating-frames="<boolean>" )? + (text:use-objects="<boolean>" )? + ) (text:copy-outline-levels="<boolean>" )? + (<text:index-title-template ... >)? + (<text:user-index-entry-template ... >)* (<text:index-source-styles ... >)* >  +
@@ -16486,7 +21489,7 @@

text:variable-decl Element

Attributes - office:value-type[8]  + office:value-type[9]  text:name    @@ -16495,6 +21498,10 @@

text:variable-decl Element

  + + Child Relations + <text:variable-decl text:name="<string>" office:value-type="float | time | date | percentage | currency | boolean | string" >  +
@@ -16525,6 +21532,10 @@

text:variable-decls Element

<text:variable-decl>*    + + Child Relations + <text:variable-decls (<text:variable-decl ... >)* >  +
@@ -16545,7 +21556,7 @@

text:variable-get Element

Attributes style:data-style-name  - text:display[1]  + text:display[9]  text:name    @@ -16554,6 +21565,12 @@

text:variable-get Element

  + + Child Relations + <text:variable-get text:name="<string>" (text:display="value | formula" )? + (style:data-style-name="(<NCName>)?" )? + TEXT>  +
@@ -16573,10 +21590,10 @@

text:variable-input Element

Attributes - office:value-type[8]  + office:value-type[9]  style:data-style-name  text:description  - text:display[5]  + text:display[4]  text:name    @@ -16585,6 +21602,13 @@

text:variable-input Element

  + + Child Relations + <text:variable-input text:name="<string>" (text:description="TEXT" )? + office:value-type="float | time | date | percentage | currency | boolean | string" (text:display="value | none" )? + (style:data-style-name="(<NCName>)?" )? + TEXT>  +
@@ -16614,11 +21638,11 @@

text:variable-set Element

office:value-type[2]  office:value-type[3]  office:value-type[4]  + office:value-type[5]  office:value-type[6]  - office:value-type[7]  - office:value-type[9]  + office:value-type[8]  style:data-style-name  - text:display[5]  + text:display[4]  text:formula  text:name    @@ -16628,6 +21652,22 @@

text:variable-set Element

  + + Child Relations + <text:variable-set text:name="<string>" (text:formula="<string>" )? + + (office:value-type="float" office:value="<double>" ) | + (office:value-type="percentage" office:value="<double>" ) | + (office:value-type="currency" office:value="<double>" (office:currency="<string>" )? + ) | + (office:value-type="date" office:date-value="<date> | <dateTime>" ) | + (office:value-type="time" office:time-value="<duration>" ) | + (office:value-type="boolean" office:boolean-value="<boolean>" ) | + (office:value-type="string" (office:string-value="<string>" )? + ) (text:display="value | none" )? + (style:data-style-name="(<NCName>)?" )? + TEXT>  +
@@ -16657,6 +21697,14 @@

text:word-count Element

  + + Child Relations + <CHOICE_NAME_CLASS ( (style:num-format="(1 | i | I | <string>)?" | + (style:num-format="a | A" (style:num-letter-sync="<boolean>" )? + ))? + )? + TEXT>  +
@@ -16680,6 +21728,11 @@

xforms:model Element

[any org.w3c.dom.Element]    + + Child Relations + <xforms:model + ((*:*="TEXT" )* (<*:* ... >)* )>  +

anim:audio-level Attribute

@@ -16693,7 +21746,7 @@

anim:audio-level Attribute

Datatypes - double  + double    @@ -16701,6 +21754,10 @@

anim:audio-level Attribute

  + + RNG Relations + anim:audio-level="<double>"   +

anim:color-interpolation Attribute

@@ -16719,10 +21776,14 @@

anim:color-interpolation Attr Values - "hsl"  - "rgb"  + "hsl"  + "rgb"    + + RNG Relations + anim:color-interpolation="rgb | hsl"   +

anim:color-interpolation-direction Attribute

@@ -16741,10 +21802,14 @@

anim:color-interpol Values - "clockwise"  - "counter-clockwise"  + "clockwise"  + "counter-clockwise"    + + RNG Relations + anim:color-interpolation-direction="clockwise | counter-clockwise"   +

anim:command Attribute

@@ -16758,7 +21823,7 @@

anim:command Attribute

Datatypes - string  + string    @@ -16766,6 +21831,10 @@

anim:command Attribute

  + + RNG Relations + anim:command="<string>"   +

anim:formula Attribute

@@ -16783,7 +21852,7 @@

anim:formula Attribute

Datatypes - string  + string    @@ -16791,6 +21860,10 @@

anim:formula Attribute

  + + RNG Relations + anim:formula="<string>"   +

anim:id Attribute

@@ -16808,7 +21881,7 @@

anim:id Attribute

Datatypes - ID  + ID    @@ -16816,6 +21889,10 @@

anim:id Attribute

  + + RNG Relations + anim:id="<ID>"   +

anim:iterate-interval Attribute

@@ -16829,7 +21906,7 @@

anim:iterate-interval Attribute< Datatypes - duration  + duration    @@ -16837,6 +21914,10 @@

anim:iterate-interval Attribute<   + + RNG Relations + anim:iterate-interval="<duration>"   +

anim:iterate-type Attribute

@@ -16850,7 +21931,7 @@

anim:iterate-type Attribute

Datatypes - string  + string    @@ -16858,6 +21939,10 @@

anim:iterate-type Attribute

  + + RNG Relations + anim:iterate-type="<string>"   +

anim:name Attribute

@@ -16878,6 +21963,10 @@

anim:name Attribute

  + + RNG Relations + anim:name="TEXT"   +

anim:sub-item Attribute

@@ -16898,7 +21987,7 @@

anim:sub-item Attribute

Datatypes - string  + string    @@ -16906,6 +21995,10 @@

anim:sub-item Attribute

  + + RNG Relations + anim:sub-item="<string>"   +

anim:value Attribute

@@ -16926,6 +22019,10 @@

anim:value Attribute

  + + RNG Relations + anim:value="TEXT"   +

chart:attached-axis Attribute

@@ -16939,7 +22036,7 @@

chart:attached-axis Attribute< Datatypes - string  + string    @@ -16947,6 +22044,10 @@

chart:attached-axis Attribute<   + + RNG Relations + chart:attached-axis="<string>"   +

chart:class[1] Attribute

@@ -16955,21 +22056,25 @@

chart:class[1] Attribute

Parent Elements - chart:chart  - chart:series  + chart:grid    Datatypes - string    Values + "major"  + "minor"    + + RNG Relations + chart:class="major | minor"   +

chart:class[2] Attribute

@@ -16978,21 +22083,25 @@

chart:class[2] Attribute

Parent Elements - chart:grid  + chart:chart  + chart:series    Datatypes + string    Values - "major"  - "minor"    + + RNG Relations + chart:class="string]"   +

chart:column-mapping Attribute

@@ -17006,7 +22115,7 @@

chart:column-mapping Attribute Datatypes - string  + string    @@ -17014,6 +22123,10 @@

chart:column-mapping Attribute   + + RNG Relations + chart:column-mapping="<string>"   +

chart:data-source-has-labels Attribute

@@ -17032,12 +22145,16 @@

chart:data-source-has-lab Values - "both"  - "column"  - "none"  - "row"  + "both"  + "column"  + "none"  + "row"    + + RNG Relations + chart:data-source-has-labels="none | row | column | both"   +

chart:dimension Attribute

@@ -17056,11 +22173,15 @@

chart:dimension Attribute

Values - "x"  - "y"  - "z"  + "x"  + "y"  + "z"    + + RNG Relations + chart:dimension="x | y | z"   +

chart:label-cell-address Attribute

@@ -17074,7 +22195,7 @@

chart:label-cell-address Attr Datatypes - string  + string    @@ -17082,6 +22203,10 @@

chart:label-cell-address Attr   + + RNG Relations + chart:label-cell-address="string]"   +

chart:legend-align Attribute

@@ -17100,11 +22225,15 @@

chart:legend-align Attribute Values - "center"  - "end"  - "start"  + "center"  + "end"  + "start"    + + RNG Relations + chart:legend-align="start | center | end"   +

chart:legend-position[1] Attribute

@@ -17124,12 +22253,16 @@

chart:legend-position[1] Attribu Values - "bottom"  - "end"  - "start"  - "top"  + "bottom"  + "end"  + "start"  + "top"    + + RNG Relations + chart:legend-position="start | end | top | bottom"   +

chart:legend-position[2] Attribute

@@ -17149,12 +22282,16 @@

chart:legend-position[2] Attribu Values - "bottom-end"  - "bottom-start"  - "top-end"  - "top-start"  + "bottom-end"  + "bottom-start"  + "top-end"  + "top-start"    + + RNG Relations + chart:legend-position="top-start | bottom-start | top-end | bottom-end"   +

chart:name Attribute

@@ -17168,7 +22305,7 @@

chart:name Attribute

Datatypes - string  + string    @@ -17176,6 +22313,10 @@

chart:name Attribute

  + + RNG Relations + chart:name="<string>"   +

chart:repeated Attribute

@@ -17189,7 +22330,7 @@

chart:repeated Attribute

Datatypes - nonNegativeInteger  + nonNegativeInteger    @@ -17197,6 +22338,10 @@

chart:repeated Attribute

  + + RNG Relations + chart:repeated="<nonNegativeInteger>"   +

chart:row-mapping Attribute

@@ -17210,7 +22355,7 @@

chart:row-mapping Attribute

Datatypes - string  + string    @@ -17218,6 +22363,10 @@

chart:row-mapping Attribute

  + + RNG Relations + chart:row-mapping="<string>"   +

chart:style-name Attribute

@@ -17248,7 +22397,7 @@

chart:style-name Attribute

Datatypes - NCName  + NCName    @@ -17256,6 +22405,10 @@

chart:style-name Attribute

  + + RNG Relations + chart:style-name="(<NCName>)?"   +

chart:values-cell-range-address Attribute

@@ -17269,7 +22422,7 @@

chart:values-cell-rang Datatypes - string  + string    @@ -17277,6 +22430,10 @@

chart:values-cell-rang   + + RNG Relations + chart:values-cell-range-address="string]"   +

config:name Attribute

@@ -17294,7 +22451,7 @@

config:name Attribute

Datatypes - string  + string    @@ -17302,6 +22459,10 @@

config:name Attribute

  + + RNG Relations + config:name="<string>"   +

config:type Attribute

@@ -17320,16 +22481,20 @@

config:type Attribute

Values - "base64Binary"  - "boolean"  - "datetime"  - "double"  - "int"  - "long"  - "short"  - "string"  + "base64Binary"  + "boolean"  + "datetime"  + "double"  + "int"  + "long"  + "short"  + "string"    + + RNG Relations + config:type="boolean | short | int | long | double | string | datetime | base64Binary"   +

dr3d:ambient-color Attribute

@@ -17344,7 +22509,7 @@

dr3d:ambient-color Attribute Datatypes - string  + string    @@ -17352,6 +22517,10 @@

dr3d:ambient-color Attribute   + + RNG Relations + dr3d:ambient-color="string]"   +

dr3d:center Attribute

@@ -17365,7 +22534,7 @@

dr3d:center Attribute

Datatypes - string  + string    @@ -17373,6 +22542,10 @@

dr3d:center Attribute

  + + RNG Relations + dr3d:center="string]"   +

dr3d:diffuse-color Attribute

@@ -17386,7 +22559,7 @@

dr3d:diffuse-color Attribute Datatypes - string  + string    @@ -17394,6 +22567,10 @@

dr3d:diffuse-color Attribute   + + RNG Relations + dr3d:diffuse-color="string]"   +

dr3d:direction Attribute

@@ -17407,7 +22584,7 @@

dr3d:direction Attribute

Datatypes - string  + string    @@ -17415,6 +22592,10 @@

dr3d:direction Attribute

  + + RNG Relations + dr3d:direction="string]"   +

dr3d:distance Attribute

@@ -17429,7 +22610,7 @@

dr3d:distance Attribute

Datatypes - string  + string    @@ -17437,6 +22618,10 @@

dr3d:distance Attribute

  + + RNG Relations + dr3d:distance="string]"   +

dr3d:enabled Attribute

@@ -17455,10 +22640,14 @@

dr3d:enabled Attribute

Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + dr3d:enabled="<boolean>"   +

dr3d:focal-length Attribute

@@ -17473,7 +22662,7 @@

dr3d:focal-length Attribute

Datatypes - string  + string    @@ -17481,6 +22670,10 @@

dr3d:focal-length Attribute

  + + RNG Relations + dr3d:focal-length="string]"   +

dr3d:lighting-mode Attribute

@@ -17500,10 +22693,14 @@

dr3d:lighting-mode Attribute Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + dr3d:lighting-mode="<boolean>"   +

dr3d:max-edge Attribute

@@ -17517,7 +22714,7 @@

dr3d:max-edge Attribute

Datatypes - string  + string    @@ -17525,6 +22722,10 @@

dr3d:max-edge Attribute

  + + RNG Relations + dr3d:max-edge="string]"   +

dr3d:min-edge Attribute

@@ -17538,7 +22739,7 @@

dr3d:min-edge Attribute

Datatypes - string  + string    @@ -17546,6 +22747,10 @@

dr3d:min-edge Attribute

  + + RNG Relations + dr3d:min-edge="string]"   +

dr3d:projection Attribute

@@ -17566,10 +22771,14 @@

dr3d:projection Attribute

Values - "parallel"  - "perspective"  + "parallel"  + "perspective"    + + RNG Relations + dr3d:projection="parallel | perspective"   +

dr3d:shade-mode Attribute

@@ -17590,12 +22799,16 @@

dr3d:shade-mode Attribute

Values - "draft"  - "flat"  - "gouraud"  - "phong"  + "draft"  + "flat"  + "gouraud"  + "phong"    + + RNG Relations + dr3d:shade-mode="flat | phong | gouraud | draft"   +

dr3d:shadow-slant Attribute

@@ -17610,7 +22823,7 @@

dr3d:shadow-slant Attribute

Datatypes - nonNegativeInteger  + nonNegativeInteger    @@ -17618,6 +22831,10 @@

dr3d:shadow-slant Attribute

  + + RNG Relations + dr3d:shadow-slant="<nonNegativeInteger>"   +

dr3d:size Attribute

@@ -17631,7 +22848,7 @@

dr3d:size Attribute

Datatypes - string  + string    @@ -17639,6 +22856,10 @@

dr3d:size Attribute

  + + RNG Relations + dr3d:size="string]"   +

dr3d:specular Attribute

@@ -17657,10 +22878,14 @@

dr3d:specular Attribute

Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + dr3d:specular="<boolean>"   +

dr3d:transform Attribute

@@ -17686,6 +22911,10 @@

dr3d:transform Attribute

  + + RNG Relations + dr3d:transform="TEXT"   +

dr3d:vpn Attribute

@@ -17700,7 +22929,7 @@

dr3d:vpn Attribute

Datatypes - string  + string    @@ -17708,6 +22937,10 @@

dr3d:vpn Attribute

  + + RNG Relations + dr3d:vpn="string]"   +

dr3d:vrp Attribute

@@ -17722,7 +22955,7 @@

dr3d:vrp Attribute

Datatypes - string  + string    @@ -17730,6 +22963,10 @@

dr3d:vrp Attribute

  + + RNG Relations + dr3d:vrp="string]"   +

dr3d:vup Attribute

@@ -17744,7 +22981,7 @@

dr3d:vup Attribute

Datatypes - string  + string    @@ -17752,6 +22989,10 @@

dr3d:vup Attribute

  + + RNG Relations + dr3d:vup="string]"   +

draw:align Attribute

@@ -17770,16 +23011,20 @@

draw:align Attribute

Values - "bottom-left"  - "bottom-right"  - "center"  - "left"  - "right"  - "top"  - "top-left"  - "top-right"  + "bottom-left"  + "bottom-right"  + "center"  + "left"  + "right"  + "top"  + "top-left"  + "top-right"    + + RNG Relations + draw:align="top-left | top | top-right | left | center | right | bottom-left | bottom-right"   +

draw:angle Attribute

@@ -17794,7 +23039,7 @@

draw:angle Attribute

Datatypes - integer  + integer    @@ -17802,6 +23047,10 @@

draw:angle Attribute

  + + RNG Relations + draw:angle="<integer>"   +

draw:archive Attribute

@@ -17822,6 +23071,10 @@

draw:archive Attribute

  + + RNG Relations + draw:archive="TEXT"   +

draw:border Attribute

@@ -17836,7 +23089,7 @@

draw:border Attribute

Datatypes - string  + string    @@ -17844,6 +23097,10 @@

draw:border Attribute

  + + RNG Relations + draw:border="string]"   +

draw:caption-id Attribute (new in ODF 1.1)

@@ -17873,7 +23130,7 @@

draw:caption-id Attribute (ne Datatypes - IDREF  + IDREF    @@ -17881,6 +23138,10 @@

draw:caption-id Attribute (ne   + + RNG Relations + draw:caption-id="<IDREF>"   +

draw:caption-point-x Attribute

@@ -17895,7 +23156,7 @@

draw:caption-point-x Attribute Datatypes - string  + string    @@ -17903,6 +23164,10 @@

draw:caption-point-x Attribute   + + RNG Relations + draw:caption-point-x="string]"   +

draw:caption-point-y Attribute

@@ -17917,7 +23182,7 @@

draw:caption-point-y Attribute Datatypes - string  + string    @@ -17925,6 +23190,10 @@

draw:caption-point-y Attribute   + + RNG Relations + draw:caption-point-y="string]"   +

draw:chain-next-name Attribute

@@ -17938,7 +23207,7 @@

draw:chain-next-name Attribute Datatypes - string  + string    @@ -17946,6 +23215,10 @@

draw:chain-next-name Attribute   + + RNG Relations + draw:chain-next-name="<string>"   +

draw:class-id Attribute

@@ -17966,6 +23239,10 @@

draw:class-id Attribute

  + + RNG Relations + draw:class-id="TEXT"   +

draw:class-names Attribute

@@ -18000,7 +23277,7 @@

draw:class-names Attribute

Datatypes - NCName  + NCName    @@ -18008,6 +23285,12 @@

draw:class-names Attribute

  + + RNG Relations + draw:class-names=" +START_list(<NCName>)* +END_list"   +

draw:code Attribute

@@ -18028,6 +23311,10 @@

draw:code Attribute

  + + RNG Relations + draw:code="TEXT"   +

draw:color Attribute

@@ -18042,7 +23329,7 @@

draw:color Attribute

Datatypes - string  + string    @@ -18050,6 +23337,10 @@

draw:color Attribute

  + + RNG Relations + draw:color="string]"   +

draw:concave[1] Attribute

@@ -18069,9 +23360,13 @@

draw:concave[1] Attribute

Values - "false"  + "false"    + + RNG Relations + draw:concave="false"   +

draw:concave[2] Attribute

@@ -18091,9 +23386,13 @@

draw:concave[2] Attribute

Values - "true"  + "true"    + + RNG Relations + draw:concave="true"   +

draw:concentric-gradient-fill-allowed Attribute

@@ -18112,10 +23411,14 @@

draw:concentric- Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + draw:concentric-gradient-fill-allowed="<boolean>"   +

draw:control Attribute

@@ -18129,7 +23432,7 @@

draw:control Attribute

Datatypes - IDREF  + IDREF    @@ -18137,6 +23440,10 @@

draw:control Attribute

  + + RNG Relations + draw:control="<IDREF>"   +

draw:copy-of Attribute

@@ -18150,7 +23457,7 @@

draw:copy-of Attribute

Datatypes - string  + string    @@ -18158,6 +23465,10 @@

draw:copy-of Attribute

  + + RNG Relations + draw:copy-of="<string>"   +

draw:corner-radius Attribute

@@ -18174,7 +23485,7 @@

draw:corner-radius Attribute Datatypes - string  + string    @@ -18182,6 +23493,10 @@

draw:corner-radius Attribute   + + RNG Relations + draw:corner-radius="string]"   +

draw:corners Attribute

@@ -18195,7 +23510,7 @@

draw:corners Attribute

Datatypes - positiveInteger  + positiveInteger    @@ -18203,6 +23518,10 @@

draw:corners Attribute

  + + RNG Relations + draw:corners="<positiveInteger>"   +

draw:cx Attribute

@@ -18217,7 +23536,7 @@

draw:cx Attribute

Datatypes - string  + string    @@ -18225,6 +23544,10 @@

draw:cx Attribute

  + + RNG Relations + draw:cx="string]"   +

draw:cy Attribute

@@ -18239,7 +23562,7 @@

draw:cy Attribute

Datatypes - string  + string    @@ -18247,6 +23570,10 @@

draw:cy Attribute

  + + RNG Relations + draw:cy="string]"   +

draw:data Attribute

@@ -18260,7 +23587,7 @@

draw:data Attribute

Datatypes - string  + string    @@ -18268,6 +23595,10 @@

draw:data Attribute

  + + RNG Relations + draw:data="<string>"   +

draw:display Attribute

@@ -18286,12 +23617,16 @@

draw:display Attribute

Values - "always"  - "none"  - "printer"  - "screen"  + "always"  + "none"  + "printer"  + "screen"    + + RNG Relations + draw:display="always | screen | printer | none"   +

draw:display-name Attribute

@@ -18312,7 +23647,7 @@

draw:display-name Attribute

Datatypes - string  + string    @@ -18320,6 +23655,10 @@

draw:display-name Attribute

  + + RNG Relations + draw:display-name="<string>"   +

draw:distance Attribute

@@ -18334,7 +23673,7 @@

draw:distance Attribute

Datatypes - string  + string    @@ -18342,6 +23681,10 @@

draw:distance Attribute

  + + RNG Relations + draw:distance="string]"   +

draw:dots1 Attribute

@@ -18355,7 +23698,7 @@

draw:dots1 Attribute

Datatypes - integer  + integer    @@ -18363,6 +23706,10 @@

draw:dots1 Attribute

  + + RNG Relations + draw:dots1="<integer>"   +

draw:dots1-length Attribute

@@ -18376,7 +23723,7 @@

draw:dots1-length Attribute

Datatypes - string  + string    @@ -18384,6 +23731,10 @@

draw:dots1-length Attribute

  + + RNG Relations + draw:dots1-length="string]"   +

draw:dots2 Attribute

@@ -18397,7 +23748,7 @@

draw:dots2 Attribute

Datatypes - integer  + integer    @@ -18405,6 +23756,10 @@

draw:dots2 Attribute

  + + RNG Relations + draw:dots2="<integer>"   +

draw:dots2-length Attribute

@@ -18418,7 +23773,7 @@

draw:dots2-length Attribute

Datatypes - string  + string    @@ -18426,6 +23781,10 @@

draw:dots2-length Attribute

  + + RNG Relations + draw:dots2-length="string]"   +

draw:end Attribute

@@ -18439,7 +23798,7 @@

draw:end Attribute

Datatypes - string  + string    @@ -18447,6 +23806,10 @@

draw:end Attribute

  + + RNG Relations + draw:end="string]"   +

draw:end-angle Attribute

@@ -18461,7 +23824,7 @@

draw:end-angle Attribute

Datatypes - double  + double    @@ -18469,6 +23832,10 @@

draw:end-angle Attribute

  + + RNG Relations + draw:end-angle="<double>"   +

draw:end-color Attribute

@@ -18482,7 +23849,7 @@

draw:end-color Attribute

Datatypes - string  + string    @@ -18490,6 +23857,10 @@

draw:end-color Attribute

  + + RNG Relations + draw:end-color="string]"   +

draw:end-glue-point Attribute

@@ -18503,7 +23874,7 @@

draw:end-glue-point Attribute< Datatypes - nonNegativeInteger  + nonNegativeInteger    @@ -18511,6 +23882,10 @@

draw:end-glue-point Attribute<   + + RNG Relations + draw:end-glue-point="<nonNegativeInteger>"   +

draw:end-intensity Attribute

@@ -18524,7 +23899,7 @@

draw:end-intensity Attribute Datatypes - string  + string    @@ -18532,6 +23907,10 @@

draw:end-intensity Attribute   + + RNG Relations + draw:end-intensity="string]"   +

draw:end-shape Attribute

@@ -18545,7 +23924,7 @@

draw:end-shape Attribute

Datatypes - IDREF  + IDREF    @@ -18553,6 +23932,10 @@

draw:end-shape Attribute

  + + RNG Relations + draw:end-shape="<IDREF>"   +

draw:engine Attribute

@@ -18566,7 +23949,7 @@

draw:engine Attribute

Datatypes - string  + string    @@ -18574,6 +23957,10 @@

draw:engine Attribute

  + + RNG Relations + draw:engine="string]"   +

draw:enhanced-path Attribute

@@ -18587,7 +23974,7 @@

draw:enhanced-path Attribute Datatypes - string  + string    @@ -18595,6 +23982,10 @@

draw:enhanced-path Attribute   + + RNG Relations + draw:enhanced-path="<string>"   +

draw:extrusion Attribute

@@ -18613,10 +24004,14 @@

draw:extrusion Attribute

Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + draw:extrusion="<boolean>"   +

draw:extrusion-allowed Attribute

@@ -18635,10 +24030,14 @@

draw:extrusion-allowed Attribut Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + draw:extrusion-allowed="<boolean>"   +

draw:extrusion-brightness Attribute

@@ -18652,7 +24051,7 @@

draw:extrusion-brightness At Datatypes - string  + string    @@ -18660,6 +24059,10 @@

draw:extrusion-brightness At   + + RNG Relations + draw:extrusion-brightness="string]"   +

draw:extrusion-color Attribute

@@ -18678,10 +24081,14 @@

draw:extrusion-color Attribute Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + draw:extrusion-color="<boolean>"   +

draw:extrusion-depth Attribute

@@ -18695,8 +24102,8 @@

draw:extrusion-depth Attribute Datatypes - double  - string  + double  + string    @@ -18704,6 +24111,12 @@

draw:extrusion-depth Attribute   + + RNG Relations + draw:extrusion-depth=" +START_liststring]<double> +END_list"   +

draw:extrusion-diffusion Attribute

@@ -18717,7 +24130,7 @@

draw:extrusion-diffusion Attr Datatypes - string  + string    @@ -18725,6 +24138,10 @@

draw:extrusion-diffusion Attr   + + RNG Relations + draw:extrusion-diffusion="string]"   +

draw:extrusion-first-light-direction Attribute

@@ -18738,7 +24155,7 @@

draw:extrusion-fi Datatypes - string  + string    @@ -18746,6 +24163,10 @@

draw:extrusion-fi   + + RNG Relations + draw:extrusion-first-light-direction="string]"   +

draw:extrusion-first-light-harsh Attribute

@@ -18764,10 +24185,14 @@

draw:extrusion-first- Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + draw:extrusion-first-light-harsh="<boolean>"   +

draw:extrusion-first-light-level Attribute

@@ -18781,7 +24206,7 @@

draw:extrusion-first- Datatypes - string  + string    @@ -18789,6 +24214,10 @@

draw:extrusion-first-   + + RNG Relations + draw:extrusion-first-light-level="string]"   +

draw:extrusion-light-face Attribute

@@ -18807,10 +24236,14 @@

draw:extrusion-light-face At Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + draw:extrusion-light-face="<boolean>"   +

draw:extrusion-metal Attribute

@@ -18829,10 +24262,14 @@

draw:extrusion-metal Attribute Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + draw:extrusion-metal="<boolean>"   +

draw:extrusion-number-of-line-segments Attribute

@@ -18846,7 +24283,7 @@

draw:extrusion- Datatypes - integer  + integer    @@ -18854,6 +24291,10 @@

draw:extrusion-   + + RNG Relations + draw:extrusion-number-of-line-segments="<integer>"   +

draw:extrusion-origin Attribute

@@ -18867,7 +24308,7 @@

draw:extrusion-origin Attribute< Datatypes - double  + double    @@ -18875,6 +24316,12 @@

draw:extrusion-origin Attribute<   + + RNG Relations + draw:extrusion-origin=" +START_list<double><double> +END_list"   +

draw:extrusion-rotation-angle Attribute

@@ -18888,7 +24335,7 @@

draw:extrusion-rotation- Datatypes - double  + double    @@ -18896,6 +24343,12 @@

draw:extrusion-rotation-   + + RNG Relations + draw:extrusion-rotation-angle=" +START_list<double><double> +END_list"   +

draw:extrusion-rotation-center Attribute

@@ -18909,7 +24362,7 @@

draw:extrusion-rotation Datatypes - string  + string    @@ -18917,6 +24370,10 @@

draw:extrusion-rotation   + + RNG Relations + draw:extrusion-rotation-center="string]"   +

draw:extrusion-second-light-direction Attribute

@@ -18930,7 +24387,7 @@

draw:extrusion-s Datatypes - string  + string    @@ -18938,6 +24395,10 @@

draw:extrusion-s   + + RNG Relations + draw:extrusion-second-light-direction="string]"   +

draw:extrusion-second-light-harsh Attribute

@@ -18956,10 +24417,14 @@

draw:extrusion-secon Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + draw:extrusion-second-light-harsh="<boolean>"   +

draw:extrusion-second-light-level Attribute

@@ -18973,7 +24438,7 @@

draw:extrusion-secon Datatypes - string  + string    @@ -18981,6 +24446,10 @@

draw:extrusion-secon   + + RNG Relations + draw:extrusion-second-light-level="string]"   +

draw:extrusion-shininess Attribute

@@ -18994,7 +24463,7 @@

draw:extrusion-shininess Attr Datatypes - string  + string    @@ -19002,6 +24471,10 @@

draw:extrusion-shininess Attr   + + RNG Relations + draw:extrusion-shininess="string]"   +

draw:extrusion-skew Attribute

@@ -19015,7 +24488,7 @@

draw:extrusion-skew Attribute< Datatypes - double  + double    @@ -19023,6 +24496,12 @@

draw:extrusion-skew Attribute<   + + RNG Relations + draw:extrusion-skew=" +START_list<double><double> +END_list"   +

draw:extrusion-specularity Attribute

@@ -19036,7 +24515,7 @@

draw:extrusion-specularity Datatypes - string  + string    @@ -19044,6 +24523,10 @@

draw:extrusion-specularity   + + RNG Relations + draw:extrusion-specularity="string]"   +

draw:extrusion-viewpoint Attribute

@@ -19057,7 +24540,7 @@

draw:extrusion-viewpoint Attr Datatypes - string  + string    @@ -19065,6 +24548,10 @@

draw:extrusion-viewpoint Attr   + + RNG Relations + draw:extrusion-viewpoint="<string>"   +

draw:filter-name Attribute

@@ -19078,7 +24565,7 @@

draw:filter-name Attribute

Datatypes - string  + string    @@ -19086,6 +24573,10 @@

draw:filter-name Attribute

  + + RNG Relations + draw:filter-name="<string>"   +

draw:formula Attribute

@@ -19099,7 +24590,7 @@

draw:formula Attribute

Datatypes - string  + string    @@ -19107,6 +24598,10 @@

draw:formula Attribute

  + + RNG Relations + draw:formula="<string>"   +

draw:frame-name Attribute

@@ -19120,7 +24615,7 @@

draw:frame-name Attribute

Datatypes - string  + string    @@ -19128,6 +24623,10 @@

draw:frame-name Attribute

  + + RNG Relations + draw:frame-name="<string>"   +

draw:glue-point-leaving-directions Attribute

@@ -19148,6 +24647,10 @@

draw:glue-point-lea   + + RNG Relations + draw:glue-point-leaving-directions="TEXT"   +

draw:glue-point-type Attribute

@@ -19166,11 +24669,15 @@

draw:glue-point-type Attribute Values - "none"  - "rectangle"  - "segments"  + "none"  + "rectangle"  + "segments"    + + RNG Relations + draw:glue-point-type="none | segments | rectangle"   +

draw:glue-points Attribute

@@ -19184,7 +24691,7 @@

draw:glue-points Attribute

Datatypes - string  + string    @@ -19192,6 +24699,10 @@

draw:glue-points Attribute

  + + RNG Relations + draw:glue-points="<string>"   +

draw:handle-mirror-horizontal Attribute

@@ -19210,10 +24721,14 @@

draw:handle-mirror-horiz Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + draw:handle-mirror-horizontal="<boolean>"   +

draw:handle-mirror-vertical Attribute

@@ -19232,10 +24747,14 @@

draw:handle-mirror-vertica Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + draw:handle-mirror-vertical="<boolean>"   +

draw:handle-polar Attribute

@@ -19249,7 +24768,7 @@

draw:handle-polar Attribute

Datatypes - string  + string    @@ -19257,6 +24776,10 @@

draw:handle-polar Attribute

  + + RNG Relations + draw:handle-polar="<string>"   +

draw:handle-position Attribute

@@ -19270,7 +24793,7 @@

draw:handle-position Attribute Datatypes - string  + string    @@ -19278,6 +24801,10 @@

draw:handle-position Attribute   + + RNG Relations + draw:handle-position="<string>"   +

draw:handle-radius-range-maximum Attribute

@@ -19291,7 +24818,7 @@

draw:handle-radius-ra Datatypes - string  + string    @@ -19299,6 +24826,10 @@

draw:handle-radius-ra   + + RNG Relations + draw:handle-radius-range-maximum="<string>"   +

draw:handle-radius-range-minimum Attribute

@@ -19312,7 +24843,7 @@

draw:handle-radius-ra Datatypes - string  + string    @@ -19320,6 +24851,10 @@

draw:handle-radius-ra   + + RNG Relations + draw:handle-radius-range-minimum="<string>"   +

draw:handle-range-x-maximum Attribute

@@ -19333,7 +24868,7 @@

draw:handle-range-x-maximu Datatypes - string  + string    @@ -19341,6 +24876,10 @@

draw:handle-range-x-maximu   + + RNG Relations + draw:handle-range-x-maximum="<string>"   +

draw:handle-range-x-minimum Attribute

@@ -19354,7 +24893,7 @@

draw:handle-range-x-minimu Datatypes - string  + string    @@ -19362,6 +24901,10 @@

draw:handle-range-x-minimu   + + RNG Relations + draw:handle-range-x-minimum="<string>"   +

draw:handle-range-y-maximum Attribute

@@ -19375,7 +24918,7 @@

draw:handle-range-y-maximu Datatypes - string  + string    @@ -19383,6 +24926,10 @@

draw:handle-range-y-maximu   + + RNG Relations + draw:handle-range-y-maximum="<string>"   +

draw:handle-range-y-minimum Attribute

@@ -19396,7 +24943,7 @@

draw:handle-range-y-minimu Datatypes - string  + string    @@ -19404,6 +24951,10 @@

draw:handle-range-y-minimu   + + RNG Relations + draw:handle-range-y-minimum="<string>"   +

draw:handle-switched Attribute

@@ -19422,10 +24973,14 @@

draw:handle-switched Attribute Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + draw:handle-switched="<boolean>"   +

draw:id[1] Attribute

@@ -19433,6 +24988,32 @@

draw:id[1] Attribute

+ + + + + + + + + + + + + + +
Parent Elements + draw:glue-point  + 
Datatypes + nonNegativeInteger  + 
Values
RNG Relationsdraw:id="<nonNegativeInteger>"  
+
+

draw:id[2] Attribute

+

There are more than one Definitions by this name.

+ + + @@ -19470,27 +25051,9 @@

draw:id[1] Attribute

-
Parent Elements dr3d:cube  dr3d:extrude  @@ -19462,7 +25043,7 @@

draw:id[1] Attribute

Datatypes - ID  + ID   
 
-
-

draw:id[2] Attribute

-

There are more than one Definitions by this name.

- - - - - - - - - - - + +
Parent Elements - draw:glue-point  - 
Datatypes - nonNegativeInteger  - 
ValuesRNG Relationsdraw:id="<ID>"  

@@ -19511,12 +25074,16 @@

draw:kind Attribute

Values - "arc"  - "cut"  - "full"  - "section"  + "arc"  + "cut"  + "full"  + "section"    + + RNG Relations + draw:kind="full | section | cut | arc"   +

draw:layer Attribute

@@ -19550,7 +25117,7 @@

draw:layer Attribute

Datatypes - string  + string    @@ -19558,6 +25125,10 @@

draw:layer Attribute

  + + RNG Relations + draw:layer="<string>"   +

draw:line-skew Attribute

@@ -19571,7 +25142,7 @@

draw:line-skew Attribute

Datatypes - string  + string    @@ -19579,6 +25150,12 @@

draw:line-skew Attribute

  + + RNG Relations + draw:line-skew=" +START_liststring](string](string])?)? +END_list"   +

draw:master-page-name Attribute

@@ -19592,7 +25169,7 @@

draw:master-page-name Attribute< Datatypes - NCName  + NCName    @@ -19600,6 +25177,10 @@

draw:master-page-name Attribute<   + + RNG Relations + draw:master-page-name="(<NCName>)?"   +

draw:may-script Attribute

@@ -19618,10 +25199,14 @@

draw:may-script Attribute

Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + draw:may-script="<boolean>"   +

draw:mime-type Attribute

@@ -19642,6 +25227,10 @@

draw:mime-type Attribute

  + + RNG Relations + draw:mime-type="TEXT"   +

draw:mirror-horizontal Attribute

@@ -19660,10 +25249,14 @@

draw:mirror-horizontal Attribut Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + draw:mirror-horizontal="<boolean>"   +

draw:mirror-vertical Attribute

@@ -19682,10 +25275,14 @@

draw:mirror-vertical Attribute Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + draw:mirror-vertical="<boolean>"   +

draw:modifiers Attribute

@@ -19699,7 +25296,7 @@

draw:modifiers Attribute

Datatypes - string  + string    @@ -19707,6 +25304,10 @@

draw:modifiers Attribute

  + + RNG Relations + draw:modifiers="<string>"   +

draw:name[1] Attribute

@@ -19715,20 +25316,12 @@

draw:name[1] Attribute

Parent Elements - draw:fill-image  - draw:gradient  - draw:hatch  - draw:marker  - draw:opacity  - draw:stroke-dash  - svg:linearGradient  - svg:radialGradient  + draw:param    Datatypes - NCName    @@ -19736,6 +25329,10 @@

draw:name[1] Attribute

  + + RNG Relations + draw:name="TEXT"   +

draw:name[2] Attribute

@@ -19769,7 +25366,7 @@

draw:name[2] Attribute

Datatypes - string  + string    @@ -19777,6 +25374,10 @@

draw:name[2] Attribute

  + + RNG Relations + draw:name="<string>"   +

draw:name[3] Attribute

@@ -19785,12 +25386,20 @@

draw:name[3] Attribute

Parent Elements - draw:param  + draw:fill-image  + draw:gradient  + draw:hatch  + draw:marker  + draw:opacity  + draw:stroke-dash  + svg:linearGradient  + svg:radialGradient    Datatypes + NCName    @@ -19798,6 +25407,10 @@

draw:name[3] Attribute

  + + RNG Relations + draw:name="<NCName>"   +

draw:nav-order Attribute (new in ODF 1.1)

@@ -19811,7 +25424,7 @@

draw:nav-order Attribute (new Datatypes - IDREFS  + IDREFS    @@ -19819,6 +25432,10 @@

draw:nav-order Attribute (new   + + RNG Relations + draw:nav-order="<IDREFS>"   +

draw:nohref Attribute

@@ -19839,9 +25456,13 @@

draw:nohref Attribute

Values - "nohref"  + "nohref"    + + RNG Relations + draw:nohref="nohref"   +

draw:notify-on-update-of-ranges Attribute

@@ -19855,7 +25476,7 @@

draw:notify-on-update- Datatypes - string  + string    @@ -19863,6 +25484,10 @@

draw:notify-on-update-   + + RNG Relations + draw:notify-on-update-of-ranges="<string>"   +

draw:object Attribute

@@ -19883,6 +25508,10 @@

draw:object Attribute

  + + RNG Relations + draw:object="TEXT"   +

draw:page-number Attribute

@@ -19896,7 +25525,7 @@

draw:page-number Attribute

Datatypes - positiveInteger  + positiveInteger    @@ -19904,6 +25533,10 @@

draw:page-number Attribute

  + + RNG Relations + draw:page-number="<positiveInteger>"   +

draw:path-stretchpoint-x Attribute

@@ -19917,7 +25550,7 @@

draw:path-stretchpoint-x Attr Datatypes - double  + double    @@ -19925,6 +25558,10 @@

draw:path-stretchpoint-x Attr   + + RNG Relations + draw:path-stretchpoint-x="<double>"   +

draw:path-stretchpoint-y Attribute

@@ -19938,7 +25575,7 @@

draw:path-stretchpoint-y Attr Datatypes - double  + double    @@ -19946,6 +25583,10 @@

draw:path-stretchpoint-y Attr   + + RNG Relations + draw:path-stretchpoint-y="<double>"   +

draw:points Attribute

@@ -19962,7 +25603,7 @@

draw:points Attribute

Datatypes - string  + string    @@ -19970,6 +25611,10 @@

draw:points Attribute

  + + RNG Relations + draw:points="string]"   +

draw:protected Attribute

@@ -19988,10 +25633,14 @@

draw:protected Attribute

Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + draw:protected="<boolean>"   +

draw:recreate-on-edit Attribute

@@ -20011,10 +25660,14 @@

draw:recreate-on-edit Attribute< Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + draw:recreate-on-edit="<boolean>"   +

draw:rotation Attribute

@@ -20028,7 +25681,7 @@

draw:rotation Attribute

Datatypes - integer  + integer    @@ -20036,6 +25689,10 @@

draw:rotation Attribute

  + + RNG Relations + draw:rotation="<integer>"   +

draw:shape-id Attribute

@@ -20054,7 +25711,7 @@

draw:shape-id Attribute

Datatypes - IDREF  + IDREF    @@ -20062,6 +25719,10 @@

draw:shape-id Attribute

  + + RNG Relations + draw:shape-id="<IDREF>"   +

draw:sharpness Attribute

@@ -20075,7 +25736,7 @@

draw:sharpness Attribute

Datatypes - string  + string    @@ -20083,6 +25744,10 @@

draw:sharpness Attribute

  + + RNG Relations + draw:sharpness="string]"   +

draw:start Attribute

@@ -20096,7 +25761,7 @@

draw:start Attribute

Datatypes - string  + string    @@ -20104,6 +25769,10 @@

draw:start Attribute

  + + RNG Relations + draw:start="string]"   +

draw:start-angle Attribute

@@ -20118,7 +25787,7 @@

draw:start-angle Attribute

Datatypes - double  + double    @@ -20126,6 +25795,10 @@

draw:start-angle Attribute

  + + RNG Relations + draw:start-angle="<double>"   +

draw:start-color Attribute

@@ -20139,7 +25812,7 @@

draw:start-color Attribute

Datatypes - string  + string    @@ -20147,6 +25820,10 @@

draw:start-color Attribute

  + + RNG Relations + draw:start-color="string]"   +

draw:start-glue-point Attribute

@@ -20160,7 +25837,7 @@

draw:start-glue-point Attribute< Datatypes - nonNegativeInteger  + nonNegativeInteger    @@ -20168,6 +25845,10 @@

draw:start-glue-point Attribute<   + + RNG Relations + draw:start-glue-point="<nonNegativeInteger>"   +

draw:start-intensity Attribute

@@ -20181,7 +25862,7 @@

draw:start-intensity Attribute Datatypes - string  + string    @@ -20189,6 +25870,10 @@

draw:start-intensity Attribute   + + RNG Relations + draw:start-intensity="string]"   +

draw:start-shape Attribute

@@ -20202,7 +25887,7 @@

draw:start-shape Attribute

Datatypes - IDREF  + IDREF    @@ -20210,6 +25895,10 @@

draw:start-shape Attribute

  + + RNG Relations + draw:start-shape="<IDREF>"   +

draw:style[1] Attribute

@@ -20230,14 +25919,18 @@

draw:style[1] Attribute

Values - "axial"  - "ellipsoid"  - "linear"  - "radial"  - "rectangular"  - "square"  + "axial"  + "ellipsoid"  + "linear"  + "radial"  + "rectangular"  + "square"    + + RNG Relations + draw:style="linear | axial | radial | ellipsoid | square | rectangular"   +

draw:style[2] Attribute

@@ -20257,10 +25950,14 @@

draw:style[2] Attribute

Values - "rect"  - "round"  + "rect"  + "round"    + + RNG Relations + draw:style="rect | round"   +

draw:style[3] Attribute

@@ -20280,11 +25977,15 @@

draw:style[3] Attribute

Values - "double"  - "single"  - "triple"  + "double"  + "single"  + "triple"    + + RNG Relations + draw:style="single | double | triple"   +

draw:style-name Attribute

@@ -20323,7 +26024,7 @@

draw:style-name Attribute

Datatypes - NCName  + NCName    @@ -20331,6 +26032,10 @@

draw:style-name Attribute

  + + RNG Relations + draw:style-name="(<NCName>)?"   +

draw:text-areas Attribute

@@ -20344,7 +26049,7 @@

draw:text-areas Attribute

Datatypes - string  + string    @@ -20352,6 +26057,10 @@

draw:text-areas Attribute

  + + RNG Relations + draw:text-areas="<string>"   +

draw:text-path Attribute

@@ -20370,10 +26079,14 @@

draw:text-path Attribute

Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + draw:text-path="<boolean>"   +

draw:text-path-allowed Attribute

@@ -20392,10 +26105,14 @@

draw:text-path-allowed Attribut Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + draw:text-path-allowed="<boolean>"   +

draw:text-path-mode Attribute

@@ -20414,11 +26131,15 @@

draw:text-path-mode Attribute< Values - "normal"  - "path"  - "shape"  + "normal"  + "path"  + "shape"    + + RNG Relations + draw:text-path-mode="normal | path | shape"   +

draw:text-path-same-letter-heights Attribute

@@ -20437,10 +26158,14 @@

draw:text-path-same Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + draw:text-path-same-letter-heights="<boolean>"   +

draw:text-path-scale Attribute

@@ -20459,10 +26184,14 @@

draw:text-path-scale Attribute Values - "path"  - "shape"  + "path"  + "shape"    + + RNG Relations + draw:text-path-scale="path | shape"   +

draw:text-rotate-angle Attribute

@@ -20476,7 +26205,7 @@

draw:text-rotate-angle Attribut Datatypes - double  + double    @@ -20484,6 +26213,10 @@

draw:text-rotate-angle Attribut   + + RNG Relations + draw:text-rotate-angle="<double>"   +

draw:text-style-name Attribute

@@ -20511,7 +26244,7 @@

draw:text-style-name Attribute Datatypes - NCName  + NCName    @@ -20519,6 +26252,10 @@

draw:text-style-name Attribute   + + RNG Relations + draw:text-style-name="(<NCName>)?"   +

draw:transform Attribute

@@ -20547,7 +26284,7 @@

draw:transform Attribute

Datatypes - string  + string    @@ -20555,6 +26292,10 @@

draw:transform Attribute

  + + RNG Relations + draw:transform="<string>"   +

draw:type[1] Attribute

@@ -20574,12 +26315,16 @@

draw:type[1] Attribute

Values - "curve"  - "line"  - "lines"  - "standard"  + "curve"  + "line"  + "lines"  + "standard"    + + RNG Relations + draw:type="standard | lines | line | curve"   +

draw:type[2] Attribute

@@ -20594,15 +26339,19 @@

draw:type[2] Attribute

Datatypes - string  + string    Values - "non-primitive"  + "non-primitive"    + + RNG Relations + draw:type="non-primitive | <string>"   +

draw:value Attribute

@@ -20623,6 +26372,10 @@

draw:value Attribute

  + + RNG Relations + draw:value="TEXT"   +

draw:z-index Attribute

@@ -20657,7 +26410,7 @@

draw:z-index Attribute

Datatypes - nonNegativeInteger  + nonNegativeInteger    @@ -20665,6 +26418,10 @@

draw:z-index Attribute

  + + RNG Relations + draw:z-index="<nonNegativeInteger>"   +

fo:country Attribute

@@ -20679,7 +26436,7 @@

fo:country Attribute

Datatypes - token  + token    @@ -20687,6 +26444,10 @@

fo:country Attribute

  + + RNG Relations + fo:country="token]"   +

fo:language Attribute

@@ -20701,7 +26462,7 @@

fo:language Attribute

Datatypes - token  + token    @@ -20709,6 +26470,10 @@

fo:language Attribute

  + + RNG Relations + fo:language="token]"   +

fo:max-height Attribute

@@ -20722,8 +26487,8 @@

fo:max-height Attribute

Datatypes - string  - string  + string  + string    @@ -20731,6 +26496,10 @@

fo:max-height Attribute

  + + RNG Relations + fo:max-height="string] | string]"   +

fo:max-width Attribute

@@ -20744,8 +26513,8 @@

fo:max-width Attribute

Datatypes - string  - string  + string  + string    @@ -20753,6 +26522,10 @@

fo:max-width Attribute

  + + RNG Relations + fo:max-width="string] | string]"   +

fo:min-height Attribute

@@ -20766,8 +26539,8 @@

fo:min-height Attribute

Datatypes - string  - string  + string  + string    @@ -20775,6 +26548,10 @@

fo:min-height Attribute

  + + RNG Relations + fo:min-height="string] | string]"   +

fo:min-width Attribute

@@ -20788,8 +26565,8 @@

fo:min-width Attribute

Datatypes - string  - string  + string  + string    @@ -20797,6 +26574,10 @@

fo:min-width Attribute

  + + RNG Relations + fo:min-width="string] | string]"   +

form:allow-deletes Attribute

@@ -20815,10 +26596,14 @@

form:allow-deletes Attribute Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + form:allow-deletes="<boolean>"   +

form:allow-inserts Attribute

@@ -20837,10 +26622,14 @@

form:allow-inserts Attribute Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + form:allow-inserts="<boolean>"   +

form:allow-updates Attribute

@@ -20859,10 +26648,14 @@

form:allow-updates Attribute Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + form:allow-updates="<boolean>"   +

form:apply-design-mode Attribute

@@ -20881,10 +26674,14 @@

form:apply-design-mode Attribut Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + form:apply-design-mode="<boolean>"   +

form:apply-filter Attribute

@@ -20903,10 +26700,14 @@

form:apply-filter Attribute

Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + form:apply-filter="<boolean>"   +

form:auto-complete Attribute

@@ -20925,10 +26726,14 @@

form:auto-complete Attribute Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + form:auto-complete="<boolean>"   +

form:automatic-focus Attribute

@@ -20947,10 +26752,14 @@

form:automatic-focus Attribute Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + form:automatic-focus="<boolean>"   +

form:bound-column Attribute

@@ -20964,7 +26773,7 @@

form:bound-column Attribute

Datatypes - string  + string    @@ -20972,6 +26781,10 @@

form:bound-column Attribute

  + + RNG Relations + form:bound-column="<string>"   +

form:button-type Attribute

@@ -20991,12 +26804,16 @@

form:button-type Attribute

Values - "push"  - "reset"  - "submit"  - "url"  + "push"  + "reset"  + "submit"  + "url"    + + RNG Relations + form:button-type="submit | reset | push | url"   +

form:command Attribute

@@ -21017,6 +26834,10 @@

form:command Attribute

  + + RNG Relations + form:command="TEXT"   +

form:command-type Attribute

@@ -21035,11 +26856,15 @@

form:command-type Attribute

Values - "command"  - "query"  - "table"  + "command"  + "query"  + "table"    + + RNG Relations + form:command-type="table | query | command"   +

form:control-implementation Attribute

@@ -21075,7 +26900,7 @@

form:control-implementatio Datatypes - string  + string    @@ -21083,6 +26908,10 @@

form:control-implementatio   + + RNG Relations + form:control-implementation="string]"   +

form:convert-empty-to-null Attribute

@@ -21108,10 +26937,14 @@

form:convert-empty-to-null Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + form:convert-empty-to-null="<boolean>"   +

form:current-selected Attribute

@@ -21131,10 +26964,14 @@

form:current-selected Attribute< Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + form:current-selected="<boolean>"   +

form:current-state Attribute

@@ -21153,11 +26990,15 @@

form:current-state Attribute Values - "checked"  - "unchecked"  - "unknown"  + "checked"  + "unchecked"  + "unknown"    + + RNG Relations + form:current-state="unchecked | checked | unknown"   +

form:current-value[1] Attribute

@@ -21166,17 +27007,13 @@

form:current-value[1] Attribute Parent Elements - form:combobox  - form:file  - form:formatted-text  - form:text  - form:textarea  + form:number    Datatypes - string  + double    @@ -21184,6 +27021,10 @@

form:current-value[1] Attribute   + + RNG Relations + form:current-value="<double>"   +

form:current-value[2] Attribute

@@ -21192,13 +27033,17 @@

form:current-value[2] Attribute Parent Elements - form:date  + form:combobox  + form:file  + form:formatted-text  + form:text  + form:textarea    Datatypes - date  + string    @@ -21206,6 +27051,10 @@

form:current-value[2] Attribute   + + RNG Relations + form:current-value="<string>"   +

form:current-value[3] Attribute

@@ -21214,13 +27063,13 @@

form:current-value[3] Attribute Parent Elements - form:number  + form:date    Datatypes - double  + date    @@ -21228,6 +27077,10 @@

form:current-value[3] Attribute   + + RNG Relations + form:current-value="<date>"   +

form:current-value[4] Attribute

@@ -21242,7 +27095,7 @@

form:current-value[4] Attribute Datatypes - time  + time    @@ -21250,6 +27103,10 @@

form:current-value[4] Attribute   + + RNG Relations + form:current-value="<time>"   +

form:data-field Attribute

@@ -21273,7 +27130,7 @@

form:data-field Attribute

Datatypes - string  + string    @@ -21281,6 +27138,10 @@

form:data-field Attribute

  + + RNG Relations + form:data-field="<string>"   +

form:datasource Attribute

@@ -21294,8 +27155,8 @@

form:datasource Attribute

Datatypes - anyURI  - string  + anyURI  + string    @@ -21303,6 +27164,10 @@

form:datasource Attribute

  + + RNG Relations + form:datasource="<anyURI> | <string>"   +

form:default-button Attribute

@@ -21321,10 +27186,14 @@

form:default-button Attribute< Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + form:default-button="<boolean>"   +

form:delay-for-repeat Attribute

@@ -21338,7 +27207,7 @@

form:delay-for-repeat Attribute< Datatypes - duration  + duration    @@ -21346,6 +27215,10 @@

form:delay-for-repeat Attribute<   + + RNG Relations + form:delay-for-repeat="<duration>"   +

form:detail-fields Attribute

@@ -21359,7 +27232,7 @@

form:detail-fields Attribute Datatypes - string  + string    @@ -21367,6 +27240,10 @@

form:detail-fields Attribute   + + RNG Relations + form:detail-fields="<string>"   +

form:disabled Attribute

@@ -21403,10 +27280,14 @@

form:disabled Attribute

Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + form:disabled="<boolean>"   +

form:dropdown Attribute

@@ -21426,10 +27307,14 @@

form:dropdown Attribute

Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + form:dropdown="<boolean>"   +

form:echo-char Attribute

@@ -21443,7 +27328,7 @@

form:echo-char Attribute

Datatypes - string  + string    @@ -21451,6 +27336,10 @@

form:echo-char Attribute

  + + RNG Relations + form:echo-char="string]"   +

form:enctype Attribute

@@ -21464,7 +27353,7 @@

form:enctype Attribute

Datatypes - string  + string    @@ -21472,6 +27361,10 @@

form:enctype Attribute

  + + RNG Relations + form:enctype="<string>"   +

form:escape-processing Attribute

@@ -21490,10 +27383,14 @@

form:escape-processing Attribut Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + form:escape-processing="<boolean>"   +

form:filter Attribute

@@ -21507,7 +27404,7 @@

form:filter Attribute

Datatypes - string  + string    @@ -21515,6 +27412,10 @@

form:filter Attribute

  + + RNG Relations + form:filter="<string>"   +

form:focus-on-click Attribute

@@ -21533,10 +27434,14 @@

form:focus-on-click Attribute< Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + form:focus-on-click="<boolean>"   +

form:for Attribute

@@ -21551,7 +27456,7 @@

form:for Attribute

Datatypes - string  + string    @@ -21559,6 +27464,10 @@

form:for Attribute

  + + RNG Relations + form:for="<string>"   +

form:id Attribute

@@ -21592,7 +27501,7 @@

form:id Attribute

Datatypes - ID  + ID    @@ -21600,6 +27509,10 @@

form:id Attribute

  + + RNG Relations + form:id="<ID>"   +

form:ignore-result Attribute

@@ -21618,10 +27531,14 @@

form:ignore-result Attribute Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + form:ignore-result="<boolean>"   +

form:image-align Attribute

@@ -21642,11 +27559,15 @@

form:image-align Attribute

Values - "center"  - "end"  - "start"  + "center"  + "end"  + "start"    + + RNG Relations + form:image-align="start | center | end"   +

form:image-data Attribute

@@ -21662,7 +27583,7 @@

form:image-data Attribute

Datatypes - anyURI  + anyURI    @@ -21670,6 +27591,10 @@

form:image-data Attribute

  + + RNG Relations + form:image-data="<anyURI>"   +

form:image-position[1] Attribute

@@ -21691,9 +27616,13 @@

form:image-position[1] Attribute Values - "center"  + "center"    + + RNG Relations + form:image-position="center"   +

form:image-position[2] Attribute

@@ -21715,12 +27644,16 @@

form:image-position[2] Attribute Values - "bottom"  - "end"  - "start"  - "top"  + "bottom"  + "end"  + "start"  + "top"    + + RNG Relations + form:image-position="start | end | top | bottom"   +

form:is-tristate Attribute

@@ -21739,10 +27672,14 @@

form:is-tristate Attribute

Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + form:is-tristate="<boolean>"   +

form:label Attribute

@@ -21763,7 +27700,7 @@

form:label Attribute

Datatypes - string  + string    @@ -21771,6 +27708,10 @@

form:label Attribute

  + + RNG Relations + form:label="<string>"   +

form:list-source Attribute

@@ -21785,7 +27726,7 @@

form:list-source Attribute

Datatypes - string  + string    @@ -21793,6 +27734,10 @@

form:list-source Attribute

  + + RNG Relations + form:list-source="<string>"   +

form:list-source-type Attribute

@@ -21812,14 +27757,18 @@

form:list-source-type Attribute< Values - "query"  - "sql"  - "sql-pass-through"  - "table"  - "table-fields"  - "value-list"  + "query"  + "sql"  + "sql-pass-through"  + "table"  + "table-fields"  + "value-list"    + + RNG Relations + form:list-source-type="table | query | sql | sql-pass-through | value-list | table-fields"   +

form:master-fields Attribute

@@ -21833,7 +27782,7 @@

form:master-fields Attribute Datatypes - string  + string    @@ -21841,6 +27790,10 @@

form:master-fields Attribute   + + RNG Relations + form:master-fields="<string>"   +

form:max-length Attribute

@@ -21862,7 +27815,7 @@

form:max-length Attribute

Datatypes - nonNegativeInteger  + nonNegativeInteger    @@ -21870,6 +27823,10 @@

form:max-length Attribute

  + + RNG Relations + form:max-length="<nonNegativeInteger>"   +

form:max-value[1] Attribute

@@ -21878,14 +27835,13 @@

form:max-value[1] Attribute

Parent Elements - form:formatted-text  - form:value-range  + form:time    Datatypes - string  + time    @@ -21893,6 +27849,10 @@

form:max-value[1] Attribute

  + + RNG Relations + form:max-value="<time>"   +

form:max-value[2] Attribute

@@ -21901,13 +27861,13 @@

form:max-value[2] Attribute

Parent Elements - form:date  + form:number    Datatypes - date  + double    @@ -21915,6 +27875,10 @@

form:max-value[2] Attribute

  + + RNG Relations + form:max-value="<double>"   +

form:max-value[3] Attribute

@@ -21923,13 +27887,14 @@

form:max-value[3] Attribute

Parent Elements - form:time  + form:formatted-text  + form:value-range    Datatypes - time  + string    @@ -21937,6 +27902,10 @@

form:max-value[3] Attribute

  + + RNG Relations + form:max-value="<string>"   +

form:max-value[4] Attribute

@@ -21945,13 +27914,13 @@

form:max-value[4] Attribute

Parent Elements - form:number  + form:date    Datatypes - double  + date    @@ -21959,6 +27928,10 @@

form:max-value[4] Attribute

  + + RNG Relations + form:max-value="<date>"   +

form:method Attribute

@@ -21972,16 +27945,20 @@

form:method Attribute

Datatypes - string  + string    Values - "get"  - "post"  + "get"  + "post"    + + RNG Relations + form:method="get | post | <string>"   +

form:min-value[1] Attribute

@@ -21990,13 +27967,14 @@

form:min-value[1] Attribute

Parent Elements - form:date  + form:formatted-text  + form:value-range    Datatypes - date  + string    @@ -22004,6 +27982,10 @@

form:min-value[1] Attribute

  + + RNG Relations + form:min-value="<string>"   +

form:min-value[2] Attribute

@@ -22012,13 +27994,13 @@

form:min-value[2] Attribute

Parent Elements - form:time  + form:date    Datatypes - time  + date    @@ -22026,6 +28008,10 @@

form:min-value[2] Attribute

  + + RNG Relations + form:min-value="<date>"   +

form:min-value[3] Attribute

@@ -22040,7 +28026,7 @@

form:min-value[3] Attribute

Datatypes - double  + double    @@ -22048,6 +28034,10 @@

form:min-value[3] Attribute

  + + RNG Relations + form:min-value="<double>"   +

form:min-value[4] Attribute

@@ -22056,14 +28046,13 @@

form:min-value[4] Attribute

Parent Elements - form:formatted-text  - form:value-range  + form:time    Datatypes - string  + time    @@ -22071,6 +28060,10 @@

form:min-value[4] Attribute

  + + RNG Relations + form:min-value="<time>"   +

form:multi-line Attribute

@@ -22089,10 +28082,14 @@

form:multi-line Attribute

Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + form:multi-line="<boolean>"   +

form:multiple Attribute

@@ -22111,10 +28108,14 @@

form:multiple Attribute

Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + form:multiple="<boolean>"   +

form:name Attribute

@@ -22150,7 +28151,7 @@

form:name Attribute

Datatypes - string  + string    @@ -22158,6 +28159,10 @@

form:name Attribute

  + + RNG Relations + form:name="<string>"   +

form:navigation-mode Attribute

@@ -22176,11 +28181,15 @@

form:navigation-mode Attribute Values - "current"  - "none"  - "parent"  + "current"  + "none"  + "parent"    + + RNG Relations + form:navigation-mode="none | current | parent"   +

form:order Attribute

@@ -22194,7 +28203,7 @@

form:order Attribute

Datatypes - string  + string    @@ -22202,6 +28211,10 @@

form:order Attribute

  + + RNG Relations + form:order="<string>"   +

form:orientation Attribute

@@ -22220,10 +28233,14 @@

form:orientation Attribute

Values - "horizontal"  - "vertical"  + "horizontal"  + "vertical"    + + RNG Relations + form:orientation="horizontal | vertical"   +

form:page-step-size Attribute

@@ -22237,7 +28254,7 @@

form:page-step-size Attribute< Datatypes - positiveInteger  + positiveInteger    @@ -22245,6 +28262,10 @@

form:page-step-size Attribute<   + + RNG Relations + form:page-step-size="<positiveInteger>"   +

form:printable Attribute

@@ -22281,10 +28302,14 @@

form:printable Attribute

Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + form:printable="<boolean>"   +

form:property-name Attribute

@@ -22299,7 +28324,7 @@

form:property-name Attribute Datatypes - string  + string    @@ -22307,6 +28332,10 @@

form:property-name Attribute   + + RNG Relations + form:property-name="<string>"   +

form:readonly Attribute

@@ -22333,10 +28362,14 @@

form:readonly Attribute

Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + form:readonly="<boolean>"   +

form:selected Attribute

@@ -22356,10 +28389,14 @@

form:selected Attribute

Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + form:selected="<boolean>"   +

form:size Attribute

@@ -22374,7 +28411,7 @@

form:size Attribute

Datatypes - nonNegativeInteger  + nonNegativeInteger    @@ -22382,6 +28419,10 @@

form:size Attribute

  + + RNG Relations + form:size="<nonNegativeInteger>"   +

form:state Attribute

@@ -22400,11 +28441,15 @@

form:state Attribute

Values - "checked"  - "unchecked"  - "unknown"  + "checked"  + "unchecked"  + "unknown"    + + RNG Relations + form:state="unchecked | checked | unknown"   +

form:step-size Attribute

@@ -22418,7 +28463,7 @@

form:step-size Attribute

Datatypes - positiveInteger  + positiveInteger    @@ -22426,6 +28471,10 @@

form:step-size Attribute

  + + RNG Relations + form:step-size="<positiveInteger>"   +

form:tab-cycle Attribute

@@ -22444,11 +28493,15 @@

form:tab-cycle Attribute

Values - "current"  - "page"  - "records"  + "current"  + "page"  + "records"    + + RNG Relations + form:tab-cycle="records | current | page"   +

form:tab-index Attribute

@@ -22477,7 +28530,7 @@

form:tab-index Attribute

Datatypes - nonNegativeInteger  + nonNegativeInteger    @@ -22485,6 +28538,10 @@

form:tab-index Attribute

  + + RNG Relations + form:tab-index="<nonNegativeInteger>"   +

form:tab-stop Attribute

@@ -22518,10 +28575,14 @@

form:tab-stop Attribute

Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + form:tab-stop="<boolean>"   +

form:text-style-name Attribute

@@ -22535,7 +28596,7 @@

form:text-style-name Attribute Datatypes - NCName  + NCName    @@ -22543,6 +28604,10 @@

form:text-style-name Attribute   + + RNG Relations + form:text-style-name="(<NCName>)?"   +

form:title Attribute

@@ -22581,6 +28646,10 @@

form:title Attribute

  + + RNG Relations + form:title="TEXT"   +

form:toggle Attribute

@@ -22599,10 +28668,14 @@

form:toggle Attribute

Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + form:toggle="<boolean>"   +

form:validation Attribute

@@ -22621,10 +28694,14 @@

form:validation Attribute

Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + form:validation="<boolean>"   +

form:value[1] Attribute

@@ -22639,7 +28716,7 @@

form:value[1] Attribute

Datatypes - date  + date    @@ -22647,6 +28724,10 @@

form:value[1] Attribute

  + + RNG Relations + form:value="<date>"   +

form:value[2] Attribute

@@ -22661,7 +28742,7 @@

form:value[2] Attribute

Datatypes - time  + time    @@ -22669,6 +28750,10 @@

form:value[2] Attribute

  + + RNG Relations + form:value="<time>"   +

form:value[3] Attribute

@@ -22683,7 +28768,7 @@

form:value[3] Attribute

Datatypes - double  + double    @@ -22691,6 +28776,10 @@

form:value[3] Attribute

  + + RNG Relations + form:value="<double>"   +

form:value[4] Attribute

@@ -22717,7 +28806,7 @@

form:value[4] Attribute

Datatypes - string  + string    @@ -22725,6 +28814,10 @@

form:value[4] Attribute

  + + RNG Relations + form:value="<string>"   +

form:visual-effect Attribute

@@ -22744,10 +28837,14 @@

form:visual-effect Attribute Values - "3d"  - "flat"  + "3d"  + "flat"    + + RNG Relations + form:visual-effect="flat | 3d"   +

form:xforms-list-source Attribute

@@ -22761,7 +28858,7 @@

form:xforms-list-source Attrib Datatypes - string  + string    @@ -22769,6 +28866,10 @@

form:xforms-list-source Attrib   + + RNG Relations + form:xforms-list-source="<string>"   +

form:xforms-submission Attribute

@@ -22782,7 +28883,7 @@

form:xforms-submission Attribut Datatypes - string  + string    @@ -22790,6 +28891,10 @@

form:xforms-submission Attribut   + + RNG Relations + form:xforms-submission="<string>"   +

number:automatic-order Attribute

@@ -22809,10 +28914,14 @@

number:automatic-order Attribut Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + number:automatic-order="<boolean>"   +

number:calendar Attribute

@@ -22832,22 +28941,26 @@

number:calendar Attribute

Datatypes - string  + string    Values - "ROC"  - "buddhist"  - "gengou"  - "gregorian"  - "hanja"  - "hanja_yoil"  - "hijri"  - "jewish"  + "ROC"  + "buddhist"  + "gengou"  + "gregorian"  + "hanja"  + "hanja_yoil"  + "hijri"  + "jewish"    + + RNG Relations + number:calendar="gregorian | gengou | ROC | hanja_yoil | hanja | hijri | jewish | buddhist | <string>"   +

number:country Attribute

@@ -22868,7 +28981,7 @@

number:country Attribute

Datatypes - token  + token    @@ -22876,6 +28989,10 @@

number:country Attribute

  + + RNG Relations + number:country="token]"   +

number:decimal-places Attribute

@@ -22891,7 +29008,7 @@

number:decimal-places Attribute< Datatypes - integer  + integer    @@ -22899,6 +29016,10 @@

number:decimal-places Attribute<   + + RNG Relations + number:decimal-places="<integer>"   +

number:decimal-replacement Attribute

@@ -22919,6 +29040,10 @@

number:decimal-replacement   + + RNG Relations + number:decimal-replacement="TEXT"   +

number:denominator-value Attribute

@@ -22932,7 +29057,7 @@

number:denominator-value Attr Datatypes - integer  + integer    @@ -22940,6 +29065,10 @@

number:denominator-value Attr   + + RNG Relations + number:denominator-value="<integer>"   +

number:display-factor Attribute

@@ -22953,7 +29082,7 @@

number:display-factor Attribute< Datatypes - double  + double    @@ -22961,6 +29090,10 @@

number:display-factor Attribute<   + + RNG Relations + number:display-factor="<double>"   +

number:format-source Attribute

@@ -22980,10 +29113,14 @@

number:format-source Attribute Values - "fixed"  - "language"  + "fixed"  + "language"    + + RNG Relations + number:format-source="fixed | language"   +

number:grouping Attribute

@@ -23004,10 +29141,14 @@

number:grouping Attribute

Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + number:grouping="<boolean>"   +

number:language Attribute

@@ -23028,7 +29169,7 @@

number:language Attribute

Datatypes - token  + token    @@ -23036,6 +29177,10 @@

number:language Attribute

  + + RNG Relations + number:language="token]"   +

number:min-denominator-digits Attribute

@@ -23049,7 +29194,7 @@

number:min-denominator-d Datatypes - integer  + integer    @@ -23057,6 +29202,10 @@

number:min-denominator-d   + + RNG Relations + number:min-denominator-digits="<integer>"   +

number:min-exponent-digits Attribute

@@ -23070,7 +29219,7 @@

number:min-exponent-digits Datatypes - integer  + integer    @@ -23078,6 +29227,10 @@

number:min-exponent-digits   + + RNG Relations + number:min-exponent-digits="<integer>"   +

number:min-integer-digits Attribute

@@ -23093,7 +29246,7 @@

number:min-integer-digits At Datatypes - integer  + integer    @@ -23101,6 +29254,10 @@

number:min-integer-digits At   + + RNG Relations + number:min-integer-digits="<integer>"   +

number:min-numerator-digits Attribute

@@ -23114,7 +29271,7 @@

number:min-numerator-digit Datatypes - integer  + integer    @@ -23122,6 +29279,10 @@

number:min-numerator-digit   + + RNG Relations + number:min-numerator-digits="<integer>"   +

number:position Attribute

@@ -23135,7 +29296,7 @@

number:position Attribute

Datatypes - integer  + integer    @@ -23143,6 +29304,10 @@

number:position Attribute

  + + RNG Relations + number:position="<integer>"   +

number:possessive-form Attribute

@@ -23161,10 +29326,14 @@

number:possessive-form Attribut Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + number:possessive-form="<boolean>"   +

number:style Attribute

@@ -23191,10 +29360,14 @@

number:style Attribute

Values - "long"  - "short"  + "long"  + "short"    + + RNG Relations + number:style="short | long"   +

number:textual Attribute

@@ -23213,10 +29386,14 @@

number:textual Attribute

Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + number:textual="<boolean>"   +

number:title Attribute

@@ -23243,6 +29420,10 @@

number:title Attribute

  + + RNG Relations + number:title="TEXT"   +

number:transliteration-country Attribute

@@ -23262,7 +29443,7 @@

number:transliteration- Datatypes - token  + token    @@ -23270,6 +29451,10 @@

number:transliteration-   + + RNG Relations + number:transliteration-country="token]"   +

number:transliteration-format Attribute

@@ -23289,7 +29474,7 @@

number:transliteration-f Datatypes - string  + string    @@ -23297,6 +29482,10 @@

number:transliteration-f   + + RNG Relations + number:transliteration-format="<string>"   +

number:transliteration-language Attribute

@@ -23316,7 +29505,7 @@

number:transliteration Datatypes - token  + token    @@ -23324,6 +29513,10 @@

number:transliteration   + + RNG Relations + number:transliteration-language="token]"   +

number:transliteration-style Attribute

@@ -23348,11 +29541,15 @@

number:transliteration-st Values - "long"  - "medium"  - "short"  + "long"  + "medium"  + "short"    + + RNG Relations + number:transliteration-style="short | medium | long"   +

number:truncate-on-overflow Attribute

@@ -23371,10 +29568,14 @@

number:truncate-on-overflo Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + number:truncate-on-overflow="<boolean>"   +

office:automatic-update Attribute

@@ -23394,10 +29595,14 @@

office:automatic-update Attrib Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + office:automatic-update="<boolean>"   +

office:boolean-value Attribute

@@ -23405,7 +29610,7 @@

office:boolean-value Attribute Parent Elements - form:list-value[4]  + form:list-value[6]  form:property  table:change-track-table-cell  table:covered-table-cell  @@ -23424,10 +29629,14 @@

office:boolean-value Attribute Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + office:boolean-value="<boolean>"   +

office:conversion-mode Attribute

@@ -23446,11 +29655,15 @@

office:conversion-mode Attribut Values - "into-default-style-data-style"  - "into-english-number"  - "keep-text"  + "into-default-style-data-style"  + "into-english-number"  + "keep-text"    + + RNG Relations + office:conversion-mode="into-default-style-data-style | into-english-number | keep-text"   +

office:currency Attribute

@@ -23458,7 +29671,7 @@

office:currency Attribute

Parent Elements - form:list-value[5]  + form:list-value[1]  form:property  table:change-track-table-cell  table:covered-table-cell  @@ -23471,7 +29684,7 @@

office:currency Attribute

Datatypes - string  + string    @@ -23479,6 +29692,10 @@

office:currency Attribute

  + + RNG Relations + office:currency="<string>"   +

office:date-value Attribute

@@ -23486,7 +29703,7 @@

office:date-value Attribute

Parent Elements - form:list-value[7]  + form:list-value[2]  form:property  table:change-track-table-cell  table:covered-table-cell  @@ -23500,8 +29717,8 @@

office:date-value Attribute

Datatypes - date  - dateTime  + date  + dateTime    @@ -23509,6 +29726,10 @@

office:date-value Attribute

  + + RNG Relations + office:date-value="<date> | <dateTime>"   +

office:dde-application Attribute

@@ -23523,7 +29744,7 @@

office:dde-application Attribut Datatypes - string  + string    @@ -23531,6 +29752,10 @@

office:dde-application Attribut   + + RNG Relations + office:dde-application="<string>"   +

office:dde-item Attribute

@@ -23545,7 +29770,7 @@

office:dde-item Attribute

Datatypes - string  + string    @@ -23553,6 +29778,10 @@

office:dde-item Attribute

  + + RNG Relations + office:dde-item="<string>"   +

office:dde-topic Attribute

@@ -23567,7 +29796,7 @@

office:dde-topic Attribute

Datatypes - string  + string    @@ -23575,6 +29804,10 @@

office:dde-topic Attribute

  + + RNG Relations + office:dde-topic="<string>"   +

office:display Attribute

@@ -23593,10 +29826,14 @@

office:display Attribute

Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + office:display="<boolean>"   +

office:mimetype Attribute

@@ -23610,7 +29847,7 @@

office:mimetype Attribute

Datatypes - string  + string    @@ -23618,6 +29855,10 @@

office:mimetype Attribute

  + + RNG Relations + office:mimetype="<string>"   +

office:name Attribute

@@ -23637,7 +29878,7 @@

office:name Attribute

Datatypes - string  + string    @@ -23645,6 +29886,10 @@

office:name Attribute

  + + RNG Relations + office:name="<string>"   +

office:server-map Attribute

@@ -23663,10 +29908,14 @@

office:server-map Attribute

Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + office:server-map="<boolean>"   +

office:string-value Attribute

@@ -23674,7 +29923,7 @@

office:string-value Attribute< Parent Elements - form:list-value[2]  + form:list-value[3]  form:property  table:change-track-table-cell  table:covered-table-cell  @@ -23688,7 +29937,7 @@

office:string-value Attribute< Datatypes - string  + string    @@ -23696,6 +29945,10 @@

office:string-value Attribute<   + + RNG Relations + office:string-value="<string>"   +

office:target-frame Attribute

@@ -23711,18 +29964,22 @@

office:target-frame Attribute< Datatypes - string  + string    Values - "_blank"  - "_parent"  - "_self"  - "_top"  + "_blank"  + "_parent"  + "_self"  + "_top"    + + RNG Relations + office:target-frame="_self | _blank | _parent | _top | <string>"   +

office:target-frame-name Attribute

@@ -23740,18 +29997,22 @@

office:target-frame-name Attr Datatypes - string  + string    Values - "_blank"  - "_parent"  - "_self"  - "_top"  + "_blank"  + "_parent"  + "_self"  + "_top"    + + RNG Relations + office:target-frame-name="_self | _blank | _parent | _top | <string>"   +

office:time-value Attribute

@@ -23759,7 +30020,7 @@

office:time-value Attribute

Parent Elements - form:list-value[1]  + form:list-value[4]  form:property  table:change-track-table-cell  table:covered-table-cell  @@ -23773,7 +30034,7 @@

office:time-value Attribute

Datatypes - duration  + duration    @@ -23781,6 +30042,10 @@

office:time-value Attribute

  + + RNG Relations + office:time-value="<duration>"   +

office:title Attribute (new in ODF 1.1)

@@ -23795,7 +30060,7 @@

office:title Attribute (new in O Datatypes - string  + string    @@ -23803,6 +30068,10 @@

office:title Attribute (new in O   + + RNG Relations + office:title="<string>"   +

office:value Attribute

@@ -23810,9 +30079,9 @@

office:value Attribute

Parent Elements - form:list-value[3]  + form:list-value[1]  form:list-value[5]  - form:list-value[6]  + form:list-value[7]  form:property  table:change-track-table-cell  table:covered-table-cell  @@ -23826,7 +30095,7 @@

office:value Attribute

Datatypes - double  + double    @@ -23834,6 +30103,10 @@

office:value Attribute

  + + RNG Relations + office:value="<double>"   +

office:value-type[1] Attribute

@@ -23860,9 +30133,13 @@

office:value-type[1] Attribute Values - "string"  + "percentage"    + + RNG Relations + office:value-type="percentage"   +

office:value-type[2] Attribute

@@ -23889,9 +30166,13 @@

office:value-type[2] Attribute Values - "date"  + "string"    + + RNG Relations + office:value-type="string"   +

office:value-type[3] Attribute

@@ -23918,9 +30199,13 @@

office:value-type[3] Attribute Values - "time"  + "date"    + + RNG Relations + office:value-type="date"   +

office:value-type[4] Attribute

@@ -23947,9 +30232,13 @@

office:value-type[4] Attribute Values - "currency"  + "time"    + + RNG Relations + office:value-type="time"   +

office:value-type[5] Attribute

@@ -23960,6 +30249,12 @@

office:value-type[5] Attribute form:list-property  form:property  + table:change-track-table-cell  + table:covered-table-cell  + table:table-cell  + text:expression  + text:user-field-decl  + text:variable-set    @@ -23970,9 +30265,13 @@

office:value-type[5] Attribute Values - "void"  + "float"    + + RNG Relations + office:value-type="float"   +

office:value-type[6] Attribute

@@ -23999,9 +30298,13 @@

office:value-type[6] Attribute Values - "percentage"  + "boolean"    + + RNG Relations + office:value-type="boolean"   +

office:value-type[7] Attribute

@@ -24012,12 +30315,6 @@

office:value-type[7] Attribute form:list-property  form:property  - table:change-track-table-cell  - table:covered-table-cell  - table:table-cell  - text:expression  - text:user-field-decl  - text:variable-set    @@ -24028,9 +30325,13 @@

office:value-type[7] Attribute Values - "float"  + "void"    + + RNG Relations + office:value-type="void"   +

office:value-type[8] Attribute

@@ -24039,8 +30340,14 @@

office:value-type[8] Attribute Parent Elements - text:variable-decl  - text:variable-input  + form:list-property  + form:property  + table:change-track-table-cell  + table:covered-table-cell  + table:table-cell  + text:expression  + text:user-field-decl  + text:variable-set    @@ -24051,15 +30358,13 @@

office:value-type[8] Attribute Values - "boolean"  - "currency"  - "date"  - "float"  - "percentage"  - "string"  - "time"  + "currency"    + + RNG Relations + office:value-type="currency"   +

office:value-type[9] Attribute

@@ -24068,14 +30373,8 @@

office:value-type[9] Attribute Parent Elements - form:list-property  - form:property  - table:change-track-table-cell  - table:covered-table-cell  - table:table-cell  - text:expression  - text:user-field-decl  - text:variable-set  + text:variable-decl  + text:variable-input    @@ -24086,9 +30385,19 @@

office:value-type[9] Attribute Values - "boolean"  + "boolean"  + "currency"  + "date"  + "float"  + "percentage"  + "string"  + "time"    + + RNG Relations + office:value-type="float | time | date | percentage | currency | boolean | string"   +

office:version Attribute

@@ -24106,7 +30415,7 @@

office:version Attribute

Datatypes - string  + string    @@ -24114,6 +30423,10 @@

office:version Attribute

  + + RNG Relations + office:version="<string>"   +

presentation:action Attribute

@@ -24132,20 +30445,24 @@

presentation:action Attribute< Values - "execute"  - "fade-out"  - "first-page"  - "hide"  - "last-page"  - "next-page"  - "none"  - "previous-page"  - "show"  - "sound"  - "stop"  - "verb"  + "execute"  + "fade-out"  + "first-page"  + "hide"  + "last-page"  + "next-page"  + "none"  + "previous-page"  + "show"  + "sound"  + "stop"  + "verb"    + + RNG Relations + presentation:action="none | previous-page | next-page | first-page | last-page | hide | stop | execute | show | verb | fade-out | sound"   +

presentation:animations Attribute

@@ -24164,10 +30481,14 @@

presentation:animations Attrib Values - "disabled"  - "enabled"  + "disabled"  + "enabled"    + + RNG Relations + presentation:animations="enabled | disabled"   +

presentation:class Attribute

@@ -24187,24 +30508,28 @@

presentation:class Attribute Values - "chart"  - "date-time"  - "footer"  - "graphic"  - "handout"  - "header"  - "notes"  - "object"  - "orgchart"  - "outline"  - "page"  - "page-number"  - "subtitle"  - "table"  - "text"  - "title"  + "chart"  + "date-time"  + "footer"  + "graphic"  + "handout"  + "header"  + "notes"  + "object"  + "orgchart"  + "outline"  + "page"  + "page-number"  + "subtitle"  + "table"  + "text"  + "title"    + + RNG Relations + presentation:class="title | outline | subtitle | text | graphic | object | chart | table | orgchart | page | notes | handout | header | footer | date-time | page-number"   +

presentation:class-names Attribute

@@ -24239,7 +30564,7 @@

presentation:class-names Attr Datatypes - NCName  + NCName    @@ -24247,6 +30572,12 @@

presentation:class-names Attr   + + RNG Relations + presentation:class-names=" +START_list(<NCName>)* +END_list"   +

presentation:delay Attribute

@@ -24263,7 +30594,7 @@

presentation:delay Attribute Datatypes - duration  + duration    @@ -24271,6 +30602,10 @@

presentation:delay Attribute   + + RNG Relations + presentation:delay="<duration>"   +

presentation:direction Attribute

@@ -24293,36 +30628,40 @@

presentation:direction Attribut Values - "clockwise"  - "counter-clockwise"  - "from-bottom"  - "from-center"  - "from-left"  - "from-lower-left"  - "from-lower-right"  - "from-right"  - "from-top"  - "from-upper-left"  - "from-upper-right"  - "horizontal"  - "none"  - "path"  - "spiral-inward-left"  - "spiral-inward-right"  - "spiral-outward-left"  - "spiral-outward-right"  - "to-bottom"  - "to-center"  - "to-left"  - "to-lower-left"  - "to-lower-right"  - "to-right"  - "to-top"  - "to-upper-left"  - "to-upper-right"  - "vertical"  + "clockwise"  + "counter-clockwise"  + "from-bottom"  + "from-center"  + "from-left"  + "from-lower-left"  + "from-lower-right"  + "from-right"  + "from-top"  + "from-upper-left"  + "from-upper-right"  + "horizontal"  + "none"  + "path"  + "spiral-inward-left"  + "spiral-inward-right"  + "spiral-outward-left"  + "spiral-outward-right"  + "to-bottom"  + "to-center"  + "to-left"  + "to-lower-left"  + "to-lower-right"  + "to-right"  + "to-top"  + "to-upper-left"  + "to-upper-right"  + "vertical"    + + RNG Relations + presentation:direction="none | from-left | from-top | from-right | from-bottom | from-center | from-upper-left | from-upper-right | from-lower-left | from-lower-right | to-left | to-top | to-right | to-bottom | to-upper-left | to-upper-right | to-lower-right | to-lower-left | path | spiral-inward-left | spiral-inward-right | spiral-outward-left | spiral-outward-right | vertical | horizontal | to-center | clockwise | counter-clockwise"   +

presentation:effect Attribute

@@ -24345,25 +30684,29 @@

presentation:effect Attribute< Values - "appear"  - "checkerboard"  - "close"  - "dissolve"  - "fade"  - "hide"  - "laser"  - "lines"  - "move"  - "move-short"  - "none"  - "open"  - "random"  - "rotate"  - "stretch"  - "stripes"  - "wavyline"  + "appear"  + "checkerboard"  + "close"  + "dissolve"  + "fade"  + "hide"  + "laser"  + "lines"  + "move"  + "move-short"  + "none"  + "open"  + "random"  + "rotate"  + "stretch"  + "stripes"  + "wavyline"    + + RNG Relations + presentation:effect="none | fade | move | stripes | open | close | dissolve | wavyline | random | lines | laser | appear | hide | move-short | checkerboard | rotate | stretch"   +

presentation:endless Attribute

@@ -24382,10 +30725,14 @@

presentation:endless Attribute Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + presentation:endless="<boolean>"   +

presentation:force-manual Attribute

@@ -24404,10 +30751,14 @@

presentation:force-manual At Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + presentation:force-manual="<boolean>"   +

presentation:full-screen Attribute

@@ -24426,10 +30777,14 @@

presentation:full-screen Attr Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + presentation:full-screen="<boolean>"   +

presentation:group-id Attribute

@@ -24447,7 +30802,7 @@

presentation:group-id Attribute< Datatypes - string  + string    @@ -24455,6 +30810,10 @@

presentation:group-id Attribute<   + + RNG Relations + presentation:group-id="<string>"   +

presentation:master-element Attribute

@@ -24472,7 +30831,7 @@

presentation:master-elemen Datatypes - IDREF  + IDREF    @@ -24480,6 +30839,10 @@

presentation:master-elemen   + + RNG Relations + presentation:master-element="<IDREF>"   +

presentation:mouse-as-pen Attribute

@@ -24498,10 +30861,14 @@

presentation:mouse-as-pen At Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + presentation:mouse-as-pen="<boolean>"   +

presentation:mouse-visible Attribute

@@ -24520,10 +30887,14 @@

presentation:mouse-visible Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + presentation:mouse-visible="<boolean>"   +

presentation:name Attribute

@@ -24540,7 +30911,7 @@

presentation:name Attribute

Datatypes - string  + string    @@ -24548,6 +30919,10 @@

presentation:name Attribute

  + + RNG Relations + presentation:name="<string>"   +

presentation:node-type Attribute

@@ -24570,15 +30945,19 @@

presentation:node-type Attribut Values - "after-previous"  - "default"  - "interactive-sequence"  - "main-sequence"  - "on-click"  - "timing-root"  - "with-previous"  + "after-previous"  + "default"  + "interactive-sequence"  + "main-sequence"  + "on-click"  + "timing-root"  + "with-previous"    + + RNG Relations + presentation:node-type="default | on-click | with-previous | after-previous | timing-root | main-sequence | interactive-sequence"   +

presentation:object Attribute

@@ -24597,24 +30976,28 @@

presentation:object Attribute< Values - "chart"  - "date-time"  - "footer"  - "graphic"  - "handout"  - "header"  - "notes"  - "object"  - "orgchart"  - "outline"  - "page"  - "page-number"  - "subtitle"  - "table"  - "text"  - "title"  + "chart"  + "date-time"  + "footer"  + "graphic"  + "handout"  + "header"  + "notes"  + "object"  + "orgchart"  + "outline"  + "page"  + "page-number"  + "subtitle"  + "table"  + "text"  + "title"    + + RNG Relations + presentation:object="title | outline | subtitle | text | graphic | object | chart | table | orgchart | page | notes | handout | header | footer | date-time | page-number"   +

presentation:pages Attribute

@@ -24635,6 +31018,10 @@

presentation:pages Attribute   + + RNG Relations + presentation:pages="TEXT"   +

presentation:path-id Attribute

@@ -24658,6 +31045,10 @@

presentation:path-id Attribute   + + RNG Relations + presentation:path-id="TEXT"   +

presentation:pause Attribute

@@ -24671,7 +31062,7 @@

presentation:pause Attribute Datatypes - duration  + duration    @@ -24679,6 +31070,10 @@

presentation:pause Attribute   + + RNG Relations + presentation:pause="<duration>"   +

presentation:placeholder Attribute

@@ -24698,10 +31093,14 @@

presentation:placeholder Attr Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + presentation:placeholder="<boolean>"   +

presentation:play-full Attribute

@@ -24720,10 +31119,14 @@

presentation:play-full Attribut Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + presentation:play-full="<boolean>"   +

presentation:presentation-page-layout-name Attribute

@@ -24738,7 +31141,7 @@

presentatio Datatypes - NCName  + NCName    @@ -24746,6 +31149,10 @@

presentatio   + + RNG Relations + presentation:presentation-page-layout-name="(<NCName>)?"   +

presentation:preset-class Attribute

@@ -24768,15 +31175,19 @@

presentation:preset-class At Values - "custom"  - "emphasis"  - "entrance"  - "exit"  - "media-call"  - "motion-path"  - "ole-action"  + "custom"  + "emphasis"  + "entrance"  + "exit"  + "media-call"  + "motion-path"  + "ole-action"    + + RNG Relations + presentation:preset-class="custom | entrance | exit | emphasis | motion-path | ole-action | media-call"   +

presentation:preset-id Attribute

@@ -24794,7 +31205,7 @@

presentation:preset-id Attribut Datatypes - string  + string    @@ -24802,6 +31213,10 @@

presentation:preset-id Attribut   + + RNG Relations + presentation:preset-id="<string>"   +

presentation:preset-sub-type Attribute

@@ -24819,7 +31234,7 @@

presentation:preset-sub-t Datatypes - string  + string    @@ -24827,6 +31242,10 @@

presentation:preset-sub-t   + + RNG Relations + presentation:preset-sub-type="<string>"   +

presentation:show Attribute

@@ -24840,7 +31259,7 @@

presentation:show Attribute

Datatypes - string  + string    @@ -24848,6 +31267,10 @@

presentation:show Attribute

  + + RNG Relations + presentation:show="<string>"   +

presentation:show-end-of-presentation-slide Attribute (new in ODF 1.1)

@@ -24866,10 +31289,14 @@

presentati Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + presentation:show-end-of-presentation-slide="<boolean>"   +

presentation:show-logo Attribute

@@ -24888,10 +31315,14 @@

presentation:show-logo Attribut Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + presentation:show-logo="<boolean>"   +

presentation:source Attribute

@@ -24910,10 +31341,14 @@

presentation:source Attribute< Values - "current-date"  - "fixed"  + "current-date"  + "fixed"    + + RNG Relations + presentation:source="fixed | current-date"   +

presentation:speed Attribute

@@ -24937,11 +31372,15 @@

presentation:speed Attribute Values - "fast"  - "medium"  - "slow"  + "fast"  + "medium"  + "slow"    + + RNG Relations + presentation:speed="slow | medium | fast"   +

presentation:start-page Attribute

@@ -24955,7 +31394,7 @@

presentation:start-page Attrib Datatypes - string  + string    @@ -24963,6 +31402,10 @@

presentation:start-page Attrib   + + RNG Relations + presentation:start-page="<string>"   +

presentation:start-scale Attribute

@@ -24980,7 +31423,7 @@

presentation:start-scale Attr Datatypes - string  + string    @@ -24988,6 +31431,10 @@

presentation:start-scale Attr   + + RNG Relations + presentation:start-scale="string]"   +

presentation:start-with-navigator Attribute

@@ -25006,10 +31453,14 @@

presentation:start-w Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + presentation:start-with-navigator="<boolean>"   +

presentation:stay-on-top Attribute

@@ -25028,10 +31479,14 @@

presentation:stay-on-top Attr Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + presentation:stay-on-top="<boolean>"   +

presentation:style-name Attribute

@@ -25066,7 +31521,7 @@

presentation:style-name Attrib Datatypes - NCName  + NCName    @@ -25074,6 +31529,10 @@

presentation:style-name Attrib   + + RNG Relations + presentation:style-name="(<NCName>)?"   +

presentation:transition-on-click Attribute

@@ -25092,10 +31551,14 @@

presentation:transiti Values - "disabled"  - "enabled"  + "disabled"  + "enabled"    + + RNG Relations + presentation:transition-on-click="enabled | disabled"   +

presentation:use-date-time-name Attribute

@@ -25111,7 +31574,7 @@

presentation:use-date- Datatypes - string  + string    @@ -25119,6 +31582,10 @@

presentation:use-date-   + + RNG Relations + presentation:use-date-time-name="<string>"   +

presentation:use-footer-name Attribute

@@ -25134,7 +31601,7 @@

presentation:use-footer-n Datatypes - string  + string    @@ -25142,6 +31609,10 @@

presentation:use-footer-n   + + RNG Relations + presentation:use-footer-name="<string>"   +

presentation:use-header-name Attribute

@@ -25157,7 +31628,7 @@

presentation:use-header-n Datatypes - string  + string    @@ -25165,6 +31636,10 @@

presentation:use-header-n   + + RNG Relations + presentation:use-header-name="<string>"   +

presentation:user-transformed Attribute

@@ -25184,10 +31659,14 @@

presentation:user-transf Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + presentation:user-transformed="<boolean>"   +

presentation:verb Attribute

@@ -25201,7 +31680,7 @@

presentation:verb Attribute

Datatypes - nonNegativeInteger  + nonNegativeInteger    @@ -25209,6 +31688,10 @@

presentation:verb Attribute

  + + RNG Relations + presentation:verb="<nonNegativeInteger>"   +

script:event-name Attribute

@@ -25223,7 +31706,7 @@

script:event-name Attribute

Datatypes - string  + string    @@ -25231,6 +31714,10 @@

script:event-name Attribute

  + + RNG Relations + script:event-name="<string>"   +

script:language Attribute

@@ -25246,7 +31733,7 @@

script:language Attribute

Datatypes - string  + string    @@ -25254,6 +31741,10 @@

script:language Attribute

  + + RNG Relations + script:language="<string>"   +

script:macro-name Attribute

@@ -25267,7 +31758,7 @@

script:macro-name Attribute

Datatypes - string  + string    @@ -25275,6 +31766,10 @@

script:macro-name Attribute

  + + RNG Relations + script:macro-name="<string>"   +

smil:accelerate Attribute

@@ -25296,7 +31791,7 @@

smil:accelerate Attribute

Datatypes - double  + double    @@ -25304,6 +31799,10 @@

smil:accelerate Attribute

  + + RNG Relations + smil:accelerate="<double>"   +

smil:accumulate Attribute

@@ -25327,10 +31826,14 @@

smil:accumulate Attribute

Values - "none"  - "sum"  + "none"  + "sum"    + + RNG Relations + smil:accumulate="none | sum"   +

smil:additive Attribute

@@ -25354,10 +31857,14 @@

smil:additive Attribute

Values - "replace"  - "sum"  + "replace"  + "sum"    + + RNG Relations + smil:additive="replace | sum"   +

smil:attributeName Attribute

@@ -25375,7 +31882,7 @@

smil:attributeName Attribute Datatypes - string  + string    @@ -25383,6 +31890,10 @@

smil:attributeName Attribute   + + RNG Relations + smil:attributeName="<string>"   +

smil:autoReverse Attribute

@@ -25409,10 +31920,14 @@

smil:autoReverse Attribute

Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + smil:autoReverse="<boolean>"   +

smil:begin Attribute

@@ -25436,7 +31951,7 @@

smil:begin Attribute

Datatypes - string  + string    @@ -25444,6 +31959,10 @@

smil:begin Attribute

  + + RNG Relations + smil:begin="<string>"   +

smil:by Attribute

@@ -25461,7 +31980,7 @@

smil:by Attribute

Datatypes - string  + string    @@ -25469,6 +31988,10 @@

smil:by Attribute

  + + RNG Relations + smil:by="<string>"   +

smil:calcMode Attribute

@@ -25490,12 +32013,16 @@

smil:calcMode Attribute

Values - "discrete"  - "linear"  - "paced"  - "spline"  + "discrete"  + "linear"  + "paced"  + "spline"    + + RNG Relations + smil:calcMode="discrete | linear | paced | spline"   +

smil:decelerate Attribute

@@ -25517,7 +32044,7 @@

smil:decelerate Attribute

Datatypes - double  + double    @@ -25525,6 +32052,10 @@

smil:decelerate Attribute

  + + RNG Relations + smil:decelerate="<double>"   +

smil:direction Attribute

@@ -25543,10 +32074,14 @@

smil:direction Attribute

Values - "forward"  - "reverse"  + "forward"  + "reverse"    + + RNG Relations + smil:direction="forward | reverse"   +

smil:dur Attribute

@@ -25569,7 +32104,7 @@

smil:dur Attribute

Datatypes - string  + string    @@ -25577,6 +32112,10 @@

smil:dur Attribute

  + + RNG Relations + smil:dur="<string>"   +

smil:end Attribute

@@ -25600,7 +32139,7 @@

smil:end Attribute

Datatypes - string  + string    @@ -25608,6 +32147,10 @@

smil:end Attribute

  + + RNG Relations + smil:end="<string>"   +

smil:endsync Attribute

@@ -25628,12 +32171,16 @@

smil:endsync Attribute

Values - "all"  - "first"  - "last"  - "media"  + "all"  + "first"  + "last"  + "media"    + + RNG Relations + smil:endsync="first | last | all | media"   +

smil:fadeColor Attribute

@@ -25652,10 +32199,14 @@

smil:fadeColor Attribute

Values - "forward"  - "reverse"  + "forward"  + "reverse"    + + RNG Relations + smil:fadeColor="forward | reverse"   +

smil:fill Attribute

@@ -25682,14 +32233,18 @@

smil:fill Attribute

Values - "auto"  - "default"  - "freeze"  - "hold"  - "remove"  - "transition"  + "auto"  + "default"  + "freeze"  + "hold"  + "remove"  + "transition"    + + RNG Relations + smil:fill="remove | freeze | hold | auto | default | transition"   +

smil:fillDefault Attribute

@@ -25716,14 +32271,18 @@

smil:fillDefault Attribute

Values - "auto"  - "freeze"  - "hold"  - "inherit"  - "remove"  - "transition"  + "auto"  + "freeze"  + "hold"  + "inherit"  + "remove"  + "transition"    + + RNG Relations + smil:fillDefault="remove | freeze | hold | transition | auto | inherit"   +

smil:from Attribute

@@ -25741,7 +32300,7 @@

smil:from Attribute

Datatypes - string  + string    @@ -25749,6 +32308,10 @@

smil:from Attribute

  + + RNG Relations + smil:from="<string>"   +

smil:keySplines Attribute

@@ -25764,7 +32327,7 @@

smil:keySplines Attribute

Datatypes - string  + string    @@ -25772,6 +32335,10 @@

smil:keySplines Attribute

  + + RNG Relations + smil:keySplines="<string>"   +

smil:keyTimes Attribute

@@ -25787,7 +32354,7 @@

smil:keyTimes Attribute

Datatypes - string  + string    @@ -25795,6 +32362,10 @@

smil:keyTimes Attribute

  + + RNG Relations + smil:keyTimes="<string>"   +

smil:mode Attribute

@@ -25813,10 +32384,14 @@

smil:mode Attribute

Values - "in"  - "out"  + "in"  + "out"    + + RNG Relations + smil:mode="in | out"   +

smil:repeatCount Attribute

@@ -25839,15 +32414,19 @@

smil:repeatCount Attribute

Datatypes - nonNegativeInteger  + nonNegativeInteger    Values - "indefinite"  + "indefinite"    + + RNG Relations + smil:repeatCount="<nonNegativeInteger> | indefinite"   +

smil:repeatDur Attribute

@@ -25870,7 +32449,7 @@

smil:repeatDur Attribute

Datatypes - string  + string    @@ -25878,6 +32457,10 @@

smil:repeatDur Attribute

  + + RNG Relations + smil:repeatDur="<string>"   +

smil:restart Attribute

@@ -25904,12 +32487,16 @@

smil:restart Attribute

Values - "always"  - "default"  - "never"  - "whenNotActive"  + "always"  + "default"  + "never"  + "whenNotActive"    + + RNG Relations + smil:restart="never | always | whenNotActive | default"   +

smil:restartDefault Attribute

@@ -25936,12 +32523,16 @@

smil:restartDefault Attribute< Values - "always"  - "inherit"  - "never"  - "whenNotActive"  + "always"  + "inherit"  + "never"  + "whenNotActive"    + + RNG Relations + smil:restartDefault="never | always | whenNotActive | inherit"   +

smil:subtype Attribute

@@ -25955,7 +32546,7 @@

smil:subtype Attribute

Datatypes - string  + string    @@ -25963,6 +32554,10 @@

smil:subtype Attribute

  + + RNG Relations + smil:subtype="<string>"   +

smil:targetElement Attribute

@@ -25983,7 +32578,7 @@

smil:targetElement Attribute Datatypes - IDREF  + IDREF    @@ -25991,6 +32586,10 @@

smil:targetElement Attribute   + + RNG Relations + smil:targetElement="<IDREF>"   +

smil:to Attribute

@@ -26009,7 +32608,7 @@

smil:to Attribute

Datatypes - string  + string    @@ -26017,6 +32616,10 @@

smil:to Attribute

  + + RNG Relations + smil:to="<string>"   +

smil:type Attribute

@@ -26030,7 +32633,7 @@

smil:type Attribute

Datatypes - string  + string    @@ -26038,6 +32641,10 @@

smil:type Attribute

  + + RNG Relations + smil:type="<string>"   +

smil:values Attribute

@@ -26055,7 +32662,7 @@

smil:values Attribute

Datatypes - string  + string    @@ -26063,6 +32670,10 @@

smil:values Attribute

  + + RNG Relations + smil:values="<string>"   +

style:apply-style-name Attribute

@@ -26076,7 +32687,7 @@

style:apply-style-name Attribut Datatypes - NCName  + NCName    @@ -26084,6 +32695,10 @@

style:apply-style-name Attribut   + + RNG Relations + style:apply-style-name="(<NCName>)?"   +

style:auto-update Attribute

@@ -26102,10 +32717,14 @@

style:auto-update Attribute

Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + style:auto-update="<boolean>"   +

style:base-cell-address Attribute

@@ -26119,7 +32738,7 @@

style:base-cell-address Attrib Datatypes - string  + string    @@ -26127,6 +32746,10 @@

style:base-cell-address Attrib   + + RNG Relations + style:base-cell-address="string]"   +

style:class Attribute

@@ -26140,7 +32763,7 @@

style:class Attribute

Datatypes - string  + string    @@ -26148,6 +32771,10 @@

style:class Attribute

  + + RNG Relations + style:class="<string>"   +

style:condition Attribute

@@ -26161,7 +32788,7 @@

style:condition Attribute

Datatypes - string  + string    @@ -26169,6 +32796,10 @@

style:condition Attribute

  + + RNG Relations + style:condition="<string>"   +

style:data-style-name Attribute

@@ -26201,7 +32832,7 @@

style:data-style-name Attribute< Datatypes - NCName  + NCName    @@ -26209,6 +32840,10 @@

style:data-style-name Attribute<   + + RNG Relations + style:data-style-name="(<NCName>)?"   +

style:default-outline-level Attribute

@@ -26222,7 +32857,7 @@

style:default-outline-leve Datatypes - positiveInteger  + positiveInteger    @@ -26230,6 +32865,10 @@

style:default-outline-leve   + + RNG Relations + style:default-outline-level="<positiveInteger>"   +

style:display Attribute

@@ -26251,10 +32890,14 @@

style:display Attribute

Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + style:display="<boolean>"   +

style:display-name Attribute

@@ -26271,7 +32914,7 @@

style:display-name Attribute Datatypes - string  + string    @@ -26279,6 +32922,10 @@

style:display-name Attribute   + + RNG Relations + style:display-name="<string>"   +

style:family[1] Attribute

@@ -26299,9 +32946,14 @@

style:family[1] Attribute

Values - "paragraph"  + "graphic"  + "presentation"    + + RNG Relations + style:family="graphic | presentation"   +

style:family[2] Attribute

@@ -26322,9 +32974,13 @@

style:family[2] Attribute

Values - "table-cell"  + "table-cell"    + + RNG Relations + style:family="table-cell"   +

style:family[3] Attribute

@@ -26345,9 +33001,13 @@

style:family[3] Attribute

Values - "section"  + "section"    + + RNG Relations + style:family="section"   +

style:family[4] Attribute

@@ -26368,9 +33028,13 @@

style:family[4] Attribute

Values - "drawing-page"  + "table-row"    + + RNG Relations + style:family="table-row"   +

style:family[5] Attribute

@@ -26391,9 +33055,13 @@

style:family[5] Attribute

Values - "table-row"  + "text"    + + RNG Relations + style:family="text"   +

style:family[6] Attribute

@@ -26414,9 +33082,13 @@

style:family[6] Attribute

Values - "table-column"  + "table-column"    + + RNG Relations + style:family="table-column"   +

style:family[7] Attribute

@@ -26437,9 +33109,13 @@

style:family[7] Attribute

Values - "ruby"  + "table"    + + RNG Relations + style:family="table"   +

style:family[8] Attribute

@@ -26460,9 +33136,13 @@

style:family[8] Attribute

Values - "text"  + "drawing-page"    + + RNG Relations + style:family="drawing-page"   +

style:family[9] Attribute

@@ -26483,9 +33163,13 @@

style:family[9] Attribute

Values - "chart"  + "ruby"    + + RNG Relations + style:family="ruby"   +

style:family[10] Attribute

@@ -26506,10 +33190,13 @@

style:family[10] Attribute

Values - "graphic"  - "presentation"  + "paragraph"    + + RNG Relations + style:family="paragraph"   +

style:family[11] Attribute

@@ -26530,9 +33217,13 @@

style:family[11] Attribute

Values - "table"  + "chart"    + + RNG Relations + style:family="chart"   +

style:font-adornments Attribute

@@ -26546,7 +33237,7 @@

style:font-adornments Attribute< Datatypes - string  + string    @@ -26554,6 +33245,10 @@

style:font-adornments Attribute<   + + RNG Relations + style:font-adornments="<string>"   +

style:font-charset Attribute

@@ -26567,7 +33262,7 @@

style:font-charset Attribute Datatypes - string  + string    @@ -26575,6 +33270,10 @@

style:font-charset Attribute   + + RNG Relations + style:font-charset="string]"   +

style:font-family-generic Attribute

@@ -26593,14 +33292,18 @@

style:font-family-generic At Values - "decorative"  - "modern"  - "roman"  - "script"  - "swiss"  - "system"  + "decorative"  + "modern"  + "roman"  + "script"  + "swiss"  + "system"    + + RNG Relations + style:font-family-generic="roman | swiss | modern | decorative | script | system"   +

style:font-pitch Attribute

@@ -26619,10 +33322,14 @@

style:font-pitch Attribute

Values - "fixed"  - "variable"  + "fixed"  + "variable"    + + RNG Relations + style:font-pitch="fixed | variable"   +

style:leader-char Attribute

@@ -26636,7 +33343,7 @@

style:leader-char Attribute

Datatypes - string  + string    @@ -26644,6 +33351,10 @@

style:leader-char Attribute

  + + RNG Relations + style:leader-char="string]"   +

style:legend-expansion[1] Attribute

@@ -26663,11 +33374,15 @@

style:legend-expansion[1] Attri Values - "balanced"  - "high"  - "wide"  + "balanced"  + "high"  + "wide"    + + RNG Relations + style:legend-expansion="wide | high | balanced"   +

style:legend-expansion[2] Attribute

@@ -26687,9 +33402,13 @@

style:legend-expansion[2] Attri Values - "custom"  + "custom"    + + RNG Relations + style:legend-expansion="custom"   +

style:legend-expansion-aspect-ratio Attribute

@@ -26703,7 +33422,7 @@

style:legend-expan Datatypes - double  + double    @@ -26711,6 +33430,10 @@

style:legend-expan   + + RNG Relations + style:legend-expansion-aspect-ratio="<double>"   +

style:list-style-name Attribute

@@ -26724,7 +33447,7 @@

style:list-style-name Attribute< Datatypes - NCName  + NCName    @@ -26732,6 +33455,10 @@

style:list-style-name Attribute<   + + RNG Relations + style:list-style-name="(<NCName>)?"   +

style:master-page-name Attribute

@@ -26745,7 +33472,7 @@

style:master-page-name Attribut Datatypes - NCName  + NCName    @@ -26753,6 +33480,10 @@

style:master-page-name Attribut   + + RNG Relations + style:master-page-name="(<NCName>)?"   +

style:name[1] Attribute

@@ -26778,7 +33509,7 @@

style:name[1] Attribute

Datatypes - NCName  + NCName    @@ -26786,6 +33517,10 @@

style:name[1] Attribute

  + + RNG Relations + style:name="<NCName>"   +

style:name[2] Attribute

@@ -26800,7 +33535,7 @@

style:name[2] Attribute

Datatypes - string  + string    @@ -26808,6 +33543,10 @@

style:name[2] Attribute

  + + RNG Relations + style:name="<string>"   +

style:next-style-name Attribute

@@ -26822,7 +33561,7 @@

style:next-style-name Attribute< Datatypes - NCName  + NCName    @@ -26830,6 +33569,10 @@

style:next-style-name Attribute<   + + RNG Relations + style:next-style-name="(<NCName>)?"   +

style:num-format[1] Attribute

@@ -26858,17 +33601,21 @@

style:num-format[1] Attribute

Datatypes - string  + string    Values - "1"  - "I"  - "i"  + "1"  + "I"  + "i"    + + RNG Relations + style:num-format="(1 | i | I | <string>)?"   +

style:num-format[2] Attribute

@@ -26902,10 +33649,14 @@

style:num-format[2] Attribute

Values - "A"  - "a"  + "A"  + "a"    + + RNG Relations + style:num-format="a | A"   +

style:num-letter-sync Attribute

@@ -26938,10 +33689,14 @@

style:num-letter-sync Attribute< Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + style:num-letter-sync="<boolean>"   +

style:num-prefix Attribute

@@ -26958,7 +33713,7 @@

style:num-prefix Attribute

Datatypes - string  + string    @@ -26966,6 +33721,10 @@

style:num-prefix Attribute

  + + RNG Relations + style:num-prefix="<string>"   +

style:num-suffix Attribute

@@ -26982,7 +33741,7 @@

style:num-suffix Attribute

Datatypes - string  + string    @@ -26990,6 +33749,10 @@

style:num-suffix Attribute

  + + RNG Relations + style:num-suffix="<string>"   +

style:page-layout-name Attribute

@@ -27005,7 +33768,7 @@

style:page-layout-name Attribut Datatypes - NCName  + NCName    @@ -27013,6 +33776,10 @@

style:page-layout-name Attribut   + + RNG Relations + style:page-layout-name="(<NCName>)?"   +

style:page-usage Attribute

@@ -27031,12 +33798,16 @@

style:page-usage Attribute

Values - "all"  - "left"  - "mirrored"  - "right"  + "all"  + "left"  + "mirrored"  + "right"    + + RNG Relations + style:page-usage="all | left | right | mirrored"   +

style:parent-style-name Attribute

@@ -27050,7 +33821,7 @@

style:parent-style-name Attrib Datatypes - NCName  + NCName    @@ -27058,6 +33829,10 @@

style:parent-style-name Attrib   + + RNG Relations + style:parent-style-name="(<NCName>)?"   +

style:position Attribute

@@ -27071,7 +33846,7 @@

style:position Attribute

Datatypes - string  + string    @@ -27079,6 +33854,10 @@

style:position Attribute

  + + RNG Relations + style:position="string]"   +

style:rel-height Attribute

@@ -27092,16 +33871,20 @@

style:rel-height Attribute

Datatypes - string  + string    Values - "scale"  - "scale-min"  + "scale"  + "scale-min"    + + RNG Relations + style:rel-height="string] | scale | scale-min"   +

style:rel-width Attribute

@@ -27115,16 +33898,20 @@

style:rel-width Attribute

Datatypes - string  + string    Values - "scale"  - "scale-min"  + "scale"  + "scale-min"    + + RNG Relations + style:rel-width="string] | scale | scale-min"   +

style:type[1] Attribute

@@ -27144,9 +33931,13 @@

style:type[1] Attribute

Values - "right"  + "left"    + + RNG Relations + style:type="left"   +

style:type[2] Attribute

@@ -27166,9 +33957,13 @@

style:type[2] Attribute

Values - "left"  + "right"    + + RNG Relations + style:type="right"   +

style:volatile Attribute

@@ -27193,10 +33988,14 @@

style:volatile Attribute

Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + style:volatile="<boolean>"   +

svg:accent-height Attribute

@@ -27210,7 +34009,7 @@

svg:accent-height Attribute

Datatypes - integer  + integer    @@ -27218,6 +34017,10 @@

svg:accent-height Attribute

  + + RNG Relations + svg:accent-height="<integer>"   +

svg:alphabetic Attribute

@@ -27231,7 +34034,7 @@

svg:alphabetic Attribute

Datatypes - integer  + integer    @@ -27239,6 +34042,10 @@

svg:alphabetic Attribute

  + + RNG Relations + svg:alphabetic="<integer>"   +

svg:ascent Attribute

@@ -27252,7 +34059,7 @@

svg:ascent Attribute

Datatypes - integer  + integer    @@ -27260,6 +34067,10 @@

svg:ascent Attribute

  + + RNG Relations + svg:ascent="<integer>"   +

svg:bbox Attribute

@@ -27280,6 +34091,10 @@

svg:bbox Attribute

  + + RNG Relations + svg:bbox="TEXT"   +

svg:cap-height Attribute

@@ -27293,7 +34108,7 @@

svg:cap-height Attribute

Datatypes - integer  + integer    @@ -27301,6 +34116,10 @@

svg:cap-height Attribute

  + + RNG Relations + svg:cap-height="<integer>"   +

svg:cx[1] Attribute

@@ -27309,15 +34128,14 @@

svg:cx[1] Attribute

Parent Elements - draw:area-circle  - draw:circle  - draw:ellipse  + svg:radialGradient    Datatypes - string  + string  + string    @@ -27325,6 +34143,10 @@

svg:cx[1] Attribute

  + + RNG Relations + svg:cx="string] | string]"   +

svg:cx[2] Attribute

@@ -27333,14 +34155,15 @@

svg:cx[2] Attribute

Parent Elements - svg:radialGradient  + draw:area-circle  + draw:circle  + draw:ellipse    Datatypes - string  - string  + string    @@ -27348,6 +34171,10 @@

svg:cx[2] Attribute

  + + RNG Relations + svg:cx="string]"   +

svg:cy[1] Attribute

@@ -27356,14 +34183,15 @@

svg:cy[1] Attribute

Parent Elements - svg:radialGradient  + draw:area-circle  + draw:circle  + draw:ellipse    Datatypes - string  - string  + string    @@ -27371,6 +34199,10 @@

svg:cy[1] Attribute

  + + RNG Relations + svg:cy="string]"   +

svg:cy[2] Attribute

@@ -27379,15 +34211,14 @@

svg:cy[2] Attribute

Parent Elements - draw:area-circle  - draw:circle  - draw:ellipse  + svg:radialGradient    Datatypes - string  + string  + string    @@ -27395,6 +34226,10 @@

svg:cy[2] Attribute

  + + RNG Relations + svg:cy="string] | string]"   +

svg:d Attribute

@@ -27412,7 +34247,7 @@

svg:d Attribute

Datatypes - string  + string    @@ -27420,6 +34255,10 @@

svg:d Attribute

  + + RNG Relations + svg:d="<string>"   +

svg:descent Attribute

@@ -27433,7 +34272,7 @@

svg:descent Attribute

Datatypes - integer  + integer    @@ -27441,6 +34280,10 @@

svg:descent Attribute

  + + RNG Relations + svg:descent="<integer>"   +

svg:font-family Attribute

@@ -27454,7 +34297,7 @@

svg:font-family Attribute

Datatypes - string  + string    @@ -27462,6 +34305,10 @@

svg:font-family Attribute

  + + RNG Relations + svg:font-family="<string>"   +

svg:font-size Attribute

@@ -27475,7 +34322,7 @@

svg:font-size Attribute

Datatypes - string  + string    @@ -27483,6 +34330,10 @@

svg:font-size Attribute

  + + RNG Relations + svg:font-size="string]"   +

svg:font-stretch Attribute

@@ -27501,17 +34352,21 @@

svg:font-stretch Attribute

Values - "condensed"  - "expanded"  - "extra-condensed"  - "extra-expanded"  - "normal"  - "semi-condensed"  - "semi-expanded"  - "ultra-condensed"  - "ultra-expanded"  + "condensed"  + "expanded"  + "extra-condensed"  + "extra-expanded"  + "normal"  + "semi-condensed"  + "semi-expanded"  + "ultra-condensed"  + "ultra-expanded"    + + RNG Relations + svg:font-stretch="normal | ultra-condensed | extra-condensed | condensed | semi-condensed | semi-expanded | expanded | extra-expanded | ultra-expanded"   +

svg:font-style Attribute

@@ -27530,11 +34385,15 @@

svg:font-style Attribute

Values - "italic"  - "normal"  - "oblique"  + "italic"  + "normal"  + "oblique"    + + RNG Relations + svg:font-style="normal | italic | oblique"   +

svg:font-variant Attribute

@@ -27553,10 +34412,14 @@

svg:font-variant Attribute

Values - "normal"  - "small-caps"  + "normal"  + "small-caps"    + + RNG Relations + svg:font-variant="normal | small-caps"   +

svg:font-weight Attribute

@@ -27575,19 +34438,23 @@

svg:font-weight Attribute

Values - "100"  - "200"  - "300"  - "400"  - "500"  - "600"  - "700"  - "800"  - "900"  - "bold"  - "normal"  + "100"  + "200"  + "300"  + "400"  + "500"  + "600"  + "700"  + "800"  + "900"  + "bold"  + "normal"    + + RNG Relations + svg:font-weight="normal | bold | 100 | 200 | 300 | 400 | 500 | 600 | 700 | 800 | 900"   +

svg:fx Attribute

@@ -27601,8 +34468,8 @@

svg:fx Attribute

Datatypes - string  - string  + string  + string    @@ -27610,6 +34477,10 @@

svg:fx Attribute

  + + RNG Relations + svg:fx="string] | string]"   +

svg:fy Attribute

@@ -27623,8 +34494,8 @@

svg:fy Attribute

Datatypes - string  - string  + string  + string    @@ -27632,6 +34503,10 @@

svg:fy Attribute

  + + RNG Relations + svg:fy="string] | string]"   +

svg:gradientTransform Attribute

@@ -27646,7 +34521,7 @@

svg:gradientTransform Attribute< Datatypes - string  + string    @@ -27654,6 +34529,10 @@

svg:gradientTransform Attribute<   + + RNG Relations + svg:gradientTransform="<string>"   +

svg:gradientUnits Attribute

@@ -27673,9 +34552,13 @@

svg:gradientUnits Attribute

Values - "objectBoundingBox"  + "objectBoundingBox"    + + RNG Relations + svg:gradientUnits="objectBoundingBox"   +

svg:hanging Attribute

@@ -27689,7 +34572,7 @@

svg:hanging Attribute

Datatypes - integer  + integer    @@ -27697,6 +34580,10 @@

svg:hanging Attribute

  + + RNG Relations + svg:hanging="<integer>"   +

svg:height[1] Attribute

@@ -27704,6 +34591,33 @@

svg:height[1] Attribute

+ + + + + + + + + + + + + + +
Parent Elements + presentation:placeholder  + 
Datatypes + string  + string  + 
Values
RNG Relationssvg:height="string] | string]"  
+
+

svg:height[2] Attribute

+

There are more than one Definitions by this name.

+ + + @@ -27739,28 +34653,9 @@

svg:height[1] Attribute

-
Parent Elements chart:chart  chart:plot-area  @@ -27731,7 +34645,7 @@

svg:height[1] Attribute

Datatypes - string  + string   
 
-
-

svg:height[2] Attribute

-

There are more than one Definitions by this name.

- - - - - - - - - - - + +
Parent Elements - presentation:placeholder  - 
Datatypes - string  - string  - 
ValuesRNG Relationssvg:height="string]"  

@@ -27775,7 +34670,7 @@

svg:ideographic Attribute

Datatypes - integer  + integer    @@ -27783,6 +34678,10 @@

svg:ideographic Attribute

  + + RNG Relations + svg:ideographic="<integer>"   +

svg:mathematical Attribute

@@ -27796,7 +34695,7 @@

svg:mathematical Attribute

Datatypes - integer  + integer    @@ -27804,6 +34703,10 @@

svg:mathematical Attribute

  + + RNG Relations + svg:mathematical="<integer>"   +

svg:name Attribute (new in ODF 1.1)

@@ -27824,6 +34727,10 @@

svg:name Attribute (new in ODF 1.1)   + + RNG Relations + svg:name="TEXT"   +

svg:offset Attribute

@@ -27837,8 +34744,8 @@

svg:offset Attribute

Datatypes - double  - string  + double  + string    @@ -27846,6 +34753,10 @@

svg:offset Attribute

  + + RNG Relations + svg:offset="<double> | string]"   +

svg:origin Attribute

@@ -27859,7 +34770,7 @@

svg:origin Attribute

Datatypes - string  + string    @@ -27867,6 +34778,10 @@

svg:origin Attribute

  + + RNG Relations + svg:origin="<string>"   +

svg:overline-position Attribute

@@ -27880,7 +34795,7 @@

svg:overline-position Attribute< Datatypes - integer  + integer    @@ -27888,6 +34803,10 @@

svg:overline-position Attribute<   + + RNG Relations + svg:overline-position="<integer>"   +

svg:overline-thickness Attribute

@@ -27901,7 +34820,7 @@

svg:overline-thickness Attribut Datatypes - integer  + integer    @@ -27909,6 +34828,10 @@

svg:overline-thickness Attribut   + + RNG Relations + svg:overline-thickness="<integer>"   +

svg:panose-1 Attribute

@@ -27929,6 +34852,10 @@

svg:panose-1 Attribute

  + + RNG Relations + svg:panose-1="TEXT"   +

svg:path Attribute

@@ -27942,7 +34869,7 @@

svg:path Attribute

Datatypes - string  + string    @@ -27950,6 +34877,10 @@

svg:path Attribute

  + + RNG Relations + svg:path="<string>"   +

svg:r[1] Attribute

@@ -27964,8 +34895,8 @@

svg:r[1] Attribute

Datatypes - string  - string  + string  + string    @@ -27973,6 +34904,10 @@

svg:r[1] Attribute

  + + RNG Relations + svg:r="string] | string]"   +

svg:r[2] Attribute

@@ -27988,7 +34923,7 @@

svg:r[2] Attribute

Datatypes - string  + string    @@ -27996,6 +34931,10 @@

svg:r[2] Attribute

  + + RNG Relations + svg:r="string]"   +

svg:rx Attribute

@@ -28009,7 +34948,7 @@

svg:rx Attribute

Datatypes - string  + string    @@ -28017,6 +34956,10 @@

svg:rx Attribute

  + + RNG Relations + svg:rx="string]"   +

svg:ry Attribute

@@ -28030,7 +34973,7 @@

svg:ry Attribute

Datatypes - string  + string    @@ -28038,6 +34981,10 @@

svg:ry Attribute

  + + RNG Relations + svg:ry="string]"   +

svg:slope Attribute

@@ -28051,7 +34998,7 @@

svg:slope Attribute

Datatypes - integer  + integer    @@ -28059,6 +35006,10 @@

svg:slope Attribute

  + + RNG Relations + svg:slope="<integer>"   +

svg:spreadMethod Attribute

@@ -28078,11 +35029,15 @@

svg:spreadMethod Attribute

Values - "pad"  - "reflect"  - "repeat"  + "pad"  + "reflect"  + "repeat"    + + RNG Relations + svg:spreadMethod="pad | reflect | repeat"   +

svg:stemh Attribute

@@ -28096,7 +35051,7 @@

svg:stemh Attribute

Datatypes - integer  + integer    @@ -28104,6 +35059,10 @@

svg:stemh Attribute

  + + RNG Relations + svg:stemh="<integer>"   +

svg:stemv Attribute

@@ -28117,7 +35076,7 @@

svg:stemv Attribute

Datatypes - integer  + integer    @@ -28125,6 +35084,10 @@

svg:stemv Attribute

  + + RNG Relations + svg:stemv="<integer>"   +

svg:stop-color Attribute

@@ -28138,7 +35101,7 @@

svg:stop-color Attribute

Datatypes - string  + string    @@ -28146,6 +35109,10 @@

svg:stop-color Attribute

  + + RNG Relations + svg:stop-color="string]"   +

svg:stop-opacity Attribute

@@ -28159,7 +35126,7 @@

svg:stop-opacity Attribute

Datatypes - double  + double    @@ -28167,6 +35134,10 @@

svg:stop-opacity Attribute

  + + RNG Relations + svg:stop-opacity="<double>"   +

svg:strikethrough-position Attribute

@@ -28180,7 +35151,7 @@

svg:strikethrough-position Datatypes - integer  + integer    @@ -28188,6 +35159,10 @@

svg:strikethrough-position   + + RNG Relations + svg:strikethrough-position="<integer>"   +

svg:strikethrough-thickness Attribute

@@ -28201,7 +35176,7 @@

svg:strikethrough-thicknes Datatypes - integer  + integer    @@ -28209,6 +35184,10 @@

svg:strikethrough-thicknes   + + RNG Relations + svg:strikethrough-thickness="<integer>"   +

svg:string Attribute

@@ -28229,6 +35208,10 @@

svg:string Attribute

  + + RNG Relations + svg:string="TEXT"   +

svg:type Attribute

@@ -28247,13 +35230,17 @@

svg:type Attribute

Values - "rotate"  - "scale"  - "skewX"  - "skewY"  - "translate"  + "rotate"  + "scale"  + "skewX"  + "skewY"  + "translate"    + + RNG Relations + svg:type="translate | scale | rotate | skewX | skewY"   +

svg:underline-position Attribute

@@ -28267,7 +35254,7 @@

svg:underline-position Attribut Datatypes - integer  + integer    @@ -28275,6 +35262,10 @@

svg:underline-position Attribut   + + RNG Relations + svg:underline-position="<integer>"   +

svg:underline-thickness Attribute

@@ -28288,7 +35279,7 @@

svg:underline-thickness Attrib Datatypes - integer  + integer    @@ -28296,6 +35287,10 @@

svg:underline-thickness Attrib   + + RNG Relations + svg:underline-thickness="<integer>"   +

svg:unicode-range Attribute

@@ -28316,6 +35311,10 @@

svg:unicode-range Attribute

  + + RNG Relations + svg:unicode-range="TEXT"   +

svg:units-per-em Attribute

@@ -28329,7 +35328,7 @@

svg:units-per-em Attribute

Datatypes - integer  + integer    @@ -28337,6 +35336,10 @@

svg:units-per-em Attribute

  + + RNG Relations + svg:units-per-em="<integer>"   +

svg:v-alphabetic Attribute

@@ -28350,7 +35353,7 @@

svg:v-alphabetic Attribute

Datatypes - integer  + integer    @@ -28358,6 +35361,10 @@

svg:v-alphabetic Attribute

  + + RNG Relations + svg:v-alphabetic="<integer>"   +

svg:v-hanging Attribute

@@ -28371,7 +35378,7 @@

svg:v-hanging Attribute

Datatypes - integer  + integer    @@ -28379,6 +35386,10 @@

svg:v-hanging Attribute

  + + RNG Relations + svg:v-hanging="<integer>"   +

svg:v-ideographic Attribute

@@ -28392,7 +35403,7 @@

svg:v-ideographic Attribute

Datatypes - integer  + integer    @@ -28400,6 +35411,10 @@

svg:v-ideographic Attribute

  + + RNG Relations + svg:v-ideographic="<integer>"   +

svg:v-mathematical Attribute

@@ -28413,7 +35428,7 @@

svg:v-mathematical Attribute Datatypes - integer  + integer    @@ -28421,6 +35436,10 @@

svg:v-mathematical Attribute   + + RNG Relations + svg:v-mathematical="<integer>"   +

svg:viewBox Attribute

@@ -28443,7 +35462,7 @@

svg:viewBox Attribute

Datatypes - integer  + integer    @@ -28451,6 +35470,12 @@

svg:viewBox Attribute

  + + RNG Relations + svg:viewBox=" +START_list<integer><integer><integer><integer> +END_list"   +

svg:width[1] Attribute

@@ -28458,6 +35483,33 @@

svg:width[1] Attribute

+ + + + + + + + + + + + + + +
Parent Elements + presentation:placeholder  + 
Datatypes + string  + string  + 
Values
RNG Relationssvg:width="string] | string]"  
+
+

svg:width[2] Attribute

+

There are more than one Definitions by this name.

+ + + @@ -28495,22 +35547,23 @@

svg:width[1] Attribute

+ + + +
Parent Elements chart:chart  chart:floor  @@ -28487,7 +35539,7 @@

svg:width[1] Attribute

Datatypes - string  + string   
 
RNG Relationssvg:width="string]"  

-

svg:width[2] Attribute

-

There are more than one Definitions by this name.

+

svg:widths Attribute

@@ -28518,19 +35571,27 @@

svg:width[2] Attribute

+ + + +
Parent Elements - presentation:placeholder  + style:font-face   
Datatypes - string  - string   
 
RNG Relationssvg:widths="TEXT"  

-

svg:widths Attribute

+

svg:x[1] Attribute

+

There are more than one Definitions by this name.

@@ -28538,9 +35599,13 @@

svg:widths Attribute

+ + + +
Parent Elements - style:font-face  + draw:glue-point  + presentation:placeholder   
Datatypes + string  + string   
 
RNG Relationssvg:x="string] | string]"  

-

svg:x[1] Attribute

+

svg:x[2] Attribute

There are more than one Definitions by this name.

@@ -28572,7 +35637,7 @@

svg:x[1] Attribute

@@ -28580,29 +35645,9 @@

svg:x[1] Attribute

-
Datatypes - string  + string   
 
-
-

svg:x[2] Attribute

-

There are more than one Definitions by this name.

- - - - - - - - - - - + +
Parent Elements - draw:glue-point  - presentation:placeholder  - 
Datatypes - string  - string  - 
ValuesRNG Relationssvg:x="string]"  

@@ -28617,7 +35662,7 @@

svg:x-height Attribute

Datatypes - integer  + integer    @@ -28625,6 +35670,10 @@

svg:x-height Attribute

  + + RNG Relations + svg:x-height="<integer>"   +

svg:x1[1] Attribute

@@ -28639,8 +35688,8 @@

svg:x1[1] Attribute

Datatypes - string  - string  + string  + string    @@ -28648,6 +35697,10 @@

svg:x1[1] Attribute

  + + RNG Relations + svg:x1="string] | string]"   +

svg:x1[2] Attribute

@@ -28664,7 +35717,7 @@

svg:x1[2] Attribute

Datatypes - string  + string    @@ -28672,6 +35725,10 @@

svg:x1[2] Attribute

  + + RNG Relations + svg:x1="string]"   +

svg:x2[1] Attribute

@@ -28680,14 +35737,15 @@

svg:x2[1] Attribute

Parent Elements - svg:linearGradient  + draw:connector  + draw:line  + draw:measure    Datatypes - string  - string  + string    @@ -28695,6 +35753,10 @@

svg:x2[1] Attribute

  + + RNG Relations + svg:x2="string]"   +

svg:x2[2] Attribute

@@ -28703,15 +35765,14 @@

svg:x2[2] Attribute

Parent Elements - draw:connector  - draw:line  - draw:measure  + svg:linearGradient    Datatypes - string  + string  + string    @@ -28719,6 +35780,10 @@

svg:x2[2] Attribute

  + + RNG Relations + svg:x2="string] | string]"   +

svg:y[1] Attribute

@@ -28734,8 +35799,8 @@

svg:y[1] Attribute

Datatypes - string  - string  + string  + string    @@ -28743,6 +35808,10 @@

svg:y[1] Attribute

  + + RNG Relations + svg:y="string] | string]"   +

svg:y[2] Attribute

@@ -28778,7 +35847,7 @@

svg:y[2] Attribute

Datatypes - string  + string    @@ -28786,6 +35855,10 @@

svg:y[2] Attribute

  + + RNG Relations + svg:y="string]"   +

svg:y1[1] Attribute

@@ -28800,8 +35873,8 @@

svg:y1[1] Attribute

Datatypes - string  - string  + string  + string    @@ -28809,6 +35882,10 @@

svg:y1[1] Attribute

  + + RNG Relations + svg:y1="string] | string]"   +

svg:y1[2] Attribute

@@ -28825,7 +35902,7 @@

svg:y1[2] Attribute

Datatypes - string  + string    @@ -28833,6 +35910,10 @@

svg:y1[2] Attribute

  + + RNG Relations + svg:y1="string]"   +

svg:y2[1] Attribute

@@ -28841,14 +35922,15 @@

svg:y2[1] Attribute

Parent Elements - svg:linearGradient  + draw:connector  + draw:line  + draw:measure    Datatypes - string  - string  + string    @@ -28856,6 +35938,10 @@

svg:y2[1] Attribute

  + + RNG Relations + svg:y2="string]"   +

svg:y2[2] Attribute

@@ -28864,15 +35950,14 @@

svg:y2[2] Attribute

Parent Elements - draw:connector  - draw:line  - draw:measure  + svg:linearGradient    Datatypes - string  + string  + string    @@ -28880,6 +35965,10 @@

svg:y2[2] Attribute

  + + RNG Relations + svg:y2="string] | string]"   +

table:acceptance-state Attribute

@@ -28901,11 +35990,15 @@

table:acceptance-state Attribut Values - "accepted"  - "pending"  - "rejected"  + "accepted"  + "pending"  + "rejected"    + + RNG Relations + table:acceptance-state="accepted | rejected | pending"   +

table:add-empty-lines Attribute

@@ -28924,10 +36017,14 @@

table:add-empty-lines Attribute< Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + table:add-empty-lines="<boolean>"   +

table:algorithm Attribute

@@ -28941,7 +36038,7 @@

table:algorithm Attribute

Datatypes - string  + string    @@ -28949,6 +36046,10 @@

table:algorithm Attribute

  + + RNG Relations + table:algorithm="<string>"   +

table:allow-empty-cell Attribute

@@ -28967,10 +36068,14 @@

table:allow-empty-cell Attribut Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + table:allow-empty-cell="<boolean>"   +

table:application-data Attribute

@@ -28984,7 +36089,7 @@

table:application-data Attribut Datatypes - string  + string    @@ -28992,6 +36097,10 @@

table:application-data Attribut   + + RNG Relations + table:application-data="<string>"   +

table:automatic-find-labels Attribute

@@ -29010,10 +36119,14 @@

table:automatic-find-label Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + table:automatic-find-labels="<boolean>"   +

table:base-cell-address Attribute

@@ -29029,7 +36142,7 @@

table:base-cell-address Attrib Datatypes - string  + string    @@ -29037,6 +36150,10 @@

table:base-cell-address Attrib   + + RNG Relations + table:base-cell-address="string]"   +

table:bind-styles-to-content Attribute

@@ -29056,10 +36173,14 @@

table:bind-styles-to-cont Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + table:bind-styles-to-content="<boolean>"   +

table:border-color Attribute

@@ -29073,7 +36194,7 @@

table:border-color Attribute Datatypes - string  + string    @@ -29081,6 +36202,10 @@

table:border-color Attribute   + + RNG Relations + table:border-color="string]"   +

table:buttons Attribute

@@ -29094,7 +36219,7 @@

table:buttons Attribute

Datatypes - string  + string    @@ -29102,6 +36227,10 @@

table:buttons Attribute

  + + RNG Relations + table:buttons="<string>"   +

table:case-sensitive[1] Attribute

@@ -29123,10 +36252,14 @@

table:case-sensitive[1] Attribute Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + table:case-sensitive="<boolean>"   +

table:case-sensitive[2] Attribute

@@ -29141,7 +36274,7 @@

table:case-sensitive[2] Attribute Datatypes - string  + string    @@ -29149,6 +36282,10 @@

table:case-sensitive[2] Attribute   + + RNG Relations + table:case-sensitive="<string>"   +

table:cell-address Attribute

@@ -29162,7 +36299,7 @@

table:cell-address Attribute Datatypes - string  + string    @@ -29170,6 +36307,10 @@

table:cell-address Attribute   + + RNG Relations + table:cell-address="string]"   +

table:cell-range Attribute

@@ -29185,7 +36326,7 @@

table:cell-range Attribute

Datatypes - string  + string    @@ -29193,6 +36334,10 @@

table:cell-range Attribute

  + + RNG Relations + table:cell-range="string]"   +

table:cell-range-address Attribute

@@ -29211,7 +36356,7 @@

table:cell-range-address Attr Datatypes - string  + string    @@ -29219,6 +36364,10 @@

table:cell-range-address Attr   + + RNG Relations + table:cell-range-address="string]"   +

table:column Attribute

@@ -29234,7 +36383,7 @@

table:column Attribute

Datatypes - integer  + integer    @@ -29242,6 +36391,10 @@

table:column Attribute

  + + RNG Relations + table:column="<integer>"   +

table:comment Attribute

@@ -29255,7 +36408,7 @@

table:comment Attribute

Datatypes - string  + string    @@ -29263,6 +36416,10 @@

table:comment Attribute

  + + RNG Relations + table:comment="<string>"   +

table:condition Attribute

@@ -29276,7 +36433,7 @@

table:condition Attribute

Datatypes - string  + string    @@ -29284,6 +36441,10 @@

table:condition Attribute

  + + RNG Relations + table:condition="<string>"   +

table:condition-source Attribute

@@ -29302,10 +36463,14 @@

table:condition-source Attribut Values - "cell-range"  - "self"  + "cell-range"  + "self"    + + RNG Relations + table:condition-source="self | cell-range"   +

table:condition-source-range-address Attribute

@@ -29319,7 +36484,7 @@

table:condition-s Datatypes - string  + string    @@ -29327,6 +36492,10 @@

table:condition-s   + + RNG Relations + table:condition-source-range-address="string]"   +

table:contains-error Attribute

@@ -29345,10 +36514,14 @@

table:contains-error Attribute Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + table:contains-error="<boolean>"   +

table:contains-header Attribute

@@ -29367,10 +36540,14 @@

table:contains-header Attribute< Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + table:contains-header="<boolean>"   +

table:content-validation-name Attribute

@@ -29385,7 +36562,7 @@

table:content-validation Datatypes - string  + string    @@ -29393,6 +36570,10 @@

table:content-validation   + + RNG Relations + table:content-validation-name="<string>"   +

table:copy-back Attribute

@@ -29411,10 +36592,14 @@

table:copy-back Attribute

Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + table:copy-back="<boolean>"   +

table:copy-formulas Attribute

@@ -29433,10 +36618,14 @@

table:copy-formulas Attribute< Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + table:copy-formulas="<boolean>"   +

table:copy-styles Attribute

@@ -29455,10 +36644,14 @@

table:copy-styles Attribute

Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + table:copy-styles="<boolean>"   +

table:count Attribute

@@ -29472,7 +36665,7 @@

table:count Attribute

Datatypes - positiveInteger  + positiveInteger    @@ -29480,6 +36673,10 @@

table:count Attribute

  + + RNG Relations + table:count="<positiveInteger>"   +

table:country Attribute

@@ -29493,7 +36690,7 @@

table:country Attribute

Datatypes - token  + token    @@ -29501,6 +36698,10 @@

table:country Attribute

  + + RNG Relations + table:country="token]"   +

table:data-cell-range-address Attribute

@@ -29514,7 +36715,7 @@

table:data-cell-range-ad Datatypes - string  + string    @@ -29522,6 +36723,10 @@

table:data-cell-range-ad   + + RNG Relations + table:data-cell-range-address="string]"   +

table:data-field Attribute

@@ -29536,7 +36741,7 @@

table:data-field Attribute

Datatypes - string  + string    @@ -29544,6 +36749,10 @@

table:data-field Attribute

  + + RNG Relations + table:data-field="<string>"   +

table:data-type[1] Attribute

@@ -29559,17 +36768,21 @@

table:data-type[1] Attribute

Datatypes - string  + string    Values - "automatic"  - "number"  - "text"  + "automatic"  + "number"  + "text"    + + RNG Relations + table:data-type="text | number | automatic | <string>"   +

table:data-type[2] Attribute

@@ -29589,10 +36802,14 @@

table:data-type[2] Attribute

Values - "number"  - "text"  + "number"  + "text"    + + RNG Relations + table:data-type="text | number"   +

table:database-name Attribute

@@ -29608,7 +36825,7 @@

table:database-name Attribute< Datatypes - string  + string    @@ -29616,6 +36833,10 @@

table:database-name Attribute<   + + RNG Relations + table:database-name="<string>"   +

table:database-table-name Attribute

@@ -29629,7 +36850,7 @@

table:database-table-name At Datatypes - string  + string    @@ -29637,6 +36858,10 @@

table:database-table-name At   + + RNG Relations + table:database-table-name="<string>"   +

table:date-end Attribute

@@ -29650,16 +36875,20 @@

table:date-end Attribute

Datatypes - date  - dateTime  + date  + dateTime    Values - "auto"  + "auto"    + + RNG Relations + table:date-end="<date> | <dateTime> | auto"   +

table:date-start Attribute

@@ -29673,16 +36902,20 @@

table:date-start Attribute

Datatypes - date  - dateTime  + date  + dateTime    Values - "auto"  + "auto"    + + RNG Relations + table:date-start="<date> | <dateTime> | auto"   +

table:date-value Attribute (new in ODF 1.1)

@@ -29696,7 +36929,7 @@

table:date-value Attribute ( Datatypes - date  + date    @@ -29704,6 +36937,10 @@

table:date-value Attribute (   + + RNG Relations + table:date-value="<date>"   +

table:default-cell-style-name Attribute

@@ -29718,7 +36955,7 @@

table:default-cell-style Datatypes - NCName  + NCName    @@ -29726,6 +36963,10 @@

table:default-cell-style   + + RNG Relations + table:default-cell-style-name="(<NCName>)?"   +

table:direction Attribute

@@ -29744,11 +36985,15 @@

table:direction Attribute

Values - "from-another-table"  - "from-same-table"  - "to-another-table"  + "from-another-table"  + "from-same-table"  + "to-another-table"    + + RNG Relations + table:direction="from-another-table | to-another-table | from-same-table"   +

table:display Attribute

@@ -29771,10 +37016,14 @@

table:display Attribute

Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + table:display="<boolean>"   +

table:display-border Attribute

@@ -29793,10 +37042,14 @@

table:display-border Attribute Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + table:display-border="<boolean>"   +

table:display-duplicates Attribute

@@ -29815,10 +37068,14 @@

table:display-duplicates Attr Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + table:display-duplicates="<boolean>"   +

table:display-filter-buttons Attribute

@@ -29837,10 +37094,14 @@

table:display-filter-butt Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + table:display-filter-buttons="<boolean>"   +

table:display-list Attribute

@@ -29859,11 +37120,15 @@

table:display-list Attribute Values - "none"  - "sort-ascending"  - "unsorted"  + "none"  + "sort-ascending"  + "unsorted"    + + RNG Relations + table:display-list="none | unsorted | sort-ascending"   +

table:display-member-mode Attribute

@@ -29882,10 +37147,14 @@

table:display-member-mode At Values - "from-bottom"  - "from-top"  + "from-bottom"  + "from-top"    + + RNG Relations + table:display-member-mode="from-top | from-bottom"   +

table:drill-down-on-double-click Attribute

@@ -29904,10 +37173,14 @@

table:drill-down-on-d Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + table:drill-down-on-double-click="<boolean>"   +

table:enabled Attribute

@@ -29926,10 +37199,14 @@

table:enabled Attribute

Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + table:enabled="<boolean>"   +

table:end Attribute

@@ -29943,15 +37220,19 @@

table:end Attribute

Datatypes - double  + double    Values - "auto"  + "auto"    + + RNG Relations + table:end="<double> | auto"   +

table:end-cell-address Attribute

@@ -29982,7 +37263,7 @@

table:end-cell-address Attribut Datatypes - string  + string    @@ -29990,6 +37271,10 @@

table:end-cell-address Attribut   + + RNG Relations + table:end-cell-address="string]"   +

table:end-column Attribute

@@ -30004,7 +37289,7 @@

table:end-column Attribute

Datatypes - integer  + integer    @@ -30012,6 +37297,10 @@

table:end-column Attribute

  + + RNG Relations + table:end-column="<integer>"   +

table:end-position Attribute

@@ -30025,7 +37314,7 @@

table:end-position Attribute Datatypes - integer  + integer    @@ -30033,6 +37322,10 @@

table:end-position Attribute   + + RNG Relations + table:end-position="<integer>"   +

table:end-row Attribute

@@ -30047,7 +37340,7 @@

table:end-row Attribute

Datatypes - integer  + integer    @@ -30055,6 +37348,10 @@

table:end-row Attribute

  + + RNG Relations + table:end-row="<integer>"   +

table:end-table Attribute

@@ -30069,7 +37366,7 @@

table:end-table Attribute

Datatypes - integer  + integer    @@ -30077,47 +37374,13 @@

table:end-table Attribute

  - -
-

table:end-x Attribute

- - - - - - - - - - - + +
Parent Elements - dr3d:scene  - draw:caption  - draw:circle  - draw:connector  - draw:control  - draw:custom-shape  - draw:ellipse  - draw:frame  - draw:g  - draw:line  - draw:measure  - draw:page-thumbnail  - draw:path  - draw:polygon  - draw:polyline  - draw:rect  - draw:regular-polygon  - office:annotation  - 
Datatypes - string  - 
ValuesRNG Relationstable:end-table="<integer>"  

-

table:end-y Attribute

+

table:end-x Attribute

@@ -30145,7 +37408,7 @@

table:end-y Attribute

@@ -30153,6 +37416,52 @@

table:end-y Attribute

+ + + + +
Parent Elements
Datatypes - string  + string   
 
RNG Relationstable:end-x="string]"  
+
+

table:end-y Attribute

+ + + + + + + + + + + + + + + + +
Parent Elements + dr3d:scene  + draw:caption  + draw:circle  + draw:connector  + draw:control  + draw:custom-shape  + draw:ellipse  + draw:frame  + draw:g  + draw:line  + draw:measure  + draw:page-thumbnail  + draw:path  + draw:polygon  + draw:polyline  + draw:rect  + draw:regular-polygon  + office:annotation  + 
Datatypes + string  + 
Values
RNG Relationstable:end-y="string]"  

table:execute Attribute

@@ -30171,10 +37480,14 @@

table:execute Attribute

Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + table:execute="<boolean>"   +

table:expression Attribute

@@ -30188,7 +37501,7 @@

table:expression Attribute

Datatypes - string  + string    @@ -30196,6 +37509,10 @@

table:expression Attribute

  + + RNG Relations + table:expression="<string>"   +

table:field-name Attribute

@@ -30209,7 +37526,7 @@

table:field-name Attribute

Datatypes - string  + string    @@ -30217,6 +37534,10 @@

table:field-name Attribute

  + + RNG Relations + table:field-name="<string>"   +

table:field-number Attribute

@@ -30232,7 +37553,7 @@

table:field-number Attribute Datatypes - nonNegativeInteger  + nonNegativeInteger    @@ -30240,6 +37561,10 @@

table:field-number Attribute   + + RNG Relations + table:field-number="<nonNegativeInteger>"   +

table:filter-name Attribute

@@ -30254,7 +37579,7 @@

table:filter-name Attribute

Datatypes - string  + string    @@ -30262,6 +37587,10 @@

table:filter-name Attribute

  + + RNG Relations + table:filter-name="<string>"   +

table:filter-options Attribute

@@ -30276,7 +37605,7 @@

table:filter-options Attribute Datatypes - string  + string    @@ -30284,6 +37613,10 @@

table:filter-options Attribute   + + RNG Relations + table:filter-options="<string>"   +

table:formula Attribute

@@ -30299,7 +37632,7 @@

table:formula Attribute

Datatypes - string  + string    @@ -30307,6 +37640,10 @@

table:formula Attribute

  + + RNG Relations + table:formula="<string>"   +

table:function Attribute

@@ -30323,26 +37660,30 @@

table:function Attribute

Datatypes - string  + string    Values - "auto"  - "average"  - "count"  - "countnums"  - "max"  - "min"  - "product"  - "stdev"  - "stdevp"  - "sum"  - "var"  - "varp"  + "auto"  + "average"  + "count"  + "countnums"  + "max"  + "min"  + "product"  + "stdev"  + "stdevp"  + "sum"  + "var"  + "varp"    + + RNG Relations + table:function="auto | average | count | countnums | max | min | product | stdev | stdevp | sum | var | varp | <string>"   +

table:grand-total Attribute

@@ -30361,12 +37702,16 @@

table:grand-total Attribute

Values - "both"  - "column"  - "none"  - "row"  + "both"  + "column"  + "none"  + "row"    + + RNG Relations + table:grand-total="none | row | column | both"   +

table:group-by-field-number Attribute

@@ -30380,7 +37725,7 @@

table:group-by-field-numbe Datatypes - nonNegativeInteger  + nonNegativeInteger    @@ -30388,6 +37733,10 @@

table:group-by-field-numbe   + + RNG Relations + table:group-by-field-number="<nonNegativeInteger>"   +

table:grouped-by Attribute

@@ -30406,15 +37755,19 @@

table:grouped-by Attribute

Values - "days"  - "hours"  - "minutes"  - "months"  - "quarters"  - "seconds"  - "years"  + "days"  + "hours"  + "minutes"  + "months"  + "quarters"  + "seconds"  + "years"    + + RNG Relations + table:grouped-by="seconds | minutes | hours | days | months | quarters | years"   +

table:has-persistent-data Attribute

@@ -30433,10 +37786,14 @@

table:has-persistent-data At Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + table:has-persistent-data="<boolean>"   +

table:id Attribute

@@ -30458,7 +37815,7 @@

table:id Attribute

Datatypes - string  + string    @@ -30466,6 +37823,10 @@

table:id Attribute

  + + RNG Relations + table:id="<string>"   +

table:identify-categories Attribute

@@ -30484,10 +37845,14 @@

table:identify-categories At Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + table:identify-categories="<boolean>"   +

table:ignore-empty-rows Attribute

@@ -30506,10 +37871,14 @@

table:ignore-empty-rows Attrib Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + table:ignore-empty-rows="<boolean>"   +

table:index Attribute

@@ -30523,7 +37892,7 @@

table:index Attribute

Datatypes - nonNegativeInteger  + nonNegativeInteger    @@ -30531,6 +37900,10 @@

table:index Attribute

  + + RNG Relations + table:index="<nonNegativeInteger>"   +

table:is-active Attribute

@@ -30549,10 +37922,14 @@

table:is-active Attribute

Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + table:is-active="<boolean>"   +

table:is-data-layout-field Attribute

@@ -30566,7 +37943,7 @@

table:is-data-layout-field Datatypes - string  + string    @@ -30574,6 +37951,10 @@

table:is-data-layout-field   + + RNG Relations + table:is-data-layout-field="<string>"   +

table:is-selection Attribute

@@ -30592,10 +37973,14 @@

table:is-selection Attribute Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + table:is-selection="<boolean>"   +

table:is-sub-table Attribute

@@ -30614,10 +37999,14 @@

table:is-sub-table Attribute Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + table:is-sub-table="<boolean>"   +

table:label-cell-range-address Attribute

@@ -30631,7 +38020,7 @@

table:label-cell-range- Datatypes - string  + string    @@ -30639,6 +38028,10 @@

table:label-cell-range-   + + RNG Relations + table:label-cell-range-address="string]"   +

table:language Attribute

@@ -30652,7 +38045,7 @@

table:language Attribute

Datatypes - token  + token    @@ -30660,6 +38053,10 @@

table:language Attribute

  + + RNG Relations + table:language="token]"   +

table:last-column-spanned Attribute

@@ -30673,7 +38070,7 @@

table:last-column-spanned At Datatypes - positiveInteger  + positiveInteger    @@ -30681,6 +38078,10 @@

table:last-column-spanned At   + + RNG Relations + table:last-column-spanned="<positiveInteger>"   +

table:last-row-spanned Attribute

@@ -30694,7 +38095,7 @@

table:last-row-spanned Attribut Datatypes - positiveInteger  + positiveInteger    @@ -30702,6 +38103,10 @@

table:last-row-spanned Attribut   + + RNG Relations + table:last-row-spanned="<positiveInteger>"   +

table:layout-mode Attribute

@@ -30720,11 +38125,15 @@

table:layout-mode Attribute

Values - "outline-subtotals-bottom"  - "outline-subtotals-top"  - "tabular-layout"  + "outline-subtotals-bottom"  + "outline-subtotals-top"  + "tabular-layout"    + + RNG Relations + table:layout-mode="tabular-layout | outline-subtotals-top | outline-subtotals-bottom"   +

table:link-to-source-data Attribute

@@ -30743,10 +38152,14 @@

table:link-to-source-data At Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + table:link-to-source-data="<boolean>"   +

table:marked-invalid Attribute

@@ -30765,10 +38178,14 @@

table:marked-invalid Attribute Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + table:marked-invalid="<boolean>"   +

table:matrix-covered Attribute

@@ -30787,10 +38204,14 @@

table:matrix-covered Attribute Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + table:matrix-covered="<boolean>"   +

table:maximum-difference Attribute

@@ -30804,7 +38225,7 @@

table:maximum-difference Attr Datatypes - double  + double    @@ -30812,6 +38233,10 @@

table:maximum-difference Attr   + + RNG Relations + table:maximum-difference="<double>"   +

table:member-count Attribute

@@ -30825,7 +38250,7 @@

table:member-count Attribute Datatypes - nonNegativeInteger  + nonNegativeInteger    @@ -30833,6 +38258,10 @@

table:member-count Attribute   + + RNG Relations + table:member-count="<nonNegativeInteger>"   +

table:member-name Attribute

@@ -30846,7 +38275,7 @@

table:member-name Attribute

Datatypes - string  + string    @@ -30854,6 +38283,10 @@

table:member-name Attribute

  + + RNG Relations + table:member-name="<string>"   +

table:member-type[1] Attribute

@@ -30873,10 +38306,13 @@

table:member-type[1] Attribute Values - "next"  - "previous"  + "named"    + + RNG Relations + table:member-type="named"   +

table:member-type[2] Attribute

@@ -30896,9 +38332,14 @@

table:member-type[2] Attribute Values - "named"  + "next"  + "previous"    + + RNG Relations + table:member-type="previous | next"   +

table:message-type Attribute

@@ -30917,11 +38358,15 @@

table:message-type Attribute Values - "information"  - "stop"  - "warning"  + "information"  + "stop"  + "warning"    + + RNG Relations + table:message-type="stop | warning | information"   +

table:mode Attribute

@@ -30940,10 +38385,14 @@

table:mode Attribute

Values - "copy-all"  - "copy-results-only"  + "copy-all"  + "copy-results-only"    + + RNG Relations + table:mode="copy-all | copy-results-only"   +

table:multi-deletion-spanned Attribute

@@ -30957,7 +38406,7 @@

table:multi-deletion-span Datatypes - integer  + integer    @@ -30965,6 +38414,10 @@

table:multi-deletion-span   + + RNG Relations + table:multi-deletion-spanned="<integer>"   +

table:name[1] Attribute

@@ -30984,13 +38437,17 @@

table:name[1] Attribute

Values - "remove-dependents"  - "remove-precedents"  - "trace-dependents"  - "trace-errors"  - "trace-precedents"  + "remove-dependents"  + "remove-precedents"  + "trace-dependents"  + "trace-errors"  + "trace-precedents"    + + RNG Relations + table:name="trace-dependents | remove-dependents | trace-precedents | remove-precedents | trace-errors"   +

table:name[2] Attribute

@@ -31015,7 +38472,7 @@

table:name[2] Attribute

Datatypes - string  + string    @@ -31023,6 +38480,10 @@

table:name[2] Attribute

  + + RNG Relations + table:name="<string>"   +

table:null-year Attribute

@@ -31036,7 +38497,7 @@

table:null-year Attribute

Datatypes - positiveInteger  + positiveInteger    @@ -31044,6 +38505,10 @@

table:null-year Attribute

  + + RNG Relations + table:null-year="<positiveInteger>"   +

table:number-columns-repeated Attribute

@@ -31059,7 +38524,7 @@

table:number-columns-rep Datatypes - positiveInteger  + positiveInteger    @@ -31067,6 +38532,10 @@

table:number-columns-rep   + + RNG Relations + table:number-columns-repeated="<positiveInteger>"   +

table:number-columns-spanned Attribute

@@ -31080,7 +38549,7 @@

table:number-columns-span Datatypes - positiveInteger  + positiveInteger    @@ -31088,6 +38557,10 @@

table:number-columns-span   + + RNG Relations + table:number-columns-spanned="<positiveInteger>"   +

table:number-matrix-columns-spanned Attribute

@@ -31102,7 +38575,7 @@

table:number-matri Datatypes - positiveInteger  + positiveInteger    @@ -31110,6 +38583,10 @@

table:number-matri   + + RNG Relations + table:number-matrix-columns-spanned="<positiveInteger>"   +

table:number-matrix-rows-spanned Attribute

@@ -31124,7 +38601,7 @@

table:number-matrix-r Datatypes - positiveInteger  + positiveInteger    @@ -31132,6 +38609,10 @@

table:number-matrix-r   + + RNG Relations + table:number-matrix-rows-spanned="<positiveInteger>"   +

table:number-rows-repeated Attribute

@@ -31145,7 +38626,7 @@

table:number-rows-repeated Datatypes - positiveInteger  + positiveInteger    @@ -31153,6 +38634,10 @@

table:number-rows-repeated   + + RNG Relations + table:number-rows-repeated="<positiveInteger>"   +

table:number-rows-spanned Attribute

@@ -31166,7 +38651,7 @@

table:number-rows-spanned At Datatypes - positiveInteger  + positiveInteger    @@ -31174,6 +38659,10 @@

table:number-rows-spanned At   + + RNG Relations + table:number-rows-spanned="<positiveInteger>"   +

table:object-name Attribute

@@ -31187,7 +38676,7 @@

table:object-name Attribute

Datatypes - string  + string    @@ -31195,6 +38684,10 @@

table:object-name Attribute

  + + RNG Relations + table:object-name="<string>"   +

table:on-update-keep-size Attribute

@@ -31213,10 +38706,14 @@

table:on-update-keep-size At Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + table:on-update-keep-size="<boolean>"   +

table:on-update-keep-styles Attribute

@@ -31235,10 +38732,14 @@

table:on-update-keep-style Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + table:on-update-keep-styles="<boolean>"   +

table:operator Attribute

@@ -31252,7 +38753,7 @@

table:operator Attribute

Datatypes - string  + string    @@ -31260,6 +38761,10 @@

table:operator Attribute

  + + RNG Relations + table:operator="<string>"   +

table:order Attribute

@@ -31280,10 +38785,14 @@

table:order Attribute

Values - "ascending"  - "descending"  + "ascending"  + "descending"    + + RNG Relations + table:order="ascending | descending"   +

table:orientation[1] Attribute

@@ -31304,10 +38813,14 @@

table:orientation[1] Attribute Values - "column"  - "row"  + "column"  + "row"    + + RNG Relations + table:orientation="column | row"   +

table:orientation[2] Attribute

@@ -31327,12 +38840,13 @@

table:orientation[2] Attribute Values - "column"  - "data"  - "hidden"  - "row"  + "page"    + + RNG Relations + table:orientation="page"   +

table:orientation[3] Attribute

@@ -31352,9 +38866,16 @@

table:orientation[3] Attribute Values - "page"  + "column"  + "data"  + "hidden"  + "row"    + + RNG Relations + table:orientation="row | column | data | hidden"   +

table:page-breaks-on-group-change Attribute

@@ -31373,10 +38894,14 @@

table:page-breaks-on Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + table:page-breaks-on-group-change="<boolean>"   +

table:parse-sql-statement Attribute

@@ -31395,10 +38920,14 @@

table:parse-sql-statement At Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + table:parse-sql-statement="<boolean>"   +

table:password Attribute

@@ -31412,7 +38941,7 @@

table:password Attribute

Datatypes - string  + string    @@ -31420,6 +38949,10 @@

table:password Attribute

  + + RNG Relations + table:password="<string>"   +

table:position Attribute

@@ -31436,7 +38969,7 @@

table:position Attribute

Datatypes - integer  + integer    @@ -31444,6 +38977,10 @@

table:position Attribute

  + + RNG Relations + table:position="<integer>"   +

table:precision-as-shown Attribute

@@ -31462,10 +38999,14 @@

table:precision-as-shown Attr Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + table:precision-as-shown="<boolean>"   +

table:print Attribute

@@ -31484,10 +39025,14 @@

table:print Attribute

Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + table:print="<boolean>"   +

table:print-ranges Attribute

@@ -31501,7 +39046,7 @@

table:print-ranges Attribute Datatypes - string  + string    @@ -31509,6 +39054,10 @@

table:print-ranges Attribute   + + RNG Relations + table:print-ranges="<string>"   +

table:protect Attribute

@@ -31528,10 +39077,14 @@

table:protect Attribute

Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + table:protect="<boolean>"   +

table:protected Attribute

@@ -31551,10 +39104,14 @@

table:protected Attribute

Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + table:protected="<boolean>"   +

table:protection-key[1] Attribute

@@ -31569,7 +39126,7 @@

table:protection-key[1] Attribute Datatypes - string  + string    @@ -31577,6 +39134,10 @@

table:protection-key[1] Attribute   + + RNG Relations + table:protection-key="<string>"   +

table:protection-key[2] Attribute

@@ -31598,6 +39159,10 @@

table:protection-key[2] Attribute   + + RNG Relations + table:protection-key="TEXT"   +

table:query-name Attribute

@@ -31611,7 +39176,7 @@

table:query-name Attribute

Datatypes - string  + string    @@ -31619,6 +39184,10 @@

table:query-name Attribute

  + + RNG Relations + table:query-name="<string>"   +

table:range-usable-as Attribute

@@ -31637,13 +39206,19 @@

table:range-usable-as Attribute< Values - "filter"  - "none"  - "print-range"  - "repeat-column"  - "repeat-row"  + "filter"  + "none"  + "print-range"  + "repeat-column"  + "repeat-row"    + + RNG Relations + table:range-usable-as="none | +START_list(print-range | filter | repeat-row | repeat-column)+ +END_list"   +

table:refresh-delay[1] Attribute

@@ -31652,21 +39227,25 @@

table:refresh-delay[1] Attribute Parent Elements - table:database-range  + table:cell-range-source  + table:table-source    Datatypes + duration    Values - "false"  - "true"    + + RNG Relations + table:refresh-delay="<duration>"   +

table:refresh-delay[2] Attribute

@@ -31675,21 +39254,25 @@

table:refresh-delay[2] Attribute Parent Elements - table:cell-range-source  - table:table-source  + table:database-range    Datatypes - duration    Values + "false"  + "true"    + + RNG Relations + table:refresh-delay="<boolean>"   +

table:rejecting-change-id Attribute

@@ -31706,7 +39289,7 @@

table:rejecting-change-id At Datatypes - string  + string    @@ -31714,6 +39297,10 @@

table:rejecting-change-id At   + + RNG Relations + table:rejecting-change-id="<string>"   +

table:row Attribute

@@ -31729,7 +39316,7 @@

table:row Attribute

Datatypes - integer  + integer    @@ -31737,6 +39324,10 @@

table:row Attribute

  + + RNG Relations + table:row="<integer>"   +

table:scenario-ranges Attribute

@@ -31750,7 +39341,7 @@

table:scenario-ranges Attribute< Datatypes - string  + string    @@ -31758,6 +39349,10 @@

table:scenario-ranges Attribute<   + + RNG Relations + table:scenario-ranges="<string>"   +

table:search-criteria-must-apply-to-whole-cell Attribute

@@ -31776,10 +39371,14 @@

table:s Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + table:search-criteria-must-apply-to-whole-cell="<boolean>"   +

table:selected-page Attribute

@@ -31793,7 +39392,7 @@

table:selected-page Attribute< Datatypes - string  + string    @@ -31801,6 +39400,10 @@

table:selected-page Attribute<   + + RNG Relations + table:selected-page="<string>"   +

table:show-details Attribute

@@ -31819,10 +39422,14 @@

table:show-details Attribute Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + table:show-details="<boolean>"   +

table:show-empty Attribute

@@ -31841,10 +39448,14 @@

table:show-empty Attribute

Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + table:show-empty="<boolean>"   +

table:show-filter-button Attribute

@@ -31863,10 +39474,14 @@

table:show-filter-button Attr Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + table:show-filter-button="<boolean>"   +

table:sort-mode[1] Attribute

@@ -31886,9 +39501,13 @@

table:sort-mode[1] Attribute

Values - "data"  + "data"    + + RNG Relations + table:sort-mode="data"   +

table:sort-mode[2] Attribute

@@ -31908,11 +39527,15 @@

table:sort-mode[2] Attribute

Values - "manual"  - "name"  - "none"  + "manual"  + "name"  + "none"    + + RNG Relations + table:sort-mode="none | manual | name"   +

table:source-cell-range-addresses Attribute

@@ -31926,7 +39549,7 @@

table:source-cell-ra Datatypes - string  + string    @@ -31934,6 +39557,10 @@

table:source-cell-ra   + + RNG Relations + table:source-cell-range-addresses="<string>"   +

table:source-field-name Attribute

@@ -31948,7 +39575,7 @@

table:source-field-name Attrib Datatypes - string  + string    @@ -31956,6 +39583,10 @@

table:source-field-name Attrib   + + RNG Relations + table:source-field-name="<string>"   +

table:source-name Attribute

@@ -31969,7 +39600,7 @@

table:source-name Attribute

Datatypes - string  + string    @@ -31977,6 +39608,10 @@

table:source-name Attribute

  + + RNG Relations + table:source-name="<string>"   +

table:sql-statement Attribute

@@ -31990,7 +39625,7 @@

table:sql-statement Attribute< Datatypes - string  + string    @@ -31998,6 +39633,10 @@

table:sql-statement Attribute<   + + RNG Relations + table:sql-statement="<string>"   +

table:start Attribute

@@ -32011,15 +39650,19 @@

table:start Attribute

Datatypes - double  + double    Values - "auto"  + "auto"    + + RNG Relations + table:start="<double> | auto"   +

table:start-column Attribute

@@ -32034,7 +39677,7 @@

table:start-column Attribute Datatypes - integer  + integer    @@ -32042,6 +39685,10 @@

table:start-column Attribute   + + RNG Relations + table:start-column="<integer>"   +

table:start-position Attribute

@@ -32055,7 +39702,7 @@

table:start-position Attribute Datatypes - integer  + integer    @@ -32063,6 +39710,10 @@

table:start-position Attribute   + + RNG Relations + table:start-position="<integer>"   +

table:start-row Attribute

@@ -32077,7 +39728,7 @@

table:start-row Attribute

Datatypes - integer  + integer    @@ -32085,6 +39736,10 @@

table:start-row Attribute

  + + RNG Relations + table:start-row="<integer>"   +

table:start-table Attribute

@@ -32099,7 +39754,7 @@

table:start-table Attribute

Datatypes - integer  + integer    @@ -32107,6 +39762,10 @@

table:start-table Attribute

  + + RNG Relations + table:start-table="<integer>"   +

table:status Attribute

@@ -32125,10 +39784,14 @@

table:status Attribute

Values - "disable"  - "enable"  + "disable"  + "enable"    + + RNG Relations + table:status="enable | disable"   +

table:step Attribute

@@ -32142,7 +39805,7 @@

table:step Attribute

Datatypes - double  + double    @@ -32150,6 +39813,10 @@

table:step Attribute

  + + RNG Relations + table:step="<double>"   +

table:steps Attribute

@@ -32163,7 +39830,7 @@

table:steps Attribute

Datatypes - positiveInteger  + positiveInteger    @@ -32171,6 +39838,10 @@

table:steps Attribute

  + + RNG Relations + table:steps="<positiveInteger>"   +

table:structure-protected Attribute

@@ -32189,10 +39860,14 @@

table:structure-protected At Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + table:structure-protected="<boolean>"   +

table:style-name Attribute

@@ -32210,7 +39885,7 @@

table:style-name Attribute

Datatypes - NCName  + NCName    @@ -32218,6 +39893,10 @@

table:style-name Attribute

  + + RNG Relations + table:style-name="(<NCName>)?"   +

table:table Attribute

@@ -32235,7 +39914,7 @@

table:table Attribute

Datatypes - integer  + integer    @@ -32243,6 +39922,10 @@

table:table Attribute

  + + RNG Relations + table:table="<integer>"   +

table:table-background Attribute

@@ -32278,10 +39961,14 @@

table:table-background Attribut Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + table:table-background="<boolean>"   +

table:table-name Attribute

@@ -32295,7 +39982,7 @@

table:table-name Attribute

Datatypes - string  + string    @@ -32303,6 +39990,10 @@

table:table-name Attribute

  + + RNG Relations + table:table-name="<string>"   +

table:target-cell-address Attribute

@@ -32316,7 +40007,7 @@

table:target-cell-address At Datatypes - string  + string    @@ -32324,6 +40015,10 @@

table:target-cell-address At   + + RNG Relations + table:target-cell-address="string]"   +

table:target-range-address Attribute

@@ -32340,7 +40035,7 @@

table:target-range-address Datatypes - string  + string    @@ -32348,6 +40043,10 @@

table:target-range-address   + + RNG Relations + table:target-range-address="string]"   +

table:title Attribute

@@ -32362,7 +40061,7 @@

table:title Attribute

Datatypes - string  + string    @@ -32370,6 +40069,10 @@

table:title Attribute

  + + RNG Relations + table:title="<string>"   +

table:track-changes Attribute

@@ -32388,10 +40091,14 @@

table:track-changes Attribute< Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + table:track-changes="<boolean>"   +

table:type[1] Attribute

@@ -32411,17 +40118,21 @@

table:type[1] Attribute

Values - "column-percentage"  - "index"  - "member-difference"  - "member-percentage"  - "member-percentage-difference"  - "none"  - "row-percentage"  - "running-total"  - "total-percentage"  + "column-percentage"  + "index"  + "member-difference"  + "member-percentage"  + "member-percentage-difference"  + "none"  + "row-percentage"  + "running-total"  + "total-percentage"    + + RNG Relations + table:type="none | member-difference | member-percentage | member-percentage-difference | running-total | row-percentage | column-percentage | total-percentage | index"   +

table:type[2] Attribute

@@ -32442,11 +40153,15 @@

table:type[2] Attribute

Values - "column"  - "row"  - "table"  + "column"  + "row"  + "table"    + + RNG Relations + table:type="row | column | table"   +

table:use-labels Attribute

@@ -32465,12 +40180,16 @@

table:use-labels Attribute

Values - "both"  - "column"  - "none"  - "row"  + "both"  + "column"  + "none"  + "row"    + + RNG Relations + table:use-labels="none | row | column | both"   +

table:use-regular-expressions Attribute

@@ -32489,10 +40208,14 @@

table:use-regular-expres Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + table:use-regular-expressions="<boolean>"   +

table:used-hierarchy Attribute

@@ -32506,7 +40229,7 @@

table:used-hierarchy Attribute Datatypes - integer  + integer    @@ -32514,6 +40237,10 @@

table:used-hierarchy Attribute   + + RNG Relations + table:used-hierarchy="<integer>"   +

table:user-name Attribute

@@ -32527,7 +40254,7 @@

table:user-name Attribute

Datatypes - string  + string    @@ -32535,6 +40262,10 @@

table:user-name Attribute

  + + RNG Relations + table:user-name="<string>"   +

table:value Attribute

@@ -32548,7 +40279,7 @@

table:value Attribute

Datatypes - string  + string    @@ -32556,6 +40287,10 @@

table:value Attribute

  + + RNG Relations + table:value="<string>"   +

table:value-type Attribute

@@ -32574,15 +40309,19 @@

table:value-type Attribute

Values - "boolean"  - "currency"  - "date"  - "float"  - "percentage"  - "string"  - "time"  + "boolean"  + "currency"  + "date"  + "float"  + "percentage"  + "string"  + "time"    + + RNG Relations + table:value-type="float | time | date | percentage | currency | boolean | string"   +

table:visibility Attribute

@@ -32602,11 +40341,15 @@

table:visibility Attribute

Values - "collapse"  - "filter"  - "visible"  + "collapse"  + "filter"  + "visible"    + + RNG Relations + table:visibility="visible | collapse | filter"   +

text:active Attribute

@@ -32625,10 +40368,14 @@

text:active Attribute

Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + text:active="<boolean>"   +

text:address Attribute

@@ -32642,7 +40389,7 @@

text:address Attribute

Datatypes - string  + string    @@ -32650,6 +40397,10 @@

text:address Attribute

  + + RNG Relations + CHOICE_NAME_CLASS="<string>"   +

text:alphabetical-separators Attribute

@@ -32668,10 +40419,14 @@

text:alphabetical-separat Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + text:alphabetical-separators="<boolean>"   +

text:anchor-page-number Attribute

@@ -32702,7 +40457,7 @@

text:anchor-page-number Attrib Datatypes - positiveInteger  + positiveInteger    @@ -32710,6 +40465,10 @@

text:anchor-page-number Attrib   + + RNG Relations + text:anchor-page-number="<positiveInteger>"   +

text:anchor-type Attribute

@@ -32745,13 +40504,17 @@

text:anchor-type Attribute

Values - "as-char"  - "char"  - "frame"  - "page"  - "paragraph"  + "as-char"  + "char"  + "frame"  + "page"  + "paragraph"    + + RNG Relations + text:anchor-type="page | frame | paragraph | char | as-char"   +

text:annote Attribute

@@ -32765,7 +40528,7 @@

text:annote Attribute

Datatypes - string  + string    @@ -32773,6 +40536,10 @@

text:annote Attribute

  + + RNG Relations + CHOICE_NAME_CLASS="<string>"   +

text:author Attribute

@@ -32786,7 +40553,7 @@

text:author Attribute

Datatypes - string  + string    @@ -32794,6 +40561,10 @@

text:author Attribute

  + + RNG Relations + CHOICE_NAME_CLASS="<string>"   +

text:bibliography-data-field Attribute

@@ -32812,40 +40583,44 @@

text:bibliography-data-fi Values - "address"  - "annote"  - "author"  - "bibliography-type"  - "booktitle"  - "chapter"  - "custom1"  - "custom2"  - "custom3"  - "custom4"  - "custom5"  - "edition"  - "editor"  - "howpublished"  - "identifier"  - "institution"  - "isbn"  - "issn"  - "journal"  - "month"  - "note"  - "number"  - "organizations"  - "pages"  - "publisher"  - "report-type"  - "school"  - "series"  - "title"  - "url"  - "volume"  - "year"  + "address"  + "annote"  + "author"  + "bibliography-type"  + "booktitle"  + "chapter"  + "custom1"  + "custom2"  + "custom3"  + "custom4"  + "custom5"  + "edition"  + "editor"  + "howpublished"  + "identifier"  + "institution"  + "isbn"  + "issn"  + "journal"  + "month"  + "note"  + "number"  + "organizations"  + "pages"  + "publisher"  + "report-type"  + "school"  + "series"  + "title"  + "url"  + "volume"  + "year"    + + RNG Relations + text:bibliography-data-field="address | annote | author | bibliography-type | booktitle | chapter | custom1 | custom2 | custom3 | custom4 | custom5 | edition | editor | howpublished | identifier | institution | isbn | issn | journal | month | note | number | organizations | pages | publisher | report-type | school | series | title | url | volume | year"   +

text:bibliography-type Attribute

@@ -32865,30 +40640,34 @@

text:bibliography-type Attribut Values - "article"  - "book"  - "booklet"  - "conference"  - "custom1"  - "custom2"  - "custom3"  - "custom4"  - "custom5"  - "email"  - "inbook"  - "incollection"  - "inproceedings"  - "journal"  - "manual"  - "mastersthesis"  - "misc"  - "phdthesis"  - "proceedings"  - "techreport"  - "unpublished"  - "www"  + "article"  + "book"  + "booklet"  + "conference"  + "custom1"  + "custom2"  + "custom3"  + "custom4"  + "custom5"  + "email"  + "inbook"  + "incollection"  + "inproceedings"  + "journal"  + "manual"  + "mastersthesis"  + "misc"  + "phdthesis"  + "proceedings"  + "techreport"  + "unpublished"  + "www"    + + RNG Relations + text:bibliography-type="article | book | booklet | conference | custom1 | custom2 | custom3 | custom4 | custom5 | email | inbook | incollection | inproceedings | journal | manual | mastersthesis | misc | phdthesis | proceedings | techreport | unpublished | www"   +

text:booktitle Attribute

@@ -32902,7 +40681,7 @@

text:booktitle Attribute

Datatypes - string  + string    @@ -32910,6 +40689,10 @@

text:booktitle Attribute

  + + RNG Relations + CHOICE_NAME_CLASS="<string>"   +

text:bullet-char Attribute

@@ -32923,7 +40706,7 @@

text:bullet-char Attribute

Datatypes - string  + string    @@ -32931,6 +40714,10 @@

text:bullet-char Attribute

  + + RNG Relations + text:bullet-char="string]"   +

text:bullet-relative-size Attribute

@@ -32944,7 +40731,7 @@

text:bullet-relative-size At Datatypes - string  + string    @@ -32952,6 +40739,10 @@

text:bullet-relative-size At   + + RNG Relations + text:bullet-relative-size="string]"   +

text:c Attribute

@@ -32965,7 +40756,7 @@

text:c Attribute

Datatypes - nonNegativeInteger  + nonNegativeInteger    @@ -32973,6 +40764,10 @@

text:c Attribute

  + + RNG Relations + text:c="<nonNegativeInteger>"   +

text:capitalize-entries Attribute

@@ -32991,10 +40786,14 @@

text:capitalize-entries Attrib Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + text:capitalize-entries="<boolean>"   +

text:caption-sequence-format Attribute

@@ -33014,11 +40813,15 @@

text:caption-sequence-for Values - "caption"  - "category-and-value"  - "text"  + "caption"  + "category-and-value"  + "text"    + + RNG Relations + text:caption-sequence-format="text | category-and-value | caption"   +

text:caption-sequence-name Attribute

@@ -33033,7 +40836,7 @@

text:caption-sequence-name Datatypes - string  + string    @@ -33041,6 +40844,10 @@

text:caption-sequence-name   + + RNG Relations + text:caption-sequence-name="<string>"   +

text:change-id Attribute

@@ -33056,7 +40863,7 @@

text:change-id Attribute

Datatypes - IDREF  + IDREF    @@ -33064,6 +40871,10 @@

text:change-id Attribute

  + + RNG Relations + text:change-id="<IDREF>"   +

text:chapter Attribute

@@ -33077,7 +40888,7 @@

text:chapter Attribute

Datatypes - string  + string    @@ -33085,6 +40896,10 @@

text:chapter Attribute

  + + RNG Relations + CHOICE_NAME_CLASS="<string>"   +

text:citation-body-style-name Attribute

@@ -33098,7 +40913,7 @@

text:citation-body-style Datatypes - NCName  + NCName    @@ -33106,6 +40921,10 @@

text:citation-body-style   + + RNG Relations + text:citation-body-style-name="(<NCName>)?"   +

text:citation-style-name Attribute

@@ -33119,7 +40938,7 @@

text:citation-style-name Attr Datatypes - NCName  + NCName    @@ -33127,6 +40946,10 @@

text:citation-style-name Attr   + + RNG Relations + text:citation-style-name="(<NCName>)?"   +

text:class-names Attribute

@@ -33142,7 +40965,7 @@

text:class-names Attribute

Datatypes - NCName  + NCName    @@ -33150,6 +40973,12 @@

text:class-names Attribute

  + + RNG Relations + text:class-names=" +START_list(<NCName>)* +END_list"   +

text:column-name Attribute

@@ -33163,7 +40992,7 @@

text:column-name Attribute

Datatypes - string  + string    @@ -33171,6 +41000,10 @@

text:column-name Attribute

  + + RNG Relations + text:column-name="<string>"   +

text:combine-entries Attribute

@@ -33189,10 +41022,14 @@

text:combine-entries Attribute Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + text:combine-entries="<boolean>"   +

text:combine-entries-with-dash Attribute

@@ -33211,10 +41048,14 @@

text:combine-entries-wi Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + text:combine-entries-with-dash="<boolean>"   +

text:combine-entries-with-pp Attribute

@@ -33233,10 +41074,14 @@

text:combine-entries-with Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + text:combine-entries-with-pp="<boolean>"   +

text:comma-separated Attribute

@@ -33255,10 +41100,14 @@

text:comma-separated Attribute Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + text:comma-separated="<boolean>"   +

text:cond-style-name Attribute

@@ -33273,7 +41122,7 @@

text:cond-style-name Attribute Datatypes - NCName  + NCName    @@ -33281,6 +41130,10 @@

text:cond-style-name Attribute   + + RNG Relations + text:cond-style-name="(<NCName>)?"   +

text:condition Attribute

@@ -33299,7 +41152,7 @@

text:condition Attribute

Datatypes - string  + string    @@ -33307,6 +41160,10 @@

text:condition Attribute

  + + RNG Relations + text:condition="<string>"   +

text:connection-name Attribute

@@ -33320,7 +41177,7 @@

text:connection-name Attribute Datatypes - string  + string    @@ -33328,6 +41185,10 @@

text:connection-name Attribute   + + RNG Relations + text:connection-name="<string>"   +

text:consecutive-numbering Attribute

@@ -33346,10 +41207,14 @@

text:consecutive-numbering Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + text:consecutive-numbering="<boolean>"   +

text:continue-numbering Attribute

@@ -33369,10 +41234,14 @@

text:continue-numbering Attrib Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + text:continue-numbering="<boolean>"   +

text:copy-outline-levels Attribute

@@ -33391,10 +41260,14 @@

text:copy-outline-levels Attr Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + text:copy-outline-levels="<boolean>"   +

text:count-empty-lines Attribute

@@ -33413,10 +41286,14 @@

text:count-empty-lines Attribut Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + text:count-empty-lines="<boolean>"   +

text:count-in-text-boxes Attribute

@@ -33435,10 +41312,14 @@

text:count-in-text-boxes Attr Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + text:count-in-text-boxes="<boolean>"   +

text:current-value Attribute

@@ -33457,10 +41338,14 @@

text:current-value Attribute Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + text:current-value="<boolean>"   +

text:custom1 Attribute

@@ -33474,7 +41359,7 @@

text:custom1 Attribute

Datatypes - string  + string    @@ -33482,6 +41367,10 @@

text:custom1 Attribute

  + + RNG Relations + CHOICE_NAME_CLASS="<string>"   +

text:custom2 Attribute

@@ -33495,7 +41384,7 @@

text:custom2 Attribute

Datatypes - string  + string    @@ -33503,6 +41392,10 @@

text:custom2 Attribute

  + + RNG Relations + CHOICE_NAME_CLASS="<string>"   +

text:custom3 Attribute

@@ -33516,7 +41409,7 @@

text:custom3 Attribute

Datatypes - string  + string    @@ -33524,6 +41417,10 @@

text:custom3 Attribute

  + + RNG Relations + CHOICE_NAME_CLASS="<string>"   +

text:custom4 Attribute

@@ -33537,7 +41434,7 @@

text:custom4 Attribute

Datatypes - string  + string    @@ -33545,6 +41442,10 @@

text:custom4 Attribute

  + + RNG Relations + CHOICE_NAME_CLASS="<string>"   +

text:custom5 Attribute

@@ -33558,7 +41459,7 @@

text:custom5 Attribute

Datatypes - string  + string    @@ -33566,6 +41467,10 @@

text:custom5 Attribute

  + + RNG Relations + CHOICE_NAME_CLASS="<string>"   +

text:database-name Attribute

@@ -33583,7 +41488,7 @@

text:database-name Attribute Datatypes - string  + string    @@ -33591,6 +41496,10 @@

text:database-name Attribute   + + RNG Relations + text:database-name="<string>"   +

text:date-adjust Attribute

@@ -33604,7 +41513,7 @@

text:date-adjust Attribute

Datatypes - duration  + duration    @@ -33612,6 +41521,10 @@

text:date-adjust Attribute

  + + RNG Relations + text:date-adjust="<duration>"   +

text:date-value[1] Attribute

@@ -33627,7 +41540,7 @@

text:date-value[1] Attribute

Datatypes - date  + date    @@ -33635,6 +41548,10 @@

text:date-value[1] Attribute

  + + RNG Relations + text:date-value="<date>"   +

text:date-value[2] Attribute

@@ -33650,8 +41567,8 @@

text:date-value[2] Attribute

Datatypes - date  - dateTime  + date  + dateTime    @@ -33659,6 +41576,10 @@

text:date-value[2] Attribute

  + + RNG Relations + text:date-value="<date> | <dateTime>"   +

text:default-style-name Attribute

@@ -33672,7 +41593,7 @@

text:default-style-name Attrib Datatypes - NCName  + NCName    @@ -33680,6 +41601,10 @@

text:default-style-name Attrib   + + RNG Relations + text:default-style-name="(<NCName>)?"   +

text:description Attribute

@@ -33703,6 +41628,10 @@

text:description Attribute

  + + RNG Relations + text:description="TEXT"   +

text:display[1] Attribute

@@ -33711,9 +41640,7 @@

text:display[1] Attribute

Parent Elements - text:expression  - text:table-formula  - text:variable-get  + text:file-name    @@ -33724,10 +41651,16 @@

text:display[1] Attribute

Values - "formula"  - "value"  + "full"  + "name"  + "name-and-extension"  + "path"    + + RNG Relations + text:display="full | path | name | name-and-extension"   +

text:display[2] Attribute

@@ -33736,7 +41669,7 @@

text:display[2] Attribute

Parent Elements - text:chapter  + text:user-field-get    @@ -33747,13 +41680,15 @@

text:display[2] Attribute

Values - "name"  - "number"  - "number-and-name"  - "plain-number"  - "plain-number-and-name"  + "formula"  + "none"  + "value"    + + RNG Relations + text:display="value | formula | none"   +

text:display[3] Attribute

@@ -33762,7 +41697,7 @@

text:display[3] Attribute

Parent Elements - text:user-field-get  + text:chapter    @@ -33773,11 +41708,17 @@

text:display[3] Attribute

Values - "formula"  - "none"  - "value"  + "name"  + "number"  + "number-and-name"  + "plain-number"  + "plain-number-and-name"    + + RNG Relations + text:display="name | number | number-and-name | plain-number-and-name | plain-number"   +

text:display[4] Attribute

@@ -33786,7 +41727,8 @@

text:display[4] Attribute

Parent Elements - text:section  + text:variable-input  + text:variable-set    @@ -33797,10 +41739,14 @@

text:display[4] Attribute

Values - "none"  - "true"  + "none"  + "value"    + + RNG Relations + text:display="value | none"   +

text:display[5] Attribute

@@ -33809,8 +41755,7 @@

text:display[5] Attribute

Parent Elements - text:variable-input  - text:variable-set  + text:section    @@ -33821,10 +41766,14 @@

text:display[5] Attribute

Values - "none"  - "value"  + "none"  + "true"    + + RNG Relations + text:display="true | none"   +

text:display[6] Attribute

@@ -33833,7 +41782,7 @@

text:display[6] Attribute

Parent Elements - text:file-name  + text:template-name    @@ -33844,12 +41793,18 @@

text:display[6] Attribute

Values - "full"  - "name"  - "name-and-extension"  - "path"  + "area"  + "full"  + "name"  + "name-and-extension"  + "path"  + "title"    + + RNG Relations + text:display="full | path | name | name-and-extension | area | title"   +

text:display[7] Attribute

@@ -33858,7 +41813,7 @@

text:display[7] Attribute

Parent Elements - text:template-name  + text:section    @@ -33869,14 +41824,13 @@

text:display[7] Attribute

Values - "area"  - "full"  - "name"  - "name-and-extension"  - "path"  - "title"  + "condition"    + + RNG Relations + text:display="condition"   +

text:display[8] Attribute

@@ -33885,7 +41839,7 @@

text:display[8] Attribute

Parent Elements - text:section  + text:index-entry-chapter    @@ -33896,9 +41850,15 @@

text:display[8] Attribute

Values - "condition"  + "name"  + "number"  + "number-and-name"    + + RNG Relations + text:display="name | number | number-and-name"   +

text:display[9] Attribute

@@ -33907,7 +41867,9 @@

text:display[9] Attribute

Parent Elements - text:index-entry-chapter  + text:expression  + text:table-formula  + text:variable-get    @@ -33918,11 +41880,14 @@

text:display[9] Attribute

Values - "name"  - "number"  - "number-and-name"  + "formula"  + "value"    + + RNG Relations + text:display="value | formula"   +

text:display-levels Attribute

@@ -33937,7 +41902,7 @@

text:display-levels Attribute< Datatypes - positiveInteger  + positiveInteger    @@ -33945,6 +41910,10 @@

text:display-levels Attribute<   + + RNG Relations + text:display-levels="<positiveInteger>"   +

text:display-outline-level Attribute

@@ -33958,7 +41927,7 @@

text:display-outline-level Datatypes - nonNegativeInteger  + nonNegativeInteger    @@ -33966,6 +41935,10 @@

text:display-outline-level   + + RNG Relations + text:display-outline-level="<nonNegativeInteger>"   +

text:duration Attribute

@@ -33979,7 +41952,7 @@

text:duration Attribute

Datatypes - duration  + duration    @@ -33987,6 +41960,10 @@

text:duration Attribute

  + + RNG Relations + text:duration="<duration>"   +

text:edition Attribute

@@ -34000,7 +41977,7 @@

text:edition Attribute

Datatypes - string  + string    @@ -34008,6 +41985,10 @@

text:edition Attribute

  + + RNG Relations + CHOICE_NAME_CLASS="<string>"   +

text:editor Attribute

@@ -34021,7 +42002,7 @@

text:editor Attribute

Datatypes - string  + string    @@ -34029,6 +42010,10 @@

text:editor Attribute

  + + RNG Relations + CHOICE_NAME_CLASS="<string>"   +

text:filter-name Attribute

@@ -34042,7 +42027,7 @@

text:filter-name Attribute

Datatypes - string  + string    @@ -34050,6 +42035,10 @@

text:filter-name Attribute

  + + RNG Relations + text:filter-name="<string>"   +

text:fixed Attribute

@@ -34104,10 +42093,14 @@

text:fixed Attribute

Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + text:fixed="<boolean>"   +

text:footnotes-position Attribute

@@ -34126,12 +42119,16 @@

text:footnotes-position Attrib Values - "document"  - "page"  - "section"  - "text"  + "document"  + "page"  + "section"  + "text"    + + RNG Relations + text:footnotes-position="text | page | section | document"   +

text:formula Attribute

@@ -34149,7 +42146,7 @@

text:formula Attribute

Datatypes - string  + string    @@ -34157,6 +42154,10 @@

text:formula Attribute

  + + RNG Relations + text:formula="<string>"   +

text:global Attribute

@@ -34175,10 +42176,14 @@

text:global Attribute

Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + text:global="<boolean>"   +

text:howpublished Attribute

@@ -34192,7 +42197,7 @@

text:howpublished Attribute

Datatypes - string  + string    @@ -34200,6 +42205,10 @@

text:howpublished Attribute

  + + RNG Relations + CHOICE_NAME_CLASS="<string>"   +

text:id[1] Attribute

@@ -34208,22 +42217,13 @@

text:id[1] Attribute

Parent Elements - draw:text-box  - text:alphabetical-index-mark-end  - text:alphabetical-index-mark-start  - text:h  - text:note  - text:p  - text:toc-mark-end  - text:toc-mark-start  - text:user-index-mark-end  - text:user-index-mark-start  + text:changed-region    Datatypes - string  + ID    @@ -34231,6 +42231,10 @@

text:id[1] Attribute

  + + RNG Relations + text:id="<ID>"   +

text:id[2] Attribute

@@ -34239,13 +42243,22 @@

text:id[2] Attribute

Parent Elements - text:changed-region  + draw:text-box  + text:alphabetical-index-mark-end  + text:alphabetical-index-mark-start  + text:h  + text:note  + text:p  + text:toc-mark-end  + text:toc-mark-start  + text:user-index-mark-end  + text:user-index-mark-start    Datatypes - ID  + string    @@ -34253,6 +42266,10 @@

text:id[2] Attribute

  + + RNG Relations + text:id="<string>"   +

text:identifier Attribute

@@ -34266,7 +42283,7 @@

text:identifier Attribute

Datatypes - string  + string    @@ -34274,6 +42291,10 @@

text:identifier Attribute

  + + RNG Relations + CHOICE_NAME_CLASS="<string>"   +

text:ignore-case Attribute

@@ -34292,10 +42313,14 @@

text:ignore-case Attribute

Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + text:ignore-case="<boolean>"   +

text:increment Attribute

@@ -34310,7 +42335,7 @@

text:increment Attribute

Datatypes - nonNegativeInteger  + nonNegativeInteger    @@ -34318,6 +42343,10 @@

text:increment Attribute

  + + RNG Relations + text:increment="<nonNegativeInteger>"   +

text:index-name Attribute

@@ -34333,7 +42362,7 @@

text:index-name Attribute

Datatypes - string  + string    @@ -34341,6 +42370,10 @@

text:index-name Attribute

  + + RNG Relations + text:index-name="<string>"   +

text:index-scope Attribute

@@ -34364,10 +42397,14 @@

text:index-scope Attribute

Values - "chapter"  - "document"  + "chapter"  + "document"    + + RNG Relations + text:index-scope="document | chapter"   +

text:institution Attribute

@@ -34381,7 +42418,7 @@

text:institution Attribute

Datatypes - string  + string    @@ -34389,6 +42426,10 @@

text:institution Attribute

  + + RNG Relations + CHOICE_NAME_CLASS="<string>"   +

text:is-hidden Attribute

@@ -34408,10 +42449,14 @@

text:is-hidden Attribute

Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + text:is-hidden="<boolean>"   +

text:is-list-header Attribute

@@ -34430,10 +42475,14 @@

text:is-list-header Attribute< Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + text:is-list-header="<boolean>"   +

text:isbn Attribute

@@ -34447,7 +42496,7 @@

text:isbn Attribute

Datatypes - string  + string    @@ -34455,6 +42504,10 @@

text:isbn Attribute

  + + RNG Relations + CHOICE_NAME_CLASS="<string>"   +

text:issn Attribute

@@ -34468,7 +42521,7 @@

text:issn Attribute

Datatypes - string  + string    @@ -34476,6 +42529,10 @@

text:issn Attribute

  + + RNG Relations + CHOICE_NAME_CLASS="<string>"   +

text:journal Attribute

@@ -34489,7 +42546,7 @@

text:journal Attribute

Datatypes - string  + string    @@ -34497,6 +42554,10 @@

text:journal Attribute

  + + RNG Relations + CHOICE_NAME_CLASS="<string>"   +

text:key Attribute

@@ -34515,40 +42576,44 @@

text:key Attribute

Values - "address"  - "annote"  - "author"  - "bibliography-type"  - "booktitle"  - "chapter"  - "custom1"  - "custom2"  - "custom3"  - "custom4"  - "custom5"  - "edition"  - "editor"  - "howpublished"  - "identifier"  - "institution"  - "isbn"  - "issn"  - "journal"  - "month"  - "note"  - "number"  - "organizations"  - "pages"  - "publisher"  - "report-type"  - "school"  - "series"  - "title"  - "url"  - "volume"  - "year"  + "address"  + "annote"  + "author"  + "bibliography-type"  + "booktitle"  + "chapter"  + "custom1"  + "custom2"  + "custom3"  + "custom4"  + "custom5"  + "edition"  + "editor"  + "howpublished"  + "identifier"  + "institution"  + "isbn"  + "issn"  + "journal"  + "month"  + "note"  + "number"  + "organizations"  + "pages"  + "publisher"  + "report-type"  + "school"  + "series"  + "title"  + "url"  + "volume"  + "year"    + + RNG Relations + text:key="address | annote | author | bibliography-type | booktitle | chapter | custom1 | custom2 | custom3 | custom4 | custom5 | edition | editor | howpublished | identifier | institution | isbn | issn | journal | month | note | number | organizations | pages | publisher | report-type | school | series | title | url | volume | year"   +

text:key1 Attribute

@@ -34563,7 +42628,7 @@

text:key1 Attribute

Datatypes - string  + string    @@ -34571,6 +42636,10 @@

text:key1 Attribute

  + + RNG Relations + text:key1="<string>"   +

text:key1-phonetic Attribute

@@ -34585,7 +42654,7 @@

text:key1-phonetic Attribute Datatypes - string  + string    @@ -34593,6 +42662,10 @@

text:key1-phonetic Attribute   + + RNG Relations + text:key1-phonetic="<string>"   +

text:key2 Attribute

@@ -34607,7 +42680,7 @@

text:key2 Attribute

Datatypes - string  + string    @@ -34615,6 +42688,10 @@

text:key2 Attribute

  + + RNG Relations + text:key2="<string>"   +

text:key2-phonetic Attribute

@@ -34629,7 +42706,7 @@

text:key2-phonetic Attribute Datatypes - string  + string    @@ -34637,6 +42714,10 @@

text:key2-phonetic Attribute   + + RNG Relations + text:key2-phonetic="<string>"   +

text:kind Attribute

@@ -34655,11 +42736,15 @@

text:kind Attribute

Values - "gap"  - "unit"  - "value"  + "gap"  + "unit"  + "value"    + + RNG Relations + text:kind="value | unit | gap"   +

text:label Attribute

@@ -34673,7 +42758,7 @@

text:label Attribute

Datatypes - string  + string    @@ -34681,6 +42766,10 @@

text:label Attribute

  + + RNG Relations + text:label="<string>"   +

text:level Attribute

@@ -34698,7 +42787,7 @@

text:level Attribute

Datatypes - positiveInteger  + positiveInteger    @@ -34706,6 +42795,10 @@

text:level Attribute

  + + RNG Relations + text:level="<positiveInteger>"   +

text:main-entry Attribute

@@ -34725,10 +42818,14 @@

text:main-entry Attribute

Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + text:main-entry="<boolean>"   +

text:main-entry-style-name Attribute

@@ -34742,7 +42839,7 @@

text:main-entry-style-name Datatypes - NCName  + NCName    @@ -34750,6 +42847,10 @@

text:main-entry-style-name   + + RNG Relations + text:main-entry-style-name="(<NCName>)?"   +

text:master-page-name Attribute

@@ -34764,7 +42865,7 @@

text:master-page-name Attribute< Datatypes - NCName  + NCName    @@ -34772,6 +42873,10 @@

text:master-page-name Attribute<   + + RNG Relations + text:master-page-name="(<NCName>)?"   +

text:month Attribute

@@ -34785,7 +42890,7 @@

text:month Attribute

Datatypes - string  + string    @@ -34793,6 +42898,10 @@

text:month Attribute

  + + RNG Relations + CHOICE_NAME_CLASS="<string>"   +

text:name Attribute

@@ -34831,7 +42940,7 @@

text:name Attribute

Datatypes - string  + string    @@ -34839,6 +42948,10 @@

text:name Attribute

  + + RNG Relations + text:name="<string>"   +

text:note Attribute

@@ -34852,7 +42965,7 @@

text:note Attribute

Datatypes - string  + string    @@ -34860,6 +42973,10 @@

text:note Attribute

  + + RNG Relations + CHOICE_NAME_CLASS="<string>"   +

text:note-class Attribute

@@ -34880,10 +42997,14 @@

text:note-class Attribute

Values - "endnote"  - "footnote"  + "endnote"  + "footnote"    + + RNG Relations + text:note-class="footnote | endnote"   +

text:number Attribute

@@ -34897,7 +43018,7 @@

text:number Attribute

Datatypes - string  + string    @@ -34905,6 +43026,10 @@

text:number Attribute

  + + RNG Relations + CHOICE_NAME_CLASS="<string>"   +

text:number-lines Attribute

@@ -34923,10 +43048,14 @@

text:number-lines Attribute

Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + text:number-lines="<boolean>"   +

text:number-position Attribute

@@ -34945,12 +43074,16 @@

text:number-position Attribute Values - "inner"  - "left"  - "outer"  - "right"  + "inner"  + "left"  + "outer"  + "right"    + + RNG Relations + text:number-position="left | right | inner | outer"   +

text:numbered-entries Attribute

@@ -34969,10 +43102,14 @@

text:numbered-entries Attribute< Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + text:numbered-entries="<boolean>"   +

text:offset Attribute

@@ -34986,7 +43123,7 @@

text:offset Attribute

Datatypes - string  + string    @@ -34994,6 +43131,10 @@

text:offset Attribute

  + + RNG Relations + text:offset="string]"   +

text:organizations Attribute

@@ -35007,7 +43148,7 @@

text:organizations Attribute Datatypes - string  + string    @@ -35015,6 +43156,10 @@

text:organizations Attribute   + + RNG Relations + CHOICE_NAME_CLASS="<string>"   +

text:outline-level[1] Attribute

@@ -35038,7 +43183,7 @@

text:outline-level[1] Attribute Datatypes - positiveInteger  + positiveInteger    @@ -35046,6 +43191,10 @@

text:outline-level[1] Attribute   + + RNG Relations + text:outline-level="<positiveInteger>"   +

text:outline-level[2] Attribute

@@ -35060,7 +43209,7 @@

text:outline-level[2] Attribute Datatypes - nonNegativeInteger  + nonNegativeInteger    @@ -35068,6 +43217,10 @@

text:outline-level[2] Attribute   + + RNG Relations + text:outline-level="<nonNegativeInteger>"   +

text:outline-level[3] Attribute

@@ -35087,12 +43240,16 @@

text:outline-level[3] Attribute Values - "1"  - "2"  - "3"  - "separator"  + "1"  + "2"  + "3"  + "separator"    + + RNG Relations + text:outline-level="1 | 2 | 3 | separator"   +

text:page-adjust Attribute

@@ -35107,7 +43264,7 @@

text:page-adjust Attribute

Datatypes - integer  + integer    @@ -35115,6 +43272,10 @@

text:page-adjust Attribute

  + + RNG Relations + text:page-adjust="<integer>"   +

text:pages Attribute

@@ -35128,7 +43289,7 @@

text:pages Attribute

Datatypes - string  + string    @@ -35136,6 +43297,10 @@

text:pages Attribute

  + + RNG Relations + CHOICE_NAME_CLASS="<string>"   +

text:placeholder-type Attribute

@@ -35154,13 +43319,17 @@

text:placeholder-type Attribute< Values - "image"  - "object"  - "table"  - "text"  - "text-box"  + "image"  + "object"  + "table"  + "text"  + "text-box"    + + RNG Relations + text:placeholder-type="text | table | text-box | image | object"   +

text:prefix Attribute

@@ -35174,7 +43343,7 @@

text:prefix Attribute

Datatypes - string  + string    @@ -35182,6 +43351,10 @@

text:prefix Attribute

  + + RNG Relations + text:prefix="<string>"   +

text:protected Attribute

@@ -35208,10 +43381,14 @@

text:protected Attribute

Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + text:protected="<boolean>"   +

text:protection-key Attribute

@@ -35233,7 +43410,7 @@

text:protection-key Attribute< Datatypes - string  + string    @@ -35241,6 +43418,10 @@

text:protection-key Attribute<   + + RNG Relations + text:protection-key="<string>"   +

text:publisher Attribute

@@ -35254,7 +43435,7 @@

text:publisher Attribute

Datatypes - string  + string    @@ -35262,6 +43443,10 @@

text:publisher Attribute

  + + RNG Relations + CHOICE_NAME_CLASS="<string>"   +

text:ref-name Attribute

@@ -35279,7 +43464,7 @@

text:ref-name Attribute

Datatypes - string  + string    @@ -35287,6 +43472,10 @@

text:ref-name Attribute

  + + RNG Relations + text:ref-name="<string>"   +

text:reference-format[1] Attribute

@@ -35308,12 +43497,16 @@

text:reference-format[1] Attribu Values - "chapter"  - "direction"  - "page"  - "text"  + "chapter"  + "direction"  + "page"  + "text"    + + RNG Relations + text:reference-format="page | chapter | direction | text"   +

text:reference-format[2] Attribute

@@ -35333,15 +43526,19 @@

text:reference-format[2] Attribu Values - "caption"  - "category-and-value"  - "chapter"  - "direction"  - "page"  - "text"  - "value"  + "caption"  + "category-and-value"  + "chapter"  + "direction"  + "page"  + "text"  + "value"    + + RNG Relations + text:reference-format="page | chapter | direction | text | category-and-value | caption | value"   +

text:relative-tab-stop-position Attribute

@@ -35365,10 +43562,14 @@

text:relative-tab-stop Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + text:relative-tab-stop-position="<boolean>"   +

text:report-type Attribute

@@ -35382,7 +43583,7 @@

text:report-type Attribute

Datatypes - string  + string    @@ -35390,6 +43591,10 @@

text:report-type Attribute

  + + RNG Relations + CHOICE_NAME_CLASS="<string>"   +

text:restart-numbering Attribute

@@ -35408,10 +43613,14 @@

text:restart-numbering Attribut Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + text:restart-numbering="<boolean>"   +

text:restart-on-page Attribute

@@ -35430,10 +43639,14 @@

text:restart-on-page Attribute Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + text:restart-on-page="<boolean>"   +

text:row-number Attribute

@@ -35447,7 +43660,7 @@

text:row-number Attribute

Datatypes - nonNegativeInteger  + nonNegativeInteger    @@ -35455,6 +43668,10 @@

text:row-number Attribute

  + + RNG Relations + text:row-number="<nonNegativeInteger>"   +

text:school Attribute

@@ -35468,7 +43685,7 @@

text:school Attribute

Datatypes - string  + string    @@ -35476,6 +43693,10 @@

text:school Attribute

  + + RNG Relations + CHOICE_NAME_CLASS="<string>"   +

text:section-name Attribute

@@ -35489,7 +43710,7 @@

text:section-name Attribute

Datatypes - string  + string    @@ -35497,6 +43718,10 @@

text:section-name Attribute

  + + RNG Relations + text:section-name="<string>"   +

text:select-page[1] Attribute

@@ -35505,7 +43730,7 @@

text:select-page[1] Attribute

Parent Elements - text:page-continuation  + text:page-number    @@ -35516,10 +43741,15 @@

text:select-page[1] Attribute

Values - "next"  - "previous"  + "current"  + "next"  + "previous"    + + RNG Relations + text:select-page="previous | current | next"   +

text:select-page[2] Attribute

@@ -35528,7 +43758,7 @@

text:select-page[2] Attribute

Parent Elements - text:page-number  + text:page-continuation    @@ -35539,11 +43769,14 @@

text:select-page[2] Attribute

Values - "current"  - "next"  - "previous"  + "next"  + "previous"    + + RNG Relations + text:select-page="previous | next"   +

text:separation-character Attribute

@@ -35557,7 +43790,7 @@

text:separation-character At Datatypes - string  + string    @@ -35565,6 +43798,10 @@

text:separation-character At   + + RNG Relations + text:separation-character="string]"   +

text:series Attribute

@@ -35578,7 +43815,7 @@

text:series Attribute

Datatypes - string  + string    @@ -35586,6 +43823,10 @@

text:series Attribute

  + + RNG Relations + CHOICE_NAME_CLASS="<string>"   +

text:sort-algorithm Attribute

@@ -35600,7 +43841,7 @@

text:sort-algorithm Attribute< Datatypes - string  + string    @@ -35608,6 +43849,10 @@

text:sort-algorithm Attribute<   + + RNG Relations + text:sort-algorithm="<string>"   +

text:sort-ascending Attribute

@@ -35626,10 +43871,14 @@

text:sort-ascending Attribute< Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + text:sort-ascending="<boolean>"   +

text:sort-by-position Attribute

@@ -35648,10 +43897,14 @@

text:sort-by-position Attribute< Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + text:sort-by-position="<boolean>"   +

text:start-numbering-at Attribute

@@ -35670,11 +43923,15 @@

text:start-numbering-at Attrib Values - "chapter"  - "document"  - "page"  + "chapter"  + "document"  + "page"    + + RNG Relations + text:start-numbering-at="document | chapter | page"   +

text:start-value[1] Attribute

@@ -35690,7 +43947,7 @@

text:start-value[1] Attribute

Datatypes - positiveInteger  + positiveInteger    @@ -35698,6 +43955,10 @@

text:start-value[1] Attribute

  + + RNG Relations + text:start-value="<positiveInteger>"   +

text:start-value[2] Attribute

@@ -35715,7 +43976,7 @@

text:start-value[2] Attribute

Datatypes - nonNegativeInteger  + nonNegativeInteger    @@ -35723,6 +43984,10 @@

text:start-value[2] Attribute

  + + RNG Relations + text:start-value="<nonNegativeInteger>"   +

text:string-value Attribute

@@ -35740,7 +44005,7 @@

text:string-value Attribute

Datatypes - string  + string    @@ -35748,6 +44013,10 @@

text:string-value Attribute

  + + RNG Relations + text:string-value="<string>"   +

text:string-value-if-false Attribute

@@ -35761,7 +44030,7 @@

text:string-value-if-false Datatypes - string  + string    @@ -35769,6 +44038,10 @@

text:string-value-if-false   + + RNG Relations + text:string-value-if-false="<string>"   +

text:string-value-if-true Attribute

@@ -35782,7 +44055,7 @@

text:string-value-if-true At Datatypes - string  + string    @@ -35790,6 +44063,10 @@

text:string-value-if-true At   + + RNG Relations + text:string-value-if-true="<string>"   +

text:string-value-phonetic Attribute

@@ -35804,7 +44081,7 @@

text:string-value-phonetic Datatypes - string  + string    @@ -35812,6 +44089,10 @@

text:string-value-phonetic   + + RNG Relations + text:string-value-phonetic="<string>"   +

text:style-name Attribute

@@ -35862,7 +44143,7 @@

text:style-name Attribute

Datatypes - NCName  + NCName    @@ -35870,6 +44151,10 @@

text:style-name Attribute

  + + RNG Relations + text:style-name="(<NCName>)?"   +

text:suffix Attribute

@@ -35883,7 +44168,7 @@

text:suffix Attribute

Datatypes - string  + string    @@ -35891,6 +44176,10 @@

text:suffix Attribute

  + + RNG Relations + text:suffix="<string>"   +

text:tab-ref Attribute

@@ -35904,7 +44193,7 @@

text:tab-ref Attribute

Datatypes - nonNegativeInteger  + nonNegativeInteger    @@ -35912,6 +44201,10 @@

text:tab-ref Attribute

  + + RNG Relations + text:tab-ref="<nonNegativeInteger>"   +

text:table-name Attribute

@@ -35929,7 +44222,7 @@

text:table-name Attribute

Datatypes - string  + string    @@ -35937,6 +44230,10 @@

text:table-name Attribute

  + + RNG Relations + text:table-name="<string>"   +

text:table-type Attribute

@@ -35959,11 +44256,15 @@

text:table-type Attribute

Values - "command"  - "query"  - "table"  + "command"  + "query"  + "table"    + + RNG Relations + text:table-type="table | query | command"   +

text:time-adjust Attribute

@@ -35977,7 +44278,7 @@

text:time-adjust Attribute

Datatypes - duration  + duration    @@ -35985,6 +44286,10 @@

text:time-adjust Attribute

  + + RNG Relations + text:time-adjust="<duration>"   +

text:time-value[1] Attribute

@@ -35993,14 +44298,15 @@

text:time-value[1] Attribute

Parent Elements - text:modification-time  - text:print-time  + text:creation-time  + text:time    Datatypes - time  + dateTime  + time    @@ -36008,6 +44314,10 @@

text:time-value[1] Attribute

  + + RNG Relations + text:time-value="<time> | <dateTime>"   +

text:time-value[2] Attribute

@@ -36016,15 +44326,14 @@

text:time-value[2] Attribute

Parent Elements - text:creation-time  - text:time  + text:modification-time  + text:print-time    Datatypes - dateTime  - time  + time    @@ -36032,6 +44341,10 @@

text:time-value[2] Attribute

  + + RNG Relations + text:time-value="<time>"   +

text:title Attribute

@@ -36045,7 +44358,7 @@

text:title Attribute

Datatypes - string  + string    @@ -36053,6 +44366,10 @@

text:title Attribute

  + + RNG Relations + CHOICE_NAME_CLASS="<string>"   +

text:track-changes Attribute

@@ -36071,10 +44388,14 @@

text:track-changes Attribute Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + text:track-changes="<boolean>"   +

text:url Attribute

@@ -36088,7 +44409,7 @@

text:url Attribute

Datatypes - string  + string    @@ -36096,6 +44417,10 @@

text:url Attribute

  + + RNG Relations + CHOICE_NAME_CLASS="<string>"   +

text:use-caption Attribute

@@ -36115,10 +44440,14 @@

text:use-caption Attribute

Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + text:use-caption="<boolean>"   +

text:use-chart-objects Attribute

@@ -36137,10 +44466,14 @@

text:use-chart-objects Attribut Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + text:use-chart-objects="<boolean>"   +

text:use-draw-objects Attribute

@@ -36159,10 +44492,14 @@

text:use-draw-objects Attribute< Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + text:use-draw-objects="<boolean>"   +

text:use-floating-frames Attribute

@@ -36181,10 +44518,14 @@

text:use-floating-frames Attr Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + text:use-floating-frames="<boolean>"   +

text:use-graphics Attribute

@@ -36203,10 +44544,14 @@

text:use-graphics Attribute

Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + text:use-graphics="<boolean>"   +

text:use-index-marks Attribute

@@ -36226,10 +44571,14 @@

text:use-index-marks Attribute Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + text:use-index-marks="<boolean>"   +

text:use-index-source-styles Attribute

@@ -36248,10 +44597,14 @@

text:use-index-source-sty Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + text:use-index-source-styles="<boolean>"   +

text:use-keys-as-entries Attribute

@@ -36270,10 +44623,14 @@

text:use-keys-as-entries Attr Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + text:use-keys-as-entries="<boolean>"   +

text:use-math-objects Attribute

@@ -36292,10 +44649,14 @@

text:use-math-objects Attribute< Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + text:use-math-objects="<boolean>"   +

text:use-objects Attribute

@@ -36314,10 +44675,14 @@

text:use-objects Attribute

Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + text:use-objects="<boolean>"   +

text:use-other-objects Attribute

@@ -36336,10 +44701,14 @@

text:use-other-objects Attribut Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + text:use-other-objects="<boolean>"   +

text:use-outline-level Attribute

@@ -36358,10 +44727,14 @@

text:use-outline-level Attribut Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + text:use-outline-level="<boolean>"   +

text:use-soft-page-breaks Attribute (new in ODF 1.1)

@@ -36380,10 +44753,14 @@

text:use-soft-page-breaks At Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + text:use-soft-page-breaks="<boolean>"   +

text:use-spreadsheet-objects Attribute

@@ -36402,10 +44779,14 @@

text:use-spreadsheet-obje Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + text:use-spreadsheet-objects="<boolean>"   +

text:use-tables Attribute

@@ -36424,10 +44805,14 @@

text:use-tables Attribute

Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + text:use-tables="<boolean>"   +

text:value Attribute

@@ -36441,7 +44826,7 @@

text:value Attribute

Datatypes - nonNegativeInteger  + nonNegativeInteger    @@ -36449,6 +44834,10 @@

text:value Attribute

  + + RNG Relations + text:value="<nonNegativeInteger>"   +

text:visited-style-name Attribute

@@ -36462,7 +44851,7 @@

text:visited-style-name Attrib Datatypes - NCName  + NCName    @@ -36470,6 +44859,10 @@

text:visited-style-name Attrib   + + RNG Relations + text:visited-style-name="(<NCName>)?"   +

text:volume Attribute

@@ -36483,7 +44876,7 @@

text:volume Attribute

Datatypes - string  + string    @@ -36491,6 +44884,10 @@

text:volume Attribute

  + + RNG Relations + CHOICE_NAME_CLASS="<string>"   +

text:year Attribute

@@ -36504,7 +44901,7 @@

text:year Attribute

Datatypes - string  + string    @@ -36512,6 +44909,10 @@

text:year Attribute

  + + RNG Relations + CHOICE_NAME_CLASS="<string>"   +

xforms:bind Attribute

@@ -36545,7 +44946,7 @@

xforms:bind Attribute

Datatypes - string  + string    @@ -36553,6 +44954,10 @@

xforms:bind Attribute

  + + RNG Relations + xforms:bind="<string>"   +

xlink:actuate[1] Attribute

@@ -36581,9 +44986,13 @@

xlink:actuate[1] Attribute

Values - "onRequest"  + "onRequest"    + + RNG Relations + xlink:actuate="onRequest"   +

xlink:actuate[2] Attribute

@@ -36610,9 +45019,13 @@

xlink:actuate[2] Attribute

Values - "onLoad"  + "onLoad"    + + RNG Relations + xlink:actuate="onLoad"   +

xlink:href Attribute

@@ -36653,7 +45066,7 @@

xlink:href Attribute

Datatypes - anyURI  + anyURI    @@ -36661,6 +45074,10 @@

xlink:href Attribute

  + + RNG Relations + xlink:href="<anyURI>"   +

xlink:show[1] Attribute

@@ -36685,10 +45102,14 @@

xlink:show[1] Attribute

Values - "new"  - "replace"  + "new"  + "replace"    + + RNG Relations + xlink:show="new | replace"   +

xlink:show[2] Attribute

@@ -36717,9 +45138,13 @@

xlink:show[2] Attribute

Values - "embed"  + "embed"    + + RNG Relations + xlink:show="embed"   +

xlink:type Attribute

@@ -36761,9 +45186,13 @@

xlink:type Attribute

Values - "simple"  + "simple"    + + RNG Relations + xlink:type="simple"   +
diff --git a/generator/schema2template/src/test/resources/test-reference/odf/generation/odf-reference/odf-schema-1.2/OdfReference.html b/generator/schema2template/src/test/resources/test-reference/odf/generation/odf-reference/odf-schema-1.2/OdfReference.html index 2719e1d59c..c3288fa6d6 100644 --- a/generator/schema2template/src/test/resources/test-reference/odf/generation/odf-reference/odf-schema-1.2/OdfReference.html +++ b/generator/schema2template/src/test/resources/test-reference/odf/generation/odf-reference/odf-schema-1.2/OdfReference.html @@ -79,6 +79,37 @@

anim:animate Element

  + + Child Relations + <anim:animate (smil:targetElement="<IDREF>" )? + (anim:sub-item="<string>" )? + smil:attributeName="<string>" (smil:values="<string>" )? + (anim:formula="<string>" )? + (smil:to="<string>" )? + (smil:from="<string>" )? + (smil:by="<string>" )? + (smil:calcMode="discrete | linear | paced | spline" )? + (smil:keyTimes="<string>" )? + (smil:keySplines="<string>" )? + + ( + ( (smil:begin="<string>" )? + (smil:end="<string>" )? + (smil:dur="<string>" )? + + ( (smil:repeatDur="<string>" )? + (smil:repeatCount="decimal] | indefinite" )? + ) (smil:restart="never | always | whenNotActive | default" )? + (smil:restartDefault="never | always | whenNotActive | inherit" )? + (smil:fill="remove | freeze | hold | auto | default | transition" )? + (smil:fillDefault="remove | freeze | hold | transition | auto | inherit" )? + ) (smil:accelerate="decimal]" )? + (smil:decelerate="decimal]" )? + (smil:autoReverse="<boolean>" )? + ) (smil:accumulate="none | sum" )? + (smil:additive="replace | sum" )? + >  +
@@ -131,6 +162,39 @@

anim:animateColor Element

  + + Child Relations + <anim:animateColor (smil:targetElement="<IDREF>" )? + (anim:sub-item="<string>" )? + smil:attributeName="<string>" (smil:accumulate="none | sum" )? + (smil:additive="replace | sum" )? + (smil:values="<string>" )? + (anim:formula="<string>" )? + (smil:to="<string>" )? + (smil:from="<string>" )? + (smil:by="<string>" )? + (smil:calcMode="discrete | linear | paced | spline" )? + (smil:keyTimes="<string>" )? + (smil:keySplines="<string>" )? + (anim:color-interpolation="rgb | hsl" )? + (anim:color-interpolation-direction="clockwise | counter-clockwise" )? + + ( + ( (smil:begin="<string>" )? + (smil:end="<string>" )? + (smil:dur="<string>" )? + + ( (smil:repeatDur="<string>" )? + (smil:repeatCount="decimal] | indefinite" )? + ) (smil:restart="never | always | whenNotActive | default" )? + (smil:restartDefault="never | always | whenNotActive | inherit" )? + (smil:fill="remove | freeze | hold | auto | default | transition" )? + (smil:fillDefault="remove | freeze | hold | transition | auto | inherit" )? + ) (smil:accelerate="decimal]" )? + (smil:decelerate="decimal]" )? + (smil:autoReverse="<boolean>" )? + )>  +
@@ -183,6 +247,39 @@

anim:animateMotion Element

  + + Child Relations + <anim:animateMotion (svg:path="<string>" )? + (svg:origin="<string>" )? + (smil:calcMode="discrete | linear | paced | spline" )? + (smil:targetElement="<IDREF>" )? + (anim:sub-item="<string>" )? + smil:attributeName="<string>" (smil:accumulate="none | sum" )? + (smil:additive="replace | sum" )? + (smil:values="<string>" )? + (anim:formula="<string>" )? + (smil:to="<string>" )? + (smil:from="<string>" )? + (smil:by="<string>" )? + + ( + ( (smil:begin="<string>" )? + (smil:end="<string>" )? + (smil:dur="<string>" )? + + ( (smil:repeatDur="<string>" )? + (smil:repeatCount="decimal] | indefinite" )? + ) (smil:restart="never | always | whenNotActive | default" )? + (smil:restartDefault="never | always | whenNotActive | inherit" )? + (smil:fill="remove | freeze | hold | auto | default | transition" )? + (smil:fillDefault="remove | freeze | hold | transition | auto | inherit" )? + ) (smil:accelerate="decimal]" )? + (smil:decelerate="decimal]" )? + (smil:autoReverse="<boolean>" )? + ) (smil:keyTimes="<string>" )? + (smil:keySplines="<string>" )? + >  +
@@ -231,6 +328,34 @@

anim:animateTransform Element<   + + Child Relations + <anim:animateTransform (smil:targetElement="<IDREF>" )? + (anim:sub-item="<string>" )? + smil:attributeName="<string>" (smil:accumulate="none | sum" )? + (smil:additive="replace | sum" )? + (smil:values="<string>" )? + (anim:formula="<string>" )? + (smil:to="<string>" )? + (smil:from="<string>" )? + (smil:by="<string>" )? + svg:type="translate | scale | rotate | skewX | skewY" + ( + ( (smil:begin="<string>" )? + (smil:end="<string>" )? + (smil:dur="<string>" )? + + ( (smil:repeatDur="<string>" )? + (smil:repeatCount="decimal] | indefinite" )? + ) (smil:restart="never | always | whenNotActive | default" )? + (smil:restartDefault="never | always | whenNotActive | inherit" )? + (smil:fill="remove | freeze | hold | auto | default | transition" )? + (smil:fillDefault="remove | freeze | hold | transition | auto | inherit" )? + ) (smil:accelerate="decimal]" )? + (smil:decelerate="decimal]" )? + (smil:autoReverse="<boolean>" )? + )>  +
@@ -275,6 +400,31 @@

anim:audio Element

  + + Child Relations + <anim:audio (presentation:node-type="default | on-click | with-previous | after-previous | timing-root | main-sequence | interactive-sequence" )? + (presentation:preset-id="<string>" )? + (presentation:preset-sub-type="<string>" )? + (presentation:preset-class="custom | entrance | exit | emphasis | motion-path | ole-action | media-call" )? + (presentation:master-element="<IDREF>" )? + (presentation:group-id="<string>" )? + (xml:id="<ID>" (anim:id="<NCName>" )? + )? + (xlink:href="<anyIRI>" )? + (anim:audio-level="<double>" )? + + ( (smil:begin="<string>" )? + (smil:end="<string>" )? + (smil:dur="<string>" )? + + ( (smil:repeatDur="<string>" )? + (smil:repeatCount="decimal] | indefinite" )? + ) (smil:restart="never | always | whenNotActive | default" )? + (smil:restartDefault="never | always | whenNotActive | inherit" )? + (smil:fill="remove | freeze | hold | auto | default | transition" )? + (smil:fillDefault="remove | freeze | hold | transition | auto | inherit" )? + )>  +
@@ -314,6 +464,22 @@

anim:command Element

<anim:param>*    + + Child Relations + <anim:command (presentation:node-type="default | on-click | with-previous | after-previous | timing-root | main-sequence | interactive-sequence" )? + (presentation:preset-id="<string>" )? + (presentation:preset-sub-type="<string>" )? + (presentation:preset-class="custom | entrance | exit | emphasis | motion-path | ole-action | media-call" )? + (presentation:master-element="<IDREF>" )? + (presentation:group-id="<string>" )? + (xml:id="<ID>" (anim:id="<NCName>" )? + )? + anim:command="<string>" (smil:begin="<string>" )? + (smil:end="<string>" )? + (smil:targetElement="<IDREF>" )? + (anim:sub-item="<string>" )? + (<anim:param ... >)* >  +
@@ -375,6 +541,38 @@

anim:iterate Element

<anim:transitionFilter>*    + + Child Relations + <anim:iterate (presentation:node-type="default | on-click | with-previous | after-previous | timing-root | main-sequence | interactive-sequence" )? + (presentation:preset-id="<string>" )? + (presentation:preset-sub-type="<string>" )? + (presentation:preset-class="custom | entrance | exit | emphasis | motion-path | ole-action | media-call" )? + (presentation:master-element="<IDREF>" )? + (presentation:group-id="<string>" )? + (xml:id="<ID>" (anim:id="<NCName>" )? + )? + (smil:targetElement="<IDREF>" )? + (anim:sub-item="<string>" )? + (anim:iterate-type="<string>" )? + (anim:iterate-interval="<duration>" )? + + ( + ( (smil:begin="<string>" )? + (smil:end="<string>" )? + (smil:dur="<string>" )? + + ( (smil:repeatDur="<string>" )? + (smil:repeatCount="decimal] | indefinite" )? + ) (smil:restart="never | always | whenNotActive | default" )? + (smil:restartDefault="never | always | whenNotActive | inherit" )? + (smil:fill="remove | freeze | hold | auto | default | transition" )? + (smil:fillDefault="remove | freeze | hold | transition | auto | inherit" )? + ) (smil:accelerate="decimal]" )? + (smil:decelerate="decimal]" )? + (smil:autoReverse="<boolean>" )? + ) (smil:endsync="first | last | all | media | <IDREF>" )? + (<anim:animate ... > | <anim:set ... > | <anim:animateMotion ... > | <anim:animateColor ... > | <anim:animateTransform ... > | <anim:transitionFilter ... > | <anim:par ... > | <anim:seq ... > | <anim:iterate ... > | <anim:audio ... > | <anim:command ... >)* >  +
@@ -432,6 +630,34 @@

anim:par Element

<anim:transitionFilter>*    + + Child Relations + <anim:par (presentation:node-type="default | on-click | with-previous | after-previous | timing-root | main-sequence | interactive-sequence" )? + (presentation:preset-id="<string>" )? + (presentation:preset-sub-type="<string>" )? + (presentation:preset-class="custom | entrance | exit | emphasis | motion-path | ole-action | media-call" )? + (presentation:master-element="<IDREF>" )? + (presentation:group-id="<string>" )? + (xml:id="<ID>" (anim:id="<NCName>" )? + )? + + ( + ( (smil:begin="<string>" )? + (smil:end="<string>" )? + (smil:dur="<string>" )? + + ( (smil:repeatDur="<string>" )? + (smil:repeatCount="decimal] | indefinite" )? + ) (smil:restart="never | always | whenNotActive | default" )? + (smil:restartDefault="never | always | whenNotActive | inherit" )? + (smil:fill="remove | freeze | hold | auto | default | transition" )? + (smil:fillDefault="remove | freeze | hold | transition | auto | inherit" )? + ) (smil:accelerate="decimal]" )? + (smil:decelerate="decimal]" )? + (smil:autoReverse="<boolean>" )? + ) (smil:endsync="first | last | all | media | <IDREF>" )? + (<anim:animate ... > | <anim:set ... > | <anim:animateMotion ... > | <anim:animateColor ... > | <anim:animateTransform ... > | <anim:transitionFilter ... > | <anim:par ... > | <anim:seq ... > | <anim:iterate ... > | <anim:audio ... > | <anim:command ... >)* >  +
@@ -455,6 +681,10 @@

anim:param Element

  + + Child Relations + <anim:param anim:name="<string>" anim:value="<string>" >  +
@@ -512,6 +742,34 @@

anim:seq Element

<anim:transitionFilter>*    + + Child Relations + <anim:seq (presentation:node-type="default | on-click | with-previous | after-previous | timing-root | main-sequence | interactive-sequence" )? + (presentation:preset-id="<string>" )? + (presentation:preset-sub-type="<string>" )? + (presentation:preset-class="custom | entrance | exit | emphasis | motion-path | ole-action | media-call" )? + (presentation:master-element="<IDREF>" )? + (presentation:group-id="<string>" )? + (xml:id="<ID>" (anim:id="<NCName>" )? + )? + (smil:endsync="first | last | all | media | <IDREF>" )? + + ( + ( (smil:begin="<string>" )? + (smil:end="<string>" )? + (smil:dur="<string>" )? + + ( (smil:repeatDur="<string>" )? + (smil:repeatCount="decimal] | indefinite" )? + ) (smil:restart="never | always | whenNotActive | default" )? + (smil:restartDefault="never | always | whenNotActive | inherit" )? + (smil:fill="remove | freeze | hold | auto | default | transition" )? + (smil:fillDefault="remove | freeze | hold | transition | auto | inherit" )? + ) (smil:accelerate="decimal]" )? + (smil:decelerate="decimal]" )? + (smil:autoReverse="<boolean>" )? + )(<anim:animate ... > | <anim:set ... > | <anim:animateMotion ... > | <anim:animateColor ... > | <anim:animateTransform ... > | <anim:transitionFilter ... > | <anim:par ... > | <anim:seq ... > | <anim:iterate ... > | <anim:audio ... > | <anim:command ... >)* >  +
@@ -555,6 +813,30 @@

anim:set Element

  + + Child Relations + <anim:set (smil:targetElement="<IDREF>" )? + (anim:sub-item="<string>" )? + smil:attributeName="<string>" (smil:to="<string>" )? + + ( + ( (smil:begin="<string>" )? + (smil:end="<string>" )? + (smil:dur="<string>" )? + + ( (smil:repeatDur="<string>" )? + (smil:repeatCount="decimal] | indefinite" )? + ) (smil:restart="never | always | whenNotActive | default" )? + (smil:restartDefault="never | always | whenNotActive | inherit" )? + (smil:fill="remove | freeze | hold | auto | default | transition" )? + (smil:fillDefault="remove | freeze | hold | transition | auto | inherit" )? + ) (smil:accelerate="decimal]" )? + (smil:decelerate="decimal]" )? + (smil:autoReverse="<boolean>" )? + ) (smil:accumulate="none | sum" )? + (smil:additive="replace | sum" )? + >  +
@@ -607,6 +889,39 @@

anim:transitionFilter Element<   + + Child Relations + <anim:transitionFilter (smil:targetElement="<IDREF>" )? + (anim:sub-item="<string>" )? + (smil:accumulate="none | sum" )? + (smil:additive="replace | sum" )? + (smil:values="<string>" )? + (anim:formula="<string>" )? + (smil:to="<string>" )? + (smil:from="<string>" )? + (smil:by="<string>" )? + (smil:calcMode="discrete | linear | paced | spline" )? + smil:type="<string>" (smil:subtype="<string>" )? + (smil:direction="forward | reverse" )? + (smil:fadeColor="string]" )? + (smil:mode="in | out" )? + + ( + ( (smil:begin="<string>" )? + (smil:end="<string>" )? + (smil:dur="<string>" )? + + ( (smil:repeatDur="<string>" )? + (smil:repeatCount="decimal] | indefinite" )? + ) (smil:restart="never | always | whenNotActive | default" )? + (smil:restartDefault="never | always | whenNotActive | inherit" )? + (smil:fill="remove | freeze | hold | auto | default | transition" )? + (smil:fillDefault="remove | freeze | hold | transition | auto | inherit" )? + ) (smil:accelerate="decimal]" )? + (smil:decelerate="decimal]" )? + (smil:autoReverse="<boolean>" )? + )>  +
@@ -634,6 +949,14 @@

chart:axis Element

<chart:title>    + + Child Relations + <chart:axis chart:dimension="x | y | z" (chart:name="<string>" )? + (chart:style-name="(<NCName>)?" )? + (<chart:title ... >)? + (<chart:categories ... >)? + (<chart:grid ... >)* >  +
@@ -648,7 +971,7 @@

chart:categories Element

Attributes - table:cell-range-address[2]  + table:cell-range-address[1]    @@ -656,6 +979,11 @@

chart:categories Element

  + + Child Relations + <chart:categories (table:cell-range-address="<string>" )? + >  +
@@ -674,8 +1002,8 @@

chart:chart Element

chart:column-mapping  chart:row-mapping  chart:style-name  - svg:height[2]  - svg:width[1]  + svg:height[1]  + svg:width[2]  xlink:href  xlink:type  xml:id  @@ -692,6 +1020,23 @@

chart:chart Element

<table:table>    + + Child Relations + <chart:chart chart:class="QName]" + ( (svg:width="string]" )? + (svg:height="string]" )? + ) (chart:column-mapping="<string>" )? + (chart:row-mapping="<string>" )? + (chart:style-name="(<NCName>)?" )? + (xlink:type="simple" xlink:href="<anyIRI>" )? + (xml:id="<ID>" )? + (<chart:title ... >)? + (<chart:subtitle ... >)? + (<chart:footer ... >)? + (<chart:legend ... >)? + <chart:plot-area ... > (<table:table ... >)? + >  +
@@ -708,7 +1053,7 @@

chart:data-label Element (new Attributes chart:style-name  - svg:x[2]  + svg:x[1]  svg:y[2]    @@ -718,6 +1063,15 @@

chart:data-label Element (new <text:p>    + + Child Relations + <chart:data-label + ( (svg:x="string]" )? + (svg:y="string]" )? + ) (chart:style-name="(<NCName>)?" )? + (<text:p ... >)? + >  +
@@ -743,6 +1097,14 @@

chart:data-point Element

<chart:data-label>    + + Child Relations + <chart:data-point (chart:repeated="<positiveInteger>" )? + (chart:style-name="(<NCName>)?" )? + (xml:id="<ID>" )? + (<chart:data-label ... >)? + >  +
@@ -757,7 +1119,7 @@

chart:domain Element

Attributes - table:cell-range-address[2]  + table:cell-range-address[1]    @@ -765,6 +1127,11 @@

chart:domain Element

  + + Child Relations + <chart:domain (table:cell-range-address="<string>" )? + >  +
@@ -783,7 +1150,7 @@

chart:equation Element (new in O chart:display-equation  chart:display-r-square  chart:style-name  - svg:x[2]  + svg:x[1]  svg:y[2]    @@ -793,6 +1160,18 @@

chart:equation Element (new in O <text:p>    + + Child Relations + <chart:equation (chart:automatic-content="<boolean>" )? + (chart:display-r-square="<boolean>" )? + (chart:display-equation="<boolean>" )? + + ( (svg:x="string]" )? + (svg:y="string]" )? + ) (chart:style-name="(<NCName>)?" )? + (<text:p ... >)? + >  +
@@ -816,6 +1195,11 @@

chart:error-indicator Element<   + + Child Relations + <chart:error-indicator (chart:style-name="(<NCName>)?" )? + chart:dimension="x | y | z" >  +
@@ -831,7 +1215,7 @@

chart:floor Element

Attributes chart:style-name  - svg:width[1]  + svg:width[2]    @@ -839,6 +1223,12 @@

chart:floor Element

  + + Child Relations + <chart:floor (svg:width="string]" )? + (chart:style-name="(<NCName>)?" )? + >  +
@@ -854,7 +1244,7 @@

chart:footer Element

Attributes chart:style-name  - svg:x[2]  + svg:x[1]  svg:y[2]  table:cell-range    @@ -865,6 +1255,16 @@

chart:footer Element

<text:p>    + + Child Relations + <chart:footer (table:cell-range="<string>" )? + + ( (svg:x="string]" )? + (svg:y="string]" )? + ) (chart:style-name="(<NCName>)?" )? + (<text:p ... >)? + >  +
@@ -888,6 +1288,12 @@

chart:grid Element

  + + Child Relations + <chart:grid (chart:class="major | minor" )? + (chart:style-name="(<NCName>)?" )? + >  +
@@ -910,6 +1316,10 @@

chart:label-separator Element& <text:p>    + + Child Relations + <chart:label-separator <text:p ... >>  +
@@ -931,7 +1341,7 @@

chart:legend Element

style:legend-expansion[1]  style:legend-expansion[2]  style:legend-expansion-aspect-ratio  - svg:x[2]  + svg:x[1]  svg:y[2]    @@ -941,6 +1351,20 @@

chart:legend Element

<text:p>    + + Child Relations + <chart:legend ( + (chart:legend-position="start | end | top | bottom" (chart:legend-align="start | center | end" )? + ) | chart:legend-position="top-start | bottom-start | top-end | bottom-end" )? + + ( (svg:x="string]" )? + (svg:y="string]" )? + ) (style:legend-expansion="wide | high | balanced" | + (style:legend-expansion="custom" style:legend-expansion-aspect-ratio="<double>" ))? + (chart:style-name="(<NCName>)?" )? + (<text:p ... >)? + >  +
@@ -963,6 +1387,11 @@

chart:mean-value Element

  + + Child Relations + <chart:mean-value (chart:style-name="(<NCName>)?" )? + >  +
@@ -990,11 +1419,11 @@

chart:plot-area Element

dr3d:vpn  dr3d:vrp  dr3d:vup  - svg:height[2]  - svg:width[1]  - svg:x[2]  + svg:height[1]  + svg:width[2]  + svg:x[1]  svg:y[2]  - table:cell-range-address[2]  + table:cell-range-address[1]  xml:id    @@ -1011,6 +1440,36 @@

chart:plot-area Element

<dr3d:light>*    + + Child Relations + <chart:plot-area + ( (svg:x="string]" )? + (svg:y="string]" )? + ) + ( (svg:width="string]" )? + (svg:height="string]" )? + ) (chart:style-name="(<NCName>)?" )? + (table:cell-range-address="<string>" )? + (chart:data-source-has-labels="none | row | column | both" )? + (dr3d:vrp="string]" )? + (dr3d:vpn="string]" )? + (dr3d:vup="string]" )? + (dr3d:projection="parallel | perspective" )? + (dr3d:distance="string]" )? + (dr3d:focal-length="string]" )? + (dr3d:shadow-slant="<string>" )? + (dr3d:shade-mode="flat | phong | gouraud | draft" )? + (dr3d:ambient-color="string]" )? + (dr3d:lighting-mode="<boolean>" )? + (dr3d:transform="<string>" )? + (xml:id="<ID>" )? + (<dr3d:light ... >)* (<chart:axis ... >)* (<chart:series ... >)* (<chart:stock-gain-marker ... >)? + (<chart:stock-loss-marker ... >)? + (<chart:stock-range-line ... >)? + (<chart:wall ... >)? + (<chart:floor ... >)? + >  +
@@ -1034,6 +1493,12 @@

chart:regression-curve Element<chart:equation>    + + Child Relations + <chart:regression-curve (chart:style-name="(<NCName>)?" )? + (<chart:equation ... >)? + >  +
@@ -1067,6 +1532,18 @@

chart:series Element

<chart:regression-curve>*    + + Child Relations + <chart:series (chart:values-cell-range-address="<string>" )? + (chart:label-cell-address="<string>" )? + (chart:class="QName]" )? + (chart:attached-axis="<string>" )? + (chart:style-name="(<NCName>)?" )? + (xml:id="<ID>" )? + (<chart:domain ... >)* (<chart:mean-value ... >)? + (<chart:regression-curve ... >)* (<chart:error-indicator ... >)* (<chart:data-point ... >)* (<chart:data-label ... >)? + >  +
@@ -1089,6 +1566,11 @@

chart:stock-gain-marker Element<   + + Child Relations + <chart:stock-gain-marker (chart:style-name="(<NCName>)?" )? + >  +
@@ -1111,6 +1593,11 @@

chart:stock-loss-marker Element<   + + Child Relations + <chart:stock-loss-marker (chart:style-name="(<NCName>)?" )? + >  +
@@ -1133,6 +1620,11 @@

chart:stock-range-line Element   + + Child Relations + <chart:stock-range-line (chart:style-name="(<NCName>)?" )? + >  +
@@ -1148,7 +1640,7 @@

chart:subtitle Element

Attributes chart:style-name  - svg:x[2]  + svg:x[1]  svg:y[2]  table:cell-range    @@ -1159,6 +1651,16 @@

chart:subtitle Element

<text:p>    + + Child Relations + <chart:subtitle (table:cell-range="<string>" )? + + ( (svg:x="string]" )? + (svg:y="string]" )? + ) (chart:style-name="(<NCName>)?" )? + (<text:p ... >)? + >  +
@@ -1181,6 +1683,10 @@

chart:symbol-image Element (   + + Child Relations + <chart:symbol-image xlink:href="<anyIRI>" >  +
@@ -1197,7 +1703,7 @@

chart:title Element

Attributes chart:style-name  - svg:x[2]  + svg:x[1]  svg:y[2]  table:cell-range    @@ -1208,6 +1714,16 @@

chart:title Element

<text:p>    + + Child Relations + <chart:title (table:cell-range="<string>" )? + + ( (svg:x="string]" )? + (svg:y="string]" )? + ) (chart:style-name="(<NCName>)?" )? + (<text:p ... >)? + >  +
@@ -1223,7 +1739,7 @@

chart:wall Element

Attributes chart:style-name  - svg:width[1]  + svg:width[2]    @@ -1231,6 +1747,12 @@

chart:wall Element

  + + Child Relations + <chart:wall (svg:width="string]" )? + (chart:style-name="(<NCName>)?" )? + >  +
@@ -1256,6 +1778,10 @@

config:config-item Element

  + + Child Relations + <config:config-item config:name="<string>" config:type="boolean | short | int | long | double | string | datetime | base64Binary" TEXT>  +
@@ -1283,6 +1809,11 @@

config:config-item-map-entr <config:config-item-set>*    + + Child Relations + <config:config-item-map-entry (config:name="<string>" )? + (<config:config-item ... > | <config:config-item-set ... > | <config:config-item-map-named ... > | <config:config-item-map-indexed ... >)+ >  +
@@ -1307,6 +1838,10 @@

config:config-item-map-in <config:config-item-map-entry>*    + + Child Relations + <config:config-item-map-indexed config:name="<string>" (<config:config-item-map-entry ... >)+ >  +
@@ -1331,6 +1866,10 @@

config:config-item-map-name <config:config-item-map-entry>*    + + Child Relations + <config:config-item-map-named config:name="<string>" (<config:config-item-map-entry ... >)+ >  +
@@ -1359,6 +1898,10 @@

config:config-item-set Element<config:config-item-set>*    + + Child Relations + <config:config-item-set config:name="<string>" (<config:config-item ... > | <config:config-item-set ... > | <config:config-item-map-named ... > | <config:config-item-map-indexed ... >)+ >  +
@@ -1391,6 +1934,21 @@

db:application-connec <db:table-type-filter>    + + Child Relations + <db:application-connection-settings (db:is-table-name-length-limited="<boolean>" )? + (db:enable-sql92-check="<boolean>" )? + (db:append-table-alias-name="<boolean>" )? + (db:ignore-driver-privileges="<boolean>" )? + (db:boolean-comparison-mode="equal-integer | is-boolean | equal-boolean | equal-use-only-zero" )? + (db:use-catalog="<boolean>" )? + (db:max-row-count="<integer>" )? + (db:suppress-version-columns="<boolean>" )? + (<db:table-filter ... >)? + (<db:table-type-filter ... >)? + (<db:data-source-settings ... >)? + >  +
@@ -1414,6 +1972,12 @@

db:auto-increment Element (ne   + + Child Relations + <db:auto-increment (db:additional-column-statement="<string>" )? + (db:row-retrieving-statement="<string>" )? + >  +
@@ -1437,6 +2001,11 @@

db:character-set Element (new   + + Child Relations + <db:character-set (db:encoding="string]" )? + >  +
@@ -1465,11 +2034,11 @@

db:column Element (new in ODF 1.2) office:value  office:value-type[1]  office:value-type[2]  + office:value-type[3]  office:value-type[4]  office:value-type[5]  office:value-type[6]  office:value-type[7]  - office:value-type[9]    @@ -1477,6 +2046,25 @@

db:column Element (new in ODF 1.2)   + + Child Relations + <db:column (db:visible="<boolean>" )? + (db:style-name="(<NCName>)?" )? + (db:default-cell-style-name="(<NCName>)?" )? + db:name="<string>" (db:title="<string>" )? + (db:description="<string>" )? + ( + (office:value-type="float" office:value="<double>" ) | + (office:value-type="percentage" office:value="<double>" ) | + (office:value-type="currency" office:value="<double>" (office:currency="<string>" )? + ) | + (office:value-type="date" office:date-value="<date> | <dateTime>" ) | + (office:value-type="time" office:time-value="<duration>" ) | + (office:value-type="boolean" office:boolean-value="<boolean>" ) | + (office:value-type="string" (office:string-value="<string>" )? + ))? + >  +
@@ -1507,11 +2095,11 @@

db:column-definition Element&nb office:value  office:value-type[1]  office:value-type[2]  + office:value-type[3]  office:value-type[4]  office:value-type[5]  office:value-type[6]  office:value-type[7]  - office:value-type[9]    @@ -1519,6 +2107,27 @@

db:column-definition Element&nb   + + Child Relations + <db:column-definition db:name="<string>" (db:data-type="bit | boolean | tinyint | smallint | integer | bigint | float | real | double | numeric | decimal | char | varchar | longvarchar | date | time | timestmp | binary | varbinary | longvarbinary | sqlnull | other | object | distinct | struct | array | blob | clob | ref" )? + (db:type-name="<string>" )? + (db:precision="<positiveInteger>" )? + (db:scale="<positiveInteger>" )? + (db:is-nullable="no-nulls | nullable" )? + (db:is-empty-allowed="<boolean>" )? + (db:is-autoincrement="<boolean>" )? + ( + (office:value-type="float" office:value="<double>" ) | + (office:value-type="percentage" office:value="<double>" ) | + (office:value-type="currency" office:value="<double>" (office:currency="<string>" )? + ) | + (office:value-type="date" office:date-value="<date> | <dateTime>" ) | + (office:value-type="time" office:time-value="<duration>" ) | + (office:value-type="boolean" office:boolean-value="<boolean>" ) | + (office:value-type="string" (office:string-value="<string>" )? + ))? + >  +
@@ -1541,6 +2150,10 @@

db:column-definitions Element& <db:column-definition>*    + + Child Relations + <db:column-definitions EMPTY(<db:column-definition ... >)+ >  +
@@ -1564,6 +2177,10 @@

db:columns Element (new in ODF 1.2) <db:column>*    + + Child Relations + <db:columns EMPTY(<db:column ... >)+ >  +
@@ -1586,7 +2203,7 @@

db:component Element (new in ODF 1 db:title  xlink:actuate[1]  xlink:href  - xlink:show[2]  + xlink:show[3]  xlink:type    @@ -1597,6 +2214,17 @@

db:component Element (new in ODF 1 <office:document>    + + Child Relations + <db:component (xlink:type="simple" xlink:href="<anyIRI>" (xlink:show="none" )? + (xlink:actuate="onRequest" )? + )? + (db:as-template="<boolean>" )? + db:name="<string>" (db:title="<string>" )? + (db:description="<string>" )? + (<office:document ... > | <math:math ... >)? + >  +
@@ -1625,6 +2253,12 @@

db:component-collection Element< <db:component-collection>*    + + Child Relations + <db:component-collection EMPTYdb:name="<string>" (db:title="<string>" )? + (db:description="<string>" )? + (<db:component ... > | <db:component-collection ... >)* >  +
@@ -1649,6 +2283,11 @@

db:connection-data Element ( <db:login>    + + Child Relations + <db:connection-data EMPTY<db:database-description ... > | <db:connection-resource ... > (<db:login ... >)? + >  +
@@ -1665,7 +2304,7 @@

db:connection-resource Element xlink:actuate[1]  xlink:href  - xlink:show[2]  + xlink:show[3]  xlink:type    @@ -1674,6 +2313,13 @@

db:connection-resource Element   + + Child Relations + <db:connection-resource + (xlink:type="simple" xlink:href="<anyIRI>" (xlink:show="none" )? + (xlink:actuate="onRequest" )? + )>  +
@@ -1698,6 +2344,12 @@

db:data-source Element (new in O <db:driver-settings>    + + Child Relations + <db:data-source EMPTY<db:connection-data ... > (<db:driver-settings ... >)? + (<db:application-connection-settings ... >)? + >  +
@@ -1723,6 +2375,11 @@

db:data-source-setting Element<db:data-source-setting-value>*    + + Child Relations + <db:data-source-setting (db:data-source-setting-is-list="<boolean>" )? + db:data-source-setting-name="<string>" db:data-source-setting-type="boolean | short | int | long | double | string" (<db:data-source-setting-value ... >)+ >  +
@@ -1744,6 +2401,10 @@

db:data-source-setting-valu   + + Child Relations + <db:data-source-setting-value EMPTY<string>>  +
@@ -1766,6 +2427,10 @@

db:data-source-settings Element< <db:data-source-setting>*    + + Child Relations + <db:data-source-settings EMPTY(<db:data-source-setting ... >)+ >  +
@@ -1789,6 +2454,10 @@

db:database-description Element< <db:server-database>    + + Child Relations + <db:database-description EMPTY<db:file-based-database ... > | <db:server-database ... >>  +
@@ -1815,6 +2484,14 @@

db:delimiter Element (new in ODF 1   + + Child Relations + <db:delimiter (db:field="<string>" )? + (db:string="<string>" )? + (db:decimal="<string>" )? + (db:thousand="<string>" )? + >  +
@@ -1845,6 +2522,19 @@

db:driver-settings Element ( <db:table-settings>    + + Child Relations + <db:driver-settings (db:show-deleted="<boolean>" )? + (db:system-driver-settings="<string>" )? + (db:base-dn="<string>" )? + (db:is-first-row-header-line="<boolean>" )? + (db:parameter-name-substitution="<boolean>" )? + (<db:auto-increment ... >)? + (<db:delimiter ... >)? + (<db:character-set ... >)? + (<db:table-settings ... >)? + >  +
@@ -1870,6 +2560,11 @@

db:file-based-database Element   + + Child Relations + <db:file-based-database xlink:type="simple" xlink:href="<anyIRI>" db:media-type="<string>" (db:extension="<string>" )? + >  +
@@ -1894,6 +2589,11 @@

db:filter-statement Element    + + Child Relations + <db:filter-statement db:command="<string>" (db:apply-command="<boolean>" )? + >  +
@@ -1917,6 +2617,10 @@

db:forms Element (new in ODF 1.2)

<db:component-collection>*    + + Child Relations + <db:forms EMPTY(<db:component ... > | <db:component-collection ... >)* >  +
@@ -1943,6 +2647,13 @@

db:index Element (new in ODF 1.2)

<db:index-columns>*    + + Child Relations + <db:index db:name="<string>" (db:catalog-name="<string>" )? + (db:is-unique="<boolean>" )? + (db:is-clustered="<boolean>" )? + (<db:index-columns ... >)+ >  +
@@ -1966,6 +2677,11 @@

db:index-column Element (new in   + + Child Relations + <db:index-column db:name="<string>" (db:is-ascending="<boolean>" )? + >  +
@@ -1988,6 +2704,10 @@

db:index-columns Element (new <db:index-column>*    + + Child Relations + <db:index-columns (<db:index-column ... >)+ >  +
@@ -2010,6 +2730,10 @@

db:indices Element (new in ODF 1.2) <db:index>*    + + Child Relations + <db:indices EMPTY(<db:index ... >)+ >  +
@@ -2037,6 +2761,14 @@

db:key Element (new in ODF 1.2)

<db:key-columns>*    + + Child Relations + <db:key (db:name="<string>" )? + db:type="primary | unique | foreign" (db:referenced-table-name="<string>" )? + (db:update-rule="cascade | restrict | set-null | no-action | set-default" )? + (db:delete-rule="cascade | restrict | set-null | no-action | set-default" )? + (<db:key-columns ... >)+ >  +
@@ -2060,6 +2792,12 @@

db:key-column Element (new in ODF   + + Child Relations + <db:key-column (db:name="<string>" )? + (db:related-column-name="<string>" )? + >  +
@@ -2082,6 +2820,10 @@

db:key-columns Element (new in O <db:key-column>*    + + Child Relations + <db:key-columns EMPTY(<db:key-column ... >)+ >  +
@@ -2104,6 +2846,10 @@

db:keys Element (new in ODF 1.2)

<db:key>*    + + Child Relations + <db:keys EMPTY(<db:key ... >)+ >  +
@@ -2129,6 +2875,13 @@

db:login Element (new in ODF 1.2)

  + + Child Relations + <db:login (db:user-name="<string>" | db:use-system-user="<boolean>" )? + (db:is-password-required="<boolean>" )? + (db:login-timeout="<positiveInteger>" )? + >  +
@@ -2153,6 +2906,11 @@

db:order-statement Element (   + + Child Relations + <db:order-statement db:command="<string>" (db:apply-command="<boolean>" )? + >  +
@@ -2176,6 +2934,10 @@

db:queries Element (new in ODF 1.2) <db:query-collection>*    + + Child Relations + <db:queries EMPTY(<db:query ... > | <db:query-collection ... >)* >  +
@@ -2209,6 +2971,19 @@

db:query Element (new in ODF 1.2)

<db:update-table>    + + Child Relations + <db:query db:command="<string>" (db:escape-processing="<boolean>" )? + db:name="<string>" (db:title="<string>" )? + (db:description="<string>" )? + (db:style-name="(<NCName>)?" )? + (db:default-row-style-name="(<NCName>)?" )? + (<db:order-statement ... >)? + (<db:filter-statement ... >)? + (<db:columns ... >)? + (<db:update-table ... >)? + >  +
@@ -2236,6 +3011,12 @@

db:query-collection Element  <db:query-collection>*    + + Child Relations + <db:query-collection EMPTYdb:name="<string>" (db:title="<string>" )? + (db:description="<string>" )? + (<db:query ... > | <db:query-collection ... >)* >  +
@@ -2259,6 +3040,10 @@

db:reports Element (new in ODF 1.2) <db:component-collection>*    + + Child Relations + <db:reports EMPTY(<db:component ... > | <db:component-collection ... >)* >  +
@@ -2281,6 +3066,10 @@

db:schema-definition Element&nb <db:table-definitions>    + + Child Relations + <db:schema-definition EMPTY<db:table-definitions ... >>  +
@@ -2299,7 +3088,7 @@

db:server-database Element ( db:hostname  db:local-socket  db:port  - db:type[2]  + db:type[1]    @@ -2307,6 +3096,14 @@

db:server-database Element (   + + Child Relations + <db:server-database db:type="QName]" + (db:hostname="<string>" (db:port="<positiveInteger>" )? + ) | (db:local-socket="<string>" )? + (db:database-name="<string>" )? + >  +
@@ -2324,7 +3121,7 @@

db:table-definition Element  db:catalog-name  db:name  db:schema-name  - db:type[1]  + db:type[2]    @@ -2335,6 +3132,15 @@

db:table-definition Element  <db:keys>    + + Child Relations + <db:table-definition db:name="<string>" (db:catalog-name="<string>" )? + (db:schema-name="<string>" )? + (db:type="<string>" )? + <db:column-definitions ... > (<db:keys ... >)? + (<db:indices ... >)? + >  +
@@ -2357,6 +3163,10 @@

db:table-definitions Element&nb <db:table-definition>*    + + Child Relations + <db:table-definitions EMPTY(<db:table-definition ... >)* >  +
@@ -2379,6 +3189,10 @@

db:table-exclude-filter Element< <db:table-filter-pattern>*    + + Child Relations + <db:table-exclude-filter EMPTY(<db:table-filter-pattern ... >)+ >  +
@@ -2402,6 +3216,12 @@

db:table-filter Element (new in <db:table-include-filter>    + + Child Relations + <db:table-filter EMPTY (<db:table-include-filter ... >)? + (<db:table-exclude-filter ... >)? + >  +
@@ -2424,6 +3244,10 @@

db:table-filter-pattern Element<   + + Child Relations + <db:table-filter-pattern EMPTY<string>>  +
@@ -2446,6 +3270,10 @@

db:table-include-filter Element< <db:table-filter-pattern>*    + + Child Relations + <db:table-include-filter EMPTY(<db:table-filter-pattern ... >)+ >  +
@@ -2477,6 +3305,19 @@

db:table-representation Element< <db:order-statement>    + + Child Relations + <db:table-representation EMPTYdb:name="<string>" (db:catalog-name="<string>" )? + (db:schema-name="<string>" )? + (db:title="<string>" )? + (db:description="<string>" )? + (db:style-name="(<NCName>)?" )? + (db:default-row-style-name="(<NCName>)?" )? + (<db:order-statement ... >)? + (<db:filter-statement ... >)? + (<db:columns ... >)? + >  +
@@ -2499,6 +3340,10 @@

db:table-representations Elemen <db:table-representation>*    + + Child Relations + <db:table-representations EMPTY(<db:table-representation ... >)* >  +
@@ -2524,6 +3369,15 @@

db:table-setting Element (new <db:delimiter>    + + Child Relations + <db:table-setting + ( (db:is-first-row-header-line="<boolean>" )? + (db:show-deleted="<boolean>" )? + ) (<db:delimiter ... >)? + (<db:character-set ... >)? + >  +
@@ -2546,6 +3400,10 @@

db:table-settings Element (ne <db:table-setting>*    + + Child Relations + <db:table-settings (<db:table-setting ... >)* >  +
@@ -2567,6 +3425,10 @@

db:table-type Element (new in ODF   + + Child Relations + <db:table-type EMPTY<string>>  +
@@ -2589,6 +3451,10 @@

db:table-type-filter Element&nb <db:table-type>*    + + Child Relations + <db:table-type-filter EMPTY(<db:table-type ... >)* >  +
@@ -2613,6 +3479,12 @@

db:update-table Element (new in   + + Child Relations + <db:update-table db:name="<string>" (db:catalog-name="<string>" )? + (db:schema-name="<string>" )? + >  +
@@ -2636,6 +3508,10 @@

dc:creator Element

  + + Child Relations + <dc:creator <string>>  +
@@ -2659,6 +3535,10 @@

dc:date Element

  + + Child Relations + <dc:date <dateTime>>  +
@@ -2680,6 +3560,10 @@

dc:description Element (new in O   + + Child Relations + <dc:description <string>>  +
@@ -2701,6 +3585,10 @@

dc:language Element (new in ODF 1.2   + + Child Relations + <dc:language <language>>  +
@@ -2722,6 +3610,10 @@

dc:subject Element (new in ODF 1.2)   + + Child Relations + <dc:subject <string>>  +
@@ -2743,6 +3635,10 @@

dc:title Element (new in ODF 1.2)

  + + Child Relations + <dc:title <string>>  +
@@ -2761,7 +3657,7 @@

dr3d:cube Element

dr3d:min-edge  dr3d:transform  draw:class-names  - draw:id[1]  + draw:id[2]  draw:layer  draw:style-name  draw:z-index  @@ -2775,6 +3671,28 @@

dr3d:cube Element

  + + Child Relations + <dr3d:cube + ( (dr3d:min-edge="string]" )? + (dr3d:max-edge="string]" )? + ) (draw:z-index="<nonNegativeInteger>" )? + (xml:id="<ID>" (draw:id="<NCName>" )? + )? + (draw:layer="<string>" )? + + ( (draw:style-name="(<NCName>)?" )? + (draw:class-names=" +START_list(<NCName>)* +END_list" )? + ) | + ( (presentation:style-name="(<NCName>)?" )? + (presentation:class-names=" +START_list(<NCName>)* +END_list" )? + ) (dr3d:transform="<string>" )? + >  +
@@ -2791,7 +3709,7 @@

dr3d:extrude Element

dr3d:transform  draw:class-names  - draw:id[1]  + draw:id[2]  draw:layer  draw:style-name  draw:z-index  @@ -2807,6 +3725,27 @@

dr3d:extrude Element

  + + Child Relations + <dr3d:extrude svg:d="<string>" svg:viewBox=" +START_list<integer><integer><integer><integer> +END_list" (xml:id="<ID>" (draw:id="<NCName>" )? + )? + (draw:z-index="<nonNegativeInteger>" )? + (draw:layer="<string>" )? + + ( (draw:style-name="(<NCName>)?" )? + (draw:class-names=" +START_list(<NCName>)* +END_list" )? + ) | + ( (presentation:style-name="(<NCName>)?" )? + (presentation:class-names=" +START_list(<NCName>)* +END_list" )? + ) (dr3d:transform="<string>" )? + >  +
@@ -2833,6 +3772,13 @@

dr3d:light Element

  + + Child Relations + <dr3d:light (dr3d:diffuse-color="string]" )? + dr3d:direction="string]" (dr3d:enabled="<boolean>" )? + (dr3d:specular="<boolean>" )? + >  +
@@ -2849,7 +3795,7 @@

dr3d:rotate Element

dr3d:transform  draw:class-names  - draw:id[1]  + draw:id[2]  draw:layer  draw:style-name  draw:z-index  @@ -2865,6 +3811,27 @@

dr3d:rotate Element

  + + Child Relations + <dr3d:rotate svg:viewBox=" +START_list<integer><integer><integer><integer> +END_list" svg:d="<string>" (draw:z-index="<nonNegativeInteger>" )? + (xml:id="<ID>" (draw:id="<NCName>" )? + )? + (draw:layer="<string>" )? + + ( (draw:style-name="(<NCName>)?" )? + (draw:class-names=" +START_list(<NCName>)* +END_list" )? + ) | + ( (presentation:style-name="(<NCName>)?" )? + (presentation:class-names=" +START_list(<NCName>)* +END_list" )? + ) (dr3d:transform="<string>" )? + >  +
@@ -2915,15 +3882,15 @@

dr3d:scene Element

dr3d:vup  draw:caption-id  draw:class-names  - draw:id[1]  + draw:id[2]  draw:layer  draw:style-name  draw:z-index  presentation:class-names  presentation:style-name  - svg:height[2]  - svg:width[1]  - svg:x[2]  + svg:height[1]  + svg:width[2]  + svg:x[1]  svg:y[2]  table:end-cell-address  table:end-x  @@ -2948,6 +3915,50 @@

dr3d:scene Element

<svg:title>    + + Child Relations + <dr3d:scene (dr3d:vrp="string]" )? + (dr3d:vpn="string]" )? + (dr3d:vup="string]" )? + (dr3d:projection="parallel | perspective" )? + (dr3d:distance="string]" )? + (dr3d:focal-length="string]" )? + (dr3d:shadow-slant="<string>" )? + (dr3d:shade-mode="flat | phong | gouraud | draft" )? + (dr3d:ambient-color="string]" )? + (dr3d:lighting-mode="<boolean>" )? + + ( (svg:x="string]" )? + (svg:y="string]" )? + ) + ( (svg:width="string]" )? + (svg:height="string]" )? + ) + ( (draw:style-name="(<NCName>)?" )? + (draw:class-names=" +START_list(<NCName>)* +END_list" )? + ) | + ( (presentation:style-name="(<NCName>)?" )? + (presentation:class-names=" +START_list(<NCName>)* +END_list" )? + ) (draw:z-index="<nonNegativeInteger>" )? + (xml:id="<ID>" (draw:id="<NCName>" )? + )? + (draw:layer="<string>" )? + (table:end-cell-address="string]" )? + (table:end-x="string]" )? + (table:end-y="string]" )? + (table:table-background="<boolean>" )? + (text:anchor-type="page | frame | paragraph | char | as-char" )? + (text:anchor-page-number="<positiveInteger>" )? + (dr3d:transform="<string>" )? + (draw:caption-id="<IDREF>" )? + (<svg:title ... >)? + (<svg:desc ... >)? + (<dr3d:light ... >)* (<dr3d:scene ... > | <dr3d:extrude ... > | <dr3d:sphere ... > | <dr3d:rotate ... > | <dr3d:cube ... >)* (<draw:glue-point ... >)* >  +
@@ -2966,7 +3977,7 @@

dr3d:sphere Element

dr3d:size  dr3d:transform  draw:class-names  - draw:id[1]  + draw:id[2]  draw:layer  draw:style-name  draw:z-index  @@ -2980,6 +3991,27 @@

dr3d:sphere Element

  + + Child Relations + <dr3d:sphere (dr3d:center="string]" )? + (dr3d:size="string]" )? + (draw:z-index="<nonNegativeInteger>" )? + (xml:id="<ID>" (draw:id="<NCName>" )? + )? + (draw:layer="<string>" )? + + ( (draw:style-name="(<NCName>)?" )? + (draw:class-names=" +START_list(<NCName>)* +END_list" )? + ) | + ( (presentation:style-name="(<NCName>)?" )? + (presentation:class-names=" +START_list(<NCName>)* +END_list" )? + ) (dr3d:transform="<string>" )? + >  +
@@ -3048,6 +4080,17 @@

draw:a Element

<draw:regular-polygon>    + + Child Relations + <draw:a xlink:type="simple" xlink:href="<anyIRI>" (xlink:actuate="onRequest" )? + (office:target-frame-name="_self | _blank | _parent | _top | <string>" )? + (xlink:show="new | replace" )? + (office:name="<string>" )? + (office:title="<string>" )? + (office:server-map="<boolean>" )? + (xml:id="<ID>" )? + <draw:rect ... > | <draw:line ... > | <draw:polyline ... > | <draw:polygon ... > | <draw:regular-polygon ... > | <draw:path ... > | <draw:circle ... > | <draw:ellipse ... > | <draw:g ... > | <draw:page-thumbnail ... > | <draw:frame ... > | <draw:measure ... > | <draw:caption ... > | <draw:connector ... > | <draw:control ... > | <dr3d:scene ... > | <draw:custom-shape ... >>  +
@@ -3068,7 +4111,7 @@

draw:applet Element

draw:object  xlink:actuate[2]  xlink:href  - xlink:show[3]  + xlink:show[2]  xlink:type  xml:id    @@ -3079,6 +4122,19 @@

draw:applet Element

<draw:param>*    + + Child Relations + <draw:applet (draw:code="<string>" )? + (draw:object="<string>" )? + (draw:archive="<string>" )? + (draw:may-script="<boolean>" )? + (xml:id="<ID>" )? + ( + (xlink:type="simple" xlink:href="<anyIRI>" (xlink:show="embed" )? + (xlink:actuate="onLoad" )? + ))? + (<draw:param ... >)* >  +
@@ -3096,7 +4152,7 @@

draw:area-circle Element

draw:nohref  office:name  office:target-frame-name  - svg:cx[1]  + svg:cx[2]  svg:cy[1]  svg:r[2]  xlink:href  @@ -3112,6 +4168,18 @@

draw:area-circle Element

<svg:title>    + + Child Relations + <draw:area-circle (xlink:type="simple" xlink:href="<anyIRI>" (office:target-frame-name="_self | _blank | _parent | _top | <string>" )? + (xlink:show="new | replace" )? + )? + (office:name="<string>" )? + (draw:nohref="nohref" )? + svg:cx="string]" svg:cy="string]" svg:r="string]" (<svg:title ... >)? + (<svg:desc ... >)? + (<office:event-listeners ... >)? + >  +
@@ -3130,10 +4198,10 @@

draw:area-polygon Element

draw:points  office:name  office:target-frame-name  - svg:height[2]  + svg:height[1]  svg:viewBox  - svg:width[1]  - svg:x[2]  + svg:width[2]  + svg:x[1]  svg:y[2]  xlink:href  xlink:show[1]  @@ -3148,6 +4216,20 @@

draw:area-polygon Element

<svg:title>    + + Child Relations + <draw:area-polygon (xlink:type="simple" xlink:href="<anyIRI>" (office:target-frame-name="_self | _blank | _parent | _top | <string>" )? + (xlink:show="new | replace" )? + )? + (office:name="<string>" )? + (draw:nohref="nohref" )? + svg:x="string]" svg:y="string]" svg:width="string]" svg:height="string]" svg:viewBox=" +START_list<integer><integer><integer><integer> +END_list" draw:points="string]" (<svg:title ... >)? + (<svg:desc ... >)? + (<office:event-listeners ... >)? + >  +
@@ -3165,9 +4247,9 @@

draw:area-rectangle Element

draw:nohref  office:name  office:target-frame-name  - svg:height[2]  - svg:width[1]  - svg:x[2]  + svg:height[1]  + svg:width[2]  + svg:x[1]  svg:y[2]  xlink:href  xlink:show[1]  @@ -3182,6 +4264,18 @@

draw:area-rectangle Element

<svg:title>    + + Child Relations + <draw:area-rectangle (xlink:type="simple" xlink:href="<anyIRI>" (office:target-frame-name="_self | _blank | _parent | _top | <string>" )? + (xlink:show="new | replace" )? + )? + (office:name="<string>" )? + (draw:nohref="nohref" )? + svg:x="string]" svg:y="string]" svg:width="string]" svg:height="string]" (<svg:title ... >)? + (<svg:desc ... >)? + (<office:event-listeners ... >)? + >  +
@@ -3223,7 +4317,7 @@

draw:caption Element

draw:caption-point-y  draw:class-names  draw:corner-radius  - draw:id[1]  + draw:id[2]  draw:layer  draw:name[1]  draw:style-name  @@ -3232,9 +4326,9 @@

draw:caption Element

draw:z-index  presentation:class-names  presentation:style-name  - svg:height[2]  - svg:width[1]  - svg:x[2]  + svg:height[1]  + svg:width[2]  + svg:x[1]  svg:y[2]  table:end-cell-address  table:end-x  @@ -3256,6 +4350,47 @@

draw:caption Element

<text:p>*    + + Child Relations + <draw:caption (draw:caption-point-x="string]" draw:caption-point-y="string]" )? + (draw:corner-radius="string]" )? + + ( (svg:x="string]" )? + (svg:y="string]" )? + ) + ( (svg:width="string]" )? + (svg:height="string]" )? + ) + ( + ( (draw:z-index="<nonNegativeInteger>" )? + (xml:id="<ID>" (draw:id="<NCName>" )? + )? + (draw:layer="<string>" )? + + ( (draw:style-name="(<NCName>)?" )? + (draw:class-names=" +START_list(<NCName>)* +END_list" )? + ) | + ( (presentation:style-name="(<NCName>)?" )? + (presentation:class-names=" +START_list(<NCName>)* +END_list" )? + ) (draw:transform="<string>" )? + (draw:name="<string>" )? + (table:end-cell-address="string]" )? + (table:end-x="string]" )? + (table:end-y="string]" )? + (table:table-background="<boolean>" )? + (text:anchor-type="page | frame | paragraph | char | as-char" )? + (text:anchor-page-number="<positiveInteger>" )? + ) (draw:text-style-name="(<NCName>)?" )? + ) (draw:caption-id="<IDREF>" )? + (<svg:title ... >)? + (<svg:desc ... >)? + (<office:event-listeners ... >)? + (<draw:glue-point ... >)* (<text:p ... > | <text:list ... >)* >  +
@@ -3295,7 +4430,7 @@

draw:circle Element

draw:caption-id  draw:class-names  draw:end-angle  - draw:id[1]  + draw:id[2]  draw:kind  draw:layer  draw:name[1]  @@ -3306,12 +4441,12 @@

draw:circle Element

draw:z-index  presentation:class-names  presentation:style-name  - svg:cx[1]  + svg:cx[2]  svg:cy[1]  - svg:height[2]  + svg:height[1]  svg:r[2]  - svg:width[1]  - svg:x[2]  + svg:width[2]  + svg:x[1]  svg:y[2]  table:end-cell-address  table:end-x  @@ -3333,6 +4468,51 @@

draw:circle Element

<text:p>*    + + Child Relations + <draw:circle + (svg:r="string]" + (svg:cx="string]" svg:cy="string]" )) | + ( + ( (svg:x="string]" )? + (svg:y="string]" )? + ) + ( (svg:width="string]" )? + (svg:height="string]" )? + )) (draw:kind="full | section | cut | arc" )? + (draw:start-angle="<string>" )? + (draw:end-angle="<string>" )? + + ( + ( (draw:z-index="<nonNegativeInteger>" )? + (xml:id="<ID>" (draw:id="<NCName>" )? + )? + (draw:layer="<string>" )? + + ( (draw:style-name="(<NCName>)?" )? + (draw:class-names=" +START_list(<NCName>)* +END_list" )? + ) | + ( (presentation:style-name="(<NCName>)?" )? + (presentation:class-names=" +START_list(<NCName>)* +END_list" )? + ) (draw:transform="<string>" )? + (draw:name="<string>" )? + (table:end-cell-address="string]" )? + (table:end-x="string]" )? + (table:end-y="string]" )? + (table:table-background="<boolean>" )? + (text:anchor-type="page | frame | paragraph | char | as-char" )? + (text:anchor-page-number="<positiveInteger>" )? + ) (draw:text-style-name="(<NCName>)?" )? + ) (draw:caption-id="<IDREF>" )? + (<svg:title ... >)? + (<svg:desc ... >)? + (<office:event-listeners ... >)? + (<draw:glue-point ... >)* (<text:p ... > | <text:list ... >)* >  +
@@ -3373,7 +4553,7 @@

draw:connector Element

draw:class-names  draw:end-glue-point  draw:end-shape  - draw:id[1]  + draw:id[2]  draw:layer  draw:line-skew  draw:name[1]  @@ -3388,10 +4568,10 @@

draw:connector Element

presentation:style-name  svg:d  svg:viewBox  - svg:x1[1]  + svg:x1[2]  svg:x2[1]  - svg:y1[1]  - svg:y2[1]  + svg:y1[2]  + svg:y2[2]  table:end-cell-address  table:end-x  table:end-y  @@ -3412,6 +4592,52 @@

draw:connector Element

<text:p>*    + + Child Relations + <draw:connector (draw:type="standard | lines | line | curve" )? + (svg:x1="string]" svg:y1="string]" )? + (draw:start-shape="<IDREF>" )? + (draw:start-glue-point="<nonNegativeInteger>" )? + (svg:x2="string]" svg:y2="string]" )? + (draw:end-shape="<IDREF>" )? + (draw:end-glue-point="<nonNegativeInteger>" )? + (draw:line-skew=" +START_liststring](string](string])?)? +END_list" )? + (svg:d="<string>" )? + + ( + ( (draw:z-index="<nonNegativeInteger>" )? + (xml:id="<ID>" (draw:id="<NCName>" )? + )? + (draw:layer="<string>" )? + + ( (draw:style-name="(<NCName>)?" )? + (draw:class-names=" +START_list(<NCName>)* +END_list" )? + ) | + ( (presentation:style-name="(<NCName>)?" )? + (presentation:class-names=" +START_list(<NCName>)* +END_list" )? + ) (draw:transform="<string>" )? + (draw:name="<string>" )? + (table:end-cell-address="string]" )? + (table:end-x="string]" )? + (table:end-y="string]" )? + (table:table-background="<boolean>" )? + (text:anchor-type="page | frame | paragraph | char | as-char" )? + (text:anchor-page-number="<positiveInteger>" )? + ) (draw:text-style-name="(<NCName>)?" )? + ) (draw:caption-id="<IDREF>" )? + svg:viewBox=" +START_list<integer><integer><integer><integer> +END_list" (<svg:title ... >)? + (<svg:desc ... >)? + (<office:event-listeners ... >)? + (<draw:glue-point ... >)* (<text:p ... > | <text:list ... >)* >  +
@@ -3428,9 +4654,9 @@

draw:contour-path Element

draw:recreate-on-edit  svg:d  - svg:height[2]  + svg:height[1]  svg:viewBox  - svg:width[1]  + svg:width[2]    @@ -3438,6 +4664,15 @@

draw:contour-path Element

  + + Child Relations + <draw:contour-path draw:recreate-on-edit="<boolean>" + ( (svg:width="string]" )? + (svg:height="string]" )? + )svg:viewBox=" +START_list<integer><integer><integer><integer> +END_list" svg:d="<string>" >  +
@@ -3454,9 +4689,9 @@

draw:contour-polygon Element draw:points  draw:recreate-on-edit  - svg:height[2]  + svg:height[1]  svg:viewBox  - svg:width[1]  + svg:width[2]    @@ -3464,6 +4699,15 @@

draw:contour-polygon Element   + + Child Relations + <draw:contour-polygon draw:recreate-on-edit="<boolean>" + ( (svg:width="string]" )? + (svg:height="string]" )? + )svg:viewBox=" +START_list<integer><integer><integer><integer> +END_list" draw:points="string]" >  +
@@ -3503,7 +4747,7 @@

draw:control Element

draw:caption-id  draw:class-names  draw:control  - draw:id[1]  + draw:id[2]  draw:layer  draw:name[1]  draw:style-name  @@ -3512,9 +4756,9 @@

draw:control Element

draw:z-index  presentation:class-names  presentation:style-name  - svg:height[2]  - svg:width[1]  - svg:x[2]  + svg:height[1]  + svg:width[2]  + svg:x[1]  svg:y[2]  table:end-cell-address  table:end-x  @@ -3533,6 +4777,44 @@

draw:control Element

<svg:title>    + + Child Relations + <draw:control draw:control="<IDREF>" + ( (svg:x="string]" )? + (svg:y="string]" )? + ) + ( (svg:width="string]" )? + (svg:height="string]" )? + ) + ( + ( (draw:z-index="<nonNegativeInteger>" )? + (xml:id="<ID>" (draw:id="<NCName>" )? + )? + (draw:layer="<string>" )? + + ( (draw:style-name="(<NCName>)?" )? + (draw:class-names=" +START_list(<NCName>)* +END_list" )? + ) | + ( (presentation:style-name="(<NCName>)?" )? + (presentation:class-names=" +START_list(<NCName>)* +END_list" )? + ) (draw:transform="<string>" )? + (draw:name="<string>" )? + (table:end-cell-address="string]" )? + (table:end-x="string]" )? + (table:end-y="string]" )? + (table:table-background="<boolean>" )? + (text:anchor-type="page | frame | paragraph | char | as-char" )? + (text:anchor-page-number="<positiveInteger>" )? + ) (draw:text-style-name="(<NCName>)?" )? + ) (draw:caption-id="<IDREF>" )? + (<svg:title ... >)? + (<svg:desc ... >)? + (<draw:glue-point ... >)* >  +
@@ -3573,7 +4855,7 @@

draw:custom-shape Element

draw:class-names  draw:data  draw:engine  - draw:id[1]  + draw:id[2]  draw:layer  draw:name[1]  draw:style-name  @@ -3582,9 +4864,9 @@

draw:custom-shape Element

draw:z-index  presentation:class-names  presentation:style-name  - svg:height[2]  - svg:width[1]  - svg:x[2]  + svg:height[1]  + svg:width[2]  + svg:x[1]  svg:y[2]  table:end-cell-address  table:end-x  @@ -3607,6 +4889,48 @@

draw:custom-shape Element

<text:p>*    + + Child Relations + <draw:custom-shape (draw:engine="QName]" )? + (draw:data="<string>" )? + + ( (svg:x="string]" )? + (svg:y="string]" )? + ) + ( (svg:width="string]" )? + (svg:height="string]" )? + ) + ( + ( (draw:z-index="<nonNegativeInteger>" )? + (xml:id="<ID>" (draw:id="<NCName>" )? + )? + (draw:layer="<string>" )? + + ( (draw:style-name="(<NCName>)?" )? + (draw:class-names=" +START_list(<NCName>)* +END_list" )? + ) | + ( (presentation:style-name="(<NCName>)?" )? + (presentation:class-names=" +START_list(<NCName>)* +END_list" )? + ) (draw:transform="<string>" )? + (draw:name="<string>" )? + (table:end-cell-address="string]" )? + (table:end-x="string]" )? + (table:end-y="string]" )? + (table:table-background="<boolean>" )? + (text:anchor-type="page | frame | paragraph | char | as-char" )? + (text:anchor-page-number="<positiveInteger>" )? + ) (draw:text-style-name="(<NCName>)?" )? + ) (draw:caption-id="<IDREF>" )? + (<svg:title ... >)? + (<svg:desc ... >)? + (<office:event-listeners ... >)? + (<draw:glue-point ... >)* (<text:p ... > | <text:list ... >)* (<draw:enhanced-geometry ... >)? + >  +
@@ -3646,7 +4970,7 @@

draw:ellipse Element

draw:caption-id  draw:class-names  draw:end-angle  - draw:id[1]  + draw:id[2]  draw:kind  draw:layer  draw:name[1]  @@ -3657,13 +4981,13 @@

draw:ellipse Element

draw:z-index  presentation:class-names  presentation:style-name  - svg:cx[1]  + svg:cx[2]  svg:cy[1]  - svg:height[2]  + svg:height[1]  svg:rx[2]  - svg:ry[1]  - svg:width[1]  - svg:x[2]  + svg:ry[2]  + svg:width[2]  + svg:x[1]  svg:y[2]  table:end-cell-address  table:end-x  @@ -3685,6 +5009,52 @@

draw:ellipse Element

<text:p>*    + + Child Relations + <draw:ellipse + ( + (svg:rx="string]" svg:ry="string]" ) + (svg:cx="string]" svg:cy="string]" )) | + ( + ( (svg:x="string]" )? + (svg:y="string]" )? + ) + ( (svg:width="string]" )? + (svg:height="string]" )? + )) (draw:kind="full | section | cut | arc" )? + (draw:start-angle="<string>" )? + (draw:end-angle="<string>" )? + + ( + ( (draw:z-index="<nonNegativeInteger>" )? + (xml:id="<ID>" (draw:id="<NCName>" )? + )? + (draw:layer="<string>" )? + + ( (draw:style-name="(<NCName>)?" )? + (draw:class-names=" +START_list(<NCName>)* +END_list" )? + ) | + ( (presentation:style-name="(<NCName>)?" )? + (presentation:class-names=" +START_list(<NCName>)* +END_list" )? + ) (draw:transform="<string>" )? + (draw:name="<string>" )? + (table:end-cell-address="string]" )? + (table:end-x="string]" )? + (table:end-y="string]" )? + (table:table-background="<boolean>" )? + (text:anchor-type="page | frame | paragraph | char | as-char" )? + (text:anchor-page-number="<positiveInteger>" )? + ) (draw:text-style-name="(<NCName>)?" )? + ) (draw:caption-id="<IDREF>" )? + (<svg:title ... >)? + (<svg:desc ... >)? + (<office:event-listeners ... >)? + (<draw:glue-point ... >)* (<text:p ... > | <text:list ... >)* >  +
@@ -3751,6 +5121,63 @@

draw:enhanced-geometry Element<draw:handle>*    + + Child Relations + <draw:enhanced-geometry (draw:type="non-primitive | <string>" )? + (svg:viewBox=" +START_list<integer><integer><integer><integer> +END_list" )? + (draw:mirror-vertical="<boolean>" )? + (draw:mirror-horizontal="<boolean>" )? + (draw:text-rotate-angle="<string>" )? + (draw:extrusion-allowed="<boolean>" )? + (draw:text-path-allowed="<boolean>" )? + (draw:concentric-gradient-fill-allowed="<boolean>" )? + (draw:extrusion="<boolean>" )? + (draw:extrusion-brightness="string]" )? + (draw:extrusion-depth=" +START_liststring]<double> +END_list" )? + (draw:extrusion-diffusion="string]" )? + (draw:extrusion-number-of-line-segments="<integer>" )? + (draw:extrusion-light-face="<boolean>" )? + (draw:extrusion-first-light-harsh="<boolean>" )? + (draw:extrusion-second-light-harsh="<boolean>" )? + (draw:extrusion-first-light-level="string]" )? + (draw:extrusion-second-light-level="string]" )? + (draw:extrusion-first-light-direction="string]" )? + (draw:extrusion-second-light-direction="string]" )? + (draw:extrusion-metal="<boolean>" )? + (dr3d:shade-mode="flat | phong | gouraud | draft" )? + (draw:extrusion-rotation-angle=" +START_list<string><string> +END_list" )? + (draw:extrusion-rotation-center="string]" )? + (draw:extrusion-shininess="string]" )? + (draw:extrusion-skew=" +START_list<double><string> +END_list" )? + (draw:extrusion-specularity="string]" )? + (dr3d:projection="parallel | perspective" )? + (draw:extrusion-viewpoint="string]" )? + (draw:extrusion-origin=" +START_listdouble]double] +END_list" )? + (draw:extrusion-color="<boolean>" )? + (draw:enhanced-path="<string>" )? + (draw:path-stretchpoint-x="<double>" )? + (draw:path-stretchpoint-y="<double>" )? + (draw:text-areas="<string>" )? + (draw:glue-points="<string>" )? + (draw:glue-point-type="none | segments | rectangle" )? + (draw:glue-point-leaving-directions="<string>" )? + (draw:text-path="<boolean>" )? + (draw:text-path-mode="normal | path | shape" )? + (draw:text-path-scale="path | shape" )? + (draw:text-path-same-letter-heights="<boolean>" )? + (draw:modifiers="<string>" )? + (<draw:equation ... >)* (<draw:handle ... >)* >  +
@@ -3774,6 +5201,12 @@

draw:equation Element

  + + Child Relations + <draw:equation (draw:name="<string>" )? + (draw:formula="<string>" )? + >  +
@@ -3790,11 +5223,11 @@

draw:fill-image Element

draw:display-name  draw:name[2]  - svg:height[2]  - svg:width[1]  + svg:height[1]  + svg:width[2]  xlink:actuate[2]  xlink:href  - xlink:show[3]  + xlink:show[2]  xlink:type    @@ -3803,6 +5236,15 @@

draw:fill-image Element

  + + Child Relations + <draw:fill-image draw:name="<NCName>" (draw:display-name="<string>" )? + (svg:width="string]" )? + (svg:height="string]" )? + xlink:type="simple" xlink:href="<anyIRI>" (xlink:show="embed" )? + (xlink:actuate="onLoad" )? + >  +
@@ -3820,7 +5262,7 @@

draw:floating-frame Element

draw:frame-name  xlink:actuate[2]  xlink:href  - xlink:show[3]  + xlink:show[2]  xlink:type  xml:id    @@ -3830,6 +5272,15 @@

draw:floating-frame Element

  + + Child Relations + <draw:floating-frame (draw:frame-name="<string>" )? + (xml:id="<ID>" )? + + (xlink:type="simple" xlink:href="<anyIRI>" (xlink:show="embed" )? + (xlink:actuate="onLoad" )? + )>  +
@@ -3870,7 +5321,7 @@

draw:frame Element

draw:caption-id  draw:class-names  draw:copy-of  - draw:id[1]  + draw:id[2]  draw:layer  draw:name[1]  draw:style-name  @@ -3883,10 +5334,10 @@

draw:frame Element

presentation:style-name  presentation:user-transformed  style:rel-height  - style:rel-width[1]  - svg:height[2]  - svg:width[1]  - svg:x[2]  + style:rel-width[3]  + svg:height[1]  + svg:width[2]  + svg:x[1]  svg:y[2]  table:end-cell-address  table:end-x  @@ -3917,6 +5368,54 @@

draw:frame Element

<table:table>*    + + Child Relations + <draw:frame + ( + ( (draw:z-index="<nonNegativeInteger>" )? + (xml:id="<ID>" (draw:id="<NCName>" )? + )? + (draw:layer="<string>" )? + + ( (draw:style-name="(<NCName>)?" )? + (draw:class-names=" +START_list(<NCName>)* +END_list" )? + ) | + ( (presentation:style-name="(<NCName>)?" )? + (presentation:class-names=" +START_list(<NCName>)* +END_list" )? + ) (draw:transform="<string>" )? + (draw:name="<string>" )? + (table:end-cell-address="string]" )? + (table:end-x="string]" )? + (table:end-y="string]" )? + (table:table-background="<boolean>" )? + (text:anchor-type="page | frame | paragraph | char | as-char" )? + (text:anchor-page-number="<positiveInteger>" )? + ) (draw:text-style-name="(<NCName>)?" )? + ) + ( (svg:x="string]" )? + (svg:y="string]" )? + ) + ( + ( (svg:width="string]" )? + (svg:height="string]" )? + ) (style:rel-width="string] | scale | scale-min" )? + (style:rel-height="string] | scale | scale-min" )? + ) (draw:caption-id="<IDREF>" )? + (presentation:class="title | outline | subtitle | text | graphic | object | chart | table | orgchart | page | notes | handout | header | footer | date-time | page-number" )? + (presentation:placeholder="<boolean>" )? + (presentation:user-transformed="<boolean>" )? + (draw:copy-of="<string>" )? + (<draw:text-box ... > | <draw:image ... > | <draw:object ... > | <draw:object-ole ... > | <draw:applet ... > | <draw:floating-frame ... > | <draw:plugin ... > | <table:table ... >)* (<office:event-listeners ... >)? + (<draw:glue-point ... >)* (<draw:image-map ... >)? + (<svg:title ... >)? + (<svg:desc ... >)? + (<draw:contour-polygon ... > | <draw:contour-path ... >)? + >  +
@@ -3955,7 +5454,7 @@

draw:g Element

draw:caption-id  draw:class-names  - draw:id[1]  + draw:id[2]  draw:name[1]  draw:style-name  draw:z-index  @@ -3998,6 +5497,35 @@

draw:g Element

<svg:title>    + + Child Relations + <draw:g (svg:y="string]" )? + (draw:z-index="<nonNegativeInteger>" )? + (draw:name="<string>" )? + (xml:id="<ID>" (draw:id="<NCName>" )? + )? + + ( (draw:style-name="(<NCName>)?" )? + (draw:class-names=" +START_list(<NCName>)* +END_list" )? + ) | + ( (presentation:style-name="(<NCName>)?" )? + (presentation:class-names=" +START_list(<NCName>)* +END_list" )? + ) (table:end-cell-address="string]" )? + (table:end-x="string]" )? + (table:end-y="string]" )? + (table:table-background="<boolean>" )? + (text:anchor-type="page | frame | paragraph | char | as-char" )? + (text:anchor-page-number="<positiveInteger>" )? + (draw:caption-id="<IDREF>" )? + (<svg:title ... >)? + (<svg:desc ... >)? + (<office:event-listeners ... >)? + (<draw:glue-point ... >)* (<draw:rect ... > | <draw:line ... > | <draw:polyline ... > | <draw:polygon ... > | <draw:regular-polygon ... > | <draw:path ... > | <draw:circle ... > | <draw:ellipse ... > | <draw:g ... > | <draw:page-thumbnail ... > | <draw:frame ... > | <draw:measure ... > | <draw:caption ... > | <draw:connector ... > | <draw:control ... > | <dr3d:scene ... > | <draw:custom-shape ... > | <draw:a ... >)* >  +
@@ -4029,8 +5557,8 @@

draw:glue-point Element

draw:align  draw:escape-direction  - draw:id[2]  - svg:x[1]  + draw:id[1]  + svg:x[2]  svg:y[1]    @@ -4039,6 +5567,11 @@

draw:glue-point Element

  + + Child Relations + <draw:glue-point draw:id="<nonNegativeInteger>" svg:x="string] | string]" svg:y="string] | string]" (draw:align="top-left | top | top-right | left | center | right | bottom-left | bottom-right" )? + draw:escape-direction="auto | left | right | up | down | horizontal | vertical" >  +
@@ -4063,7 +5596,7 @@

draw:gradient Element

draw:name[2]  draw:start-color  draw:start-intensity  - draw:style[1]  + draw:style[2]    @@ -4071,6 +5604,20 @@

draw:gradient Element

  + + Child Relations + <draw:gradient (draw:name="<NCName>" )? + (draw:display-name="<string>" )? + draw:style="linear | axial | radial | ellipsoid | square | rectangular" (draw:cx="string]" )? + (draw:cy="string]" )? + (draw:angle="<string>" )? + (draw:border="string]" )? + (draw:start-color="string]" )? + (draw:end-color="string]" )? + (draw:start-intensity="string]" )? + (draw:end-intensity="string]" )? + >  +
@@ -4103,6 +5650,20 @@

draw:handle Element

  + + Child Relations + <draw:handle (draw:handle-mirror-vertical="<boolean>" )? + (draw:handle-mirror-horizontal="<boolean>" )? + (draw:handle-switched="<boolean>" )? + draw:handle-position="<string>" (draw:handle-range-x-minimum="<string>" )? + (draw:handle-range-x-maximum="<string>" )? + (draw:handle-range-y-minimum="<string>" )? + (draw:handle-range-y-maximum="<string>" )? + (draw:handle-polar="<string>" )? + (draw:handle-radius-range-minimum="<string>" )? + (draw:handle-radius-range-maximum="<string>" )? + >  +
@@ -4122,7 +5683,7 @@

draw:hatch Element

draw:distance[2]  draw:name[2]  draw:rotation  - draw:style[2]  + draw:style[3]    @@ -4130,6 +5691,14 @@

draw:hatch Element

  + + Child Relations + <draw:hatch draw:name="<NCName>" (draw:display-name="<string>" )? + draw:style="single | double | triple" (draw:color="string]" )? + (draw:distance="string]" )? + (draw:rotation="<string>" )? + >  +
@@ -4147,7 +5716,7 @@

draw:image Element

draw:filter-name  xlink:actuate[2]  xlink:href  - xlink:show[3]  + xlink:show[2]  xlink:type  xml:id    @@ -4160,6 +5729,15 @@

draw:image Element

<text:p>*    + + Child Relations + <draw:image (draw:filter-name="<string>" )? + (xml:id="<ID>" )? + + (xlink:type="simple" xlink:href="<anyIRI>" (xlink:show="embed" )? + (xlink:actuate="onLoad" )? + ) | <office:binary-data ... >(<text:p ... > | <text:list ... >)* >  +
@@ -4184,6 +5762,10 @@

draw:image-map Element

<draw:area-rectangle>*    + + Child Relations + <draw:image-map (<draw:area-rectangle ... > | <draw:area-circle ... > | <draw:area-polygon ... >)* >  +
@@ -4210,6 +5792,14 @@

draw:layer Element

<svg:title>    + + Child Relations + <draw:layer draw:name="<string>" (draw:protected="<boolean>" )? + (draw:display="always | screen | printer | none" )? + (<svg:title ... >)? + (<svg:desc ... >)? + >  +
@@ -4234,6 +5824,10 @@

draw:layer-set Element

<draw:layer>*    + + Child Relations + <draw:layer-set (<draw:layer ... >)* >  +
@@ -4272,7 +5866,7 @@

draw:line Element

draw:caption-id  draw:class-names  - draw:id[1]  + draw:id[2]  draw:layer  draw:name[1]  draw:style-name  @@ -4281,10 +5875,10 @@

draw:line Element

draw:z-index  presentation:class-names  presentation:style-name  - svg:x1[1]  + svg:x1[2]  svg:x2[1]  - svg:y1[1]  - svg:y2[1]  + svg:y1[2]  + svg:y2[2]  table:end-cell-address  table:end-x  table:end-y  @@ -4305,6 +5899,39 @@

draw:line Element

<text:p>*    + + Child Relations + <draw:line svg:x1="string]" svg:y1="string]" svg:x2="string]" svg:y2="string]" + ( + ( (draw:z-index="<nonNegativeInteger>" )? + (xml:id="<ID>" (draw:id="<NCName>" )? + )? + (draw:layer="<string>" )? + + ( (draw:style-name="(<NCName>)?" )? + (draw:class-names=" +START_list(<NCName>)* +END_list" )? + ) | + ( (presentation:style-name="(<NCName>)?" )? + (presentation:class-names=" +START_list(<NCName>)* +END_list" )? + ) (draw:transform="<string>" )? + (draw:name="<string>" )? + (table:end-cell-address="string]" )? + (table:end-x="string]" )? + (table:end-y="string]" )? + (table:table-background="<boolean>" )? + (text:anchor-type="page | frame | paragraph | char | as-char" )? + (text:anchor-page-number="<positiveInteger>" )? + ) (draw:text-style-name="(<NCName>)?" )? + ) (draw:caption-id="<IDREF>" )? + (<svg:title ... >)? + (<svg:desc ... >)? + (<office:event-listeners ... >)? + (<draw:glue-point ... >)* (<text:p ... > | <text:list ... >)* >  +
@@ -4330,6 +5957,13 @@

draw:marker Element

  + + Child Relations + <draw:marker draw:name="<NCName>" (draw:display-name="<string>" )? + svg:viewBox=" +START_list<integer><integer><integer><integer> +END_list" svg:d="<string>" >  +
@@ -4368,7 +6002,7 @@

draw:measure Element

draw:caption-id  draw:class-names  - draw:id[1]  + draw:id[2]  draw:layer  draw:name[1]  draw:style-name  @@ -4377,10 +6011,10 @@

draw:measure Element

draw:z-index  presentation:class-names  presentation:style-name  - svg:x1[1]  + svg:x1[2]  svg:x2[1]  - svg:y1[1]  - svg:y2[1]  + svg:y1[2]  + svg:y2[2]  table:end-cell-address  table:end-x  table:end-y  @@ -4401,6 +6035,39 @@

draw:measure Element

<text:p>*    + + Child Relations + <draw:measure svg:x1="string]" svg:y1="string]" svg:x2="string]" svg:y2="string]" + ( + ( (draw:z-index="<nonNegativeInteger>" )? + (xml:id="<ID>" (draw:id="<NCName>" )? + )? + (draw:layer="<string>" )? + + ( (draw:style-name="(<NCName>)?" )? + (draw:class-names=" +START_list(<NCName>)* +END_list" )? + ) | + ( (presentation:style-name="(<NCName>)?" )? + (presentation:class-names=" +START_list(<NCName>)* +END_list" )? + ) (draw:transform="<string>" )? + (draw:name="<string>" )? + (table:end-cell-address="string]" )? + (table:end-x="string]" )? + (table:end-y="string]" )? + (table:table-background="<boolean>" )? + (text:anchor-type="page | frame | paragraph | char | as-char" )? + (text:anchor-page-number="<positiveInteger>" )? + ) (draw:text-style-name="(<NCName>)?" )? + ) (draw:caption-id="<IDREF>" )? + (<svg:title ... >)? + (<svg:desc ... >)? + (<office:event-listeners ... >)? + (<draw:glue-point ... >)* (<text:p ... > | <text:list ... >)* >  +
@@ -4418,7 +6085,7 @@

draw:object Element

draw:notify-on-update-of-ranges  xlink:actuate[2]  xlink:href  - xlink:show[3]  + xlink:show[2]  xlink:type  xml:id    @@ -4430,6 +6097,15 @@

draw:object Element

<office:document>    + + Child Relations + <draw:object (draw:notify-on-update-of-ranges="<string> | <string>" )? + (xml:id="<ID>" )? + + (xlink:type="simple" xlink:href="<anyIRI>" (xlink:show="embed" )? + (xlink:actuate="onLoad" )? + ) | <office:document ... > | <math:math ... >>  +
@@ -4447,7 +6123,7 @@

draw:object-ole Element

draw:class-id  xlink:actuate[2]  xlink:href  - xlink:show[3]  + xlink:show[2]  xlink:type  xml:id    @@ -4458,6 +6134,15 @@

draw:object-ole Element

<office:binary-data>    + + Child Relations + <draw:object-ole (draw:class-id="<string>" )? + (xml:id="<ID>" )? + + (xlink:type="simple" xlink:href="<anyIRI>" (xlink:show="embed" )? + (xlink:actuate="onLoad" )? + ) | <office:binary-data ... >>  +
@@ -4480,7 +6165,7 @@

draw:opacity Element

draw:end  draw:name[2]  draw:start  - draw:style[1]  + draw:style[2]    @@ -4488,6 +6173,19 @@

draw:opacity Element

  + + Child Relations + <draw:opacity (draw:name="<NCName>" )? + (draw:display-name="<string>" )? + draw:style="linear | axial | radial | ellipsoid | square | rectangular" (draw:cx="string]" )? + (draw:cy="string]" )? + (draw:angle="<string>" )? + (draw:border="string]" )? + + ( (draw:start="string]" )? + (draw:end="string]" )? + )>  +
@@ -4503,7 +6201,7 @@

draw:page Element

Attributes - draw:id[1]  + draw:id[2]  draw:master-page-name  draw:name[1]  draw:nav-order  @@ -4555,6 +6253,26 @@

draw:page Element

<svg:title>    + + Child Relations + <draw:page (presentation:use-header-name="<string>" )? + (presentation:use-footer-name="<string>" )? + (presentation:use-date-time-name="<string>" )? + (draw:name="<string>" )? + (draw:style-name="(<NCName>)?" )? + draw:master-page-name="(<NCName>)?" (presentation:presentation-page-layout-name="(<NCName>)?" )? + (xml:id="<ID>" (draw:id="<NCName>" )? + )? + (draw:nav-order="<IDREFS>" )? + (<svg:title ... >)? + (<svg:desc ... >)? + (<draw:layer-set ... >)? + ( (<office:forms ... >)? + )? + (<draw:rect ... > | <draw:line ... > | <draw:polyline ... > | <draw:polygon ... > | <draw:regular-polygon ... > | <draw:path ... > | <draw:circle ... > | <draw:ellipse ... > | <draw:g ... > | <draw:page-thumbnail ... > | <draw:frame ... > | <draw:measure ... > | <draw:caption ... > | <draw:connector ... > | <draw:control ... > | <dr3d:scene ... > | <draw:custom-shape ... > | <draw:a ... >)* (<presentation:animations ... > | <anim:animate ... > | <anim:set ... > | <anim:animateMotion ... > | <anim:animateColor ... > | <anim:animateTransform ... > | <anim:transitionFilter ... > | <anim:par ... > | <anim:seq ... > | <anim:iterate ... > | <anim:audio ... > | <anim:command ... >)? + (<presentation:notes ... >)? + >  +
@@ -4593,7 +6311,7 @@

draw:page-thumbnail Element

draw:caption-id  draw:class-names  - draw:id[1]  + draw:id[2]  draw:layer  draw:name[1]  draw:page-number  @@ -4605,9 +6323,9 @@

draw:page-thumbnail Element

presentation:placeholder  presentation:style-name  presentation:user-transformed  - svg:height[2]  - svg:width[1]  - svg:x[2]  + svg:height[1]  + svg:width[2]  + svg:x[1]  svg:y[2]  table:end-cell-address  table:end-x  @@ -4625,6 +6343,46 @@

draw:page-thumbnail Element

<svg:title>    + + Child Relations + <draw:page-thumbnail (draw:page-number="<positiveInteger>" )? + + ( (svg:x="string]" )? + (svg:y="string]" )? + ) + ( (svg:width="string]" )? + (svg:height="string]" )? + ) (presentation:class="title | outline | subtitle | text | graphic | object | chart | table | orgchart | page | notes | handout | header | footer | date-time | page-number" )? + (presentation:placeholder="<boolean>" )? + (presentation:user-transformed="<boolean>" )? + + ( (draw:z-index="<nonNegativeInteger>" )? + (xml:id="<ID>" (draw:id="<NCName>" )? + )? + (draw:layer="<string>" )? + + ( (draw:style-name="(<NCName>)?" )? + (draw:class-names=" +START_list(<NCName>)* +END_list" )? + ) | + ( (presentation:style-name="(<NCName>)?" )? + (presentation:class-names=" +START_list(<NCName>)* +END_list" )? + ) (draw:transform="<string>" )? + (draw:name="<string>" )? + (table:end-cell-address="string]" )? + (table:end-x="string]" )? + (table:end-y="string]" )? + (table:table-background="<boolean>" )? + (text:anchor-type="page | frame | paragraph | char | as-char" )? + (text:anchor-page-number="<positiveInteger>" )? + ) (draw:caption-id="<IDREF>" )? + (<svg:title ... >)? + (<svg:desc ... >)? + >  +
@@ -4649,6 +6407,12 @@

draw:param Element

  + + Child Relations + <draw:param (draw:name="<string>" )? + (draw:value="<string>" )? + >  +
@@ -4687,7 +6451,7 @@

draw:path Element

draw:caption-id  draw:class-names  - draw:id[1]  + draw:id[2]  draw:layer  draw:name[1]  draw:style-name  @@ -4697,10 +6461,10 @@

draw:path Element

presentation:class-names  presentation:style-name  svg:d  - svg:height[2]  + svg:height[1]  svg:viewBox  - svg:width[1]  - svg:x[2]  + svg:width[2]  + svg:x[1]  svg:y[2]  table:end-cell-address  table:end-x  @@ -4722,6 +6486,47 @@

draw:path Element

<text:p>*    + + Child Relations + <draw:path svg:d="<string>" + ( (svg:x="string]" )? + (svg:y="string]" )? + ) + ( (svg:width="string]" )? + (svg:height="string]" )? + )svg:viewBox=" +START_list<integer><integer><integer><integer> +END_list" + ( + ( (draw:z-index="<nonNegativeInteger>" )? + (xml:id="<ID>" (draw:id="<NCName>" )? + )? + (draw:layer="<string>" )? + + ( (draw:style-name="(<NCName>)?" )? + (draw:class-names=" +START_list(<NCName>)* +END_list" )? + ) | + ( (presentation:style-name="(<NCName>)?" )? + (presentation:class-names=" +START_list(<NCName>)* +END_list" )? + ) (draw:transform="<string>" )? + (draw:name="<string>" )? + (table:end-cell-address="string]" )? + (table:end-x="string]" )? + (table:end-y="string]" )? + (table:table-background="<boolean>" )? + (text:anchor-type="page | frame | paragraph | char | as-char" )? + (text:anchor-page-number="<positiveInteger>" )? + ) (draw:text-style-name="(<NCName>)?" )? + ) (draw:caption-id="<IDREF>" )? + (<svg:title ... >)? + (<svg:desc ... >)? + (<office:event-listeners ... >)? + (<draw:glue-point ... >)* (<text:p ... > | <text:list ... >)* >  +
@@ -4739,7 +6544,7 @@

draw:plugin Element

draw:mime-type  xlink:actuate[2]  xlink:href  - xlink:show[3]  + xlink:show[2]  xlink:type  xml:id    @@ -4750,6 +6555,15 @@

draw:plugin Element

<draw:param>*    + + Child Relations + <draw:plugin (draw:mime-type="<string>" )? + (xml:id="<ID>" )? + + (xlink:type="simple" xlink:href="<anyIRI>" (xlink:show="embed" )? + (xlink:actuate="onLoad" )? + )(<draw:param ... >)* >  +
@@ -4788,7 +6602,7 @@

draw:polygon Element

draw:caption-id  draw:class-names  - draw:id[1]  + draw:id[2]  draw:layer  draw:name[1]  draw:points  @@ -4798,10 +6612,10 @@

draw:polygon Element

draw:z-index  presentation:class-names  presentation:style-name  - svg:height[2]  + svg:height[1]  svg:viewBox  - svg:width[1]  - svg:x[2]  + svg:width[2]  + svg:x[1]  svg:y[2]  table:end-cell-address  table:end-x  @@ -4823,6 +6637,47 @@

draw:polygon Element

<text:p>*    + + Child Relations + <draw:polygon draw:points="string]" + ( (svg:x="string]" )? + (svg:y="string]" )? + ) + ( (svg:width="string]" )? + (svg:height="string]" )? + )svg:viewBox=" +START_list<integer><integer><integer><integer> +END_list" + ( + ( (draw:z-index="<nonNegativeInteger>" )? + (xml:id="<ID>" (draw:id="<NCName>" )? + )? + (draw:layer="<string>" )? + + ( (draw:style-name="(<NCName>)?" )? + (draw:class-names=" +START_list(<NCName>)* +END_list" )? + ) | + ( (presentation:style-name="(<NCName>)?" )? + (presentation:class-names=" +START_list(<NCName>)* +END_list" )? + ) (draw:transform="<string>" )? + (draw:name="<string>" )? + (table:end-cell-address="string]" )? + (table:end-x="string]" )? + (table:end-y="string]" )? + (table:table-background="<boolean>" )? + (text:anchor-type="page | frame | paragraph | char | as-char" )? + (text:anchor-page-number="<positiveInteger>" )? + ) (draw:text-style-name="(<NCName>)?" )? + ) (draw:caption-id="<IDREF>" )? + (<svg:title ... >)? + (<svg:desc ... >)? + (<office:event-listeners ... >)? + (<draw:glue-point ... >)* (<text:p ... > | <text:list ... >)* >  +
@@ -4861,7 +6716,7 @@

draw:polyline Element

draw:caption-id  draw:class-names  - draw:id[1]  + draw:id[2]  draw:layer  draw:name[1]  draw:points  @@ -4871,10 +6726,10 @@

draw:polyline Element

draw:z-index  presentation:class-names  presentation:style-name  - svg:height[2]  + svg:height[1]  svg:viewBox  - svg:width[1]  - svg:x[2]  + svg:width[2]  + svg:x[1]  svg:y[2]  table:end-cell-address  table:end-x  @@ -4896,6 +6751,47 @@

draw:polyline Element

<text:p>*    + + Child Relations + <draw:polyline draw:points="string]" + ( (svg:x="string]" )? + (svg:y="string]" )? + ) + ( (svg:width="string]" )? + (svg:height="string]" )? + )svg:viewBox=" +START_list<integer><integer><integer><integer> +END_list" + ( + ( (draw:z-index="<nonNegativeInteger>" )? + (xml:id="<ID>" (draw:id="<NCName>" )? + )? + (draw:layer="<string>" )? + + ( (draw:style-name="(<NCName>)?" )? + (draw:class-names=" +START_list(<NCName>)* +END_list" )? + ) | + ( (presentation:style-name="(<NCName>)?" )? + (presentation:class-names=" +START_list(<NCName>)* +END_list" )? + ) (draw:transform="<string>" )? + (draw:name="<string>" )? + (table:end-cell-address="string]" )? + (table:end-x="string]" )? + (table:end-y="string]" )? + (table:table-background="<boolean>" )? + (text:anchor-type="page | frame | paragraph | char | as-char" )? + (text:anchor-page-number="<positiveInteger>" )? + ) (draw:text-style-name="(<NCName>)?" )? + ) (draw:caption-id="<IDREF>" )? + (<svg:title ... >)? + (<svg:desc ... >)? + (<office:event-listeners ... >)? + (<draw:glue-point ... >)* (<text:p ... > | <text:list ... >)* >  +
@@ -4935,7 +6831,7 @@

draw:rect Element

draw:caption-id  draw:class-names  draw:corner-radius  - draw:id[1]  + draw:id[2]  draw:layer  draw:name[1]  draw:style-name  @@ -4944,11 +6840,11 @@

draw:rect Element

draw:z-index  presentation:class-names  presentation:style-name  - svg:height[2]  + svg:height[1]  svg:rx[1]  - svg:ry[2]  - svg:width[1]  - svg:x[2]  + svg:ry[1]  + svg:width[2]  + svg:x[1]  svg:y[2]  table:end-cell-address  table:end-x  @@ -4970,6 +6866,48 @@

draw:rect Element

<text:p>*    + + Child Relations + <draw:rect draw:corner-radius="string]" | EMPTY | + ( (svg:rx="string]" )? + (svg:ry="string]" )? + ) + ( (svg:x="string]" )? + (svg:y="string]" )? + ) + ( (svg:width="string]" )? + (svg:height="string]" )? + ) + ( + ( (draw:z-index="<nonNegativeInteger>" )? + (xml:id="<ID>" (draw:id="<NCName>" )? + )? + (draw:layer="<string>" )? + + ( (draw:style-name="(<NCName>)?" )? + (draw:class-names=" +START_list(<NCName>)* +END_list" )? + ) | + ( (presentation:style-name="(<NCName>)?" )? + (presentation:class-names=" +START_list(<NCName>)* +END_list" )? + ) (draw:transform="<string>" )? + (draw:name="<string>" )? + (table:end-cell-address="string]" )? + (table:end-x="string]" )? + (table:end-y="string]" )? + (table:table-background="<boolean>" )? + (text:anchor-type="page | frame | paragraph | char | as-char" )? + (text:anchor-page-number="<positiveInteger>" )? + ) (draw:text-style-name="(<NCName>)?" )? + ) (draw:caption-id="<IDREF>" )? + (<svg:title ... >)? + (<svg:desc ... >)? + (<office:event-listeners ... >)? + (<draw:glue-point ... >)* (<text:p ... > | <text:list ... >)* >  +
@@ -5011,7 +6949,7 @@

draw:regular-polygon Elementdraw:concave[1]  draw:concave[2]  draw:corners  - draw:id[1]  + draw:id[2]  draw:layer  draw:name[1]  draw:sharpness  @@ -5021,9 +6959,9 @@

draw:regular-polygon Elementdraw:z-index  presentation:class-names  presentation:style-name  - svg:height[2]  - svg:width[1]  - svg:x[2]  + svg:height[1]  + svg:width[2]  + svg:x[1]  svg:y[2]  table:end-cell-address  table:end-x  @@ -5045,6 +6983,46 @@

draw:regular-polygon Element<text:p>*    + + Child Relations + <draw:regular-polygon draw:concave="false" | + (draw:concave="true" draw:sharpness="string]" )draw:corners="<positiveInteger>" + ( (svg:x="string]" )? + (svg:y="string]" )? + ) + ( (svg:width="string]" )? + (svg:height="string]" )? + ) + ( + ( (draw:z-index="<nonNegativeInteger>" )? + (xml:id="<ID>" (draw:id="<NCName>" )? + )? + (draw:layer="<string>" )? + + ( (draw:style-name="(<NCName>)?" )? + (draw:class-names=" +START_list(<NCName>)* +END_list" )? + ) | + ( (presentation:style-name="(<NCName>)?" )? + (presentation:class-names=" +START_list(<NCName>)* +END_list" )? + ) (draw:transform="<string>" )? + (draw:name="<string>" )? + (table:end-cell-address="string]" )? + (table:end-x="string]" )? + (table:end-y="string]" )? + (table:table-background="<boolean>" )? + (text:anchor-type="page | frame | paragraph | char | as-char" )? + (text:anchor-page-number="<positiveInteger>" )? + ) (draw:text-style-name="(<NCName>)?" )? + ) (draw:caption-id="<IDREF>" )? + (<svg:title ... >)? + (<svg:desc ... >)? + (<office:event-listeners ... >)? + (<draw:glue-point ... >)* (<text:p ... > | <text:list ... >)* >  +
@@ -5066,7 +7044,7 @@

draw:stroke-dash Element

draw:dots2  draw:dots2-length  draw:name[2]  - draw:style[3]  + draw:style[1]    @@ -5074,6 +7052,17 @@

draw:stroke-dash Element

  + + Child Relations + <draw:stroke-dash draw:name="<NCName>" (draw:display-name="<string>" )? + (draw:style="rect | round" )? + (draw:dots1="<integer>" )? + (draw:dots1-length="string] | string]" )? + (draw:dots2="<integer>" )? + (draw:dots2-length="string] | string]" )? + (draw:distance="string] | string]" )? + >  +
@@ -5092,9 +7081,9 @@

draw:text-box Element

draw:corner-radius  fo:max-height  fo:max-width  - fo:min-height[1]  + fo:min-height[2]  fo:min-width  - text:id[1]  + text:id[2]  xml:id    @@ -5138,6 +7127,18 @@

draw:text-box Element

<text:user-index>*    + + Child Relations + <draw:text-box (draw:chain-next-name="<string>" )? + (draw:corner-radius="string]" )? + (fo:min-height="string] | string]" )? + (fo:min-width="string] | string]" )? + (fo:max-height="string] | string]" )? + (fo:max-width="string] | string]" )? + (xml:id="<ID>" (text:id="<NCName>" )? + )? + (<text:h ... > | <text:p ... > | <text:list ... > | <text:numbered-paragraph ... > | <table:table ... > | <text:section ... > | <text:soft-page-break ... > | <text:table-of-content ... > | <text:illustration-index ... > | <text:table-index ... > | <text:object-index ... > | <text:user-index ... > | <text:alphabetical-index ... > | <text:bibliography ... > | <draw:rect ... > | <draw:line ... > | <draw:polyline ... > | <draw:polygon ... > | <draw:regular-polygon ... > | <draw:path ... > | <draw:circle ... > | <draw:ellipse ... > | <draw:g ... > | <draw:page-thumbnail ... > | <draw:frame ... > | <draw:measure ... > | <draw:caption ... > | <draw:connector ... > | <draw:control ... > | <dr3d:scene ... > | <draw:custom-shape ... > | <draw:a ... > | <text:change ... > | <text:change-start ... > | <text:change-end ... >)* >  +
@@ -5171,7 +7172,7 @@

form:button Element

form:tab-stop  form:title  form:toggle  - form:value[1]  + form:value[4]  form:xforms-submission  office:target-frame  xforms:bind  @@ -5186,6 +7187,38 @@

form:button Element

<office:event-listeners>    + + Child Relations + <form:button + ( (form:name="<string>" )? + (form:control-implementation="QName]" )? + + (xml:id="<ID>" (form:id="<NCName>" )? + ) (xforms:bind="<string>" )? + ) (form:button-type="submit | reset | push | url" )? + (form:disabled="<boolean>" )? + (form:label="<string>" )? + (form:image-data="<anyIRI>" )? + (form:printable="<boolean>" )? + (form:tab-index="<nonNegativeInteger>" )? + (form:tab-stop="<boolean>" )? + (office:target-frame="_self | _blank | _parent | _top | <string>" )? + (xlink:href="<anyIRI>" )? + (form:title="<string>" )? + (form:value="<string>" )? + form:image-position="center" | EMPTY | + (form:image-position="start | end | top | bottom" (form:image-align="start | center | end" )? + ) (form:repeat="<boolean>" )? + (form:delay-for-repeat="<duration>" )? + (form:default-button="<boolean>" )? + (form:toggle="<boolean>" )? + (form:focus-on-click="<boolean>" )? + (form:xforms-submission="<string>" )? + + ( (<form:properties ... >)? + (<office:event-listeners ... >)? + )>  +
@@ -5218,7 +7251,7 @@

form:checkbox Element

form:tab-index  form:tab-stop  form:title  - form:value[1]  + form:value[4]  form:visual-effect  xforms:bind  xml:id  @@ -5231,6 +7264,34 @@

form:checkbox Element

<office:event-listeners>    + + Child Relations + <form:checkbox + ( (form:name="<string>" )? + (form:control-implementation="QName]" )? + + (xml:id="<ID>" (form:id="<NCName>" )? + ) (xforms:bind="<string>" )? + ) (form:disabled="<boolean>" )? + (form:label="<string>" )? + (form:printable="<boolean>" )? + (form:tab-index="<nonNegativeInteger>" )? + (form:tab-stop="<boolean>" )? + (form:title="<string>" )? + (form:value="<string>" )? + (form:data-field="<string>" )? + (form:visual-effect="flat | 3d" )? + form:image-position="center" | EMPTY | + (form:image-position="start | end | top | bottom" (form:image-align="start | center | end" )? + ) (form:linked-cell="string] | <string>" )? + (form:current-state="unchecked | checked | unknown" )? + (form:is-tristate="<boolean>" )? + (form:state="unchecked | checked | unknown" )? + + ( (<form:properties ... >)? + (<office:event-listeners ... >)? + )>  +
@@ -5265,6 +7326,15 @@

form:column Element

<form:time>*    + + Child Relations + <form:column + ( (form:name="<string>" )? + (form:control-implementation="QName]" )? + (form:label="<string>" )? + (form:text-style-name="(<NCName>)?" )? + )(<form:text ... > | <form:textarea ... > | <form:formatted-text ... > | <form:number ... > | <form:date ... > | <form:time ... > | <form:combobox ... > | <form:listbox ... > | <form:checkbox ... >)+ >  +
@@ -5283,7 +7353,7 @@

form:combobox Element

form:auto-complete  form:control-implementation  form:convert-empty-to-null  - form:current-value[4]  + form:current-value[3]  form:data-field  form:disabled  form:dropdown  @@ -5300,7 +7370,7 @@

form:combobox Element

form:tab-index  form:tab-stop  form:title  - form:value[1]  + form:value[4]  xforms:bind  xml:id    @@ -5313,6 +7383,37 @@

form:combobox Element

<office:event-listeners>    + + Child Relations + <form:combobox + ( (form:name="<string>" )? + (form:control-implementation="QName]" )? + + (xml:id="<ID>" (form:id="<NCName>" )? + ) (xforms:bind="<string>" )? + ) (form:current-value="<string>" )? + (form:disabled="<boolean>" )? + (form:dropdown="<boolean>" )? + (form:max-length="<nonNegativeInteger>" )? + (form:printable="<boolean>" )? + (form:readonly="<boolean>" )? + (form:size="<nonNegativeInteger>" )? + (form:tab-index="<nonNegativeInteger>" )? + (form:tab-stop="<boolean>" )? + (form:title="<string>" )? + (form:value="<string>" )? + (form:convert-empty-to-null="<boolean>" )? + (form:data-field="<string>" )? + (form:list-source="<string>" )? + (form:list-source-type="table | query | sql | sql-pass-through | value-list | table-fields" )? + (form:linked-cell="string] | <string>" )? + (form:source-cell-range="string] | string] | string] | <string>" )? + (form:auto-complete="<boolean>" )? + + ( (<form:properties ... >)? + (<office:event-listeners ... >)? + )(<form:item ... >)* >  +
@@ -5340,6 +7441,10 @@

form:connection-resource Elemen   + + Child Relations + <form:connection-resource xlink:href="<anyIRI>" >  +
@@ -5357,7 +7462,7 @@

form:date Element

form:control-implementation  form:convert-empty-to-null  - form:current-value[2]  + form:current-value[4]  form:data-field  form:delay-for-repeat  form:disabled  @@ -5365,7 +7470,7 @@

form:date Element

form:linked-cell  form:max-length  form:max-value[3]  - form:min-value[3]  + form:min-value[4]  form:name  form:printable  form:readonly  @@ -5374,7 +7479,7 @@

form:date Element

form:tab-index  form:tab-stop  form:title  - form:value[2]  + form:value[1]  xforms:bind  xml:id    @@ -5386,6 +7491,37 @@

form:date Element

<office:event-listeners>    + + Child Relations + <form:date (form:value="<date>" )? + (form:current-value="<date>" )? + (form:min-value="<date>" )? + (form:max-value="<date>" )? + + ( + ( (form:name="<string>" )? + (form:control-implementation="QName]" )? + + (xml:id="<ID>" (form:id="<NCName>" )? + ) (xforms:bind="<string>" )? + ) (form:disabled="<boolean>" )? + (form:max-length="<nonNegativeInteger>" )? + (form:printable="<boolean>" )? + (form:readonly="<boolean>" )? + (form:tab-index="<nonNegativeInteger>" )? + (form:tab-stop="<boolean>" )? + (form:title="<string>" )? + (form:convert-empty-to-null="<boolean>" )? + (form:data-field="<string>" )? + ) + ( (<form:properties ... >)? + (<office:event-listeners ... >)? + ) (form:linked-cell="string] | <string>" )? + (form:spin-button="<boolean>" )? + (form:repeat="<boolean>" )? + (form:delay-for-repeat="<duration>" )? + >  +
@@ -5401,7 +7537,7 @@

form:file Element

Attributes form:control-implementation  - form:current-value[4]  + form:current-value[3]  form:disabled  form:id  form:linked-cell  @@ -5412,7 +7548,7 @@

form:file Element

form:tab-index  form:tab-stop  form:title  - form:value[1]  + form:value[4]  xforms:bind  xml:id    @@ -5424,6 +7560,30 @@

form:file Element

<office:event-listeners>    + + Child Relations + <form:file + ( + ( (form:name="<string>" )? + (form:control-implementation="QName]" )? + + (xml:id="<ID>" (form:id="<NCName>" )? + ) (xforms:bind="<string>" )? + ) (form:current-value="<string>" )? + (form:disabled="<boolean>" )? + (form:max-length="<nonNegativeInteger>" )? + (form:printable="<boolean>" )? + (form:readonly="<boolean>" )? + (form:tab-index="<nonNegativeInteger>" )? + (form:tab-stop="<boolean>" )? + (form:title="<string>" )? + (form:value="<string>" )? + (form:linked-cell="string] | <string>" )? + ) + ( (<form:properties ... >)? + (<office:event-listeners ... >)? + )>  +
@@ -5458,6 +7618,25 @@

form:fixed-text Element

<office:event-listeners>    + + Child Relations + <form:fixed-text + ( (form:name="<string>" )? + (form:control-implementation="QName]" )? + + (xml:id="<ID>" (form:id="<NCName>" )? + ) (xforms:bind="<string>" )? + ) (form:for="<string>" )? + (form:disabled="<boolean>" )? + (form:label="<string>" )? + (form:printable="<boolean>" )? + (form:title="<string>" )? + (form:multi-line="<boolean>" )? + + ( (<form:properties ... >)? + (<office:event-listeners ... >)? + )>  +
@@ -5528,6 +7707,35 @@

form:form Element

<office:event-listeners>    + + Child Relations + <form:form (form:name="<string>" )? + (form:control-implementation="QName]" )? + (xlink:type="simple" xlink:href="<anyIRI>" (xlink:actuate="onRequest" )? + )? + (office:target-frame="_self | _blank | _parent | _top | <string>" )? + (form:method="get | post | <string>" )? + (form:enctype="<string>" )? + (form:allow-deletes="<boolean>" )? + (form:allow-inserts="<boolean>" )? + (form:allow-updates="<boolean>" )? + (form:apply-filter="<boolean>" )? + (form:command-type="table | query | command" )? + (form:command="<string>" )? + (form:datasource="<anyIRI> | <string>" )? + (form:master-fields="<string>" )? + (form:detail-fields="<string>" )? + (form:escape-processing="<boolean>" )? + (form:filter="<string>" )? + (form:ignore-result="<boolean>" )? + (form:navigation-mode="none | current | parent" )? + (form:order="<string>" )? + (form:tab-cycle="records | current | page" )? + (<form:properties ... >)? + (<office:event-listeners ... >)? + (<form:text ... > | <form:textarea ... > | <form:formatted-text ... > | <form:number ... > | <form:date ... > | <form:time ... > | <form:combobox ... > | <form:listbox ... > | <form:checkbox ... > | <form:password ... > | <form:file ... > | <form:fixed-text ... > | <form:button ... > | <form:image ... > | <form:radio ... > | <form:frame ... > | <form:image-frame ... > | <form:hidden ... > | <form:grid ... > | <form:value-range ... > | <form:generic-control ... > | <form:form ... >)* (<form:connection-resource ... >)? + >  +
@@ -5545,15 +7753,15 @@

form:formatted-text Element

form:control-implementation  form:convert-empty-to-null  - form:current-value[4]  + form:current-value[3]  form:data-field  form:delay-for-repeat  form:disabled  form:id  form:linked-cell  form:max-length  - form:max-value[5]  - form:min-value[2]  + form:max-value[4]  + form:min-value[3]  form:name  form:printable  form:readonly  @@ -5563,7 +7771,7 @@

form:formatted-text Element

form:tab-stop  form:title  form:validation  - form:value[1]  + form:value[4]  xforms:bind  xml:id    @@ -5575,6 +7783,37 @@

form:formatted-text Element

<office:event-listeners>    + + Child Relations + <form:formatted-text + ( (form:name="<string>" )? + (form:control-implementation="QName]" )? + + (xml:id="<ID>" (form:id="<NCName>" )? + ) (xforms:bind="<string>" )? + ) (form:current-value="<string>" )? + (form:disabled="<boolean>" )? + (form:max-length="<nonNegativeInteger>" )? + (form:printable="<boolean>" )? + (form:readonly="<boolean>" )? + (form:tab-index="<nonNegativeInteger>" )? + (form:tab-stop="<boolean>" )? + (form:title="<string>" )? + (form:value="<string>" )? + (form:convert-empty-to-null="<boolean>" )? + (form:data-field="<string>" )? + (form:linked-cell="string] | <string>" )? + (form:spin-button="<boolean>" )? + (form:repeat="<boolean>" )? + (form:delay-for-repeat="<duration>" )? + (form:max-value="<string>" )? + (form:min-value="<string>" )? + (form:validation="<boolean>" )? + + ( (<form:properties ... >)? + (<office:event-listeners ... >)? + )>  +
@@ -5608,6 +7847,25 @@

form:frame Element

<office:event-listeners>    + + Child Relations + <form:frame + ( + ( (form:name="<string>" )? + (form:control-implementation="QName]" )? + + (xml:id="<ID>" (form:id="<NCName>" )? + ) (xforms:bind="<string>" )? + ) (form:disabled="<boolean>" )? + (form:for="<string>" )? + (form:label="<string>" )? + (form:printable="<boolean>" )? + (form:title="<string>" )? + ) + ( (<form:properties ... >)? + (<office:event-listeners ... >)? + )>  +
@@ -5636,6 +7894,19 @@

form:generic-control Element<office:event-listeners>    + + Child Relations + <form:generic-control + ( (form:name="<string>" )? + (form:control-implementation="QName]" )? + + (xml:id="<ID>" (form:id="<NCName>" )? + ) (xforms:bind="<string>" )? + ) + ( (<form:properties ... >)? + (<office:event-listeners ... >)? + )>  +
@@ -5670,6 +7941,25 @@

form:grid Element

<office:event-listeners>    + + Child Relations + <form:grid + ( + ( (form:name="<string>" )? + (form:control-implementation="QName]" )? + + (xml:id="<ID>" (form:id="<NCName>" )? + ) (xforms:bind="<string>" )? + ) (form:disabled="<boolean>" )? + (form:printable="<boolean>" )? + (form:tab-index="<nonNegativeInteger>" )? + (form:tab-stop="<boolean>" )? + (form:title="<string>" )? + ) + ( (<form:properties ... >)? + (<office:event-listeners ... >)? + )(<form:column ... >)* >  +
@@ -5687,7 +7977,7 @@

form:hidden Element

form:control-implementation  form:id  form:name  - form:value[1]  + form:value[4]  xforms:bind  xml:id    @@ -5699,6 +7989,21 @@

form:hidden Element

<office:event-listeners>    + + Child Relations + <form:hidden + ( + ( (form:name="<string>" )? + (form:control-implementation="QName]" )? + + (xml:id="<ID>" (form:id="<NCName>" )? + ) (xforms:bind="<string>" )? + ) (form:value="<string>" )? + ) + ( (<form:properties ... >)? + (<office:event-listeners ... >)? + )>  +
@@ -5723,7 +8028,7 @@

form:image Element

form:tab-index  form:tab-stop  form:title  - form:value[1]  + form:value[4]  office:target-frame  xforms:bind  xlink:href  @@ -5737,6 +8042,30 @@

form:image Element

<office:event-listeners>    + + Child Relations + <form:image + ( + ( (form:name="<string>" )? + (form:control-implementation="QName]" )? + + (xml:id="<ID>" (form:id="<NCName>" )? + ) (xforms:bind="<string>" )? + ) (form:button-type="submit | reset | push | url" )? + (form:disabled="<boolean>" )? + (form:image-data="<anyIRI>" )? + (form:printable="<boolean>" )? + (form:tab-index="<nonNegativeInteger>" )? + (form:tab-stop="<boolean>" )? + (office:target-frame="_self | _blank | _parent | _top | <string>" )? + (xlink:href="<anyIRI>" )? + (form:title="<string>" )? + (form:value="<string>" )? + ) + ( (<form:properties ... >)? + (<office:event-listeners ... >)? + )>  +
@@ -5771,6 +8100,26 @@

form:image-frame Element

<office:event-listeners>    + + Child Relations + <form:image-frame + ( + ( (form:name="<string>" )? + (form:control-implementation="QName]" )? + + (xml:id="<ID>" (form:id="<NCName>" )? + ) (xforms:bind="<string>" )? + ) (form:disabled="<boolean>" )? + (form:image-data="<anyIRI>" )? + (form:printable="<boolean>" )? + (form:readonly="<boolean>" )? + (form:title="<string>" )? + (form:data-field="<string>" )? + ) + ( (<form:properties ... >)? + (<office:event-listeners ... >)? + )>  +
@@ -5794,6 +8143,11 @@

form:item Element

  + + Child Relations + <form:item (form:label="<string>" )? + TEXT>  +
@@ -5816,7 +8170,7 @@

form:list-property Element

office:value-type[5]  office:value-type[6]  office:value-type[7]  - office:value-type[9]  + office:value-type[8]    @@ -5831,6 +8185,17 @@

form:list-property Element

<form:list-value[7]>*    + + Child Relations + <form:list-property form:property-name="<string>" + (office:value-type="float" (<form:list-value ... >)* ) | + (office:value-type="percentage" (<form:list-value ... >)* ) | + (office:value-type="currency" (<form:list-value ... >)* ) | + (office:value-type="date" (<form:list-value ... >)* ) | + (office:value-type="time" (<form:list-value ... >)* ) | + (office:value-type="boolean" (<form:list-value ... >)* ) | + (office:value-type="string" (<form:list-value ... >)* ) | office:value-type="void" >  +
@@ -5846,7 +8211,7 @@

form:list-value[1] Element

Attributes - office:string-value  + office:time-value    @@ -5854,6 +8219,10 @@

form:list-value[1] Element

  + + Child Relations + <form:list-value office:time-value="<duration>" >  +
@@ -5869,7 +8238,7 @@

form:list-value[2] Element

Attributes - office:value  + office:boolean-value    @@ -5877,6 +8246,10 @@

form:list-value[2] Element

  + + Child Relations + <form:list-value office:boolean-value="<boolean>" >  +
@@ -5892,7 +8265,7 @@

form:list-value[3] Element

Attributes - office:value  + office:date-value    @@ -5900,6 +8273,10 @@

form:list-value[3] Element

  + + Child Relations + <form:list-value office:date-value="<date> | <dateTime>" >  +
@@ -5915,7 +8292,7 @@

form:list-value[4] Element

Attributes - office:date-value  + office:string-value    @@ -5923,6 +8300,10 @@

form:list-value[4] Element

  + + Child Relations + <form:list-value office:string-value="<string>" >  +
@@ -5938,7 +8319,6 @@

form:list-value[5] Element

Attributes - office:currency  office:value    @@ -5947,6 +8327,10 @@

form:list-value[5] Element

  + + Child Relations + <form:list-value office:value="<double>" >  +
@@ -5962,7 +8346,8 @@

form:list-value[6] Element

Attributes - office:time-value  + office:currency  + office:value    @@ -5970,6 +8355,11 @@

form:list-value[6] Element

  + + Child Relations + <form:list-value office:value="<double>" (office:currency="<string>" )? + >  +
@@ -5985,7 +8375,7 @@

form:list-value[7] Element

Attributes - office:boolean-value  + office:value    @@ -5993,6 +8383,10 @@

form:list-value[7] Element

  + + Child Relations + <form:list-value office:value="<double>" >  +
@@ -6039,6 +8433,35 @@

form:listbox Element

<office:event-listeners>    + + Child Relations + <form:listbox + ( (form:name="<string>" )? + (form:control-implementation="QName]" )? + + (xml:id="<ID>" (form:id="<NCName>" )? + ) (xforms:bind="<string>" )? + ) (form:disabled="<boolean>" )? + (form:dropdown="<boolean>" )? + (form:printable="<boolean>" )? + (form:size="<nonNegativeInteger>" )? + (form:tab-index="<nonNegativeInteger>" )? + (form:tab-stop="<boolean>" )? + (form:title="<string>" )? + (form:bound-column="<string>" )? + (form:data-field="<string>" )? + (form:list-source="<string>" )? + (form:list-source-type="table | query | sql | sql-pass-through | value-list | table-fields" )? + (form:linked-cell="string] | <string>" )? + (form:list-linkage-type="selection | selection-indices" )? + (form:source-cell-range="string] | string] | string] | <string>" )? + (form:multiple="<boolean>" )? + (form:xforms-list-source="<string>" )? + + ( (<form:properties ... >)? + (<office:event-listeners ... >)? + )(<form:option ... >)* >  +
@@ -6056,15 +8479,15 @@

form:number Element

form:control-implementation  form:convert-empty-to-null  - form:current-value[3]  + form:current-value[2]  form:data-field  form:delay-for-repeat  form:disabled  form:id  form:linked-cell  form:max-length  - form:max-value[4]  - form:min-value[1]  + form:max-value[1]  + form:min-value[5]  form:name  form:printable  form:readonly  @@ -6073,7 +8496,7 @@

form:number Element

form:tab-index  form:tab-stop  form:title  - form:value[3]  + form:value[2]  xforms:bind  xml:id    @@ -6085,6 +8508,37 @@

form:number Element

<office:event-listeners>    + + Child Relations + <form:number (form:value="<double>" )? + (form:current-value="<double>" )? + (form:min-value="<double>" )? + (form:max-value="<double>" )? + + ( + ( (form:name="<string>" )? + (form:control-implementation="QName]" )? + + (xml:id="<ID>" (form:id="<NCName>" )? + ) (xforms:bind="<string>" )? + ) (form:disabled="<boolean>" )? + (form:max-length="<nonNegativeInteger>" )? + (form:printable="<boolean>" )? + (form:readonly="<boolean>" )? + (form:tab-index="<nonNegativeInteger>" )? + (form:tab-stop="<boolean>" )? + (form:title="<string>" )? + (form:convert-empty-to-null="<boolean>" )? + (form:data-field="<string>" )? + ) + ( (<form:properties ... >)? + (<office:event-listeners ... >)? + ) (form:linked-cell="string] | <string>" )? + (form:spin-button="<boolean>" )? + (form:repeat="<boolean>" )? + (form:delay-for-repeat="<duration>" )? + >  +
@@ -6103,7 +8557,7 @@

form:option Element

form:current-selected  form:label  form:selected  - form:value[1]  + form:value[4]    @@ -6111,6 +8565,15 @@

form:option Element

  + + Child Relations + <form:option + ( (form:current-selected="<boolean>" )? + (form:selected="<boolean>" )? + (form:label="<string>" )? + (form:value="<string>" )? + )TEXT>  +
@@ -6137,7 +8600,7 @@

form:password Element

form:tab-index  form:tab-stop  form:title  - form:value[1]  + form:value[4]  xforms:bind  xml:id    @@ -6149,6 +8612,29 @@

form:password Element

<office:event-listeners>    + + Child Relations + <form:password + ( (form:name="<string>" )? + (form:control-implementation="QName]" )? + + (xml:id="<ID>" (form:id="<NCName>" )? + ) (xforms:bind="<string>" )? + ) (form:disabled="<boolean>" )? + (form:max-length="<nonNegativeInteger>" )? + (form:printable="<boolean>" )? + (form:tab-index="<nonNegativeInteger>" )? + (form:tab-stop="<boolean>" )? + (form:title="<string>" )? + (form:value="<string>" )? + (form:convert-empty-to-null="<boolean>" )? + (form:linked-cell="string] | <string>" )? + (form:echo-char="string]" )? + + ( (<form:properties ... >)? + (<office:event-listeners ... >)? + )>  +
@@ -6193,6 +8679,10 @@

form:properties Element

<form:property>*    + + Child Relations + <form:properties (<form:property ... > | <form:list-property ... >)+ >  +
@@ -6221,7 +8711,7 @@

form:property Element

office:value-type[5]  office:value-type[6]  office:value-type[7]  - office:value-type[9]  + office:value-type[8]    @@ -6229,6 +8719,19 @@

form:property Element

  + + Child Relations + <form:property form:property-name="<string>" + (office:value-type="float" office:value="<double>" ) | + (office:value-type="percentage" office:value="<double>" ) | + (office:value-type="currency" office:value="<double>" (office:currency="<string>" )? + ) | + (office:value-type="date" office:date-value="<date> | <dateTime>" ) | + (office:value-type="time" office:time-value="<duration>" ) | + (office:value-type="boolean" office:boolean-value="<boolean>" ) | + (office:value-type="string" (office:string-value="<string>" )? + ) | office:value-type="void" >  +
@@ -6259,7 +8762,7 @@

form:radio Element

form:tab-index  form:tab-stop  form:title  - form:value[1]  + form:value[4]  form:visual-effect  xforms:bind  xml:id  @@ -6272,6 +8775,34 @@

form:radio Element

<office:event-listeners>    + + Child Relations + <form:radio + ( + ( (form:name="<string>" )? + (form:control-implementation="QName]" )? + + (xml:id="<ID>" (form:id="<NCName>" )? + ) (xforms:bind="<string>" )? + ) (form:current-selected="<boolean>" )? + (form:disabled="<boolean>" )? + (form:label="<string>" )? + (form:printable="<boolean>" )? + (form:selected="<boolean>" )? + (form:tab-index="<nonNegativeInteger>" )? + (form:tab-stop="<boolean>" )? + (form:title="<string>" )? + (form:value="<string>" )? + (form:data-field="<string>" )? + (form:visual-effect="flat | 3d" )? + form:image-position="center" | EMPTY | + (form:image-position="start | end | top | bottom" (form:image-align="start | center | end" )? + ) (form:linked-cell="string] | <string>" )? + ) + ( (<form:properties ... >)? + (<office:event-listeners ... >)? + )>  +
@@ -6289,7 +8820,7 @@

form:text Element

form:control-implementation  form:convert-empty-to-null  - form:current-value[4]  + form:current-value[3]  form:data-field  form:disabled  form:id  @@ -6301,7 +8832,7 @@

form:text Element

form:tab-index  form:tab-stop  form:title  - form:value[1]  + form:value[4]  xforms:bind  xml:id    @@ -6313,6 +8844,32 @@

form:text Element

<office:event-listeners>    + + Child Relations + <form:text + ( + ( (form:name="<string>" )? + (form:control-implementation="QName]" )? + + (xml:id="<ID>" (form:id="<NCName>" )? + ) (xforms:bind="<string>" )? + ) (form:current-value="<string>" )? + (form:disabled="<boolean>" )? + (form:max-length="<nonNegativeInteger>" )? + (form:printable="<boolean>" )? + (form:readonly="<boolean>" )? + (form:tab-index="<nonNegativeInteger>" )? + (form:tab-stop="<boolean>" )? + (form:title="<string>" )? + (form:value="<string>" )? + (form:convert-empty-to-null="<boolean>" )? + (form:data-field="<string>" )? + (form:linked-cell="string] | <string>" )? + ) + ( (<form:properties ... >)? + (<office:event-listeners ... >)? + )>  +
@@ -6330,7 +8887,7 @@

form:textarea Element

form:control-implementation  form:convert-empty-to-null  - form:current-value[4]  + form:current-value[3]  form:data-field  form:disabled  form:id  @@ -6342,7 +8899,7 @@

form:textarea Element

form:tab-index  form:tab-stop  form:title  - form:value[1]  + form:value[4]  xforms:bind  xml:id    @@ -6355,6 +8912,32 @@

form:textarea Element

<text:p>*    + + Child Relations + <form:textarea + ( + ( (form:name="<string>" )? + (form:control-implementation="QName]" )? + + (xml:id="<ID>" (form:id="<NCName>" )? + ) (xforms:bind="<string>" )? + ) (form:current-value="<string>" )? + (form:disabled="<boolean>" )? + (form:max-length="<nonNegativeInteger>" )? + (form:printable="<boolean>" )? + (form:readonly="<boolean>" )? + (form:tab-index="<nonNegativeInteger>" )? + (form:tab-stop="<boolean>" )? + (form:title="<string>" )? + (form:value="<string>" )? + (form:convert-empty-to-null="<boolean>" )? + (form:data-field="<string>" )? + (form:linked-cell="string] | <string>" )? + ) + ( (<form:properties ... >)? + (<office:event-listeners ... >)? + )(<text:p ... >)* >  +
@@ -6379,8 +8962,8 @@

form:time Element

form:id  form:linked-cell  form:max-length  - form:max-value[1]  - form:min-value[4]  + form:max-value[2]  + form:min-value[2]  form:name  form:printable  form:readonly  @@ -6389,7 +8972,7 @@

form:time Element

form:tab-index  form:tab-stop  form:title  - form:value[4]  + form:value[3]  xforms:bind  xml:id    @@ -6401,6 +8984,37 @@

form:time Element

<office:event-listeners>    + + Child Relations + <form:time (form:value="<time>" )? + (form:current-value="<time>" )? + (form:min-value="<time>" )? + (form:max-value="<time>" )? + + ( + ( (form:name="<string>" )? + (form:control-implementation="QName]" )? + + (xml:id="<ID>" (form:id="<NCName>" )? + ) (xforms:bind="<string>" )? + ) (form:disabled="<boolean>" )? + (form:max-length="<nonNegativeInteger>" )? + (form:printable="<boolean>" )? + (form:readonly="<boolean>" )? + (form:tab-index="<nonNegativeInteger>" )? + (form:tab-stop="<boolean>" )? + (form:title="<string>" )? + (form:convert-empty-to-null="<boolean>" )? + (form:data-field="<string>" )? + ) + ( (<form:properties ... >)? + (<office:event-listeners ... >)? + ) (form:linked-cell="string] | <string>" )? + (form:spin-button="<boolean>" )? + (form:repeat="<boolean>" )? + (form:delay-for-repeat="<duration>" )? + >  +
@@ -6420,8 +9034,8 @@

form:value-range Element

form:disabled  form:id  form:linked-cell  - form:max-value[2]  - form:min-value[5]  + form:max-value[5]  + form:min-value[1]  form:name  form:orientation  form:page-step-size  @@ -6431,7 +9045,7 @@

form:value-range Element

form:tab-index  form:tab-stop  form:title  - form:value[1]  + form:value[4]  xforms:bind  xml:id    @@ -6443,6 +9057,33 @@

form:value-range Element

<office:event-listeners>    + + Child Relations + <form:value-range + ( (form:name="<string>" )? + (form:control-implementation="QName]" )? + + (xml:id="<ID>" (form:id="<NCName>" )? + ) (xforms:bind="<string>" )? + ) (form:disabled="<boolean>" )? + (form:printable="<boolean>" )? + (form:tab-index="<nonNegativeInteger>" )? + (form:tab-stop="<boolean>" )? + (form:title="<string>" )? + (form:value="<string>" )? + (form:linked-cell="string] | <string>" )? + (form:repeat="<boolean>" )? + (form:delay-for-repeat="<duration>" )? + (form:max-value="<integer>" )? + (form:min-value="<integer>" )? + (form:step-size="<positiveInteger>" )? + (form:page-step-size="<positiveInteger>" )? + (form:orientation="horizontal | vertical" )? + + ( (<form:properties ... >)? + (<office:event-listeners ... >)? + )>  +
@@ -6468,6 +9109,10 @@

math:math Element

[any org.w3c.dom.Element]    + + Child Relations + <math:math (*:*="TEXT" | TEXT | <*:* ... >)+ >  +
@@ -6494,6 +9139,14 @@

meta:auto-reload Element (new   + + Child Relations + <meta:auto-reload (xlink:type="simple" xlink:href="<anyIRI>" (xlink:show="replace" )? + (xlink:actuate="onLoad" )? + )? + (meta:delay="<duration>" )? + >  +
@@ -6515,6 +9168,10 @@

meta:creation-date Element (   + + Child Relations + <meta:creation-date <dateTime>>  +
@@ -6536,6 +9193,10 @@

meta:date-string Element

  + + Child Relations + <meta:date-string <string>>  +
@@ -6572,6 +9233,25 @@

meta:document-statistic Element<   + + Child Relations + <meta:document-statistic (meta:page-count="<nonNegativeInteger>" )? + (meta:table-count="<nonNegativeInteger>" )? + (meta:draw-count="<nonNegativeInteger>" )? + (meta:image-count="<nonNegativeInteger>" )? + (meta:ole-object-count="<nonNegativeInteger>" )? + (meta:object-count="<nonNegativeInteger>" )? + (meta:paragraph-count="<nonNegativeInteger>" )? + (meta:word-count="<nonNegativeInteger>" )? + (meta:character-count="<nonNegativeInteger>" )? + (meta:frame-count="<nonNegativeInteger>" )? + (meta:sentence-count="<nonNegativeInteger>" )? + (meta:syllable-count="<nonNegativeInteger>" )? + (meta:non-whitespace-character-count="<nonNegativeInteger>" )? + (meta:row-count="<nonNegativeInteger>" )? + (meta:cell-count="<nonNegativeInteger>" )? + >  +
@@ -6593,6 +9273,10 @@

meta:editing-cycles Element    + + Child Relations + <meta:editing-cycles <nonNegativeInteger>>  +
@@ -6614,6 +9298,10 @@

meta:editing-duration Element&   + + Child Relations + <meta:editing-duration <duration>>  +
@@ -6635,6 +9323,10 @@

meta:generator Element (new in O   + + Child Relations + <meta:generator <string>>  +
@@ -6658,6 +9350,12 @@

meta:hyperlink-behaviour Elemen   + + Child Relations + <meta:hyperlink-behaviour (office:target-frame-name="_self | _blank | _parent | _top | <string>" )? + (xlink:show="new | replace" )? + >  +
@@ -6679,6 +9377,10 @@

meta:initial-creator Element&nb   + + Child Relations + <meta:initial-creator <string>>  +
@@ -6700,6 +9402,10 @@

meta:keyword Element (new in ODF 1   + + Child Relations + <meta:keyword <string>>  +
@@ -6721,6 +9427,10 @@

meta:print-date Element (new in   + + Child Relations + <meta:print-date <dateTime>>  +
@@ -6742,6 +9452,10 @@

meta:printed-by Element (new in   + + Child Relations + <meta:printed-by <string>>  +
@@ -6768,6 +9482,13 @@

meta:template Element (new in ODF   + + Child Relations + <meta:template xlink:type="simple" xlink:href="<anyIRI>" (xlink:actuate="onRequest" )? + (xlink:title="<string>" )? + (meta:date="<dateTime>" )? + >  +
@@ -6796,6 +9517,15 @@

meta:user-defined Element (ne   + + Child Relations + <meta:user-defined meta:name="<string>" + (meta:value-type="float" <double>) | + (meta:value-type="date" <date> | <dateTime>) | + (meta:value-type="time" <duration>) | + (meta:value-type="boolean" <boolean>) | + (meta:value-type="string" <string>) | TEXT>  +
@@ -6818,6 +9548,10 @@

number:am-pm Element

  + + Child Relations + <number:am-pm EMPTY>  +
@@ -6839,6 +9573,10 @@

number:boolean Element

  + + Child Relations + <number:boolean EMPTY>  +
@@ -6864,7 +9602,7 @@

number:boolean-style Elementnumber:transliteration-language  number:transliteration-style  style:display-name  - style:name[1]  + style:name[2]  style:volatile    @@ -6877,6 +9615,25 @@

number:boolean-style Element<style:text-properties>    + + Child Relations + <number:boolean-style style:name="<NCName>" (style:display-name="<string>" )? + (number:language="token]" )? + (number:country="token]" )? + (number:script="token]" )? + (number:rfc-language-tag="<language>" )? + (number:title="<string>" )? + (style:volatile="<boolean>" )? + (number:transliteration-format="<string>" )? + (number:transliteration-language="token]" )? + (number:transliteration-country="token]" )? + (number:transliteration-style="short | medium | long" )? + (<style:text-properties ... >)? + (<number:text ... >)? + (<number:boolean ... > (<number:text ... >)? + )? + (<style:map ... >)* >  +
@@ -6903,7 +9660,7 @@

number:currency-style Element< number:transliteration-language  number:transliteration-style  style:display-name  - style:name[1]  + style:name[2]  style:volatile    @@ -6917,6 +9674,37 @@

number:currency-style Element< <style:text-properties>    + + Child Relations + <number:currency-style style:name="<NCName>" (style:display-name="<string>" )? + (number:language="token]" )? + (number:country="token]" )? + (number:script="token]" )? + (number:rfc-language-tag="<language>" )? + (number:title="<string>" )? + (style:volatile="<boolean>" )? + (number:transliteration-format="<string>" )? + (number:transliteration-language="token]" )? + (number:transliteration-country="token]" )? + (number:transliteration-style="short | medium | long" )? + (number:automatic-order="<boolean>" )? + (<style:text-properties ... >)? + (<number:text ... >)? + ( + ( + (<number:number ... > (<number:text ... >)? + ) ( + (<number:currency-symbol ... > (<number:text ... >)? + ))? + ) | + ( + (<number:currency-symbol ... > (<number:text ... >)? + ) ( + (<number:number ... > (<number:text ... >)? + ))? + ))? + (<style:map ... >)* >  +
@@ -6943,6 +9731,15 @@

number:currency-symbol Element   + + Child Relations + <number:currency-symbol + ( (number:language="token]" )? + (number:country="token]" )? + (number:script="token]" )? + (number:rfc-language-tag="<language>" )? + )TEXT>  +
@@ -6970,7 +9767,7 @@

number:date-style Element

number:transliteration-language  number:transliteration-style  style:display-name  - style:name[1]  + style:name[2]  style:volatile    @@ -6993,6 +9790,26 @@

number:date-style Element

<style:text-properties>    + + Child Relations + <number:date-style style:name="<NCName>" (style:display-name="<string>" )? + (number:language="token]" )? + (number:country="token]" )? + (number:script="token]" )? + (number:rfc-language-tag="<language>" )? + (number:title="<string>" )? + (style:volatile="<boolean>" )? + (number:transliteration-format="<string>" )? + (number:transliteration-language="token]" )? + (number:transliteration-country="token]" )? + (number:transliteration-style="short | medium | long" )? + (number:automatic-order="<boolean>" )? + (number:format-source="fixed | language" )? + (<style:text-properties ... >)? + (<number:text ... >)? + (<number:day ... > | <number:month ... > | <number:year ... > | <number:era ... > | <number:day-of-week ... > | <number:week-of-year ... > | <number:quarter ... > | <number:hours ... > | <number:am-pm ... > | <number:minutes ... > | <number:seconds ... > (<number:text ... >)? + )+ (<style:map ... >)* >  +
@@ -7016,6 +9833,12 @@

number:day Element

  + + Child Relations + <number:day (number:style="short | long" )? + (number:calendar="gregorian | gengou | ROC | hanja_yoil | hanja | hijri | jewish | buddhist | <string>" )? + >  +
@@ -7039,6 +9862,12 @@

number:day-of-week Element

  + + Child Relations + <number:day-of-week (number:style="short | long" )? + (number:calendar="gregorian | gengou | ROC | hanja_yoil | hanja | hijri | jewish | buddhist | <string>" )? + >  +
@@ -7062,6 +9891,10 @@

number:embedded-text Element   + + Child Relations + <number:embedded-text number:position="<integer>" TEXT>  +
@@ -7085,6 +9918,12 @@

number:era Element

  + + Child Relations + <number:era (number:style="short | long" )? + (number:calendar="gregorian | gengou | ROC | hanja_yoil | hanja | hijri | jewish | buddhist | <string>" )? + >  +
@@ -7111,6 +9950,15 @@

number:fraction Element

  + + Child Relations + <number:fraction (number:min-numerator-digits="<integer>" )? + (number:min-denominator-digits="<integer>" )? + (number:denominator-value="<integer>" )? + (number:min-integer-digits="<integer>" )? + (number:grouping="<boolean>" )? + >  +
@@ -7134,6 +9982,11 @@

number:hours Element

  + + Child Relations + <number:hours (number:style="short | long" )? + >  +
@@ -7157,6 +10010,11 @@

number:minutes Element

  + + Child Relations + <number:minutes (number:style="short | long" )? + >  +
@@ -7182,6 +10040,14 @@

number:month Element

  + + Child Relations + <number:month (number:textual="<boolean>" )? + (number:possessive-form="<boolean>" )? + (number:style="short | long" )? + (number:calendar="gregorian | gengou | ROC | hanja_yoil | hanja | hijri | jewish | buddhist | <string>" )? + >  +
@@ -7211,6 +10077,15 @@

number:number Element

<number:embedded-text>*    + + Child Relations + <number:number (number:decimal-replacement="<string>" )? + (number:display-factor="<double>" )? + (number:decimal-places="<integer>" )? + (number:min-integer-digits="<integer>" )? + (number:grouping="<boolean>" )? + (<number:embedded-text ... >)* >  +
@@ -7236,7 +10111,7 @@

number:number-style Element

number:transliteration-language  number:transliteration-style  style:display-name  - style:name[1]  + style:name[2]  style:volatile    @@ -7251,6 +10126,25 @@

number:number-style Element

<style:text-properties>    + + Child Relations + <number:number-style style:name="<NCName>" (style:display-name="<string>" )? + (number:language="token]" )? + (number:country="token]" )? + (number:script="token]" )? + (number:rfc-language-tag="<language>" )? + (number:title="<string>" )? + (style:volatile="<boolean>" )? + (number:transliteration-format="<string>" )? + (number:transliteration-language="token]" )? + (number:transliteration-country="token]" )? + (number:transliteration-style="short | medium | long" )? + (<style:text-properties ... >)? + (<number:text ... >)? + (<number:number ... > | <number:scientific-number ... > | <number:fraction ... > (<number:text ... >)? + )? + (<style:map ... >)* >  +
@@ -7276,7 +10170,7 @@

number:percentage-style Element< number:transliteration-language  number:transliteration-style  style:display-name  - style:name[1]  + style:name[2]  style:volatile    @@ -7289,6 +10183,26 @@

number:percentage-style Element< <style:text-properties>    + + Child Relations + <number:percentage-style style:name="<NCName>" (style:display-name="<string>" )? + (number:language="token]" )? + (number:country="token]" )? + (number:script="token]" )? + (number:rfc-language-tag="<language>" )? + (number:title="<string>" )? + (style:volatile="<boolean>" )? + (number:transliteration-format="<string>" )? + (number:transliteration-language="token]" )? + (number:transliteration-country="token]" )? + (number:transliteration-style="short | medium | long" )? + (<style:text-properties ... >)? + (<number:text ... >)? + ( + (<number:number ... > (<number:text ... >)? + ))? + (<style:map ... >)* >  +
@@ -7312,6 +10226,12 @@

number:quarter Element

  + + Child Relations + <number:quarter (number:style="short | long" )? + (number:calendar="gregorian | gengou | ROC | hanja_yoil | hanja | hijri | jewish | buddhist | <string>" )? + >  +
@@ -7337,6 +10257,14 @@

number:scientific-number Elemen   + + Child Relations + <number:scientific-number (number:min-exponent-digits="<integer>" )? + (number:decimal-places="<integer>" )? + (number:min-integer-digits="<integer>" )? + (number:grouping="<boolean>" )? + >  +
@@ -7361,6 +10289,12 @@

number:seconds Element

  + + Child Relations + <number:seconds (number:style="short | long" )? + (number:decimal-places="<integer>" )? + >  +
@@ -7389,6 +10323,10 @@

number:text Element

  + + Child Relations + <number:text TEXT>  +
@@ -7410,6 +10348,10 @@

number:text-content Element

  + + Child Relations + <number:text-content EMPTY>  +
@@ -7435,7 +10377,7 @@

number:text-style Element

number:transliteration-language  number:transliteration-style  style:display-name  - style:name[1]  + style:name[2]  style:volatile    @@ -7448,6 +10390,24 @@

number:text-style Element

<style:text-properties>    + + Child Relations + <number:text-style style:name="<NCName>" (style:display-name="<string>" )? + (number:language="token]" )? + (number:country="token]" )? + (number:script="token]" )? + (number:rfc-language-tag="<language>" )? + (number:title="<string>" )? + (style:volatile="<boolean>" )? + (number:transliteration-format="<string>" )? + (number:transliteration-language="token]" )? + (number:transliteration-country="token]" )? + (number:transliteration-style="short | medium | long" )? + (<style:text-properties ... >)? + (<number:text ... >)? + (<number:text-content ... > (<number:text ... >)? + )* (<style:map ... >)* >  +
@@ -7475,7 +10435,7 @@

number:time-style Element

number:transliteration-style  number:truncate-on-overflow  style:display-name  - style:name[1]  + style:name[2]  style:volatile    @@ -7491,6 +10451,26 @@

number:time-style Element

<style:text-properties>    + + Child Relations + <number:time-style (number:truncate-on-overflow="<boolean>" )? + style:name="<NCName>" (style:display-name="<string>" )? + (number:language="token]" )? + (number:country="token]" )? + (number:script="token]" )? + (number:rfc-language-tag="<language>" )? + (number:title="<string>" )? + (style:volatile="<boolean>" )? + (number:transliteration-format="<string>" )? + (number:transliteration-language="token]" )? + (number:transliteration-country="token]" )? + (number:transliteration-style="short | medium | long" )? + (number:format-source="fixed | language" )? + (<style:text-properties ... >)? + (<number:text ... >)? + (<number:hours ... > | <number:am-pm ... > | <number:minutes ... > | <number:seconds ... > (<number:text ... >)? + )+ (<style:map ... >)* >  +
@@ -7513,6 +10493,11 @@

number:week-of-year Element

  + + Child Relations + <number:week-of-year (number:calendar="gregorian | gengou | ROC | hanja_yoil | hanja | hijri | jewish | buddhist | <string>" )? + >  +
@@ -7536,6 +10521,12 @@

number:year Element

  + + Child Relations + <number:year (number:style="short | long" )? + (number:calendar="gregorian | gengou | ROC | hanja_yoil | hanja | hijri | jewish | buddhist | <string>" )? + >  +
@@ -7562,7 +10553,7 @@

office:annotation Element

draw:caption-point-y  draw:class-names  draw:corner-radius  - draw:id[1]  + draw:id[2]  draw:layer  draw:name[1]  draw:style-name  @@ -7573,9 +10564,9 @@

office:annotation Element

office:name  presentation:class-names  presentation:style-name  - svg:height[2]  - svg:width[1]  - svg:x[2]  + svg:height[1]  + svg:width[2]  + svg:x[1]  svg:y[2]  table:end-cell-address  table:end-x  @@ -7596,6 +10587,48 @@

office:annotation Element

<text:p>*    + + Child Relations + <office:annotation (office:display="<boolean>" )? + (office:name="<string>" )? + (draw:caption-point-x="string]" draw:caption-point-y="string]" )? + (draw:corner-radius="string]" )? + + ( (svg:x="string]" )? + (svg:y="string]" )? + ) + ( (svg:width="string]" )? + (svg:height="string]" )? + ) + ( + ( (draw:z-index="<nonNegativeInteger>" )? + (xml:id="<ID>" (draw:id="<NCName>" )? + )? + (draw:layer="<string>" )? + + ( (draw:style-name="(<NCName>)?" )? + (draw:class-names=" +START_list(<NCName>)* +END_list" )? + ) | + ( (presentation:style-name="(<NCName>)?" )? + (presentation:class-names=" +START_list(<NCName>)* +END_list" )? + ) (draw:transform="<string>" )? + (draw:name="<string>" )? + (table:end-cell-address="string]" )? + (table:end-x="string]" )? + (table:end-y="string]" )? + (table:table-background="<boolean>" )? + (text:anchor-type="page | frame | paragraph | char | as-char" )? + (text:anchor-page-number="<positiveInteger>" )? + ) (draw:text-style-name="(<NCName>)?" )? + ) (<dc:creator ... >)? + (<dc:date ... >)? + (<meta:date-string ... >)? + (<text:p ... > | <text:list ... >)* >  +
@@ -7624,6 +10657,10 @@

office:annotation-end Element&   + + Child Relations + <office:annotation-end office:name="<string>" >  +
@@ -7657,6 +10694,10 @@

office:automatic-styles Element< <text:list-style>*    + + Child Relations + <office:automatic-styles (<style:style ... >)* (<text:list-style ... >)* (<number:number-style ... >)* (<number:currency-style ... >)* (<number:percentage-style ... >)* (<number:date-style ... >)* (<number:time-style ... >)* (<number:boolean-style ... >)* (<number:text-style ... >)* (<style:page-layout ... >)* >  +
@@ -7681,6 +10722,10 @@

office:binary-data Element

  + + Child Relations + <office:binary-data <base64Binary>>  +
@@ -7710,6 +10755,10 @@

office:body Element

<office:text>    + + Child Relations + <office:body <office:text ... > | <office:drawing ... > | <office:presentation ... > | <office:spreadsheet ... > | <office:chart ... > | <office:image ... > | <office:database ... >>  +
@@ -7740,6 +10789,10 @@

office:change-info Element

<text:p>*    + + Child Relations + <office:change-info <dc:creator ... ><dc:date ... >(<text:p ... >)* >  +
@@ -7775,6 +10828,27 @@

office:chart Element

<text:variable-decls>    + + Child Relations + <office:chart EMPTY + ( + ( (<text:variable-decls ... >)? + (<text:sequence-decls ... >)? + (<text:user-field-decls ... >)? + (<text:dde-connection-decls ... >)? + (<text:alphabetical-index-auto-mark-file ... >)? + ) + ( (<table:calculation-settings ... >)? + (<table:content-validations ... >)? + (<table:label-ranges ... >)? + ))<chart:chart ... > + ( (<table:named-expressions ... >)? + (<table:database-ranges ... >)? + (<table:data-pilot-tables ... >)? + (<table:consolidation ... >)? + (<table:dde-links ... >)? + )>  +
@@ -7802,6 +10876,15 @@

office:database Element (new in <db:table-representations>    + + Child Relations + <office:database <db:data-source ... > (<db:forms ... >)? + (<db:reports ... >)? + (<db:queries ... >)? + (<db:table-representations ... >)? + (<db:schema-definition ... >)? + >  +
@@ -7831,6 +10914,13 @@

office:dde-source Element

  + + Child Relations + <office:dde-source (office:name="<string>" )? + (office:conversion-mode="into-default-style-data-style | into-english-number | keep-text" )? + office:dde-application="<string>" office:dde-topic="<string>" office:dde-item="<string>" (office:automatic-update="<boolean>" )? + >  +
@@ -7864,6 +10954,20 @@

office:document Element

<office:styles>    + + Child Relations + <office:document office:mimetype="<string>" office:version="1.2" (grddl:transformation=" +START_list(<anyIRI>)* +END_list" )? + (<office:meta ... >)? + (<office:settings ... >)? + (<office:scripts ... >)? + (<office:font-face-decls ... >)? + (<office:styles ... >)? + (<office:automatic-styles ... >)? + (<office:master-styles ... >)? + <office:body ... >>  +
@@ -7890,6 +10994,16 @@

office:document-content Element< <office:scripts>    + + Child Relations + <office:document-content office:version="1.2" (grddl:transformation=" +START_list(<anyIRI>)* +END_list" )? + (<office:scripts ... >)? + (<office:font-face-decls ... >)? + (<office:automatic-styles ... >)? + <office:body ... >>  +
@@ -7913,6 +11027,14 @@

office:document-meta Element<office:meta>    + + Child Relations + <office:document-meta office:version="1.2" (grddl:transformation=" +START_list(<anyIRI>)* +END_list" )? + (<office:meta ... >)? + >  +
@@ -7936,6 +11058,14 @@

office:document-settings Elemen <office:settings>    + + Child Relations + <office:document-settings office:version="1.2" (grddl:transformation=" +START_list(<anyIRI>)* +END_list" )? + (<office:settings ... >)? + >  +
@@ -7962,6 +11092,17 @@

office:document-styles Element<office:styles>    + + Child Relations + <office:document-styles office:version="1.2" (grddl:transformation=" +START_list(<anyIRI>)* +END_list" )? + (<office:font-face-decls ... >)? + (<office:styles ... >)? + (<office:automatic-styles ... >)? + (<office:master-styles ... >)? + >  +
@@ -7997,6 +11138,27 @@

office:drawing Element

<text:variable-decls>    + + Child Relations + <office:drawing EMPTY + ( + ( (<text:variable-decls ... >)? + (<text:sequence-decls ... >)? + (<text:user-field-decls ... >)? + (<text:dde-connection-decls ... >)? + (<text:alphabetical-index-auto-mark-file ... >)? + ) + ( (<table:calculation-settings ... >)? + (<table:content-validations ... >)? + (<table:label-ranges ... >)? + ))(<draw:page ... >)* + ( (<table:named-expressions ... >)? + (<table:database-ranges ... >)? + (<table:data-pilot-tables ... >)? + (<table:consolidation ... >)? + (<table:dde-links ... >)? + )>  +
@@ -8062,6 +11224,10 @@

office:event-listeners Element<script:event-listener>*    + + Child Relations + <office:event-listeners (<script:event-listener ... > | <presentation:event-listener ... >)* >  +
@@ -8086,6 +11252,10 @@

office:font-face-decls Element<style:font-face>*    + + Child Relations + <office:font-face-decls (<style:font-face ... >)* >  +
@@ -8115,6 +11285,12 @@

office:forms Element

<xforms:model>*    + + Child Relations + <office:forms (form:automatic-focus="<boolean>" )? + (form:apply-design-mode="<boolean>" )? + (<form:form ... > | <xforms:model ... >)* >  +
@@ -8137,6 +11313,10 @@

office:image Element

<draw:frame>    + + Child Relations + <office:image EMPTYEMPTY<draw:frame ... >EMPTY>  +
@@ -8162,6 +11342,12 @@

office:master-styles Element<style:master-page>*    + + Child Relations + <office:master-styles (<style:master-page ... >)* (<style:handout-master ... >)? + (<draw:layer-set ... >)? + >  +
@@ -8203,6 +11389,10 @@

office:meta Element

<meta:user-defined>*    + + Child Relations + <office:meta (<meta:generator ... > | <dc:title ... > | <dc:description ... > | <dc:subject ... > | <meta:keyword ... > | <meta:initial-creator ... > | <dc:creator ... > | <meta:printed-by ... > | <meta:creation-date ... > | <dc:date ... > | <meta:print-date ... > | <meta:template ... > | <meta:auto-reload ... > | <meta:hyperlink-behaviour ... > | <dc:language ... > | <meta:editing-cycles ... > | <meta:editing-duration ... > | <meta:document-statistic ... > | <meta:user-defined ... >)* >  +
@@ -8242,6 +11432,29 @@

office:presentation Element

<text:variable-decls>    + + Child Relations + <office:presentation EMPTY + ( + ( (<text:variable-decls ... >)? + (<text:sequence-decls ... >)? + (<text:user-field-decls ... >)? + (<text:dde-connection-decls ... >)? + (<text:alphabetical-index-auto-mark-file ... >)? + ) + ( (<table:calculation-settings ... >)? + (<table:content-validations ... >)? + (<table:label-ranges ... >)? + )(<presentation:header-decl ... > | <presentation:footer-decl ... > | <presentation:date-time-decl ... >)* )(<draw:page ... >)* + ( (<presentation:settings ... >)? + + ( (<table:named-expressions ... >)? + (<table:database-ranges ... >)? + (<table:data-pilot-tables ... >)? + (<table:consolidation ... >)? + (<table:dde-links ... >)? + ))>  +
@@ -8265,6 +11478,10 @@

office:script Element

[any org.w3c.dom.Element]    + + Child Relations + <office:script script:language="<string>" (<*:* ... >)* >  +
@@ -8289,6 +11506,11 @@

office:scripts Element

<office:script>*    + + Child Relations + <office:scripts (<office:script ... >)* (<office:event-listeners ... >)? + >  +
@@ -8312,6 +11534,10 @@

office:settings Element

<config:config-item-set>*    + + Child Relations + <office:settings (<config:config-item-set ... >)+ >  +
@@ -8351,6 +11577,32 @@

office:spreadsheet Element

<text:variable-decls>    + + Child Relations + <office:spreadsheet + ( (table:structure-protected="<boolean>" )? + (table:protection-key="<string>" )? + (table:protection-key-digest-algorithm="<anyIRI>" )? + ) + ( (<table:tracked-changes ... >)? + + ( (<text:variable-decls ... >)? + (<text:sequence-decls ... >)? + (<text:user-field-decls ... >)? + (<text:dde-connection-decls ... >)? + (<text:alphabetical-index-auto-mark-file ... >)? + ) + ( (<table:calculation-settings ... >)? + (<table:content-validations ... >)? + (<table:label-ranges ... >)? + ))(<table:table ... >)* + ( (<table:named-expressions ... >)? + (<table:database-ranges ... >)? + (<table:data-pilot-tables ... >)? + (<table:consolidation ... >)? + (<table:dde-links ... >)? + )>  +
@@ -8398,6 +11650,14 @@

office:styles Element

<text:outline-style>    + + Child Relations + <office:styles (<style:style ... >)* (<text:list-style ... >)* (<number:number-style ... >)* (<number:currency-style ... >)* (<number:percentage-style ... >)* (<number:date-style ... >)* (<number:time-style ... >)* (<number:boolean-style ... >)* (<number:text-style ... >)* (<style:default-style ... >)* (<style:default-page-layout ... >)? + (<text:outline-style ... >)? + (<text:notes-configuration ... >)* (<text:bibliography-configuration ... >)? + (<text:linenumbering-configuration ... >)? + (<draw:gradient ... >)* (<svg:linearGradient ... >)* (<svg:radialGradient ... >)* (<draw:hatch ... >)* (<draw:fill-image ... >)* (<draw:marker ... >)* (<draw:stroke-dash ... >)* (<draw:opacity ... >)* (<style:presentation-page-layout ... >)* (<table:table-template ... >)* >  +
@@ -8472,6 +11732,32 @@

office:text Element

<text:variable-decls>    + + Child Relations + <office:text (text:global="<boolean>" )? + (text:use-soft-page-breaks="<boolean>" )? + + ( (<office:forms ... >)? + (<text:tracked-changes ... >)? + + ( (<text:variable-decls ... >)? + (<text:sequence-decls ... >)? + (<text:user-field-decls ... >)? + (<text:dde-connection-decls ... >)? + (<text:alphabetical-index-auto-mark-file ... >)? + ) + ( (<table:calculation-settings ... >)? + (<table:content-validations ... >)? + (<table:label-ranges ... >)? + ))(<text:h ... > | <text:p ... > | <text:list ... > | <text:numbered-paragraph ... > | <table:table ... > | <text:section ... > | <text:soft-page-break ... > | <text:table-of-content ... > | <text:illustration-index ... > | <text:table-index ... > | <text:object-index ... > | <text:user-index ... > | <text:alphabetical-index ... > | <text:bibliography ... > | <draw:rect ... > | <draw:line ... > | <draw:polyline ... > | <draw:polygon ... > | <draw:regular-polygon ... > | <draw:path ... > | <draw:circle ... > | <draw:ellipse ... > | <draw:g ... > | <draw:page-thumbnail ... > | <draw:frame ... > | <draw:measure ... > | <draw:caption ... > | <draw:connector ... > | <draw:control ... > | <dr3d:scene ... > | <draw:custom-shape ... > | <draw:a ... > | <text:change ... > | <text:change-start ... > | <text:change-end ... >)+ | EMPTY | + (<text:page-sequence ... >(<draw:rect ... > | <draw:line ... > | <draw:polyline ... > | <draw:polygon ... > | <draw:regular-polygon ... > | <draw:path ... > | <draw:circle ... > | <draw:ellipse ... > | <draw:g ... > | <draw:page-thumbnail ... > | <draw:frame ... > | <draw:measure ... > | <draw:caption ... > | <draw:connector ... > | <draw:control ... > | <dr3d:scene ... > | <draw:custom-shape ... > | <draw:a ... >)* ) + ( (<table:named-expressions ... >)? + (<table:database-ranges ... >)? + (<table:data-pilot-tables ... >)? + (<table:consolidation ... >)? + (<table:dde-links ... >)? + )>  +
@@ -8499,6 +11785,10 @@

presentation:animation-grou <presentation:show-text>*    + + Child Relations + <presentation:animation-group (<presentation:show-shape ... > | <presentation:show-text ... > | <presentation:hide-shape ... > | <presentation:hide-text ... > | <presentation:dim ... > | <presentation:play ... >)* >  +
@@ -8527,6 +11817,10 @@

presentation:animations Element< <presentation:show-text>*    + + Child Relations + <presentation:animations (<presentation:show-shape ... > | <presentation:show-text ... > | <presentation:hide-shape ... > | <presentation:hide-text ... > | <presentation:dim ... > | <presentation:play ... > | <presentation:animation-group ... >)* >  +
@@ -8554,6 +11848,10 @@

presentation:date-time Element   + + Child Relations + <presentation:date-time EMPTY>  +
@@ -8579,6 +11877,11 @@

presentation:date-time-decl   + + Child Relations + <presentation:date-time-decl presentation:name="<string>" presentation:source="fixed | current-date" (style:data-style-name="(<NCName>)?" )? + TEXT>  +
@@ -8604,6 +11907,11 @@

presentation:dim Element

<presentation:sound>    + + Child Relations + <presentation:dim draw:shape-id="<IDREF>" draw:color="string]" (<presentation:sound ... >)? + >  +
@@ -8627,7 +11935,7 @@

presentation:event-listener script:event-name  xlink:actuate[1]  xlink:href  - xlink:show[3]  + xlink:show[2]  xlink:type    @@ -8637,6 +11945,19 @@

presentation:event-listener <presentation:sound>    + + Child Relations + <presentation:event-listener script:event-name="<string>" presentation:action="none | previous-page | next-page | first-page | last-page | hide | stop | execute | show | verb | fade-out | sound | last-visited-page" (presentation:effect="none | fade | move | stripes | open | close | dissolve | wavyline | random | lines | laser | appear | hide | move-short | checkerboard | rotate | stretch" )? + (presentation:direction="none | from-left | from-top | from-right | from-bottom | from-center | from-upper-left | from-upper-right | from-lower-left | from-lower-right | to-left | to-top | to-right | to-bottom | to-upper-left | to-upper-right | to-lower-right | to-lower-left | path | spiral-inward-left | spiral-inward-right | spiral-outward-left | spiral-outward-right | vertical | horizontal | to-center | clockwise | counter-clockwise" )? + (presentation:speed="slow | medium | fast" )? + (presentation:start-scale="string]" )? + (xlink:type="simple" xlink:href="<anyIRI>" (xlink:show="embed" )? + (xlink:actuate="onRequest" )? + )? + (presentation:verb="<nonNegativeInteger>" )? + (<presentation:sound ... >)? + >  +
@@ -8664,6 +11985,10 @@

presentation:footer Element

  + + Child Relations + <presentation:footer EMPTY>  +
@@ -8687,6 +12012,10 @@

presentation:footer-decl Elemen   + + Child Relations + <presentation:footer-decl presentation:name="<string>" TEXT>  +
@@ -8714,6 +12043,10 @@

presentation:header Element

  + + Child Relations + <presentation:header EMPTY>  +
@@ -8737,6 +12070,10 @@

presentation:header-decl Elemen   + + Child Relations + <presentation:header-decl presentation:name="<string>" TEXT>  +
@@ -8767,6 +12104,17 @@

presentation:hide-shape Element< <presentation:sound>    + + Child Relations + <presentation:hide-shape draw:shape-id="<IDREF>" (presentation:effect="none | fade | move | stripes | open | close | dissolve | wavyline | random | lines | laser | appear | hide | move-short | checkerboard | rotate | stretch" )? + (presentation:direction="none | from-left | from-top | from-right | from-bottom | from-center | from-upper-left | from-upper-right | from-lower-left | from-lower-right | to-left | to-top | to-right | to-bottom | to-upper-left | to-upper-right | to-lower-right | to-lower-left | path | spiral-inward-left | spiral-inward-right | spiral-outward-left | spiral-outward-right | vertical | horizontal | to-center | clockwise | counter-clockwise" )? + (presentation:speed="slow | medium | fast" )? + (presentation:delay="<duration>" )? + (presentation:start-scale="string]" )? + (presentation:path-id="<string>" )? + (<presentation:sound ... >)? + >  +
@@ -8797,6 +12145,17 @@

presentation:hide-text Element<presentation:sound>    + + Child Relations + <presentation:hide-text draw:shape-id="<IDREF>" (presentation:effect="none | fade | move | stripes | open | close | dissolve | wavyline | random | lines | laser | appear | hide | move-short | checkerboard | rotate | stretch" )? + (presentation:direction="none | from-left | from-top | from-right | from-bottom | from-center | from-upper-left | from-upper-right | from-lower-left | from-lower-right | to-left | to-top | to-right | to-bottom | to-upper-left | to-upper-right | to-lower-right | to-lower-left | path | spiral-inward-left | spiral-inward-right | spiral-outward-left | spiral-outward-right | vertical | horizontal | to-center | clockwise | counter-clockwise" )? + (presentation:speed="slow | medium | fast" )? + (presentation:delay="<duration>" )? + (presentation:start-scale="string]" )? + (presentation:path-id="<string>" )? + (<presentation:sound ... >)? + >  +
@@ -8843,6 +12202,16 @@

presentation:notes Element

<office:forms>    + + Child Relations + <presentation:notes (presentation:use-header-name="<string>" )? + (presentation:use-footer-name="<string>" )? + (presentation:use-date-time-name="<string>" )? + (style:page-layout-name="(<NCName>)?" )? + (draw:style-name="(<NCName>)?" )? + (<office:forms ... >)? + (<draw:rect ... > | <draw:line ... > | <draw:polyline ... > | <draw:polygon ... > | <draw:regular-polygon ... > | <draw:path ... > | <draw:circle ... > | <draw:ellipse ... > | <draw:g ... > | <draw:page-thumbnail ... > | <draw:frame ... > | <draw:measure ... > | <draw:caption ... > | <draw:connector ... > | <draw:control ... > | <dr3d:scene ... > | <draw:custom-shape ... > | <draw:a ... >)* >  +
@@ -8858,9 +12227,9 @@

presentation:placeholder Elemen Attributes presentation:object  - svg:height[1]  - svg:width[2]  - svg:x[1]  + svg:height[2]  + svg:width[1]  + svg:x[2]  svg:y[1]    @@ -8869,6 +12238,10 @@

presentation:placeholder Elemen   + + Child Relations + <presentation:placeholder presentation:object="title | outline | subtitle | text | graphic | object | chart | table | orgchart | page | notes | handout | header | footer | date-time | page-number" svg:x="string] | string]" svg:y="string] | string]" svg:width="string] | string]" svg:height="string] | string]" >  +
@@ -8893,6 +12266,12 @@

presentation:play Element

  + + Child Relations + <presentation:play + (draw:shape-id="<IDREF>" (presentation:speed="slow | medium | fast" )? + )>  +
@@ -8929,6 +12308,24 @@

presentation:settings Element< <presentation:show>*    + + Child Relations + <presentation:settings (presentation:start-page="<string>" )? + (presentation:show="<string>" )? + (presentation:full-screen="<boolean>" )? + (presentation:endless="<boolean>" )? + (presentation:pause="<duration>" )? + (presentation:show-logo="<boolean>" )? + (presentation:force-manual="<boolean>" )? + (presentation:mouse-visible="<boolean>" )? + (presentation:mouse-as-pen="<boolean>" )? + (presentation:start-with-navigator="<boolean>" )? + (presentation:animations="enabled | disabled" )? + (presentation:transition-on-click="enabled | disabled" )? + (presentation:stay-on-top="<boolean>" )? + (presentation:show-end-of-presentation-slide="<boolean>" )? + (<presentation:show ... >)* >  +
@@ -8952,6 +12349,10 @@

presentation:show Element

  + + Child Relations + <presentation:show presentation:name="<string>" presentation:pages="<string>" >  +
@@ -8982,6 +12383,17 @@

presentation:show-shape Element< <presentation:sound>    + + Child Relations + <presentation:show-shape draw:shape-id="<IDREF>" (presentation:effect="none | fade | move | stripes | open | close | dissolve | wavyline | random | lines | laser | appear | hide | move-short | checkerboard | rotate | stretch" )? + (presentation:direction="none | from-left | from-top | from-right | from-bottom | from-center | from-upper-left | from-upper-right | from-lower-left | from-lower-right | to-left | to-top | to-right | to-bottom | to-upper-left | to-upper-right | to-lower-right | to-lower-left | path | spiral-inward-left | spiral-inward-right | spiral-outward-left | spiral-outward-right | vertical | horizontal | to-center | clockwise | counter-clockwise" )? + (presentation:speed="slow | medium | fast" )? + (presentation:delay="<duration>" )? + (presentation:start-scale="string]" )? + (presentation:path-id="<string>" )? + (<presentation:sound ... >)? + >  +
@@ -9012,6 +12424,17 @@

presentation:show-text Element<presentation:sound>    + + Child Relations + <presentation:show-text draw:shape-id="<IDREF>" (presentation:effect="none | fade | move | stripes | open | close | dissolve | wavyline | random | lines | laser | appear | hide | move-short | checkerboard | rotate | stretch" )? + (presentation:direction="none | from-left | from-top | from-right | from-bottom | from-center | from-upper-left | from-upper-right | from-lower-left | from-lower-right | to-left | to-top | to-right | to-bottom | to-upper-left | to-upper-right | to-lower-right | to-lower-left | path | spiral-inward-left | spiral-inward-right | spiral-outward-left | spiral-outward-right | vertical | horizontal | to-center | clockwise | counter-clockwise" )? + (presentation:speed="slow | medium | fast" )? + (presentation:delay="<duration>" )? + (presentation:start-scale="string]" )? + (presentation:path-id="<string>" )? + (<presentation:sound ... >)? + >  +
@@ -9045,6 +12468,14 @@

presentation:sound Element

  + + Child Relations + <presentation:sound (presentation:play-full="<boolean>" )? + (xml:id="<ID>" )? + xlink:type="simple" xlink:href="<anyIRI>" (xlink:actuate="onRequest" )? + (xlink:show="new | replace" )? + >  +
@@ -9072,6 +12503,12 @@

script:event-listener Element<   + + Child Relations + <script:event-listener script:event-name="<string>" script:language="<string>" script:macro-name="<string>" | + (xlink:type="simple" xlink:href="<anyIRI>" (xlink:actuate="onRequest" )? + )>  +
@@ -9095,11 +12532,11 @@

style:background-image Element draw:opacity  style:filter-name  - style:position[1]  + style:position[2]  style:repeat  xlink:actuate[2]  xlink:href  - xlink:show[3]  + xlink:show[2]  xlink:type    @@ -9109,6 +12546,22 @@

style:background-image Element<office:binary-data>    + + Child Relations + <style:background-image (style:repeat="no-repeat | repeat | stretch" )? + (style:position="left | center | right | top | bottom | +START_listleft | center | righttop | center | bottom +END_list | +START_listtop | center | bottomleft | center | right +END_list" )? + (style:filter-name="<string>" )? + (draw:opacity="string]" )? + ( + (xlink:type="simple" xlink:href="<anyIRI>" (xlink:show="embed" )? + (xlink:actuate="onLoad" )? + ) | <office:binary-data ... >)? + >  +
@@ -9204,6 +12657,81 @@

style:chart-properties Element<chart:symbol-image>    + + Child Relations + <style:chart-properties + ( (chart:scale-text="<boolean>" )? + (chart:three-dimensional="<boolean>" )? + (chart:deep="<boolean>" )? + (chart:right-angled-axes="<boolean>" )? + (chart:symbol-type="none" | chart:symbol-type="automatic" | + (chart:symbol-type="named-symbol" chart:symbol-name="square | diamond | arrow-down | arrow-up | arrow-right | arrow-left | bow-tie | hourglass | circle | star | x | plus | asterisk | horizontal-bar | vertical-bar" ) | + (chart:symbol-type="image" <chart:symbol-image ... >))? + (chart:symbol-width="string]" )? + (chart:symbol-height="string]" )? + (chart:sort-by-x-values="<boolean>" )? + (chart:vertical="<boolean>" )? + (chart:connect-bars="<boolean>" )? + (chart:gap-width="<integer>" )? + (chart:overlap="<integer>" )? + (chart:group-bars-per-axis="<boolean>" )? + (chart:japanese-candle-stick="<boolean>" )? + (chart:interpolation="none | cubic-spline | b-spline" )? + (chart:spline-order="<positiveInteger>" )? + (chart:spline-resolution="<positiveInteger>" )? + (chart:pie-offset="<nonNegativeInteger>" )? + (chart:angle-offset="<string>" )? + (chart:hole-size="string]" )? + (chart:lines="<boolean>" )? + (chart:solid-type="cuboid | cylinder | cone | pyramid" )? + (chart:stacked="<boolean>" )? + (chart:percentage="<boolean>" )? + (chart:treat-empty-cells="use-zero | leave-gap | ignore" )? + (chart:link-data-style-to-source="<boolean>" )? + (chart:logarithmic="<boolean>" )? + (chart:maximum="<double>" )? + (chart:minimum="<double>" )? + (chart:origin="<double>" )? + (chart:interval-major="<double>" )? + (chart:interval-minor-divisor="<positiveInteger>" )? + (chart:tick-marks-major-inner="<boolean>" )? + (chart:tick-marks-major-outer="<boolean>" )? + (chart:tick-marks-minor-inner="<boolean>" )? + (chart:tick-marks-minor-outer="<boolean>" )? + (chart:reverse-direction="<boolean>" )? + (chart:display-label="<boolean>" )? + (chart:text-overlap="<boolean>" )? + (text:line-break="<boolean>" )? + (chart:label-arrangement="side-by-side | stagger-even | stagger-odd" )? + (style:direction="ltr | ttb" )? + (style:rotation-angle="<string>" )? + (chart:data-label-number="none | value | percentage | value-and-percentage" )? + (chart:data-label-text="<boolean>" )? + (chart:data-label-symbol="<boolean>" )? + (<chart:label-separator ... >)? + (chart:label-position="avoid-overlap | center | top | top-right | right | bottom-right | bottom | bottom-left | left | top-left | inside | outside | near-origin" )? + (chart:label-position-negative="avoid-overlap | center | top | top-right | right | bottom-right | bottom | bottom-left | left | top-left | inside | outside | near-origin" )? + (chart:visible="<boolean>" )? + (chart:auto-position="<boolean>" )? + (chart:auto-size="<boolean>" )? + (chart:mean-value="<boolean>" )? + (chart:error-category="none | variance | standard-deviation | percentage | error-margin | constant | standard-error | cell-range" )? + (chart:error-percentage="<double>" )? + (chart:error-margin="<double>" )? + (chart:error-lower-limit="<double>" )? + (chart:error-upper-limit="<double>" )? + (chart:error-upper-indicator="<boolean>" )? + (chart:error-lower-indicator="<boolean>" )? + (chart:error-lower-range="<string>" )? + (chart:error-upper-range="<string>" )? + (chart:series-source="columns | rows" )? + (chart:regression-type="none | linear | logarithmic | exponential | power" )? + (chart:axis-position="start | end | <double>" )? + (chart:axis-label-position="near-axis | near-axis-other-side | outside-start | outside-end" )? + (chart:tick-mark-position="at-labels | at-axis | at-labels-and-axis" )? + (chart:include-hidden-cells="<boolean>" )? + EMPTY)>  +
@@ -9222,7 +12750,7 @@

style:column Element (new in ODF 1 fo:space-after  fo:space-before  fo:start-indent  - style:rel-width[3]  + style:rel-width[1]    @@ -9230,6 +12758,14 @@

style:column Element (new in ODF 1   + + Child Relations + <style:column style:rel-width="string]" (fo:start-indent="string]" )? + (fo:end-indent="string]" )? + (fo:space-before="string]" )? + (fo:space-after="string]" )? + >  +
@@ -9247,8 +12783,8 @@

style:column-sep Element (new style:color  style:height  style:style  - style:vertical-align[1]  - style:width[1]  + style:vertical-align[3]  + style:width[2]    @@ -9256,6 +12792,14 @@

style:column-sep Element (new   + + Child Relations + <style:column-sep (style:style="none | solid | dotted | dashed | dot-dashed" )? + style:width="string]" (style:height="string]" )? + (style:vertical-align="top | middle | bottom" )? + (style:color="string]" )? + >  +
@@ -9283,6 +12827,12 @@

style:columns Element (new in ODF <style:column-sep>    + + Child Relations + <style:columns fo:column-count="<positiveInteger>" (fo:column-gap="string]" )? + (<style:column-sep ... >)? + (<style:column ... >)* >  +
@@ -9307,6 +12857,14 @@

style:default-page-layout Elem <style:page-layout-properties>    + + Child Relations + <style:default-page-layout + ( (<style:page-layout-properties ... >)? + (<style:header-style ... >)? + (<style:footer-style ... >)? + )>  +
@@ -9350,6 +12908,40 @@

style:default-style Element

<style:text-properties>    + + Child Relations + <style:default-style + (style:family="text" (<style:text-properties ... >)? + ) | + (style:family="paragraph" (<style:paragraph-properties ... >)? + (<style:text-properties ... >)? + ) | + (style:family="section" (<style:section-properties ... >)? + ) | + (style:family="ruby" (<style:ruby-properties ... >)? + ) | + (style:family="table" (<style:table-properties ... >)? + ) | + (style:family="table-column" (<style:table-column-properties ... >)? + ) | + (style:family="table-row" (<style:table-row-properties ... >)? + ) | + (style:family="table-cell" (<style:table-cell-properties ... >)? + (<style:paragraph-properties ... >)? + (<style:text-properties ... >)? + ) | + (style:family="graphic | presentation" (<style:graphic-properties ... >)? + (<style:paragraph-properties ... >)? + (<style:text-properties ... >)? + ) | + (style:family="drawing-page" (<style:drawing-page-properties ... >)? + ) | + (style:family="chart" (<style:chart-properties ... >)? + (<style:graphic-properties ... >)? + (<style:paragraph-properties ... >)? + (<style:text-properties ... >)? + )>  +
@@ -9407,6 +12999,48 @@

style:drawing-page-propert <presentation:sound>    + + Child Relations + <style:drawing-page-properties + ( (draw:fill="none | solid | bitmap | gradient | hatch" )? + (draw:fill-color="string]" )? + (draw:secondary-fill-color="string]" )? + (draw:fill-gradient-name="(<NCName>)?" )? + (draw:gradient-step-count="<nonNegativeInteger>" )? + (draw:fill-hatch-name="(<NCName>)?" )? + (draw:fill-hatch-solid="<boolean>" )? + (draw:fill-image-name="(<NCName>)?" )? + (style:repeat="no-repeat | repeat | stretch" )? + (draw:fill-image-width="string] | string]" )? + (draw:fill-image-height="string] | string]" )? + (draw:fill-image-ref-point-x="string]" )? + (draw:fill-image-ref-point-y="string]" )? + (draw:fill-image-ref-point="top-left | top | top-right | left | center | right | bottom-left | bottom | bottom-right" )? + (draw:tile-repeat-offset=" +START_liststring]horizontal | vertical +END_list" )? + (draw:opacity="string]" )? + (draw:opacity-name="(<NCName>)?" )? + (svg:fill-rule="nonzero | evenodd" )? + (presentation:transition-type="manual | automatic | semi-automatic" )? + (presentation:transition-style="none | fade-from-left | fade-from-top | fade-from-right | fade-from-bottom | fade-from-upperleft | fade-from-upperright | fade-from-lowerleft | fade-from-lowerright | move-from-left | move-from-top | move-from-right | move-from-bottom | move-from-upperleft | move-from-upperright | move-from-lowerleft | move-from-lowerright | uncover-to-left | uncover-to-top | uncover-to-right | uncover-to-bottom | uncover-to-upperleft | uncover-to-upperright | uncover-to-lowerleft | uncover-to-lowerright | fade-to-center | fade-from-center | vertical-stripes | horizontal-stripes | clockwise | counterclockwise | open-vertical | open-horizontal | close-vertical | close-horizontal | wavyline-from-left | wavyline-from-top | wavyline-from-right | wavyline-from-bottom | spiralin-left | spiralin-right | spiralout-left | spiralout-right | roll-from-top | roll-from-left | roll-from-right | roll-from-bottom | stretch-from-left | stretch-from-top | stretch-from-right | stretch-from-bottom | vertical-lines | horizontal-lines | dissolve | random | vertical-checkerboard | horizontal-checkerboard | interlocking-horizontal-left | interlocking-horizontal-right | interlocking-vertical-top | interlocking-vertical-bottom | fly-away | open | close | melt" )? + (presentation:transition-speed="slow | medium | fast" )? + (smil:type="<string>" )? + (smil:subtype="<string>" )? + (smil:direction="forward | reverse" )? + (smil:fadeColor="string]" )? + (presentation:duration="<duration>" )? + (presentation:visibility="visible | hidden" )? + (draw:background-size="full | border" )? + (presentation:background-objects-visible="<boolean>" )? + (presentation:background-visible="<boolean>" )? + (presentation:display-header="<boolean>" )? + (presentation:display-footer="<boolean>" )? + (presentation:display-page-number="<boolean>" )? + (presentation:display-date-time="<boolean>" )? + (<presentation:sound ... >)? + )>  +
@@ -9432,6 +13066,14 @@

style:drop-cap Element (new in O   + + Child Relations + <style:drop-cap (style:length="word | <positiveInteger>" )? + (style:lines="<positiveInteger>" )? + (style:distance="string]" )? + (style:style-name="(<NCName>)?" )? + >  +
@@ -9450,7 +13092,7 @@

style:font-face Element

style:font-charset  style:font-family-generic  style:font-pitch  - style:name[2]  + style:name[1]  svg:accent-height  svg:alphabetic  svg:ascent  @@ -9493,6 +13135,49 @@

style:font-face Element

<svg:font-face-src>    + + Child Relations + <style:font-face (svg:font-family="<string>" )? + (svg:font-style="normal | italic | oblique" )? + (svg:font-variant="normal | small-caps" )? + (svg:font-weight="normal | bold | 100 | 200 | 300 | 400 | 500 | 600 | 700 | 800 | 900" )? + (svg:font-stretch="normal | ultra-condensed | extra-condensed | condensed | semi-condensed | semi-expanded | expanded | extra-expanded | ultra-expanded" )? + (svg:font-size="string]" )? + (svg:unicode-range="<string>" )? + (svg:units-per-em="<integer>" )? + (svg:panose-1="<string>" )? + (svg:stemv="<integer>" )? + (svg:stemh="<integer>" )? + (svg:slope="<integer>" )? + (svg:cap-height="<integer>" )? + (svg:x-height="<integer>" )? + (svg:accent-height="<integer>" )? + (svg:ascent="<integer>" )? + (svg:descent="<integer>" )? + (svg:widths="<string>" )? + (svg:bbox="<string>" )? + (svg:ideographic="<integer>" )? + (svg:alphabetic="<integer>" )? + (svg:mathematical="<integer>" )? + (svg:hanging="<integer>" )? + (svg:v-ideographic="<integer>" )? + (svg:v-alphabetic="<integer>" )? + (svg:v-mathematical="<integer>" )? + (svg:v-hanging="<integer>" )? + (svg:underline-position="<integer>" )? + (svg:underline-thickness="<integer>" )? + (svg:strikethrough-position="<integer>" )? + (svg:strikethrough-thickness="<integer>" )? + (svg:overline-position="<integer>" )? + (svg:overline-thickness="<integer>" )? + style:name="<string>" (style:font-adornments="<string>" )? + (style:font-family-generic="roman | swiss | modern | decorative | script | system" )? + (style:font-pitch="fixed | variable" )? + (style:font-charset="string]" )? + (<svg:font-face-src ... >)? + (<svg:definition-src ... >)? + >  +
@@ -9540,6 +13225,23 @@

style:footer Element

<text:variable-decls>    + + Child Relations + <style:footer (style:display="<boolean>" )? + + ( (<text:tracked-changes ... >)? + + ( (<text:variable-decls ... >)? + (<text:sequence-decls ... >)? + (<text:user-field-decls ... >)? + (<text:dde-connection-decls ... >)? + (<text:alphabetical-index-auto-mark-file ... >)? + )(<text:h ... > | <text:p ... > | <text:list ... > | <table:table ... > | <text:section ... > | <text:table-of-content ... > | <text:illustration-index ... > | <text:table-index ... > | <text:object-index ... > | <text:user-index ... > | <text:alphabetical-index ... > | <text:bibliography ... > | <text:index-title ... > | <text:change ... > | <text:change-start ... > | <text:change-end ... >)* ) | + ( (<style:region-left ... >)? + (<style:region-center ... >)? + (<style:region-right ... >)? + )>  +
@@ -9587,6 +13289,23 @@

style:footer-left Element

<text:variable-decls>    + + Child Relations + <style:footer-left (style:display="<boolean>" )? + + ( (<text:tracked-changes ... >)? + + ( (<text:variable-decls ... >)? + (<text:sequence-decls ... >)? + (<text:user-field-decls ... >)? + (<text:dde-connection-decls ... >)? + (<text:alphabetical-index-auto-mark-file ... >)? + )(<text:h ... > | <text:p ... > | <text:list ... > | <table:table ... > | <text:section ... > | <text:table-of-content ... > | <text:illustration-index ... > | <text:table-index ... > | <text:object-index ... > | <text:user-index ... > | <text:alphabetical-index ... > | <text:bibliography ... > | <text:index-title ... > | <text:change ... > | <text:change-start ... > | <text:change-end ... >)* ) | + ( (<style:region-left ... >)? + (<style:region-center ... >)? + (<style:region-right ... >)? + )>  +
@@ -9610,6 +13329,11 @@

style:footer-style Element

<style:header-footer-properties>    + + Child Relations + <style:footer-style (<style:header-footer-properties ... >)? + >  +
@@ -9630,7 +13354,7 @@

style:footnote-sep Element ( style:distance-before-sep  style:line-style  style:rel-width[2]  - style:width[1]  + style:width[2]    @@ -9638,6 +13362,18 @@

style:footnote-sep Element (   + + Child Relations + <style:footnote-sep + ( (style:width="string]" )? + (style:rel-width="string]" )? + (style:color="string]" )? + (style:line-style="none | solid | dotted | dash | long-dash | dot-dash | dot-dot-dash | wave" )? + (style:adjustment="left | center | right" )? + (style:distance-before-sep="string]" )? + (style:distance-after-sep="string]" )? + )>  +
@@ -9768,12 +13504,12 @@

style:graphic-properties Elemen fo:clip  fo:margin  fo:margin-bottom  - fo:margin-left[2]  + fo:margin-left[1]  fo:margin-right  fo:margin-top  fo:max-height  fo:max-width  - fo:min-height[1]  + fo:min-height[2]  fo:min-width  fo:padding  fo:padding-bottom  @@ -9795,9 +13531,9 @@

style:graphic-properties Elemen style:number-wrapped-paragraphs  style:overflow-behavior  style:print-content  - style:protect[1]  + style:protect[2]  style:rel-height  - style:rel-width[1]  + style:rel-width[3]  style:repeat  style:run-through  style:shadow  @@ -9810,13 +13546,13 @@

style:graphic-properties Elemen style:wrap-dynamic-threshold  style:writing-mode  svg:fill-rule  - svg:height[2]  + svg:height[1]  svg:stroke-color  svg:stroke-linecap  svg:stroke-opacity  svg:stroke-width  - svg:width[1]  - svg:x[2]  + svg:width[2]  + svg:x[1]  svg:y[2]  text:anchor-page-number  text:anchor-type  @@ -9837,6 +13573,216 @@

style:graphic-properties Elemen <text:list-style>    + + Child Relations + <style:graphic-properties + ( (draw:stroke="none | dash | solid" )? + (draw:stroke-dash="(<NCName>)?" )? + (draw:stroke-dash-names=" +START_list(<NCName>)* +END_list" )? + (svg:stroke-width="string]" )? + (svg:stroke-color="string]" )? + (draw:marker-start="(<NCName>)?" )? + (draw:marker-end="(<NCName>)?" )? + (draw:marker-start-width="string]" )? + (draw:marker-end-width="string]" )? + (draw:marker-start-center="<boolean>" )? + (draw:marker-end-center="<boolean>" )? + (svg:stroke-opacity="double] | string]" )? + (draw:stroke-linejoin="miter | round | bevel | middle | none" )? + (svg:stroke-linecap="butt | square | round" )? + (draw:symbol-color="string]" )? + (text:animation="none | scroll | alternate | slide" )? + (text:animation-direction="left | right | up | down" )? + (text:animation-start-inside="<boolean>" )? + (text:animation-stop-inside="<boolean>" )? + (text:animation-repeat="<nonNegativeInteger>" )? + (text:animation-delay="<duration>" )? + (text:animation-steps="string]" )? + (draw:auto-grow-width="<boolean>" )? + (draw:auto-grow-height="<boolean>" )? + (draw:fit-to-size="<boolean>" )? + (draw:fit-to-contour="<boolean>" )? + (draw:textarea-vertical-align="top | middle | bottom | justify" )? + (draw:textarea-horizontal-align="left | center | right | justify" )? + (fo:wrap-option="no-wrap | wrap" )? + (style:shrink-to-fit="<boolean>" )? + (draw:color-mode="greyscale | mono | watermark | standard" )? + (draw:color-inversion="<boolean>" )? + (draw:luminance="string]" )? + (draw:contrast="string]" )? + (draw:gamma="string]" )? + (draw:red="string]" )? + (draw:green="string]" )? + (draw:blue="string]" )? + (draw:image-opacity="string]" )? + (draw:shadow="visible | hidden" )? + (draw:shadow-offset-x="string]" )? + (draw:shadow-offset-y="string]" )? + (draw:shadow-color="string]" )? + (draw:shadow-opacity="string]" )? + (draw:start-line-spacing-horizontal="string]" )? + (draw:start-line-spacing-vertical="string]" )? + (draw:end-line-spacing-horizontal="string]" )? + (draw:end-line-spacing-vertical="string]" )? + (draw:line-distance="string]" )? + (draw:guide-overhang="string]" )? + (draw:guide-distance="string]" )? + (draw:start-guide="string]" )? + (draw:end-guide="string]" )? + (draw:placing="below | above" )? + (draw:parallel="<boolean>" )? + (draw:measure-align="automatic | left-outside | inside | right-outside" )? + (draw:measure-vertical-align="automatic | above | below | center" )? + (draw:unit="automatic | mm | cm | m | km | pt | pc | inch | ft | mi" )? + (draw:show-unit="<boolean>" )? + (draw:decimal-places="<nonNegativeInteger>" )? + (draw:caption-type="straight-line | angled-line | angled-connector-line" )? + (draw:caption-angle-type="fixed | free" )? + (draw:caption-angle="<string>" )? + (draw:caption-gap="string]" )? + (draw:caption-escape-direction="horizontal | vertical | auto" )? + (draw:caption-escape="string] | string]" )? + (draw:caption-line-length="string]" )? + (draw:caption-fit-line-length="<boolean>" )? + (dr3d:horizontal-segments="<nonNegativeInteger>" )? + (dr3d:vertical-segments="<nonNegativeInteger>" )? + (dr3d:edge-rounding="string]" )? + (dr3d:edge-rounding-mode="correct | attractive" )? + (dr3d:back-scale="string]" )? + (dr3d:depth="string]" )? + (dr3d:backface-culling="enabled | disabled" )? + (dr3d:end-angle="<string>" )? + (dr3d:close-front="<boolean>" )? + (dr3d:close-back="<boolean>" )? + (dr3d:lighting-mode="standard | double-sided" )? + (dr3d:normals-kind="object | flat | sphere" )? + (dr3d:normals-direction="normal | inverse" )? + (dr3d:texture-generation-mode-x="object | parallel | sphere" )? + (dr3d:texture-generation-mode-y="object | parallel | sphere" )? + (dr3d:texture-kind="luminance | intensity | color" )? + (dr3d:texture-filter="enabled | disabled" )? + (dr3d:texture-mode="replace | modulate | blend" )? + (dr3d:ambient-color="string]" )? + (dr3d:emissive-color="string]" )? + (dr3d:specular-color="string]" )? + (dr3d:diffuse-color="string]" )? + (dr3d:shininess="string]" )? + (dr3d:shadow="visible | hidden" )? + + ( + ( (svg:width="string]" )? + (svg:height="string]" )? + ) (style:rel-width="string] | scale | scale-min" )? + (style:rel-height="string] | scale | scale-min" )? + ) (fo:min-width="string] | string]" )? + (fo:min-height="string] | string]" )? + (fo:max-height="string] | string]" )? + (fo:max-width="string] | string]" )? + + ( (fo:margin-left="string] | string]" )? + (fo:margin-right="string] | string]" )? + ) + ( (fo:margin-top="string] | string]" )? + (fo:margin-bottom="string] | string]" )? + ) (fo:margin="string] | string]" )? + (style:print-content="<boolean>" )? + (style:protect="none | +START_list(content | position | size)+ +END_list" )? + (style:horizontal-pos="left | center | right | from-left | inside | outside | from-inside" )? + (svg:x="string]" )? + (style:horizontal-rel="page | page-content | page-start-margin | page-end-margin | frame | frame-content | frame-start-margin | frame-end-margin | paragraph | paragraph-content | paragraph-start-margin | paragraph-end-margin | char" )? + + ( (style:vertical-pos="top | middle | bottom | from-top | below" )? + (svg:y="string]" )? + ) (style:vertical-rel="page | page-content | frame | frame-content | paragraph | paragraph-content | char | line | baseline | text" )? + (text:anchor-type="page | frame | paragraph | char | as-char" )? + (text:anchor-page-number="<positiveInteger>" )? + + ( (fo:border="<string>" )? + (fo:border-top="<string>" )? + (fo:border-bottom="<string>" )? + (fo:border-left="<string>" )? + (fo:border-right="<string>" )? + ) + ( (style:border-line-width=" +START_liststring]string]string] +END_list" )? + (style:border-line-width-top=" +START_liststring]string]string] +END_list" )? + (style:border-line-width-bottom=" +START_liststring]string]string] +END_list" )? + (style:border-line-width-left=" +START_liststring]string]string] +END_list" )? + (style:border-line-width-right=" +START_liststring]string]string] +END_list" )? + ) + ( (fo:padding="string]" )? + (fo:padding-top="string]" )? + (fo:padding-bottom="string]" )? + (fo:padding-left="string]" )? + (fo:padding-right="string]" )? + ) (style:shadow="none | <string>" )? + (fo:background-color="transparent | string]" )? + (style:background-transparency="string]" )? + (style:editable="<boolean>" )? + (style:wrap="none | left | right | parallel | dynamic | run-through | biggest" )? + (style:wrap-dynamic-threshold="string]" )? + (style:number-wrapped-paragraphs="no-limit | <positiveInteger>" )? + (style:wrap-contour="<boolean>" )? + (style:wrap-contour-mode="full | outside" )? + (style:run-through="foreground | background" )? + (style:flow-with-text="<boolean>" )? + (style:overflow-behavior="clip | auto-create-new-frame" )? + (style:mirror="none | vertical | horizontal | horizontal-on-odd | horizontal-on-even | +START_listverticalhorizontal | horizontal-on-odd | horizontal-on-even +END_list | +START_listhorizontal | horizontal-on-odd | horizontal-on-evenvertical +END_list" )? + (fo:clip="auto | string]" )? + (draw:wrap-influence-on-position="iterative | once-concurrent | once-successive" )? + (style:writing-mode="lr-tb | rl-tb | tb-rl | tb-lr | lr | rl | tb | page" )? + (draw:frame-display-scrollbar="<boolean>" )? + (draw:frame-display-border="<boolean>" )? + (draw:frame-margin-horizontal="string]" )? + (draw:frame-margin-vertical="string]" )? + (draw:visible-area-left="string]" )? + (draw:visible-area-top="string]" )? + (draw:visible-area-width="string]" )? + (draw:visible-area-height="string]" )? + (draw:draw-aspect="content | thumbnail | icon | print-view" )? + (draw:ole-draw-aspect="<nonNegativeInteger>" )? + (draw:fill="none | solid | bitmap | gradient | hatch" )? + (draw:fill-color="string]" )? + (draw:secondary-fill-color="string]" )? + (draw:fill-gradient-name="(<NCName>)?" )? + (draw:gradient-step-count="<nonNegativeInteger>" )? + (draw:fill-hatch-name="(<NCName>)?" )? + (draw:fill-hatch-solid="<boolean>" )? + (draw:fill-image-name="(<NCName>)?" )? + (style:repeat="no-repeat | repeat | stretch" )? + (draw:fill-image-width="string] | string]" )? + (draw:fill-image-height="string] | string]" )? + (draw:fill-image-ref-point-x="string]" )? + (draw:fill-image-ref-point-y="string]" )? + (draw:fill-image-ref-point="top-left | top | top-right | left | center | right | bottom-left | bottom | bottom-right" )? + (draw:tile-repeat-offset=" +START_liststring]horizontal | vertical +END_list" )? + (draw:opacity="string]" )? + (draw:opacity-name="(<NCName>)?" )? + (svg:fill-rule="nonzero | evenodd" )? + (<text:list-style ... >)? + (<style:background-image ... >)? + (<style:columns ... >)? + )>  +
@@ -9882,6 +13828,15 @@

style:handout-master Element<draw:regular-polygon>*    + + Child Relations + <style:handout-master (presentation:use-header-name="<string>" )? + (presentation:use-footer-name="<string>" )? + (presentation:use-date-time-name="<string>" )? + (presentation:presentation-page-layout-name="(<NCName>)?" )? + style:page-layout-name="(<NCName>)?" (draw:style-name="(<NCName>)?" )? + (<draw:rect ... > | <draw:line ... > | <draw:polyline ... > | <draw:polygon ... > | <draw:regular-polygon ... > | <draw:path ... > | <draw:circle ... > | <draw:ellipse ... > | <draw:g ... > | <draw:page-thumbnail ... > | <draw:frame ... > | <draw:measure ... > | <draw:caption ... > | <draw:connector ... > | <draw:control ... > | <dr3d:scene ... > | <draw:custom-shape ... > | <draw:a ... >)* >  +
@@ -9929,6 +13884,23 @@

style:header Element

<text:variable-decls>    + + Child Relations + <style:header (style:display="<boolean>" )? + + ( (<text:tracked-changes ... >)? + + ( (<text:variable-decls ... >)? + (<text:sequence-decls ... >)? + (<text:user-field-decls ... >)? + (<text:dde-connection-decls ... >)? + (<text:alphabetical-index-auto-mark-file ... >)? + )(<text:h ... > | <text:p ... > | <text:list ... > | <table:table ... > | <text:section ... > | <text:table-of-content ... > | <text:illustration-index ... > | <text:table-index ... > | <text:object-index ... > | <text:user-index ... > | <text:alphabetical-index ... > | <text:bibliography ... > | <text:index-title ... > | <text:change ... > | <text:change-start ... > | <text:change-end ... >)* ) | + ( (<style:region-left ... >)? + (<style:region-center ... >)? + (<style:region-right ... >)? + )>  +
@@ -9952,10 +13924,10 @@

style:header-footer-prope fo:border-top  fo:margin  fo:margin-bottom  - fo:margin-left[2]  + fo:margin-left[1]  fo:margin-right  fo:margin-top  - fo:min-height[2]  + fo:min-height[1]  fo:padding  fo:padding-bottom  fo:padding-left  @@ -9968,7 +13940,7 @@

style:header-footer-prope style:border-line-width-top  style:dynamic-spacing  style:shadow  - svg:height[2]  + svg:height[1]    @@ -9977,6 +13949,52 @@

style:header-footer-prope <style:background-image>    + + Child Relations + <style:header-footer-properties + ( (svg:height="string]" )? + (fo:min-height="string]" )? + + ( (fo:margin-left="string] | string]" )? + (fo:margin-right="string] | string]" )? + ) + ( (fo:margin-top="string] | string]" )? + (fo:margin-bottom="string] | string]" )? + ) (fo:margin="string] | string]" )? + + ( (fo:border="<string>" )? + (fo:border-top="<string>" )? + (fo:border-bottom="<string>" )? + (fo:border-left="<string>" )? + (fo:border-right="<string>" )? + ) + ( (style:border-line-width=" +START_liststring]string]string] +END_list" )? + (style:border-line-width-top=" +START_liststring]string]string] +END_list" )? + (style:border-line-width-bottom=" +START_liststring]string]string] +END_list" )? + (style:border-line-width-left=" +START_liststring]string]string] +END_list" )? + (style:border-line-width-right=" +START_liststring]string]string] +END_list" )? + ) + ( (fo:padding="string]" )? + (fo:padding-top="string]" )? + (fo:padding-bottom="string]" )? + (fo:padding-left="string]" )? + (fo:padding-right="string]" )? + ) (fo:background-color="transparent | string]" )? + (style:shadow="none | <string>" )? + (style:dynamic-spacing="<boolean>" )? + (<style:background-image ... >)? + )>  +
@@ -10024,6 +14042,23 @@

style:header-left Element

<text:variable-decls>    + + Child Relations + <style:header-left (style:display="<boolean>" )? + + ( (<text:tracked-changes ... >)? + + ( (<text:variable-decls ... >)? + (<text:sequence-decls ... >)? + (<text:user-field-decls ... >)? + (<text:dde-connection-decls ... >)? + (<text:alphabetical-index-auto-mark-file ... >)? + )(<text:h ... > | <text:p ... > | <text:list ... > | <table:table ... > | <text:section ... > | <text:table-of-content ... > | <text:illustration-index ... > | <text:table-index ... > | <text:object-index ... > | <text:user-index ... > | <text:alphabetical-index ... > | <text:bibliography ... > | <text:index-title ... > | <text:change ... > | <text:change-start ... > | <text:change-end ... >)* ) | + ( (<style:region-left ... >)? + (<style:region-center ... >)? + (<style:region-right ... >)? + )>  +
@@ -10047,6 +14082,11 @@

style:header-style Element

<style:header-footer-properties>    + + Child Relations + <style:header-style (<style:header-footer-properties ... >)? + >  +
@@ -10061,7 +14101,7 @@

style:list-level-label- Attributes - fo:margin-left[1]  + fo:margin-left[2]  fo:text-indent[1]  text:label-followed-by  text:list-tab-stop-position  @@ -10072,6 +14112,13 @@

style:list-level-label-   + + Child Relations + <style:list-level-label-alignment text:label-followed-by="listtab | space | nothing" (text:list-tab-stop-position="string]" )? + (fo:text-indent="string]" )? + (fo:margin-left="string]" )? + >  +
@@ -10108,6 +14155,24 @@

style:list-level-properties <style:list-level-label-alignment>    + + Child Relations + <style:list-level-properties + ( (fo:text-align="start | end | left | right | center | justify" )? + (text:space-before="string]" )? + (text:min-label-width="string]" )? + (text:min-label-distance="string]" )? + (style:font-name="<string>" )? + (fo:width="string]" )? + (fo:height="string]" )? + (style:vertical-rel="page | page-content | frame | frame-content | paragraph | paragraph-content | char | line | baseline | text" )? + + ( (style:vertical-pos="top | middle | bottom | from-top | below" )? + (svg:y="string]" )? + ) (text:list-level-position-and-space-mode="label-width-and-position | label-alignment" )? + (<style:list-level-label-alignment ... >)? + )>  +
@@ -10139,6 +14204,11 @@

style:map Element

  + + Child Relations + <style:map style:condition="<string>" style:apply-style-name="(<NCName>)?" (style:base-cell-address="string]" )? + >  +
@@ -10155,7 +14225,7 @@

style:master-page Element

draw:style-name  style:display-name  - style:name[1]  + style:name[2]  style:next-style-name  style:page-layout-name    @@ -10201,6 +14271,22 @@

style:master-page Element

<style:header-left>    + + Child Relations + <style:master-page style:name="<NCName>" (style:display-name="<string>" )? + style:page-layout-name="(<NCName>)?" (draw:style-name="(<NCName>)?" )? + (style:next-style-name="(<NCName>)?" )? + (<style:header ... > (<style:header-left ... >)? + )? + (<style:footer ... > (<style:footer-left ... >)? + )? + (<draw:layer-set ... >)? + ( (<office:forms ... >)? + )? + (<draw:rect ... > | <draw:line ... > | <draw:polyline ... > | <draw:polygon ... > | <draw:regular-polygon ... > | <draw:path ... > | <draw:circle ... > | <draw:ellipse ... > | <draw:g ... > | <draw:page-thumbnail ... > | <draw:frame ... > | <draw:measure ... > | <draw:caption ... > | <draw:connector ... > | <draw:control ... > | <dr3d:scene ... > | <draw:custom-shape ... > | <draw:a ... >)* (<anim:animate ... > | <anim:set ... > | <anim:animateMotion ... > | <anim:animateColor ... > | <anim:animateTransform ... > | <anim:transitionFilter ... > | <anim:par ... > | <anim:seq ... > | <anim:iterate ... > | <anim:audio ... > | <anim:command ... >)? + (<presentation:notes ... >)? + >  +
@@ -10215,7 +14301,7 @@

style:page-layout Element

Attributes - style:name[1]  + style:name[2]  style:page-usage    @@ -10227,6 +14313,15 @@

style:page-layout Element

<style:page-layout-properties>    + + Child Relations + <style:page-layout style:name="<NCName>" (style:page-usage="all | left | right | mirrored" )? + + ( (<style:page-layout-properties ... >)? + (<style:header-style ... >)? + (<style:footer-style ... >)? + )>  +
@@ -10250,7 +14345,7 @@

style:page-layout-propertie fo:border-top  fo:margin  fo:margin-bottom  - fo:margin-left[2]  + fo:margin-left[1]  fo:margin-right  fo:margin-top  fo:padding  @@ -10303,6 +14398,84 @@

style:page-layout-propertie <style:footnote-sep>    + + Child Relations + <style:page-layout-properties + ( (fo:page-width="string]" )? + (fo:page-height="string]" )? + ( (style:num-format="(1 | i | I | <string>)?" | + (style:num-format="a | A" (style:num-letter-sync="<boolean>" )? + ))? + )? + + ( (style:num-prefix="<string>" )? + (style:num-suffix="<string>" )? + ) (style:paper-tray-name="default | <string>" )? + (style:print-orientation="portrait | landscape" )? + + ( (fo:margin-left="string] | string]" )? + (fo:margin-right="string] | string]" )? + ) + ( (fo:margin-top="string] | string]" )? + (fo:margin-bottom="string] | string]" )? + ) (fo:margin="string] | string]" )? + + ( (fo:border="<string>" )? + (fo:border-top="<string>" )? + (fo:border-bottom="<string>" )? + (fo:border-left="<string>" )? + (fo:border-right="<string>" )? + ) + ( (style:border-line-width=" +START_liststring]string]string] +END_list" )? + (style:border-line-width-top=" +START_liststring]string]string] +END_list" )? + (style:border-line-width-bottom=" +START_liststring]string]string] +END_list" )? + (style:border-line-width-left=" +START_liststring]string]string] +END_list" )? + (style:border-line-width-right=" +START_liststring]string]string] +END_list" )? + ) + ( (fo:padding="string]" )? + (fo:padding-top="string]" )? + (fo:padding-bottom="string]" )? + (fo:padding-left="string]" )? + (fo:padding-right="string]" )? + ) (style:shadow="none | <string>" )? + (fo:background-color="transparent | string]" )? + (style:register-truth-ref-style-name="(<NCName>)?" )? + (style:print=" +START_list(headers | grid | annotations | objects | charts | drawings | formulas | zero-values)* +END_list" )? + (style:print-page-order="ttb | ltr" )? + (style:first-page-number="<positiveInteger> | continue" )? + (style:scale-to="string]" )? + (style:scale-to-pages="<positiveInteger>" )? + (style:table-centering="horizontal | vertical | both | none" )? + (style:footnote-max-height="string]" )? + (style:writing-mode="lr-tb | rl-tb | tb-rl | tb-lr | lr | rl | tb | page" )? + (style:layout-grid-mode="none | line | both" )? + (style:layout-grid-standard-mode="<boolean>" )? + (style:layout-grid-base-height="string]" )? + (style:layout-grid-ruby-height="string]" )? + (style:layout-grid-lines="<positiveInteger>" )? + (style:layout-grid-base-width="string]" )? + (style:layout-grid-color="string]" )? + (style:layout-grid-ruby-below="<boolean>" )? + (style:layout-grid-print="<boolean>" )? + (style:layout-grid-display="<boolean>" )? + (style:layout-grid-snap-to="<boolean>" )? + (<style:background-image ... >)? + (<style:columns ... >)? + (<style:footnote-sep ... >)? + )>  +
@@ -10333,7 +14506,7 @@

style:paragraph-properties El fo:line-height  fo:margin  fo:margin-bottom  - fo:margin-left[2]  + fo:margin-left[1]  fo:margin-right  fo:margin-top  fo:orphans  @@ -10366,7 +14539,7 @@

style:paragraph-properties El style:snap-to-layout-grid  style:tab-stop-distance  style:text-autospace  - style:vertical-align[3]  + style:vertical-align[2]  style:writing-mode  style:writing-mode-automatic  text:line-number  @@ -10381,6 +14554,83 @@

style:paragraph-properties El <style:tab-stops>    + + Child Relations + <style:paragraph-properties + ( (fo:line-height="normal | string] | string]" )? + (style:line-height-at-least="string]" )? + (style:line-spacing="string]" )? + (style:font-independent-line-spacing="<boolean>" )? + (fo:text-align="start | end | left | right | center | justify" )? + (fo:text-align-last="start | center | justify" )? + (style:justify-single-word="<boolean>" )? + (fo:keep-together="auto | always" )? + (fo:widows="<nonNegativeInteger>" )? + (fo:orphans="<nonNegativeInteger>" )? + (style:tab-stop-distance="string]" )? + (fo:hyphenation-keep="auto | page" )? + (fo:hyphenation-ladder-count="no-limit | <positiveInteger>" )? + (style:register-true="<boolean>" )? + + ( (fo:margin-left="string] | string]" )? + (fo:margin-right="string] | string]" )? + ) (fo:text-indent="string] | string]" )? + (style:auto-text-indent="<boolean>" )? + + ( (fo:margin-top="string] | string]" )? + (fo:margin-bottom="string] | string]" )? + ) (fo:margin="string] | string]" )? + + ( (fo:break-before="auto | column | page" )? + (fo:break-after="auto | column | page" )? + ) (fo:background-color="transparent | string]" )? + + ( (fo:border="<string>" )? + (fo:border-top="<string>" )? + (fo:border-bottom="<string>" )? + (fo:border-left="<string>" )? + (fo:border-right="<string>" )? + ) + ( (style:border-line-width=" +START_liststring]string]string] +END_list" )? + (style:border-line-width-top=" +START_liststring]string]string] +END_list" )? + (style:border-line-width-bottom=" +START_liststring]string]string] +END_list" )? + (style:border-line-width-left=" +START_liststring]string]string] +END_list" )? + (style:border-line-width-right=" +START_liststring]string]string] +END_list" )? + ) (style:join-border="<boolean>" )? + + ( (fo:padding="string]" )? + (fo:padding-top="string]" )? + (fo:padding-bottom="string]" )? + (fo:padding-left="string]" )? + (fo:padding-right="string]" )? + ) (style:shadow="none | <string>" )? + (fo:keep-with-next="auto | always" )? + (text:number-lines="<boolean>" )? + (text:line-number="<nonNegativeInteger>" )? + (style:text-autospace="none | ideograph-alpha" )? + (style:punctuation-wrap="simple | hanging" )? + (style:line-break="normal | strict" )? + (style:vertical-align="top | middle | bottom | auto | baseline" )? + (style:writing-mode="lr-tb | rl-tb | tb-rl | tb-lr | lr | rl | tb | page" )? + (style:writing-mode-automatic="<boolean>" )? + (style:snap-to-layout-grid="<boolean>" )? + (style:page-number="<positiveInteger> | auto" )? + (style:background-transparency="string]" )? + (<style:tab-stops ... >)? + (<style:drop-cap ... >)? + (<style:background-image ... >)? + )>  +
@@ -10396,7 +14646,7 @@

style:presentation-page-l Attributes style:display-name  - style:name[1]  + style:name[2]    @@ -10405,6 +14655,11 @@

style:presentation-page-l <presentation:placeholder>*    + + Child Relations + <style:presentation-page-layout style:name="<NCName>" (style:display-name="<string>" )? + (<presentation:placeholder ... >)* >  +
@@ -10430,6 +14685,10 @@

style:region-center Element

<text:p>*    + + Child Relations + <style:region-center (<text:p ... >)* >  +
@@ -10455,6 +14714,10 @@

style:region-left Element

<text:p>*    + + Child Relations + <style:region-left (<text:p ... >)* >  +
@@ -10480,6 +14743,10 @@

style:region-right Element

<text:p>*    + + Child Relations + <style:region-right (<text:p ... >)* >  +
@@ -10504,6 +14771,13 @@

style:ruby-properties Element<   + + Child Relations + <style:ruby-properties + ( (style:ruby-position="above | below" )? + (style:ruby-align="left | center | right | distribute-letter | distribute-space" )? + EMPTY)>  +
@@ -10520,10 +14794,10 @@

style:section-properties Elemen Attributes fo:background-color  - fo:margin-left[2]  + fo:margin-left[1]  fo:margin-right  style:editable  - style:protect[2]  + style:protect[1]  style:writing-mode  text:dont-balance-text-columns    @@ -10536,6 +14810,21 @@

style:section-properties Elemen <text:notes-configuration>*    + + Child Relations + <style:section-properties + ( (fo:background-color="transparent | string]" )? + + ( (fo:margin-left="string] | string]" )? + (fo:margin-right="string] | string]" )? + ) (style:protect="<boolean>" )? + (style:editable="<boolean>" )? + (text:dont-balance-text-columns="<boolean>" )? + (style:writing-mode="lr-tb | rl-tb | tb-rl | tb-lr | lr | rl | tb | page" )? + (<style:background-image ... >)? + (<style:columns ... >)? + (<text:notes-configuration ... >)* )>  +
@@ -10570,7 +14859,7 @@

style:style Element

style:list-level  style:list-style-name  style:master-page-name  - style:name[1]  + style:name[2]  style:next-style-name  style:parent-style-name  style:percentage-data-style-name  @@ -10593,6 +14882,51 @@

style:style Element

<style:text-properties>    + + Child Relations + <style:style style:name="<NCName>" (style:display-name="<string>" )? + (style:parent-style-name="(<NCName>)?" )? + (style:next-style-name="(<NCName>)?" )? + (style:list-level="(<positiveInteger>)?" )? + (style:list-style-name="(<NCName>)?" )? + (style:master-page-name="(<NCName>)?" )? + (style:auto-update="<boolean>" )? + (style:data-style-name="(<NCName>)?" )? + (style:percentage-data-style-name="(<NCName>)?" )? + (style:class="<string>" )? + (style:default-outline-level="(<positiveInteger>)?" )? + + (style:family="text" (<style:text-properties ... >)? + ) | + (style:family="paragraph" (<style:paragraph-properties ... >)? + (<style:text-properties ... >)? + ) | + (style:family="section" (<style:section-properties ... >)? + ) | + (style:family="ruby" (<style:ruby-properties ... >)? + ) | + (style:family="table" (<style:table-properties ... >)? + ) | + (style:family="table-column" (<style:table-column-properties ... >)? + ) | + (style:family="table-row" (<style:table-row-properties ... >)? + ) | + (style:family="table-cell" (<style:table-cell-properties ... >)? + (<style:paragraph-properties ... >)? + (<style:text-properties ... >)? + ) | + (style:family="graphic | presentation" (<style:graphic-properties ... >)? + (<style:paragraph-properties ... >)? + (<style:text-properties ... >)? + ) | + (style:family="drawing-page" (<style:drawing-page-properties ... >)? + ) | + (style:family="chart" (<style:chart-properties ... >)? + (<style:graphic-properties ... >)? + (<style:paragraph-properties ... >)? + (<style:text-properties ... >)? + )(<style:map ... >)* >  +
@@ -10614,9 +14948,9 @@

style:tab-stop Element (new in O style:leader-text-style  style:leader-type  style:leader-width  - style:position[2]  + style:position[1]  style:type[1]  - style:type[2]  + style:type[4]    @@ -10624,6 +14958,17 @@

style:tab-stop Element (new in O   + + Child Relations + <style:tab-stop style:position="string]" style:type="left | center | right" | EMPTY | + (style:type="char" style:char="string]" ) (style:leader-type="none | single | double" )? + (style:leader-style="none | solid | dotted | dash | long-dash | dot-dash | dot-dot-dash | wave" )? + (style:leader-width="auto | normal | bold | thin | medium | thick | <positiveInteger> | string] | string]" )? + (style:leader-color="font-color | string]" )? + (style:leader-text="string]" )? + (style:leader-text-style="(<NCName>)?" )? + >  +
@@ -10646,6 +14991,10 @@

style:tab-stops Element (new in <style:tab-stop>*    + + Child Relations + <style:tab-stops (<style:tab-stop ... >)* >  +
@@ -10693,7 +15042,7 @@

style:table-cell-properties style:shadow  style:shrink-to-fit  style:text-align-source  - style:vertical-align[2]  + style:vertical-align[1]  style:writing-mode    @@ -10703,6 +15052,65 @@

style:table-cell-properties <style:background-image>    + + Child Relations + <style:table-cell-properties + ( (style:vertical-align="top | middle | bottom | automatic" )? + (style:text-align-source="fix | value-type" )? + (style:direction="ltr | ttb" )? + (style:glyph-orientation-vertical="auto | 0 | 0deg | 0rad | 0grad" )? + (style:writing-mode="lr-tb | rl-tb | tb-rl | tb-lr | lr | rl | tb | page" )? + (style:shadow="none | <string>" )? + (fo:background-color="transparent | string]" )? + + ( (fo:border="<string>" )? + (fo:border-top="<string>" )? + (fo:border-bottom="<string>" )? + (fo:border-left="<string>" )? + (fo:border-right="<string>" )? + ) (style:diagonal-tl-br="<string>" )? + (style:diagonal-tl-br-widths=" +START_liststring]string]string] +END_list" )? + (style:diagonal-bl-tr="<string>" )? + (style:diagonal-bl-tr-widths=" +START_liststring]string]string] +END_list" )? + + ( (style:border-line-width=" +START_liststring]string]string] +END_list" )? + (style:border-line-width-top=" +START_liststring]string]string] +END_list" )? + (style:border-line-width-bottom=" +START_liststring]string]string] +END_list" )? + (style:border-line-width-left=" +START_liststring]string]string] +END_list" )? + (style:border-line-width-right=" +START_liststring]string]string] +END_list" )? + ) + ( (fo:padding="string]" )? + (fo:padding-top="string]" )? + (fo:padding-bottom="string]" )? + (fo:padding-left="string]" )? + (fo:padding-right="string]" )? + ) (fo:wrap-option="no-wrap | wrap" )? + (style:rotation-angle="<string>" )? + (style:rotation-align="none | bottom | top | center" )? + (style:cell-protect="none | hidden-and-protected | +START_list(protected | formula-hidden)+ +END_list" )? + (style:print-content="<boolean>" )? + (style:decimal-places="<nonNegativeInteger>" )? + (style:repeat-content="<boolean>" )? + (style:shrink-to-fit="<boolean>" )? + (<style:background-image ... >)? + )>  +
@@ -10730,6 +15138,17 @@

style:table-column-propert   + + Child Relations + <style:table-column-properties + ( (style:column-width="string]" )? + (style:rel-column-width="string]" )? + (style:use-optimal-column-width="<boolean>" )? + + ( (fo:break-before="auto | column | page" )? + (fo:break-after="auto | column | page" )? + )EMPTY)>  +
@@ -10751,14 +15170,14 @@

style:table-properties Elementfo:keep-with-next  fo:margin  fo:margin-bottom  - fo:margin-left[2]  + fo:margin-left[1]  fo:margin-right  fo:margin-top  style:may-break-between-rows  style:page-number  style:rel-width[2]  style:shadow  - style:width[2]  + style:width[1]  style:writing-mode  table:align  table:border-model  @@ -10771,6 +15190,33 @@

style:table-properties Element<style:background-image>    + + Child Relations + <style:table-properties + ( (style:width="string]" )? + (style:rel-width="string]" )? + (table:align="left | center | right | margins" )? + + ( (fo:margin-left="string] | string]" )? + (fo:margin-right="string] | string]" )? + ) + ( (fo:margin-top="string] | string]" )? + (fo:margin-bottom="string] | string]" )? + ) (fo:margin="string] | string]" )? + (style:page-number="<positiveInteger> | auto" )? + + ( (fo:break-before="auto | column | page" )? + (fo:break-after="auto | column | page" )? + ) (fo:background-color="transparent | string]" )? + (style:shadow="none | <string>" )? + (fo:keep-with-next="auto | always" )? + (style:may-break-between-rows="<boolean>" )? + (table:border-model="collapsing | separating" )? + (style:writing-mode="lr-tb | rl-tb | tb-rl | tb-lr | lr | rl | tb | page" )? + (table:display="<boolean>" )? + (<style:background-image ... >)? + )>  +
@@ -10801,6 +15247,20 @@

style:table-row-properties El <style:background-image>    + + Child Relations + <style:table-row-properties + ( (style:row-height="string]" )? + (style:min-row-height="string]" )? + (style:use-optimal-row-height="<boolean>" )? + (fo:background-color="transparent | string]" )? + + ( (fo:break-before="auto | column | page" )? + (fo:break-after="auto | column | page" )? + ) (fo:keep-together="auto | always" )? + (<style:background-image ... >)? + )>  +
@@ -10909,7 +15369,7 @@

style:text-properties Element< style:text-underline-width  style:use-window-font-color  text:condition[1]  - text:display[3]  + text:display[2]  text:display[8]  text:display[9]    @@ -10919,6 +15379,99 @@

style:text-properties Element<   + + Child Relations + <style:text-properties + ( (fo:font-variant="normal | small-caps" )? + (fo:text-transform="none | lowercase | uppercase | capitalize" )? + (fo:color="string]" )? + (style:use-window-font-color="<boolean>" )? + (style:text-outline="<boolean>" )? + (style:text-line-through-type="none | single | double" )? + (style:text-line-through-style="none | solid | dotted | dash | long-dash | dot-dash | dot-dot-dash | wave" )? + (style:text-line-through-width="auto | normal | bold | thin | medium | thick | <positiveInteger> | string] | string]" )? + (style:text-line-through-color="font-color | string]" )? + (style:text-line-through-text="<string>" )? + (style:text-line-through-text-style="(<NCName>)?" )? + (style:text-position=" +START_liststring] | super | sub(string])? +END_list" )? + (style:font-name="<string>" )? + (style:font-name-asian="<string>" )? + (style:font-name-complex="<string>" )? + (fo:font-family="<string>" )? + (style:font-family-asian="<string>" )? + (style:font-family-complex="<string>" )? + (style:font-family-generic="roman | swiss | modern | decorative | script | system" )? + (style:font-family-generic-asian="roman | swiss | modern | decorative | script | system" )? + (style:font-family-generic-complex="roman | swiss | modern | decorative | script | system" )? + (style:font-style-name="<string>" )? + (style:font-style-name-asian="<string>" )? + (style:font-style-name-complex="<string>" )? + (style:font-pitch="fixed | variable" )? + (style:font-pitch-asian="fixed | variable" )? + (style:font-pitch-complex="fixed | variable" )? + (style:font-charset="string]" )? + (style:font-charset-asian="string]" )? + (style:font-charset-complex="string]" )? + (fo:font-size="string] | string]" )? + (style:font-size-asian="string] | string]" )? + (style:font-size-complex="string] | string]" )? + (style:font-size-rel="string]" )? + (style:font-size-rel-asian="string]" )? + (style:font-size-rel-complex="string]" )? + (style:script-type="latin | asian | complex | ignore" )? + (fo:letter-spacing="string] | normal" )? + (fo:language="token]" )? + (style:language-asian="token]" )? + (style:language-complex="token]" )? + (fo:country="token]" )? + (style:country-asian="token]" )? + (style:country-complex="token]" )? + (fo:script="token]" )? + (style:script-asian="token]" )? + (style:script-complex="token]" )? + (style:rfc-language-tag="<language>" )? + (style:rfc-language-tag-asian="<language>" )? + (style:rfc-language-tag-complex="<language>" )? + (fo:font-style="normal | italic | oblique" )? + (style:font-style-asian="normal | italic | oblique" )? + (style:font-style-complex="normal | italic | oblique" )? + (style:font-relief="none | embossed | engraved" )? + (fo:text-shadow="none | <string>" )? + (style:text-underline-type="none | single | double" )? + (style:text-underline-style="none | solid | dotted | dash | long-dash | dot-dash | dot-dot-dash | wave" )? + (style:text-underline-width="auto | normal | bold | thin | medium | thick | <positiveInteger> | string] | string]" )? + (style:text-underline-color="font-color | string]" )? + (style:text-overline-type="none | single | double" )? + (style:text-overline-style="none | solid | dotted | dash | long-dash | dot-dash | dot-dot-dash | wave" )? + (style:text-overline-width="auto | normal | bold | thin | medium | thick | <positiveInteger> | string] | string]" )? + (style:text-overline-color="font-color | string]" )? + (style:text-overline-mode="continuous | skip-white-space" )? + (fo:font-weight="normal | bold | 100 | 200 | 300 | 400 | 500 | 600 | 700 | 800 | 900" )? + (style:font-weight-asian="normal | bold | 100 | 200 | 300 | 400 | 500 | 600 | 700 | 800 | 900" )? + (style:font-weight-complex="normal | bold | 100 | 200 | 300 | 400 | 500 | 600 | 700 | 800 | 900" )? + (style:text-underline-mode="continuous | skip-white-space" )? + (style:text-line-through-mode="continuous | skip-white-space" )? + (style:letter-kerning="<boolean>" )? + (style:text-blinking="<boolean>" )? + (fo:background-color="transparent | string]" )? + (style:text-combine="none | letters | lines" )? + (style:text-combine-start-char="string]" )? + (style:text-combine-end-char="string]" )? + (style:text-emphasize="none | +START_listnone | accent | dot | circle | discabove | below +END_list" )? + (style:text-scale="string]" )? + (style:text-rotation-angle="<string>" )? + (style:text-rotation-scale="fixed | line-height" )? + (fo:hyphenate="<boolean>" )? + (fo:hyphenation-remain-char-count="<positiveInteger>" )? + (fo:hyphenation-push-char-count="<positiveInteger>" )? + (text:display="true" | text:display="none" | + (text:display="condition" text:condition="none" ))? + EMPTY)>  +
@@ -10943,6 +15496,12 @@

svg:definition-src Element

  + + Child Relations + <svg:definition-src + (xlink:type="simple" xlink:href="<anyIRI>" (xlink:actuate="onRequest" )? + )>  +
@@ -10986,6 +15545,10 @@

svg:desc Element

  + + Child Relations + <svg:desc TEXT>  +
@@ -11008,6 +15571,11 @@

svg:font-face-format Element   + + Child Relations + <svg:font-face-format (svg:string="<string>" )? + >  +
@@ -11030,6 +15598,11 @@

svg:font-face-name Element

  + + Child Relations + <svg:font-face-name (svg:name="<string>" )? + >  +
@@ -11053,6 +15626,10 @@

svg:font-face-src Element

<svg:font-face-uri>*    + + Child Relations + <svg:font-face-src (<svg:font-face-uri ... > | <svg:font-face-name ... >)+ >  +
@@ -11078,6 +15655,12 @@

svg:font-face-uri Element

<svg:font-face-format>*    + + Child Relations + <svg:font-face-uri + (xlink:type="simple" xlink:href="<anyIRI>" (xlink:actuate="onRequest" )? + )(<svg:font-face-format ... >)* >  +
@@ -11097,10 +15680,10 @@

svg:linearGradient Element

svg:gradientTransform  svg:gradientUnits  svg:spreadMethod  - svg:x1[2]  + svg:x1[1]  svg:x2[2]  - svg:y1[2]  - svg:y2[2]  + svg:y1[1]  + svg:y2[1]    @@ -11109,6 +15692,18 @@

svg:linearGradient Element

<svg:stop>*    + + Child Relations + <svg:linearGradient (svg:gradientUnits="objectBoundingBox" )? + (svg:gradientTransform="<string>" )? + (svg:spreadMethod="pad | reflect | repeat" )? + draw:name="<NCName>" (draw:display-name="<string>" )? + (svg:x1="string] | string]" )? + (svg:y1="string] | string]" )? + (svg:x2="string] | string]" )? + (svg:y2="string] | string]" )? + (<svg:stop ... >)* >  +
@@ -11125,7 +15720,7 @@

svg:radialGradient Element

draw:display-name  draw:name[2]  - svg:cx[2]  + svg:cx[1]  svg:cy[2]  svg:fx  svg:fy  @@ -11141,6 +15736,19 @@

svg:radialGradient Element

<svg:stop>*    + + Child Relations + <svg:radialGradient (svg:gradientUnits="objectBoundingBox" )? + (svg:gradientTransform="<string>" )? + (svg:spreadMethod="pad | reflect | repeat" )? + draw:name="<NCName>" (draw:display-name="<string>" )? + (svg:cx="string] | string]" )? + (svg:cy="string] | string]" )? + (svg:r="string] | string]" )? + (svg:fx="string] | string]" )? + (svg:fy="string] | string]" )? + (<svg:stop ... >)* >  +
@@ -11166,6 +15774,12 @@

svg:stop Element

  + + Child Relations + <svg:stop svg:offset="<double> | string]" (svg:stop-color="string]" )? + (svg:stop-opacity="<double>" )? + >  +
@@ -11209,6 +15823,10 @@

svg:title Element (new in ODF 1.1)   + + Child Relations + <svg:title TEXT>  +
@@ -11231,6 +15849,10 @@

table:background Element (new   + + Child Relations + <table:background table:style-name="(<NCName>)?" >  +
@@ -11254,6 +15876,12 @@

table:body Element (new in ODF 1.2)   + + Child Relations + <table:body + (table:style-name="(<NCName>)?" (table:paragraph-style-name="(<NCName>)?" )? + )>  +
@@ -11288,6 +15916,19 @@

table:calculation-settings El <table:null-date>    + + Child Relations + <table:calculation-settings (table:case-sensitive="<boolean>" )? + (table:precision-as-shown="<boolean>" )? + (table:search-criteria-must-apply-to-whole-cell="<boolean>" )? + (table:automatic-find-labels="<boolean>" )? + (table:use-regular-expressions="<boolean>" )? + (table:use-wildcards="<boolean>" )? + (table:null-year="<positiveInteger>" )? + (<table:null-date ... >)? + (<table:iteration ... >)? + >  +
@@ -11313,6 +15954,11 @@

table:cell-address Element

  + + Child Relations + <table:cell-address + (table:column="<integer>" table:row="<integer>" table:table="<integer>" )>  +
@@ -11342,6 +15988,14 @@

table:cell-content-change Elem <table:previous>    + + Child Relations + <table:cell-content-change table:id="<string>" (table:acceptance-state="accepted | rejected | pending" )? + (table:rejecting-change-id="<string>" )? + <table:cell-address ... ><office:change-info ... > (<table:dependencies ... >)? + (<table:deletions ... >)? + <table:previous ... >>  +
@@ -11366,6 +16020,13 @@

table:cell-content-deletion <table:change-track-table-cell>    + + Child Relations + <table:cell-content-deletion (table:id="<string>" )? + (<table:cell-address ... >)? + (<table:change-track-table-cell ... >)? + >  +
@@ -11385,8 +16046,8 @@

table:cell-range-source Element< table:filter-options  table:last-column-spanned  table:last-row-spanned  - table:name[1]  - table:refresh-delay[2]  + table:name[2]  + table:refresh-delay[1]  xlink:actuate[1]  xlink:href  xlink:type  @@ -11397,6 +16058,14 @@

table:cell-range-source Element<   + + Child Relations + <table:cell-range-source table:name="<string>" table:last-column-spanned="<positiveInteger>" table:last-row-spanned="<positiveInteger>" xlink:type="simple" xlink:href="<anyIRI>" (xlink:actuate="onRequest" )? + (table:filter-name="<string>" )? + (table:filter-options="<string>" )? + (table:refresh-delay="<duration>" )? + >  +
@@ -11419,6 +16088,11 @@

table:change-deletion Element<   + + Child Relations + <table:change-deletion (table:id="<string>" )? + >  +
@@ -11442,11 +16116,11 @@

table:change-track-table-c office:value  office:value-type[1]  office:value-type[2]  + office:value-type[3]  office:value-type[4]  office:value-type[5]  office:value-type[6]  office:value-type[7]  - office:value-type[9]  table:cell-address  table:formula  table:matrix-covered  @@ -11460,6 +16134,25 @@

table:change-track-table-c <text:p>*    + + Child Relations + <table:change-track-table-cell (table:cell-address="string]" )? + (table:matrix-covered="<boolean>" )? + (table:formula="<string>" )? + (table:number-matrix-columns-spanned="<positiveInteger>" )? + (table:number-matrix-rows-spanned="<positiveInteger>" )? + ( + (office:value-type="float" office:value="<double>" ) | + (office:value-type="percentage" office:value="<double>" ) | + (office:value-type="currency" office:value="<double>" (office:currency="<string>" )? + ) | + (office:value-type="date" office:date-value="<date> | <dateTime>" ) | + (office:value-type="time" office:time-value="<duration>" ) | + (office:value-type="boolean" office:boolean-value="<boolean>" ) | + (office:value-type="string" (office:string-value="<string>" )? + ))? + (<text:p ... >)* >  +
@@ -11478,7 +16171,7 @@

table:consolidation Element

Attributes - table:function[1]  + table:function[2]  table:link-to-source-data  table:source-cell-range-addresses  table:target-cell-address  @@ -11490,6 +16183,12 @@

table:consolidation Element

  + + Child Relations + <table:consolidation table:function="average | count | countnums | max | min | product | stdev | stdevp | sum | var | varp | <string>" table:source-cell-range-addresses="<string>" table:target-cell-address="string]" (table:use-labels="none | row | column | both" )? + (table:link-to-source-data="<boolean>" )? + >  +
@@ -11508,7 +16207,7 @@

table:content-validation Elemen table:base-cell-address  table:condition  table:display-list  - table:name[1]  + table:name[2]    @@ -11520,6 +16219,17 @@

table:content-validation Elemen <table:help-message>    + + Child Relations + <table:content-validation table:name="<string>" (table:condition="<string>" )? + (table:base-cell-address="string]" )? + (table:allow-empty-cell="<boolean>" )? + (table:display-list="none | unsorted | sort-ascending" )? + (<table:help-message ... >)? + (<table:error-message ... > | + (<table:error-macro ... ><office:event-listeners ... >))? + >  +
@@ -11546,6 +16256,10 @@

table:content-validations Elem <table:content-validation>*    + + Child Relations + <table:content-validations (<table:content-validation ... >)+ >  +
@@ -11568,11 +16282,11 @@

table:covered-table-cell Elemen office:value  office:value-type[1]  office:value-type[2]  + office:value-type[3]  office:value-type[4]  office:value-type[5]  office:value-type[6]  office:value-type[7]  - office:value-type[9]  table:content-validation-name  table:formula  table:number-columns-repeated  @@ -11629,6 +16343,38 @@

table:covered-table-cell Elemen <text:user-index>*    + + Child Relations + <table:covered-table-cell (table:number-columns-repeated="<positiveInteger>" )? + (table:style-name="(<NCName>)?" )? + (table:content-validation-name="<string>" )? + (table:formula="<string>" )? + ( + (office:value-type="float" office:value="<double>" ) | + (office:value-type="percentage" office:value="<double>" ) | + (office:value-type="currency" office:value="<double>" (office:currency="<string>" )? + ) | + (office:value-type="date" office:date-value="<date> | <dateTime>" ) | + (office:value-type="time" office:time-value="<duration>" ) | + (office:value-type="boolean" office:boolean-value="<boolean>" ) | + (office:value-type="string" (office:string-value="<string>" )? + ))? + (table:protect="<boolean>" )? + (table:protected="<boolean>" )? + (xml:id="<ID>" )? + ( + (xhtml:about="<anyURI> | string]" xhtml:property=" +START_list(string])+ +END_list" + ( (xhtml:datatype="string]" )? + (xhtml:content="<string>" )? + )))? + + ( (<table:cell-range-source ... >)? + (<office:annotation ... >)? + (<table:detective ... >)? + (<text:h ... > | <text:p ... > | <text:list ... > | <text:numbered-paragraph ... > | <table:table ... > | <text:section ... > | <text:soft-page-break ... > | <text:table-of-content ... > | <text:illustration-index ... > | <text:table-index ... > | <text:object-index ... > | <text:user-index ... > | <text:alphabetical-index ... > | <text:bibliography ... > | <draw:rect ... > | <draw:line ... > | <draw:polyline ... > | <draw:polygon ... > | <draw:regular-polygon ... > | <draw:path ... > | <draw:circle ... > | <draw:ellipse ... > | <draw:g ... > | <draw:page-thumbnail ... > | <draw:frame ... > | <draw:measure ... > | <draw:caption ... > | <draw:connector ... > | <draw:control ... > | <dr3d:scene ... > | <draw:custom-shape ... > | <draw:a ... > | <text:change ... > | <text:change-start ... > | <text:change-end ... >)* )>  +
@@ -11652,6 +16398,11 @@

table:cut-offs Element

<table:movement-cut-off>*    + + Child Relations + <table:cut-offs (<table:movement-cut-off ... >)+ | + (<table:insertion-cut-off ... >(<table:movement-cut-off ... >)* )>  +
@@ -11677,6 +16428,10 @@

table:data-pilot-display-i   + + Child Relations + <table:data-pilot-display-info table:enabled="<boolean>" table:data-field="<string>" table:member-count="<nonNegativeInteger>" table:display-member-mode="from-top | from-bottom" >  +
@@ -11691,9 +16446,9 @@

table:data-pilot-field Element Attributes - table:function[2]  + table:function[1]  table:is-data-layout-field  - table:orientation[2]  + table:orientation[1]  table:orientation[3]  table:selected-page  table:source-field-name  @@ -11708,6 +16463,17 @@

table:data-pilot-field Element<table:data-pilot-level>    + + Child Relations + <table:data-pilot-field table:source-field-name="<string>" table:orientation="row | column | data | hidden" | + (table:orientation="page" table:selected-page="<string>" ) (table:is-data-layout-field="<string>" )? + (table:function="auto | average | count | countnums | max | min | product | stdev | stdevp | sum | var | varp | <string>" )? + (table:used-hierarchy="<integer>" )? + (<table:data-pilot-level ... >)? + (<table:data-pilot-field-reference ... >)? + (<table:data-pilot-groups ... >)? + >  +
@@ -11734,6 +16500,11 @@

table:data-pilot-field-   + + Child Relations + <table:data-pilot-field-reference table:field-name="<string>" + (table:member-type="named" table:member-name="<string>" ) | table:member-type="previous | next" table:type="none | member-difference | member-percentage | member-percentage-difference | running-total | row-percentage | column-percentage | total-percentage | index" >  +
@@ -11748,7 +16519,7 @@

table:data-pilot-group Element Attributes - table:name[1]  + table:name[2]    @@ -11757,6 +16528,10 @@

table:data-pilot-group Element<table:data-pilot-group-member>*    + + Child Relations + <table:data-pilot-group table:name="<string>" (<table:data-pilot-group-member ... >)+ >  +
@@ -11771,7 +16546,7 @@

table:data-pilot-group-mem Attributes - table:name[1]  + table:name[2]    @@ -11779,6 +16554,10 @@

table:data-pilot-group-mem   + + Child Relations + <table:data-pilot-group-member table:name="<string>" >  +
@@ -11808,6 +16587,10 @@

table:data-pilot-groups Element< <table:data-pilot-group>*    + + Child Relations + <table:data-pilot-groups table:source-field-name="<string>" table:date-start="<date> | <dateTime> | auto" | table:start="<double> | auto" table:date-end="<date> | <dateTime> | auto" | table:end="<double> | auto" table:step="<double>" table:grouped-by="seconds | minutes | hours | days | months | quarters | years" (<table:data-pilot-group ... >)+ >  +
@@ -11831,6 +16614,10 @@

table:data-pilot-layout-inf   + + Child Relations + <table:data-pilot-layout-info table:layout-mode="tabular-layout | outline-subtotals-top | outline-subtotals-bottom" table:add-empty-lines="<boolean>" >  +
@@ -11858,6 +16645,16 @@

table:data-pilot-level Element<table:data-pilot-subtotals>    + + Child Relations + <table:data-pilot-level (table:show-empty="<boolean>" )? + (<table:data-pilot-subtotals ... >)? + (<table:data-pilot-members ... >)? + (<table:data-pilot-display-info ... >)? + (<table:data-pilot-sort-info ... >)? + (<table:data-pilot-layout-info ... >)? + >  +
@@ -11873,7 +16670,7 @@

table:data-pilot-member Element< Attributes table:display  - table:name[1]  + table:name[2]  table:show-details    @@ -11882,6 +16679,12 @@

table:data-pilot-member Element<   + + Child Relations + <table:data-pilot-member table:name="<string>" (table:display="<boolean>" )? + (table:show-details="<boolean>" )? + >  +
@@ -11904,6 +16707,10 @@

table:data-pilot-members Elemen <table:data-pilot-member>*    + + Child Relations + <table:data-pilot-members (<table:data-pilot-member ... >)* >  +
@@ -11929,6 +16736,11 @@

table:data-pilot-sort-info El   + + Child Relations + <table:data-pilot-sort-info + (table:sort-mode="data" table:data-field="<string>" ) | table:sort-mode="none | manual | name" table:order="ascending | descending" >  +
@@ -11943,7 +16755,7 @@

table:data-pilot-subtotal Elem Attributes - table:function[2]  + table:function[1]    @@ -11951,6 +16763,10 @@

table:data-pilot-subtotal Elem   + + Child Relations + <table:data-pilot-subtotal table:function="auto | average | count | countnums | max | min | product | stdev | stdevp | sum | var | varp | <string>" >  +
@@ -11973,6 +16789,10 @@

table:data-pilot-subtotals El <table:data-pilot-subtotal>*    + + Child Relations + <table:data-pilot-subtotals (<table:data-pilot-subtotal ... >)* >  +
@@ -11993,7 +16813,7 @@

table:data-pilot-table Elementtable:grand-total  table:identify-categories  table:ignore-empty-rows  - table:name[1]  + table:name[2]  table:show-filter-button  table:target-range-address    @@ -12009,6 +16829,18 @@

table:data-pilot-table Element<table:source-service>    + + Child Relations + <table:data-pilot-table table:name="<string>" (table:application-data="<string>" )? + (table:grand-total="none | row | column | both" )? + (table:ignore-empty-rows="<boolean>" )? + (table:identify-categories="<boolean>" )? + table:target-range-address="string] | string] | string]" (table:buttons="<string>" )? + (table:show-filter-button="<boolean>" )? + (table:drill-down-on-double-click="<boolean>" )? + (<table:database-source-sql ... > | <table:database-source-query ... > | <table:database-source-table ... > | <table:source-service ... > | <table:source-cell-range ... >)? + (<table:data-pilot-field ... >)+ >  +
@@ -12035,6 +16867,10 @@

table:data-pilot-tables Element< <table:data-pilot-table>*    + + Child Relations + <table:data-pilot-tables (<table:data-pilot-table ... >)* >  +
@@ -12053,11 +16889,11 @@

table:database-range Elementtable:display-filter-buttons  table:has-persistent-data  table:is-selection  - table:name[1]  + table:name[2]  table:on-update-keep-size  table:on-update-keep-styles  - table:orientation[1]  - table:refresh-delay[1]  + table:orientation[2]  + table:refresh-delay[2]  table:target-range-address    @@ -12072,6 +16908,23 @@

table:database-range Element<table:subtotal-rules>    + + Child Relations + <table:database-range (table:name="<string>" )? + (table:is-selection="<boolean>" )? + (table:on-update-keep-styles="<boolean>" )? + (table:on-update-keep-size="<boolean>" )? + (table:has-persistent-data="<boolean>" )? + (table:orientation="column | row" )? + (table:contains-header="<boolean>" )? + (table:display-filter-buttons="<boolean>" )? + table:target-range-address="string] | string] | string]" (table:refresh-delay="<boolean>" )? + (<table:database-source-sql ... > | <table:database-source-query ... > | <table:database-source-table ... >)? + (<table:filter ... >)? + (<table:sort ... >)? + (<table:subtotal-rules ... >)? + >  +
@@ -12098,6 +16951,10 @@

table:database-ranges Element< <table:database-range>*    + + Child Relations + <table:database-ranges (<table:database-range ... >)* >  +
@@ -12122,6 +16979,10 @@

table:database-source-query   + + Child Relations + <table:database-source-query table:database-name="<string>" table:query-name="<string>" >  +
@@ -12147,6 +17008,11 @@

table:database-source-sql Elem   + + Child Relations + <table:database-source-sql table:database-name="<string>" table:sql-statement="<string>" (table:parse-sql-statement="<boolean>" )? + >  +
@@ -12171,6 +17037,10 @@

table:database-source-table   + + Child Relations + <table:database-source-table table:database-name="<string>" table:database-table-name="<string>" >  +
@@ -12194,6 +17064,10 @@

table:dde-link Element

<table:table>    + + Child Relations + <table:dde-link <office:dde-source ... ><table:table ... >>  +
@@ -12220,6 +17094,10 @@

table:dde-links Element

<table:dde-link>*    + + Child Relations + <table:dde-links (<table:dde-link ... >)+ >  +
@@ -12252,6 +17130,17 @@

table:deletion Element

<table:dependencies>    + + Child Relations + <table:deletion table:type="row | column | table" table:position="<integer>" (table:table="<integer>" )? + (table:multi-deletion-spanned="<integer>" )? + table:id="<string>" (table:acceptance-state="accepted | rejected | pending" )? + (table:rejecting-change-id="<string>" )? + <office:change-info ... > (<table:dependencies ... >)? + (<table:deletions ... >)? + (<table:cut-offs ... >)? + >  +
@@ -12278,6 +17167,10 @@

table:deletions Element

<table:change-deletion>*    + + Child Relations + <table:deletions (<table:cell-content-deletion ... > | <table:change-deletion ... >)+ >  +
@@ -12303,6 +17196,10 @@

table:dependencies Element

<table:dependency>*    + + Child Relations + <table:dependencies (<table:dependency ... >)+ >  +
@@ -12325,6 +17222,10 @@

table:dependency Element

  + + Child Relations + <table:dependency table:id="<string>" >  +
@@ -12347,6 +17248,10 @@

table:desc Element (new in ODF 1.2)   + + Child Relations + <table:desc TEXT>  +
@@ -12371,6 +17276,10 @@

table:detective Element

<table:operation>*    + + Child Relations + <table:detective (<table:highlighted-range ... >)* (<table:operation ... >)* >  +
@@ -12393,6 +17302,11 @@

table:error-macro Element

  + + Child Relations + <table:error-macro (table:execute="<boolean>" )? + >  +
@@ -12418,6 +17332,13 @@

table:error-message Element

<text:p>*    + + Child Relations + <table:error-message (table:title="<string>" )? + (table:display="<boolean>" )? + (table:message-type="stop | warning | information" )? + (<text:p ... >)* >  +
@@ -12441,6 +17362,12 @@

table:even-columns Element (   + + Child Relations + <table:even-columns + (table:style-name="(<NCName>)?" (table:paragraph-style-name="(<NCName>)?" )? + )>  +
@@ -12464,6 +17391,12 @@

table:even-rows Element (new in   + + Child Relations + <table:even-rows + (table:style-name="(<NCName>)?" (table:paragraph-style-name="(<NCName>)?" )? + )>  +
@@ -12493,6 +17426,14 @@

table:filter Element

<table:filter-or>    + + Child Relations + <table:filter (table:target-range-address="string] | string] | string]" )? + (table:condition-source="self | cell-range" )? + (table:condition-source-range-address="string] | string] | string]" )? + (table:display-duplicates="<boolean>" )? + <table:filter-condition ... > | <table:filter-and ... > | <table:filter-or ... >>  +
@@ -12517,6 +17458,10 @@

table:filter-and Element

<table:filter-or>*    + + Child Relations + <table:filter-and (<table:filter-or ... > | <table:filter-condition ... >)+ >  +
@@ -12537,7 +17482,7 @@

table:filter-condition Elementtable:data-type[2]  table:field-number  table:operator  - table:value[2]  + table:value[1]    @@ -12546,6 +17491,12 @@

table:filter-condition Element<table:filter-set-item>*    + + Child Relations + <table:filter-condition table:field-number="<nonNegativeInteger>" table:value="<string> | <double>" table:operator="<string>" (table:case-sensitive="<string>" )? + (table:data-type="text | number" )? + (<table:filter-set-item ... >)* >  +
@@ -12570,6 +17521,10 @@

table:filter-or Element

<table:filter-condition>*    + + Child Relations + <table:filter-or (<table:filter-and ... > | <table:filter-condition ... >)+ >  +
@@ -12584,7 +17539,7 @@

table:filter-set-item Element& Attributes - table:value[1]  + table:value[2]    @@ -12592,6 +17547,10 @@

table:filter-set-item Element&   + + Child Relations + <table:filter-set-item table:value="<string>" >  +
@@ -12615,6 +17574,12 @@

table:first-column Element (   + + Child Relations + <table:first-column + (table:style-name="(<NCName>)?" (table:paragraph-style-name="(<NCName>)?" )? + )>  +
@@ -12638,6 +17603,12 @@

table:first-row Element (new in   + + Child Relations + <table:first-row + (table:style-name="(<NCName>)?" (table:paragraph-style-name="(<NCName>)?" )? + )>  +
@@ -12662,6 +17633,12 @@

table:help-message Element

<text:p>*    + + Child Relations + <table:help-message (table:title="<string>" )? + (table:display="<boolean>" )? + (<text:p ... >)* >  +
@@ -12676,7 +17653,7 @@

table:highlighted-range Element< Attributes - table:cell-range-address[1]  + table:cell-range-address[2]  table:contains-error  table:direction  table:marked-invalid  @@ -12687,6 +17664,12 @@

table:highlighted-range Element<   + + Child Relations + <table:highlighted-range (table:cell-range-address="string] | string] | string]" )? + table:direction="from-another-table | to-another-table | from-same-table" (table:contains-error="<boolean>" )? + | table:marked-invalid="<boolean>" >  +
@@ -12718,6 +17701,16 @@

table:insertion Element

<table:dependencies>    + + Child Relations + <table:insertion table:type="row | column | table" table:position="<integer>" (table:count="<positiveInteger>" )? + (table:table="<integer>" )? + table:id="<string>" (table:acceptance-state="accepted | rejected | pending" )? + (table:rejecting-change-id="<string>" )? + <office:change-info ... > (<table:dependencies ... >)? + (<table:deletions ... >)? + >  +
@@ -12741,6 +17734,10 @@

table:insertion-cut-off Element<   + + Child Relations + <table:insertion-cut-off table:id="<string>" table:position="<integer>" >  +
@@ -12765,6 +17762,13 @@

table:iteration Element

  + + Child Relations + <table:iteration (table:status="enable | disable" )? + (table:steps="<positiveInteger>" )? + (table:maximum-difference="<double>" )? + >  +
@@ -12781,7 +17785,7 @@

table:label-range Element

table:data-cell-range-address  table:label-cell-range-address  - table:orientation[1]  + table:orientation[2]    @@ -12789,6 +17793,10 @@

table:label-range Element

  + + Child Relations + <table:label-range table:label-cell-range-address="string] | string] | string]" table:data-cell-range-address="string] | string] | string]" table:orientation="column | row" >  +
@@ -12815,6 +17823,10 @@

table:label-ranges Element

<table:label-range>*    + + Child Relations + <table:label-ranges (<table:label-range ... >)* >  +
@@ -12838,6 +17850,12 @@

table:last-column Element (ne   + + Child Relations + <table:last-column + (table:style-name="(<NCName>)?" (table:paragraph-style-name="(<NCName>)?" )? + )>  +
@@ -12861,6 +17879,12 @@

table:last-row Element (new in O   + + Child Relations + <table:last-row + (table:style-name="(<NCName>)?" (table:paragraph-style-name="(<NCName>)?" )? + )>  +
@@ -12890,6 +17914,14 @@

table:movement Element

<table:target-range-address>    + + Child Relations + <table:movement table:id="<string>" (table:acceptance-state="accepted | rejected | pending" )? + (table:rejecting-change-id="<string>" )? + <table:source-range-address ... ><table:target-range-address ... ><office:change-info ... > (<table:dependencies ... >)? + (<table:deletions ... >)? + >  +
@@ -12914,6 +17946,11 @@

table:movement-cut-off Element   + + Child Relations + <table:movement-cut-off table:position="<integer>" | + (table:start-position="<integer>" table:end-position="<integer>" )>  +
@@ -12930,7 +17967,7 @@

table:named-expression Element table:base-cell-address  table:expression  - table:name[1]  + table:name[2]    @@ -12938,6 +17975,12 @@

table:named-expression Element   + + Child Relations + <table:named-expression + (table:name="<string>" table:expression="<string>" (table:base-cell-address="string]" )? + )>  +
@@ -12966,6 +18009,10 @@

table:named-expressions Element< <table:named-range>*    + + Child Relations + <table:named-expressions (<table:named-range ... > | <table:named-expression ... >)* >  +
@@ -12981,8 +18028,8 @@

table:named-range Element

Attributes table:base-cell-address  - table:cell-range-address[1]  - table:name[1]  + table:cell-range-address[2]  + table:name[2]  table:range-usable-as    @@ -12991,6 +18038,15 @@

table:named-range Element

  + + Child Relations + <table:named-range + (table:name="<string>" table:cell-range-address="string] | string] | string]" (table:base-cell-address="string]" )? + (table:range-usable-as="none | +START_list(print-range | filter | repeat-row | repeat-column)+ +END_list" )? + )>  +
@@ -13014,6 +18070,12 @@

table:null-date Element

  + + Child Relations + <table:null-date (table:value-type="date" )? + (table:date-value="<date>" )? + >  +
@@ -13037,6 +18099,12 @@

table:odd-columns Element (ne   + + Child Relations + <table:odd-columns + (table:style-name="(<NCName>)?" (table:paragraph-style-name="(<NCName>)?" )? + )>  +
@@ -13060,6 +18128,12 @@

table:odd-rows Element (new in O   + + Child Relations + <table:odd-rows + (table:style-name="(<NCName>)?" (table:paragraph-style-name="(<NCName>)?" )? + )>  +
@@ -13075,7 +18149,7 @@

table:operation Element

Attributes table:index  - table:name[2]  + table:name[1]    @@ -13083,6 +18157,10 @@

table:operation Element

  + + Child Relations + <table:operation table:name="trace-dependents | remove-dependents | trace-precedents | remove-precedents | trace-errors" table:index="<nonNegativeInteger>" >  +
@@ -13106,6 +18184,11 @@

table:previous Element

<table:change-track-table-cell>    + + Child Relations + <table:previous (table:id="<string>" )? + <table:change-track-table-cell ... >>  +
@@ -13136,6 +18219,17 @@

table:scenario Element

  + + Child Relations + <table:scenario table:scenario-ranges="<string>" table:is-active="<boolean>" (table:display-border="<boolean>" )? + (table:border-color="string]" )? + (table:copy-back="<boolean>" )? + (table:copy-styles="<boolean>" )? + (table:copy-formulas="<boolean>" )? + (table:comment="<string>" )? + (table:protected="<boolean>" )? + >  +
@@ -13175,6 +18269,10 @@

table:shapes Element

<draw:regular-polygon>*    + + Child Relations + <table:shapes (<draw:rect ... > | <draw:line ... > | <draw:polyline ... > | <draw:polygon ... > | <draw:regular-polygon ... > | <draw:path ... > | <draw:circle ... > | <draw:ellipse ... > | <draw:g ... > | <draw:page-thumbnail ... > | <draw:frame ... > | <draw:measure ... > | <draw:caption ... > | <draw:connector ... > | <draw:control ... > | <dr3d:scene ... > | <draw:custom-shape ... > | <draw:a ... >)+ >  +
@@ -13206,6 +18304,19 @@

table:sort Element

<table:sort-by>*    + + Child Relations + <table:sort (table:bind-styles-to-content="<boolean>" )? + (table:target-range-address="string] | string] | string]" )? + (table:case-sensitive="<boolean>" )? + (table:language="token]" )? + (table:country="token]" )? + (table:script="token]" )? + (table:rfc-language-tag="<language>" )? + (table:algorithm="<string>" )? + (table:embedded-number-behavior="alpha-numeric | integer | double" )? + (<table:sort-by ... >)+ >  +
@@ -13230,6 +18341,12 @@

table:sort-by Element

  + + Child Relations + <table:sort-by table:field-number="<nonNegativeInteger>" (table:data-type="text | number | automatic | <string>" )? + (table:order="ascending | descending" )? + >  +
@@ -13253,6 +18370,12 @@

table:sort-groups Element

  + + Child Relations + <table:sort-groups (table:data-type="text | number | automatic | <string>" )? + (table:order="ascending | descending" )? + >  +
@@ -13267,7 +18390,7 @@

table:source-cell-range Element< Attributes - table:cell-range-address[1]  + table:cell-range-address[2]    @@ -13276,6 +18399,11 @@

table:source-cell-range Element< <table:filter>    + + Child Relations + <table:source-cell-range table:cell-range-address="string] | string] | string]" (<table:filter ... >)? + >  +
@@ -13306,6 +18434,12 @@

table:source-range-address El   + + Child Relations + <table:source-range-address + (table:column="<integer>" table:row="<integer>" table:table="<integer>" ) | + (table:start-column="<integer>" table:start-row="<integer>" table:start-table="<integer>" table:end-column="<integer>" table:end-row="<integer>" table:end-table="<integer>" )>  +
@@ -13320,7 +18454,7 @@

table:source-service Element Attributes - table:name[1]  + table:name[2]  table:object-name  table:password  table:source-name  @@ -13332,6 +18466,12 @@

table:source-service Element   + + Child Relations + <table:source-service table:name="<string>" table:source-name="<string>" table:object-name="<string>" (table:user-name="<string>" )? + (table:password="<string>" )? + >  +
@@ -13347,7 +18487,7 @@

table:subtotal-field ElementAttributes table:field-number  - table:function[1]  + table:function[2]    @@ -13355,6 +18495,10 @@

table:subtotal-field Element   + + Child Relations + <table:subtotal-field table:field-number="<nonNegativeInteger>" table:function="average | count | countnums | max | min | product | stdev | stdevp | sum | var | varp | <string>" >  +
@@ -13378,6 +18522,10 @@

table:subtotal-rule Element

<table:subtotal-field>*    + + Child Relations + <table:subtotal-rule table:group-by-field-number="<nonNegativeInteger>" (<table:subtotal-field ... >)* >  +
@@ -13404,6 +18552,14 @@

table:subtotal-rules Element<table:subtotal-rule>*    + + Child Relations + <table:subtotal-rules (table:bind-styles-to-content="<boolean>" )? + (table:case-sensitive="<boolean>" )? + (table:page-breaks-on-group-change="<boolean>" )? + (<table:sort-groups ... >)? + (<table:subtotal-rule ... >)* >  +
@@ -13435,7 +18591,7 @@

table:table Element

Attributes table:is-sub-table  - table:name[1]  + table:name[2]  table:print  table:print-ranges  table:protected  @@ -13474,6 +18630,48 @@

table:table Element

<text:soft-page-break>*    + + Child Relations + <table:table (table:name="<string>" )? + (table:style-name="(<NCName>)?" )? + (table:template-name="<string>" )? + (table:use-first-row-styles="<boolean>" )? + (table:use-last-row-styles="<boolean>" )? + (table:use-first-column-styles="<boolean>" )? + (table:use-last-column-styles="<boolean>" )? + (table:use-banding-rows-styles="<boolean>" )? + (table:use-banding-columns-styles="<boolean>" )? + (table:protected="<boolean>" )? + (table:protection-key="<string>" )? + (table:protection-key-digest-algorithm="<anyIRI>" )? + (table:print="<boolean>" )? + (table:print-ranges="<string>" )? + (xml:id="<ID>" )? + (table:is-sub-table="<boolean>" )? + (<table:title ... >)? + (<table:desc ... >)? + (<table:table-source ... >)? + (<office:dde-source ... >)? + (<table:scenario ... >)? + ( (<office:forms ... >)? + )? + (<table:shapes ... >)? + (<table:table-column-group ... > | + (<table:table-columns ... > | (<table:table-column ... >)+ (<table:table-header-columns ... > (<table:table-columns ... > | (<table:table-column ... >)+ )? + )? + ) | + (<table:table-header-columns ... > (<table:table-columns ... > | (<table:table-column ... >)+ )? + ))+ (<table:table-row-group ... > | + (<table:table-rows ... > | ( (<text:soft-page-break ... >)? + <table:table-row ... >)+ (<table:table-header-rows ... > (<table:table-rows ... > | ( (<text:soft-page-break ... >)? + <table:table-row ... >)+ )? + )? + ) | + (<table:table-header-rows ... > (<table:table-rows ... > | ( (<text:soft-page-break ... >)? + <table:table-row ... >)+ )? + ))+ (<table:named-expressions ... >)? + >  +
@@ -13496,11 +18694,11 @@

table:table-cell Element

office:value  office:value-type[1]  office:value-type[2]  + office:value-type[3]  office:value-type[4]  office:value-type[5]  office:value-type[6]  office:value-type[7]  - office:value-type[9]  table:content-validation-name  table:formula  table:number-columns-repeated  @@ -13561,6 +18759,42 @@

table:table-cell Element

<text:user-index>*    + + Child Relations + <table:table-cell (table:number-columns-repeated="<positiveInteger>" )? + (table:style-name="(<NCName>)?" )? + (table:content-validation-name="<string>" )? + (table:formula="<string>" )? + ( + (office:value-type="float" office:value="<double>" ) | + (office:value-type="percentage" office:value="<double>" ) | + (office:value-type="currency" office:value="<double>" (office:currency="<string>" )? + ) | + (office:value-type="date" office:date-value="<date> | <dateTime>" ) | + (office:value-type="time" office:time-value="<duration>" ) | + (office:value-type="boolean" office:boolean-value="<boolean>" ) | + (office:value-type="string" (office:string-value="<string>" )? + ))? + (table:protect="<boolean>" )? + (table:protected="<boolean>" )? + (xml:id="<ID>" )? + ( + (xhtml:about="<anyURI> | string]" xhtml:property=" +START_list(string])+ +END_list" + ( (xhtml:datatype="string]" )? + (xhtml:content="<string>" )? + )))? + (table:number-columns-spanned="<positiveInteger>" )? + (table:number-rows-spanned="<positiveInteger>" )? + (table:number-matrix-columns-spanned="<positiveInteger>" )? + (table:number-matrix-rows-spanned="<positiveInteger>" )? + + ( (<table:cell-range-source ... >)? + (<office:annotation ... >)? + (<table:detective ... >)? + (<text:h ... > | <text:p ... > | <text:list ... > | <text:numbered-paragraph ... > | <table:table ... > | <text:section ... > | <text:soft-page-break ... > | <text:table-of-content ... > | <text:illustration-index ... > | <text:table-index ... > | <text:object-index ... > | <text:user-index ... > | <text:alphabetical-index ... > | <text:bibliography ... > | <draw:rect ... > | <draw:line ... > | <draw:polyline ... > | <draw:polygon ... > | <draw:regular-polygon ... > | <draw:path ... > | <draw:circle ... > | <draw:ellipse ... > | <draw:g ... > | <draw:page-thumbnail ... > | <draw:frame ... > | <draw:measure ... > | <draw:caption ... > | <draw:connector ... > | <draw:control ... > | <dr3d:scene ... > | <draw:custom-shape ... > | <draw:a ... > | <text:change ... > | <text:change-start ... > | <text:change-end ... >)* )>  +
@@ -13590,6 +18824,15 @@

table:table-column Element

  + + Child Relations + <table:table-column (table:number-columns-repeated="<positiveInteger>" )? + (table:style-name="(<NCName>)?" )? + (table:visibility="visible | collapse | filter" )? + (table:default-cell-style-name="(<NCName>)?" )? + (xml:id="<ID>" )? + >  +
@@ -13617,6 +18860,16 @@

table:table-column-group Elemen <table:table-header-columns>*    + + Child Relations + <table:table-column-group (table:display="<boolean>" )? + (<table:table-column-group ... > | + (<table:table-columns ... > | (<table:table-column ... >)+ (<table:table-header-columns ... > (<table:table-columns ... > | (<table:table-column ... >)+ )? + )? + ) | + (<table:table-header-columns ... > (<table:table-columns ... > | (<table:table-column ... >)+ )? + ))+ >  +
@@ -13640,6 +18893,10 @@

table:table-columns Element

<table:table-column>*    + + Child Relations + <table:table-columns (<table:table-column ... >)+ >  +
@@ -13663,6 +18920,10 @@

table:table-header-columns El <table:table-column>*    + + Child Relations + <table:table-header-columns (<table:table-column ... >)+ >  +
@@ -13687,6 +18948,11 @@

table:table-header-rows Element< <text:soft-page-break>*    + + Child Relations + <table:table-header-rows ( (<text:soft-page-break ... >)? + <table:table-row ... >)+ >  +
@@ -13718,6 +18984,15 @@

table:table-row Element

<table:table-cell>*    + + Child Relations + <table:table-row (table:number-rows-repeated="<positiveInteger>" )? + (table:style-name="(<NCName>)?" )? + (table:default-cell-style-name="(<NCName>)?" )? + (table:visibility="visible | collapse | filter" )? + (xml:id="<ID>" )? + (<table:table-cell ... > | <table:covered-table-cell ... >)+ >  +
@@ -13746,6 +19021,19 @@

table:table-row-group Element< <text:soft-page-break>*    + + Child Relations + <table:table-row-group (table:display="<boolean>" )? + (<table:table-row-group ... > | + (<table:table-rows ... > | ( (<text:soft-page-break ... >)? + <table:table-row ... >)+ (<table:table-header-rows ... > (<table:table-rows ... > | ( (<text:soft-page-break ... >)? + <table:table-row ... >)+ )? + )? + ) | + (<table:table-header-rows ... > (<table:table-rows ... > | ( (<text:soft-page-break ... >)? + <table:table-row ... >)+ )? + ))+ >  +
@@ -13770,6 +19058,11 @@

table:table-rows Element

<text:soft-page-break>*    + + Child Relations + <table:table-rows ( (<text:soft-page-break ... >)? + <table:table-row ... >)+ >  +
@@ -13787,7 +19080,7 @@

table:table-source Element

table:filter-name  table:filter-options  table:mode  - table:refresh-delay[2]  + table:refresh-delay[1]  table:table-name  xlink:actuate[1]  xlink:href  @@ -13799,6 +19092,16 @@

table:table-source Element

  + + Child Relations + <table:table-source (table:mode="copy-all | copy-results-only" )? + (table:table-name="<string>" )? + xlink:type="simple" xlink:href="<anyIRI>" (xlink:actuate="onRequest" )? + (table:filter-name="<string>" )? + (table:filter-options="<string>" )? + (table:refresh-delay="<duration>" )? + >  +
@@ -13817,7 +19120,7 @@

table:table-template Element&nb table:first-row-start-column  table:last-row-end-column  table:last-row-start-column  - table:name[1]  + table:name[2]    @@ -13835,6 +19138,19 @@

table:table-template Element&nb <table:odd-rows>    + + Child Relations + <table:table-template table:name="<string>" table:first-row-start-column="row | column" table:first-row-end-column="row | column" table:last-row-start-column="row | column" table:last-row-end-column="row | column" (<table:first-row ... >)? + (<table:last-row ... >)? + (<table:first-column ... >)? + (<table:last-column ... >)? + <table:body ... > (<table:even-rows ... >)? + (<table:odd-rows ... >)? + (<table:even-columns ... >)? + (<table:odd-columns ... >)? + (<table:background ... >)? + >  +
@@ -13865,6 +19181,12 @@

table:target-range-address El   + + Child Relations + <table:target-range-address + (table:column="<integer>" table:row="<integer>" table:table="<integer>" ) | + (table:start-column="<integer>" table:start-row="<integer>" table:start-table="<integer>" table:end-column="<integer>" table:end-row="<integer>" table:end-table="<integer>" )>  +
@@ -13887,6 +19209,10 @@

table:title Element (new in ODF 1.2   + + Child Relations + <table:title TEXT>  +
@@ -13913,6 +19239,11 @@

table:tracked-changes Element< <table:movement>*    + + Child Relations + <table:tracked-changes (table:track-changes="<boolean>" )? + (<table:cell-content-change ... > | <table:insertion ... > | <table:deletion ... > | <table:movement ... >)* >  +
@@ -14077,6 +19408,18 @@

text:a Element

<text:word-count>*    + + Child Relations + <text:a (office:name="<string>" )? + (office:title="<string>" )? + xlink:type="simple" xlink:href="<anyIRI>" (xlink:actuate="onRequest" )? + (office:target-frame-name="_self | _blank | _parent | _top | <string>" )? + (xlink:show="new | replace" )? + (text:style-name="(<NCName>)?" )? + (text:visited-style-name="(<NCName>)?" )? + (<office:event-listeners ... >)? + (TEXT | <text:s ... > | <text:tab ... > | <text:line-break ... > | <text:soft-page-break ... > | <text:span ... > | <text:meta ... > | <text:bookmark ... > | <text:bookmark-start ... > | <text:bookmark-end ... > | <text:reference-mark ... > | <text:reference-mark-start ... > | <text:reference-mark-end ... > | <text:note ... > | <text:ruby ... > | <office:annotation ... > | <office:annotation-end ... > | <text:change ... > | <text:change-start ... > | <text:change-end ... > | <draw:rect ... > | <draw:line ... > | <draw:polyline ... > | <draw:polygon ... > | <draw:regular-polygon ... > | <draw:path ... > | <draw:circle ... > | <draw:ellipse ... > | <draw:g ... > | <draw:page-thumbnail ... > | <draw:frame ... > | <draw:measure ... > | <draw:caption ... > | <draw:connector ... > | <draw:control ... > | <dr3d:scene ... > | <draw:custom-shape ... > | <draw:a ... > | <text:date ... > | <text:time ... > | <text:page-number ... > | <text:page-continuation ... > | <text:sender-firstname ... > | <text:sender-lastname ... > | <text:sender-initials ... > | <text:sender-title ... > | <text:sender-position ... > | <text:sender-email ... > | <text:sender-phone-private ... > | <text:sender-fax ... > | <text:sender-company ... > | <text:sender-phone-work ... > | <text:sender-street ... > | <text:sender-city ... > | <text:sender-postal-code ... > | <text:sender-country ... > | <text:sender-state-or-province ... > | <text:author-name ... > | <text:author-initials ... > | <text:chapter ... > | <text:file-name ... > | <text:template-name ... > | <text:sheet-name ... > | <text:variable-set ... > | <text:variable-get ... > | <text:variable-input ... > | <text:user-field-get ... > | <text:user-field-input ... > | <text:sequence ... > | <text:expression ... > | <text:text-input ... > | <text:initial-creator ... > | <text:creation-date ... > | <text:creation-time ... > | <text:description ... > | <text:user-defined ... > | <text:print-time ... > | <text:print-date ... > | <text:printed-by ... > | <text:title ... > | <text:subject ... > | <text:keywords ... > | <text:editing-cycles ... > | <text:editing-duration ... > | <text:modification-time ... > | <text:modification-date ... > | <text:creator ... > | <CHOICE_NAME_CLASS ... > | <text:database-display ... > | <text:database-next ... > | <text:database-row-select ... > | <text:database-row-number ... > | <text:database-name ... > | <text:page-variable-set ... > | <text:page-variable-get ... > | <text:placeholder ... > | <text:conditional-text ... > | <text:hidden-text ... > | <CHOICE_NAME_CLASS ... > | <text:note-ref ... > | <text:sequence-ref ... > | <text:script ... > | <text:execute-macro ... > | <text:hidden-paragraph ... > | <text:dde-connection ... > | <text:measure ... > | <text:table-formula ... > | <text:meta-field ... > | <text:toc-mark-start ... > | <text:toc-mark-end ... > | <text:toc-mark ... > | <text:user-index-mark-start ... > | <text:user-index-mark-end ... > | <text:user-index-mark ... > | <text:alphabetical-index-mark-start ... > | <text:alphabetical-index-mark-end ... > | <text:alphabetical-index-mark ... > | <text:bibliography-mark ... > | <presentation:header ... > | <presentation:footer ... > | <presentation:date-time ... >)+ >  +
@@ -14118,6 +19461,15 @@

text:alphabetical-index Element< <text:index-body>    + + Child Relations + <text:alphabetical-index (text:style-name="(<NCName>)?" )? + text:name="<string>" (text:protected="<boolean>" )? + (text:protection-key="<string>" )? + (text:protection-key-digest-algorithm="<anyIRI>" )? + (xml:id="<ID>" )? + <text:alphabetical-index-source ... ><text:index-body ... >>  +
@@ -14149,6 +19501,10 @@

text:alphabetical   + + Child Relations + <text:alphabetical-index-auto-mark-file xlink:type="simple" xlink:href="<anyIRI>" >  +
@@ -14177,6 +19533,10 @@

text:alphabetical <text:index-entry-text>*    + + Child Relations + <text:alphabetical-index-entry-template text:outline-level="1 | 2 | 3 | separator" text:style-name="(<NCName>)?" (<text:index-entry-chapter ... > | <text:index-entry-page-number ... > | <text:index-entry-text ... > | <text:index-entry-span ... > | <text:index-entry-tab-stop ... >)* >  +
@@ -14211,6 +19571,16 @@

text:alphabetical-index-mar   + + Child Relations + <text:alphabetical-index-mark text:string-value="<string>" (text:key1="<string>" )? + (text:key2="<string>" )? + (text:string-value-phonetic="<string>" )? + (text:key1-phonetic="<string>" )? + (text:key2-phonetic="<string>" )? + (text:main-entry="<boolean>" )? + >  +
@@ -14231,7 +19601,7 @@

text:alphabetical-index Attributes - text:id[2]  + text:id[1]    @@ -14239,6 +19609,10 @@

text:alphabetical-index   + + Child Relations + <text:alphabetical-index-mark-end text:id="<string>" >  +
@@ -14259,7 +19633,7 @@

text:alphabetical-ind Attributes - text:id[2]  + text:id[1]  text:key1  text:key1-phonetic  text:key2  @@ -14273,6 +19647,16 @@

text:alphabetical-ind   + + Child Relations + <text:alphabetical-index-mark-start text:id="<string>" (text:key1="<string>" )? + (text:key2="<string>" )? + (text:string-value-phonetic="<string>" )? + (text:key1-phonetic="<string>" )? + (text:key2-phonetic="<string>" )? + (text:main-entry="<boolean>" )? + >  +
@@ -14312,6 +19696,27 @@

text:alphabetical-index-s <text:index-title-template>    + + Child Relations + <text:alphabetical-index-source (text:index-scope="document | chapter" )? + (text:relative-tab-stop-position="<boolean>" )? + (text:ignore-case="<boolean>" )? + (text:main-entry-style-name="(<NCName>)?" )? + (text:alphabetical-separators="<boolean>" )? + (text:combine-entries="<boolean>" )? + (text:combine-entries-with-dash="<boolean>" )? + (text:combine-entries-with-pp="<boolean>" )? + (text:use-keys-as-entries="<boolean>" )? + (text:capitalize-entries="<boolean>" )? + (text:comma-separated="<boolean>" )? + (fo:language="token]" )? + (fo:country="token]" )? + (fo:script="token]" )? + (style:rfc-language-tag="<language>" )? + (text:sort-algorithm="<string>" )? + (<text:index-title-template ... >)? + (<text:alphabetical-index-entry-template ... >)* >  +
@@ -14341,6 +19746,11 @@

text:author-initials Element   + + Child Relations + <text:author-initials (text:fixed="<boolean>" )? + TEXT>  +
@@ -14370,6 +19780,11 @@

text:author-name Element

  + + Child Relations + <text:author-name (text:fixed="<boolean>" )? + TEXT>  +
@@ -14411,6 +19826,15 @@

text:bibliography Element

<text:index-body>    + + Child Relations + <text:bibliography (text:style-name="(<NCName>)?" )? + text:name="<string>" (text:protected="<boolean>" )? + (text:protection-key="<string>" )? + (text:protection-key-digest-algorithm="<anyIRI>" )? + (xml:id="<ID>" )? + <text:bibliography-source ... ><text:index-body ... >>  +
@@ -14442,6 +19866,19 @@

text:bibliography-config <text:sort-key>*    + + Child Relations + <text:bibliography-configuration (text:prefix="<string>" )? + (text:suffix="<string>" )? + (text:numbered-entries="<boolean>" )? + (text:sort-by-position="<boolean>" )? + (fo:language="token]" )? + (fo:country="token]" )? + (fo:script="token]" )? + (style:rfc-language-tag="<language>" )? + (text:sort-algorithm="<string>" )? + (<text:sort-key ... >)* >  +
@@ -14468,6 +19905,10 @@

text:bibliography-entry <text:index-entry-tab-stop>*    + + Child Relations + <text:bibliography-entry-template text:bibliography-type="article | book | booklet | conference | custom1 | custom2 | custom3 | custom4 | custom5 | email | inbook | incollection | inproceedings | journal | manual | mastersthesis | misc | phdthesis | proceedings | techreport | unpublished | www" text:style-name="(<NCName>)?" (<text:index-entry-span ... > | <text:index-entry-tab-stop ... > | <text:index-entry-bibliography ... >)* >  +
@@ -14528,6 +19969,10 @@

text:bibliography-mark Element   + + Child Relations + <text:bibliography-mark text:bibliography-type="article | book | booklet | conference | custom1 | custom2 | custom3 | custom4 | custom5 | email | inbook | incollection | inproceedings | journal | manual | mastersthesis | misc | phdthesis | proceedings | techreport | unpublished | www" (CHOICE_NAME_CLASS="<string>" )* TEXT>  +
@@ -14551,6 +19996,11 @@

text:bibliography-source Elemen <text:index-title-template>    + + Child Relations + <text:bibliography-source (<text:index-title-template ... >)? + (<text:bibliography-entry-template ... >)* >  +
@@ -14580,6 +20030,11 @@

text:bookmark Element

  + + Child Relations + <text:bookmark text:name="<string>" (xml:id="<ID>" )? + >  +
@@ -14608,6 +20063,10 @@

text:bookmark-end Element

  + + Child Relations + <text:bookmark-end text:name="<string>" >  +
@@ -14630,7 +20089,7 @@

text:bookmark-ref Element

Attributes text:ref-name  - text:reference-format[3]  + text:reference-format[2]    @@ -14638,6 +20097,12 @@

text:bookmark-ref Element

  + + Child Relations + <CHOICE_NAME_CLASS TEXT (text:ref-name="<string>" )? + (text:reference-format="page | chapter | direction | text | number-no-superior | number-all-superior | number" )? + >  +
@@ -14671,6 +20136,18 @@

text:bookmark-start Element

  + + Child Relations + <text:bookmark-start text:name="<string>" (xml:id="<ID>" )? + ( + (xhtml:about="<anyURI> | string]" xhtml:property=" +START_list(string])+ +END_list" + ( (xhtml:datatype="string]" )? + (xhtml:content="<string>" )? + )))? + >  +
@@ -14712,6 +20189,10 @@

text:change Element

  + + Child Relations + <text:change text:change-id="<IDREF>" >  +
@@ -14753,6 +20234,10 @@

text:change-end Element

  + + Child Relations + <text:change-end text:change-id="<IDREF>" >  +
@@ -14794,6 +20279,10 @@

text:change-start Element

  + + Child Relations + <text:change-start text:change-id="<IDREF>" >  +
@@ -14808,7 +20297,7 @@

text:changed-region Element

Attributes - text:id[1]  + text:id[2]  xml:id    @@ -14820,6 +20309,12 @@

text:changed-region Element

<text:insertion>    + + Child Relations + <text:changed-region + (xml:id="<ID>" (text:id="<NCName>" )? + )<text:insertion ... > | <text:deletion ... > | <text:format-change ... >>  +
@@ -14841,7 +20336,7 @@

text:chapter Element

Attributes - text:display[2]  + text:display[1]  text:outline-level[3]    @@ -14850,6 +20345,10 @@

text:chapter Element

  + + Child Relations + <text:chapter text:display="name | number | number-and-name | plain-number-and-name | plain-number" text:outline-level="<nonNegativeInteger>" TEXT>  +
@@ -14881,6 +20380,14 @@

text:character-count Element   + + Child Relations + <CHOICE_NAME_CLASS ( (style:num-format="(1 | i | I | <string>)?" | + (style:num-format="a | A" (style:num-letter-sync="<boolean>" )? + ))? + )? + TEXT>  +
@@ -14913,6 +20420,11 @@

text:conditional-text Element<   + + Child Relations + <text:conditional-text text:condition="<string>" text:string-value-if-true="<string>" text:string-value-if-false="<string>" (text:current-value="<boolean>" )? + TEXT>  +
@@ -14935,7 +20447,7 @@

text:creation-date Element

Attributes style:data-style-name  - text:date-value[2]  + text:date-value[1]  text:fixed    @@ -14944,6 +20456,13 @@

text:creation-date Element

  + + Child Relations + <text:creation-date (text:fixed="<boolean>" )? + (style:data-style-name="(<NCName>)?" )? + (text:date-value="<date> | <dateTime>" )? + TEXT>  +
@@ -14975,6 +20494,13 @@

text:creation-time Element

  + + Child Relations + <text:creation-time (text:fixed="<boolean>" )? + (style:data-style-name="(<NCName>)?" )? + (text:time-value="<time> | <dateTime>" )? + TEXT>  +
@@ -15004,6 +20530,11 @@

text:creator Element

  + + Child Relations + <text:creator (text:fixed="<boolean>" )? + TEXT>  +
@@ -15038,6 +20569,13 @@

text:database-display Element< <form:connection-resource>    + + Child Relations + <text:database-display + (text:table-name="<string>" (text:table-type="table | query | command" )? + text:database-name="<string>" | EMPTY | <form:connection-resource ... >) (style:data-style-name="(<NCName>)?" )? + text:column-name="<string>" TEXT>  +
@@ -15070,6 +20608,12 @@

text:database-name Element

<form:connection-resource>    + + Child Relations + <text:database-name + (text:table-name="<string>" (text:table-type="table | query | command" )? + text:database-name="<string>" | EMPTY | <form:connection-resource ... >)TEXT>  +
@@ -15102,6 +20646,13 @@

text:database-next Element

<form:connection-resource>    + + Child Relations + <text:database-next + (text:table-name="<string>" (text:table-type="table | query | command" )? + text:database-name="<string>" | EMPTY | <form:connection-resource ... >) (text:condition="<string>" )? + >  +
@@ -15138,6 +20689,17 @@

text:database-row-number Elemen <form:connection-resource>    + + Child Relations + <text:database-row-number + (text:table-name="<string>" (text:table-type="table | query | command" )? + text:database-name="<string>" | EMPTY | <form:connection-resource ... >) ( (style:num-format="(1 | i | I | <string>)?" | + (style:num-format="a | A" (style:num-letter-sync="<boolean>" )? + ))? + )? + (text:value="<nonNegativeInteger>" )? + TEXT>  +
@@ -15171,6 +20733,14 @@

text:database-row-select Elemen <form:connection-resource>    + + Child Relations + <text:database-row-select + (text:table-name="<string>" (text:table-type="table | query | command" )? + text:database-name="<string>" | EMPTY | <form:connection-resource ... >) (text:condition="<string>" )? + (text:row-number="<nonNegativeInteger>" )? + >  +
@@ -15194,7 +20764,7 @@

text:date Element

style:data-style-name  text:date-adjust  - text:date-value[2]  + text:date-value[1]  text:fixed    @@ -15203,6 +20773,14 @@

text:date Element

  + + Child Relations + <text:date (text:fixed="<boolean>" )? + (style:data-style-name="(<NCName>)?" )? + (text:date-value="<date> | <dateTime>" )? + (text:date-adjust="<duration>" )? + TEXT>  +
@@ -15232,6 +20810,10 @@

text:dde-connection Element

  + + Child Relations + <text:dde-connection text:connection-name="<string>" TEXT>  +
@@ -15258,6 +20840,11 @@

text:dde-connection-decl Elemen   + + Child Relations + <text:dde-connection-decl office:name="<string>" office:dde-application="<string>" office:dde-topic="<string>" office:dde-item="<string>" (office:automatic-update="<boolean>" )? + >  +
@@ -15288,6 +20875,10 @@

text:dde-connection-decls Elem <text:dde-connection-decl>*    + + Child Relations + <text:dde-connection-decls (<text:dde-connection-decl ... >)* >  +
@@ -15345,6 +20936,10 @@

text:deletion Element

<text:user-index>*    + + Child Relations + <text:deletion <office:change-info ... >(<text:h ... > | <text:p ... > | <text:list ... > | <text:numbered-paragraph ... > | <table:table ... > | <text:section ... > | <text:soft-page-break ... > | <text:table-of-content ... > | <text:illustration-index ... > | <text:table-index ... > | <text:object-index ... > | <text:user-index ... > | <text:alphabetical-index ... > | <text:bibliography ... > | <draw:rect ... > | <draw:line ... > | <draw:polyline ... > | <draw:polygon ... > | <draw:regular-polygon ... > | <draw:path ... > | <draw:circle ... > | <draw:ellipse ... > | <draw:g ... > | <draw:page-thumbnail ... > | <draw:frame ... > | <draw:measure ... > | <draw:caption ... > | <draw:connector ... > | <draw:control ... > | <dr3d:scene ... > | <draw:custom-shape ... > | <draw:a ... > | <text:change ... > | <text:change-start ... > | <text:change-end ... >)* >  +
@@ -15374,6 +20969,11 @@

text:description Element

  + + Child Relations + <text:description (text:fixed="<boolean>" )? + TEXT>  +
@@ -15403,6 +21003,11 @@

text:editing-cycles Element

  + + Child Relations + <text:editing-cycles (text:fixed="<boolean>" )? + TEXT>  +
@@ -15434,6 +21039,13 @@

text:editing-duration Element<   + + Child Relations + <text:editing-duration (text:fixed="<boolean>" )? + (style:data-style-name="(<NCName>)?" )? + (text:duration="<duration>" )? + TEXT>  +
@@ -15464,6 +21076,12 @@

text:execute-macro Element

<office:event-listeners>    + + Child Relations + <text:execute-macro (text:name="<string>" )? + (<office:event-listeners ... >)? + TEXT>  +
@@ -15493,13 +21111,13 @@

text:expression Element

office:value  office:value-type[1]  office:value-type[2]  + office:value-type[3]  office:value-type[4]  office:value-type[5]  office:value-type[6]  office:value-type[7]  - office:value-type[9]  style:data-style-name  - text:display[1]  + text:display[5]  text:formula    @@ -15508,6 +21126,23 @@

text:expression Element

  + + Child Relations + <text:expression (text:formula="<string>" )? + ( + (office:value-type="float" office:value="<double>" ) | + (office:value-type="percentage" office:value="<double>" ) | + (office:value-type="currency" office:value="<double>" (office:currency="<string>" )? + ) | + (office:value-type="date" office:date-value="<date> | <dateTime>" ) | + (office:value-type="time" office:time-value="<duration>" ) | + (office:value-type="boolean" office:boolean-value="<boolean>" ) | + (office:value-type="string" (office:string-value="<string>" )? + ))? + (text:display="value | formula" )? + (style:data-style-name="(<NCName>)?" )? + TEXT>  +
@@ -15529,7 +21164,7 @@

text:file-name Element

Attributes - text:display[6]  + text:display[3]  text:fixed    @@ -15538,6 +21173,12 @@

text:file-name Element

  + + Child Relations + <text:file-name (text:display="full | path | name | name-and-extension" )? + (text:fixed="<boolean>" )? + TEXT>  +
@@ -15560,6 +21201,10 @@

text:format-change Element

<office:change-info>    + + Child Relations + <text:format-change <office:change-info ... >>  +
@@ -15592,7 +21237,7 @@

text:h Element

text:class-names  text:cond-style-name  - text:id[1]  + text:id[2]  text:is-list-header  text:outline-level[1]  text:restart-numbering  @@ -15739,6 +21384,28 @@

text:h Element

<text:word-count>*    + + Child Relations + <text:h text:outline-level="<positiveInteger>" (text:restart-numbering="<boolean>" )? + (text:start-value="<nonNegativeInteger>" )? + (text:is-list-header="<boolean>" )? + (text:style-name="(<NCName>)?" )? + (text:class-names=" +START_list(<NCName>)* +END_list" )? + (text:cond-style-name="(<NCName>)?" )? + (xml:id="<ID>" (text:id="<NCName>" )? + )? + ( + (xhtml:about="<anyURI> | string]" xhtml:property=" +START_list(string])+ +END_list" + ( (xhtml:datatype="string]" )? + (xhtml:content="<string>" )? + )))? + (<text:number ... >)? + (TEXT | <text:s ... > | <text:tab ... > | <text:line-break ... > | <text:soft-page-break ... > | <text:span ... > | <text:meta ... > | <text:bookmark ... > | <text:bookmark-start ... > | <text:bookmark-end ... > | <text:reference-mark ... > | <text:reference-mark-start ... > | <text:reference-mark-end ... > | <text:note ... > | <text:ruby ... > | <office:annotation ... > | <office:annotation-end ... > | <text:change ... > | <text:change-start ... > | <text:change-end ... > | <draw:rect ... > | <draw:line ... > | <draw:polyline ... > | <draw:polygon ... > | <draw:regular-polygon ... > | <draw:path ... > | <draw:circle ... > | <draw:ellipse ... > | <draw:g ... > | <draw:page-thumbnail ... > | <draw:frame ... > | <draw:measure ... > | <draw:caption ... > | <draw:connector ... > | <draw:control ... > | <dr3d:scene ... > | <draw:custom-shape ... > | <draw:a ... > | <text:date ... > | <text:time ... > | <text:page-number ... > | <text:page-continuation ... > | <text:sender-firstname ... > | <text:sender-lastname ... > | <text:sender-initials ... > | <text:sender-title ... > | <text:sender-position ... > | <text:sender-email ... > | <text:sender-phone-private ... > | <text:sender-fax ... > | <text:sender-company ... > | <text:sender-phone-work ... > | <text:sender-street ... > | <text:sender-city ... > | <text:sender-postal-code ... > | <text:sender-country ... > | <text:sender-state-or-province ... > | <text:author-name ... > | <text:author-initials ... > | <text:chapter ... > | <text:file-name ... > | <text:template-name ... > | <text:sheet-name ... > | <text:variable-set ... > | <text:variable-get ... > | <text:variable-input ... > | <text:user-field-get ... > | <text:user-field-input ... > | <text:sequence ... > | <text:expression ... > | <text:text-input ... > | <text:initial-creator ... > | <text:creation-date ... > | <text:creation-time ... > | <text:description ... > | <text:user-defined ... > | <text:print-time ... > | <text:print-date ... > | <text:printed-by ... > | <text:title ... > | <text:subject ... > | <text:keywords ... > | <text:editing-cycles ... > | <text:editing-duration ... > | <text:modification-time ... > | <text:modification-date ... > | <text:creator ... > | <CHOICE_NAME_CLASS ... > | <text:database-display ... > | <text:database-next ... > | <text:database-row-select ... > | <text:database-row-number ... > | <text:database-name ... > | <text:page-variable-set ... > | <text:page-variable-get ... > | <text:placeholder ... > | <text:conditional-text ... > | <text:hidden-text ... > | <CHOICE_NAME_CLASS ... > | <text:note-ref ... > | <text:sequence-ref ... > | <text:script ... > | <text:execute-macro ... > | <text:hidden-paragraph ... > | <text:dde-connection ... > | <text:measure ... > | <text:table-formula ... > | <text:meta-field ... > | <text:toc-mark-start ... > | <text:toc-mark-end ... > | <text:toc-mark ... > | <text:user-index-mark-start ... > | <text:user-index-mark-end ... > | <text:user-index-mark ... > | <text:alphabetical-index-mark-start ... > | <text:alphabetical-index-mark-end ... > | <text:alphabetical-index-mark ... > | <text:bibliography-mark ... > | <presentation:header ... > | <presentation:footer ... > | <presentation:date-time ... > | <text:a ... >)* >  +
@@ -15769,6 +21436,11 @@

text:hidden-paragraph Element<   + + Child Relations + <text:hidden-paragraph text:condition="<string>" (text:is-hidden="<boolean>" )? + TEXT>  +
@@ -15800,6 +21472,11 @@

text:hidden-text Element

  + + Child Relations + <text:hidden-text text:condition="<string>" text:string-value="<string>" (text:is-hidden="<boolean>" )? + TEXT>  +
@@ -15841,6 +21518,15 @@

text:illustration-index Element< <text:index-body>    + + Child Relations + <text:illustration-index (text:style-name="(<NCName>)?" )? + text:name="<string>" (text:protected="<boolean>" )? + (text:protection-key="<string>" )? + (text:protection-key-digest-algorithm="<anyIRI>" )? + (xml:id="<ID>" )? + <text:illustration-index-source ... ><text:index-body ... >>  +
@@ -15868,6 +21554,11 @@

text:illustration <text:index-entry-text>*    + + Child Relations + <text:illustration-index-entry-template + (text:style-name="(<NCName>)?" (<text:index-entry-chapter ... > | <text:index-entry-page-number ... > | <text:index-entry-text ... > | <text:index-entry-span ... > | <text:index-entry-tab-stop ... >)* )>  +
@@ -15896,6 +21587,17 @@

text:illustration-index-s <text:index-title-template>    + + Child Relations + <text:illustration-index-source (text:index-scope="document | chapter" )? + (text:relative-tab-stop-position="<boolean>" )? + (text:use-caption="<boolean>" )? + (text:caption-sequence-name="<string>" )? + (text:caption-sequence-format="text | category-and-value | caption" )? + (<text:index-title-template ... >)? + (<text:illustration-index-entry-template ... >)? + >  +
@@ -15927,6 +21629,14 @@

text:image-count Element

  + + Child Relations + <CHOICE_NAME_CLASS ( (style:num-format="(1 | i | I | <string>)?" | + (style:num-format="a | A" (style:num-letter-sync="<boolean>" )? + ))? + )? + TEXT>  +
@@ -15990,6 +21700,10 @@

text:index-body Element

<text:user-index>*    + + Child Relations + <text:index-body (<text:h ... > | <text:p ... > | <text:list ... > | <text:numbered-paragraph ... > | <table:table ... > | <text:section ... > | <text:soft-page-break ... > | <text:table-of-content ... > | <text:illustration-index ... > | <text:table-index ... > | <text:object-index ... > | <text:user-index ... > | <text:alphabetical-index ... > | <text:bibliography ... > | <draw:rect ... > | <draw:line ... > | <draw:polyline ... > | <draw:polygon ... > | <draw:regular-polygon ... > | <draw:path ... > | <draw:circle ... > | <draw:ellipse ... > | <draw:g ... > | <draw:page-thumbnail ... > | <draw:frame ... > | <draw:measure ... > | <draw:caption ... > | <draw:connector ... > | <draw:control ... > | <dr3d:scene ... > | <draw:custom-shape ... > | <draw:a ... > | <text:change ... > | <text:change-start ... > | <text:change-end ... > | <text:index-title ... >)* >  +
@@ -16013,6 +21727,11 @@

text:index-entry-bibliogra   + + Child Relations + <text:index-entry-bibliography (text:style-name="(<NCName>)?" )? + text:bibliography-data-field="address | annote | author | bibliography-type | booktitle | chapter | custom1 | custom2 | custom3 | custom4 | custom5 | edition | editor | howpublished | identifier | institution | isbn | issn | journal | month | note | number | organizations | pages | publisher | report-type | school | series | title | url | volume | year" >  +
@@ -16032,7 +21751,7 @@

text:index-entry-chapter Elemen Attributes - text:display[2]  + text:display[1]  text:outline-level[1]  text:style-name    @@ -16042,6 +21761,13 @@

text:index-entry-chapter Elemen   + + Child Relations + <text:index-entry-chapter (text:style-name="(<NCName>)?" )? + (text:display="name | number | number-and-name | plain-number | plain-number-and-name" )? + (text:outline-level="<positiveInteger>" )? + >  +
@@ -16064,6 +21790,11 @@

text:index-entry-link-end Elem   + + Child Relations + <text:index-entry-link-end (text:style-name="(<NCName>)?" )? + >  +
@@ -16086,6 +21817,11 @@

text:index-entry-link-start   + + Child Relations + <text:index-entry-link-start (text:style-name="(<NCName>)?" )? + >  +
@@ -16113,6 +21849,11 @@

text:index-entry-page-numbe   + + Child Relations + <text:index-entry-page-number (text:style-name="(<NCName>)?" )? + >  +
@@ -16142,6 +21883,11 @@

text:index-entry-span Element<   + + Child Relations + <text:index-entry-span (text:style-name="(<NCName>)?" )? + TEXT>  +
@@ -16163,9 +21909,9 @@

text:index-entry-tab-stop Elem Attributes style:leader-char  - style:position[2]  + style:position[1]  + style:type[2]  style:type[3]  - style:type[4]  text:style-name    @@ -16174,6 +21920,13 @@

text:index-entry-tab-stop Elem   + + Child Relations + <text:index-entry-tab-stop (text:style-name="(<NCName>)?" )? + (style:leader-char="string]" )? + style:type="right" | + (style:type="left" style:position="string]" )>  +
@@ -16201,6 +21954,11 @@

text:index-entry-text Element<   + + Child Relations + <text:index-entry-text (text:style-name="(<NCName>)?" )? + >  +
@@ -16223,6 +21981,10 @@

text:index-source-style Element<   + + Child Relations + <text:index-source-style text:style-name="<NCName>" >  +
@@ -16247,6 +22009,10 @@

text:index-source-styles Elemen <text:index-source-style>*    + + Child Relations + <text:index-source-styles text:outline-level="<positiveInteger>" (<text:index-source-style ... >)* >  +
@@ -16315,6 +22081,15 @@

text:index-title Element

<text:user-index>*    + + Child Relations + <text:index-title (text:style-name="(<NCName>)?" )? + text:name="<string>" (text:protected="<boolean>" )? + (text:protection-key="<string>" )? + (text:protection-key-digest-algorithm="<anyIRI>" )? + (xml:id="<ID>" )? + (<text:h ... > | <text:p ... > | <text:list ... > | <text:numbered-paragraph ... > | <table:table ... > | <text:section ... > | <text:soft-page-break ... > | <text:table-of-content ... > | <text:illustration-index ... > | <text:table-index ... > | <text:object-index ... > | <text:user-index ... > | <text:alphabetical-index ... > | <text:bibliography ... > | <draw:rect ... > | <draw:line ... > | <draw:polyline ... > | <draw:polygon ... > | <draw:regular-polygon ... > | <draw:path ... > | <draw:circle ... > | <draw:ellipse ... > | <draw:g ... > | <draw:page-thumbnail ... > | <draw:frame ... > | <draw:measure ... > | <draw:caption ... > | <draw:connector ... > | <draw:control ... > | <dr3d:scene ... > | <draw:custom-shape ... > | <draw:a ... > | <text:change ... > | <text:change-start ... > | <text:change-end ... > | <text:index-title ... >)* >  +
@@ -16344,6 +22119,11 @@

text:index-title-template Elem   + + Child Relations + <text:index-title-template (text:style-name="(<NCName>)?" )? + TEXT>  +
@@ -16373,6 +22153,11 @@

text:initial-creator Element   + + Child Relations + <text:initial-creator (text:fixed="<boolean>" )? + TEXT>  +
@@ -16395,6 +22180,10 @@

text:insertion Element

<office:change-info>    + + Child Relations + <text:insertion <office:change-info ... >>  +
@@ -16424,6 +22213,11 @@

text:keywords Element

  + + Child Relations + <text:keywords (text:fixed="<boolean>" )? + TEXT>  +
@@ -16451,6 +22245,10 @@

text:line-break Element

  + + Child Relations + <text:line-break EMPTY>  +
@@ -16484,6 +22282,23 @@

text:linenumbering-conf <text:linenumbering-separator>    + + Child Relations + <text:linenumbering-configuration (text:number-lines="<boolean>" )? + ( (style:num-format="(1 | i | I | <string>)?" | + (style:num-format="a | A" (style:num-letter-sync="<boolean>" )? + ))? + )? + (text:style-name="(<NCName>)?" )? + (text:increment="<nonNegativeInteger>" )? + (text:number-position="left | right | inner | outer" )? + (text:offset="string]" )? + (text:count-empty-lines="<boolean>" )? + (text:count-in-text-boxes="<boolean>" )? + (text:restart-on-page="<boolean>" )? + (<text:linenumbering-separator ... >)? + >  +
@@ -16507,6 +22322,11 @@

text:linenumbering-separato   + + Child Relations + <text:linenumbering-separator (text:increment="<nonNegativeInteger>" )? + TEXT>  +
@@ -16562,6 +22382,15 @@

text:list Element

<text:list-item>*    + + Child Relations + <text:list (text:style-name="(<NCName>)?" )? + (text:continue-numbering="<boolean>" )? + (text:continue-list="<IDREF>" )? + (xml:id="<ID>" )? + (<text:list-header ... >)? + (<text:list-item ... >)* >  +
@@ -16589,6 +22418,13 @@

text:list-header Element

<text:soft-page-break>*    + + Child Relations + <text:list-header (xml:id="<ID>" )? + + ( (<text:number ... >)? + (<text:p ... > | <text:h ... > | <text:list ... > | <text:soft-page-break ... >)* )>  +
@@ -16618,6 +22454,15 @@

text:list-item Element

<text:soft-page-break>*    + + Child Relations + <text:list-item (text:start-value="<nonNegativeInteger>" )? + (text:style-override="(<NCName>)?" )? + (xml:id="<ID>" )? + + ( (<text:number ... >)? + (<text:p ... > | <text:h ... > | <text:list ... > | <text:soft-page-break ... >)* )>  +
@@ -16647,6 +22492,17 @@

text:list-level-style-bulle <style:text-properties>    + + Child Relations + <text:list-level-style-bullet text:level="<positiveInteger>" (text:style-name="(<NCName>)?" )? + text:bullet-char="string]" + ( (style:num-prefix="<string>" )? + (style:num-suffix="<string>" )? + ) (text:bullet-relative-size="string]" )? + (<style:list-level-properties ... >)? + (<style:text-properties ... >)? + >  +
@@ -16664,7 +22520,7 @@

text:list-level-style-image text:level  xlink:actuate[2]  xlink:href  - xlink:show[3]  + xlink:show[2]  xlink:type    @@ -16675,6 +22531,14 @@

text:list-level-style-image <style:list-level-properties>    + + Child Relations + <text:list-level-style-image text:level="<positiveInteger>" + (xlink:type="simple" xlink:href="<anyIRI>" (xlink:show="embed" )? + (xlink:actuate="onLoad" )? + ) | <office:binary-data ... > (<style:list-level-properties ... >)? + >  +
@@ -16707,6 +22571,21 @@

text:list-level-style-numbe <style:text-properties>    + + Child Relations + <text:list-level-style-number text:level="<positiveInteger>" (text:style-name="(<NCName>)?" )? + (style:num-format="(1 | i | I | <string>)?" | + (style:num-format="a | A" (style:num-letter-sync="<boolean>" )? + ))? + + ( (style:num-prefix="<string>" )? + (style:num-suffix="<string>" )? + ) (text:display-levels="<positiveInteger>" )? + (text:start-value="<positiveInteger>" )? + (<style:list-level-properties ... >)? + (<style:text-properties ... >)? + >  +
@@ -16724,7 +22603,7 @@

text:list-style Element

Attributes style:display-name  - style:name[1]  + style:name[2]  text:consecutive-numbering    @@ -16736,6 +22615,12 @@

text:list-style Element

<text:list-level-style-number>*    + + Child Relations + <text:list-style style:name="<NCName>" (style:display-name="<string>" )? + (text:consecutive-numbering="<boolean>" )? + (<text:list-level-style-number ... > | <text:list-level-style-bullet ... > | <text:list-level-style-image ... >)* >  +
@@ -16765,6 +22650,10 @@

text:measure Element

  + + Child Relations + <text:measure text:kind="value | unit | gap" TEXT>  +
@@ -16926,6 +22815,18 @@

text:meta Element (new in ODF 1.2) <text:word-count>*    + + Child Relations + <text:meta ( + (xhtml:about="<anyURI> | string]" xhtml:property=" +START_list(string])+ +END_list" + ( (xhtml:datatype="string]" )? + (xhtml:content="<string>" )? + )))? + (xml:id="<ID>" )? + (TEXT | <text:s ... > | <text:tab ... > | <text:line-break ... > | <text:soft-page-break ... > | <text:span ... > | <text:meta ... > | <text:bookmark ... > | <text:bookmark-start ... > | <text:bookmark-end ... > | <text:reference-mark ... > | <text:reference-mark-start ... > | <text:reference-mark-end ... > | <text:note ... > | <text:ruby ... > | <office:annotation ... > | <office:annotation-end ... > | <text:change ... > | <text:change-start ... > | <text:change-end ... > | <draw:rect ... > | <draw:line ... > | <draw:polyline ... > | <draw:polygon ... > | <draw:regular-polygon ... > | <draw:path ... > | <draw:circle ... > | <draw:ellipse ... > | <draw:g ... > | <draw:page-thumbnail ... > | <draw:frame ... > | <draw:measure ... > | <draw:caption ... > | <draw:connector ... > | <draw:control ... > | <dr3d:scene ... > | <draw:custom-shape ... > | <draw:a ... > | <text:date ... > | <text:time ... > | <text:page-number ... > | <text:page-continuation ... > | <text:sender-firstname ... > | <text:sender-lastname ... > | <text:sender-initials ... > | <text:sender-title ... > | <text:sender-position ... > | <text:sender-email ... > | <text:sender-phone-private ... > | <text:sender-fax ... > | <text:sender-company ... > | <text:sender-phone-work ... > | <text:sender-street ... > | <text:sender-city ... > | <text:sender-postal-code ... > | <text:sender-country ... > | <text:sender-state-or-province ... > | <text:author-name ... > | <text:author-initials ... > | <text:chapter ... > | <text:file-name ... > | <text:template-name ... > | <text:sheet-name ... > | <text:variable-set ... > | <text:variable-get ... > | <text:variable-input ... > | <text:user-field-get ... > | <text:user-field-input ... > | <text:sequence ... > | <text:expression ... > | <text:text-input ... > | <text:initial-creator ... > | <text:creation-date ... > | <text:creation-time ... > | <text:description ... > | <text:user-defined ... > | <text:print-time ... > | <text:print-date ... > | <text:printed-by ... > | <text:title ... > | <text:subject ... > | <text:keywords ... > | <text:editing-cycles ... > | <text:editing-duration ... > | <text:modification-time ... > | <text:modification-date ... > | <text:creator ... > | <CHOICE_NAME_CLASS ... > | <text:database-display ... > | <text:database-next ... > | <text:database-row-select ... > | <text:database-row-number ... > | <text:database-name ... > | <text:page-variable-set ... > | <text:page-variable-get ... > | <text:placeholder ... > | <text:conditional-text ... > | <text:hidden-text ... > | <CHOICE_NAME_CLASS ... > | <text:note-ref ... > | <text:sequence-ref ... > | <text:script ... > | <text:execute-macro ... > | <text:hidden-paragraph ... > | <text:dde-connection ... > | <text:measure ... > | <text:table-formula ... > | <text:meta-field ... > | <text:toc-mark-start ... > | <text:toc-mark-end ... > | <text:toc-mark ... > | <text:user-index-mark-start ... > | <text:user-index-mark-end ... > | <text:user-index-mark ... > | <text:alphabetical-index-mark-start ... > | <text:alphabetical-index-mark-end ... > | <text:alphabetical-index-mark ... > | <text:bibliography-mark ... > | <presentation:header ... > | <presentation:footer ... > | <presentation:date-time ... > | <text:a ... >)* >  +
@@ -17084,6 +22985,11 @@

text:meta-field Element (new in <text:word-count>*    + + Child Relations + <text:meta-field xml:id="<ID>" (style:data-style-name="(<NCName>)?" )? + (TEXT | <text:s ... > | <text:tab ... > | <text:line-break ... > | <text:soft-page-break ... > | <text:span ... > | <text:meta ... > | <text:bookmark ... > | <text:bookmark-start ... > | <text:bookmark-end ... > | <text:reference-mark ... > | <text:reference-mark-start ... > | <text:reference-mark-end ... > | <text:note ... > | <text:ruby ... > | <office:annotation ... > | <office:annotation-end ... > | <text:change ... > | <text:change-start ... > | <text:change-end ... > | <draw:rect ... > | <draw:line ... > | <draw:polyline ... > | <draw:polygon ... > | <draw:regular-polygon ... > | <draw:path ... > | <draw:circle ... > | <draw:ellipse ... > | <draw:g ... > | <draw:page-thumbnail ... > | <draw:frame ... > | <draw:measure ... > | <draw:caption ... > | <draw:connector ... > | <draw:control ... > | <dr3d:scene ... > | <draw:custom-shape ... > | <draw:a ... > | <text:date ... > | <text:time ... > | <text:page-number ... > | <text:page-continuation ... > | <text:sender-firstname ... > | <text:sender-lastname ... > | <text:sender-initials ... > | <text:sender-title ... > | <text:sender-position ... > | <text:sender-email ... > | <text:sender-phone-private ... > | <text:sender-fax ... > | <text:sender-company ... > | <text:sender-phone-work ... > | <text:sender-street ... > | <text:sender-city ... > | <text:sender-postal-code ... > | <text:sender-country ... > | <text:sender-state-or-province ... > | <text:author-name ... > | <text:author-initials ... > | <text:chapter ... > | <text:file-name ... > | <text:template-name ... > | <text:sheet-name ... > | <text:variable-set ... > | <text:variable-get ... > | <text:variable-input ... > | <text:user-field-get ... > | <text:user-field-input ... > | <text:sequence ... > | <text:expression ... > | <text:text-input ... > | <text:initial-creator ... > | <text:creation-date ... > | <text:creation-time ... > | <text:description ... > | <text:user-defined ... > | <text:print-time ... > | <text:print-date ... > | <text:printed-by ... > | <text:title ... > | <text:subject ... > | <text:keywords ... > | <text:editing-cycles ... > | <text:editing-duration ... > | <text:modification-time ... > | <text:modification-date ... > | <text:creator ... > | <CHOICE_NAME_CLASS ... > | <text:database-display ... > | <text:database-next ... > | <text:database-row-select ... > | <text:database-row-number ... > | <text:database-name ... > | <text:page-variable-set ... > | <text:page-variable-get ... > | <text:placeholder ... > | <text:conditional-text ... > | <text:hidden-text ... > | <CHOICE_NAME_CLASS ... > | <text:note-ref ... > | <text:sequence-ref ... > | <text:script ... > | <text:execute-macro ... > | <text:hidden-paragraph ... > | <text:dde-connection ... > | <text:measure ... > | <text:table-formula ... > | <text:meta-field ... > | <text:toc-mark-start ... > | <text:toc-mark-end ... > | <text:toc-mark ... > | <text:user-index-mark-start ... > | <text:user-index-mark-end ... > | <text:user-index-mark ... > | <text:alphabetical-index-mark-start ... > | <text:alphabetical-index-mark-end ... > | <text:alphabetical-index-mark ... > | <text:bibliography-mark ... > | <presentation:header ... > | <presentation:footer ... > | <presentation:date-time ... > | <text:a ... >)* >  +
@@ -17106,7 +23012,7 @@

text:modification-date ElementAttributes style:data-style-name  - text:date-value[1]  + text:date-value[2]  text:fixed    @@ -17115,6 +23021,13 @@

text:modification-date Element   + + Child Relations + <text:modification-date (text:fixed="<boolean>" )? + (style:data-style-name="(<NCName>)?" )? + (text:date-value="<date>" )? + TEXT>  +
@@ -17146,6 +23059,13 @@

text:modification-time Element   + + Child Relations + <text:modification-time (text:fixed="<boolean>" )? + (style:data-style-name="(<NCName>)?" )? + (text:time-value="<time>" )? + TEXT>  +
@@ -17166,7 +23086,7 @@

text:note Element

Attributes - text:id[2]  + text:id[1]  text:note-class    @@ -17177,6 +23097,11 @@

text:note Element

<text:note-citation>    + + Child Relations + <text:note text:note-class="footnote | endnote" (text:id="<string>" )? + <text:note-citation ... ><text:note-body ... >>  +
@@ -17233,6 +23158,10 @@

text:note-body Element

<text:user-index>*    + + Child Relations + <text:note-body (<text:h ... > | <text:p ... > | <text:list ... > | <text:numbered-paragraph ... > | <table:table ... > | <text:section ... > | <text:soft-page-break ... > | <text:table-of-content ... > | <text:illustration-index ... > | <text:table-index ... > | <text:object-index ... > | <text:user-index ... > | <text:alphabetical-index ... > | <text:bibliography ... > | <draw:rect ... > | <draw:line ... > | <draw:polyline ... > | <draw:polygon ... > | <draw:regular-polygon ... > | <draw:path ... > | <draw:circle ... > | <draw:ellipse ... > | <draw:g ... > | <draw:page-thumbnail ... > | <draw:frame ... > | <draw:measure ... > | <draw:caption ... > | <draw:connector ... > | <draw:control ... > | <dr3d:scene ... > | <draw:custom-shape ... > | <draw:a ... > | <text:change ... > | <text:change-start ... > | <text:change-end ... >)* >  +
@@ -17256,6 +23185,11 @@

text:note-citation Element

  + + Child Relations + <text:note-citation (text:label="<string>" )? + TEXT>  +
@@ -17278,6 +23212,10 @@

text:note-continu   + + Child Relations + <text:note-continuation-notice-backward TEXT>  +
@@ -17300,6 +23238,10 @@

text:note-continua   + + Child Relations + <text:note-continuation-notice-forward TEXT>  +
@@ -17331,6 +23273,12 @@

text:note-ref Element

  + + Child Relations + <text:note-ref TEXT (text:ref-name="<string>" )? + (text:reference-format="page | chapter | direction | text" )? + text:note-class="footnote | endnote" >  +
@@ -17368,6 +23316,26 @@

text:notes-configuration Elemen <text:note-continuation-notice-forward>    + + Child Relations + <text:notes-configuration text:note-class="footnote | endnote" (text:citation-style-name="(<NCName>)?" )? + (text:citation-body-style-name="(<NCName>)?" )? + (text:default-style-name="(<NCName>)?" )? + (text:master-page-name="(<NCName>)?" )? + (text:start-value="<nonNegativeInteger>" )? + + ( (style:num-prefix="<string>" )? + (style:num-suffix="<string>" )? + ) ( (style:num-format="(1 | i | I | <string>)?" | + (style:num-format="a | A" (style:num-letter-sync="<boolean>" )? + ))? + )? + (text:start-numbering-at="document | chapter | page" )? + (text:footnotes-position="text | page | section | document" )? + (<text:note-continuation-notice-forward ... >)? + (<text:note-continuation-notice-backward ... >)? + >  +
@@ -17392,6 +23360,10 @@

text:number Element

  + + Child Relations + <text:number <string>>  +
@@ -17430,6 +23402,14 @@

text:numbered-paragraph Element< <text:p>    + + Child Relations + <text:numbered-paragraph text:list-id="<NCName>" (text:level="<positiveInteger>" )? + (text:style-name="(<NCName>)?" text:continue-numbering="<boolean>" text:start-value="<nonNegativeInteger>" )? + (xml:id="<ID>" )? + (<text:number ... >)? + <text:p ... > | <text:h ... >>  +
@@ -17461,6 +23441,14 @@

text:object-count Element

  + + Child Relations + <CHOICE_NAME_CLASS ( (style:num-format="(1 | i | I | <string>)?" | + (style:num-format="a | A" (style:num-letter-sync="<boolean>" )? + ))? + )? + TEXT>  +
@@ -17502,6 +23490,15 @@

text:object-index Element

<text:object-index-source>    + + Child Relations + <text:object-index (text:style-name="(<NCName>)?" )? + text:name="<string>" (text:protected="<boolean>" )? + (text:protection-key="<string>" )? + (text:protection-key-digest-algorithm="<anyIRI>" )? + (xml:id="<ID>" )? + <text:object-index-source ... ><text:index-body ... >>  +
@@ -17529,6 +23526,11 @@

text:object-index-entry <text:index-entry-text>*    + + Child Relations + <text:object-index-entry-template + (text:style-name="(<NCName>)?" (<text:index-entry-chapter ... > | <text:index-entry-page-number ... > | <text:index-entry-text ... > | <text:index-entry-span ... > | <text:index-entry-tab-stop ... >)* )>  +
@@ -17559,6 +23561,19 @@

text:object-index-source Elemen <text:object-index-entry-template>    + + Child Relations + <text:object-index-source (text:index-scope="document | chapter" )? + (text:relative-tab-stop-position="<boolean>" )? + (text:use-spreadsheet-objects="<boolean>" )? + (text:use-math-objects="<boolean>" )? + (text:use-draw-objects="<boolean>" )? + (text:use-chart-objects="<boolean>" )? + (text:use-other-objects="<boolean>" )? + (<text:index-title-template ... >)? + (<text:object-index-entry-template ... >)? + >  +
@@ -17591,6 +23606,21 @@

text:outline-level-style Elemen <style:text-properties>    + + Child Relations + <text:outline-level-style text:level="<positiveInteger>" (text:style-name="(<NCName>)?" )? + (style:num-format="(1 | i | I | <string>)?" | + (style:num-format="a | A" (style:num-letter-sync="<boolean>" )? + ))? + + ( (style:num-prefix="<string>" )? + (style:num-suffix="<string>" )? + ) (text:display-levels="<positiveInteger>" )? + (text:start-value="<positiveInteger>" )? + (<style:list-level-properties ... >)? + (<style:text-properties ... >)? + >  +
@@ -17605,7 +23635,7 @@

text:outline-style Element

Attributes - style:name[1]  + style:name[2]    @@ -17614,6 +23644,10 @@

text:outline-style Element

<text:outline-level-style>*    + + Child Relations + <text:outline-style style:name="<NCName>" (<text:outline-level-style ... >)+ >  +
@@ -17675,7 +23709,7 @@

text:p Element

text:class-names  text:cond-style-name  - text:id[1]  + text:id[2]  text:style-name  xhtml:about  xhtml:content  @@ -17817,6 +23851,24 @@

text:p Element

<text:word-count>*    + + Child Relations + <text:p (text:style-name="(<NCName>)?" )? + (text:class-names=" +START_list(<NCName>)* +END_list" )? + (text:cond-style-name="(<NCName>)?" )? + (xml:id="<ID>" (text:id="<NCName>" )? + )? + ( + (xhtml:about="<anyURI> | string]" xhtml:property=" +START_list(string])+ +END_list" + ( (xhtml:datatype="string]" )? + (xhtml:content="<string>" )? + )))? + (TEXT | <text:s ... > | <text:tab ... > | <text:line-break ... > | <text:soft-page-break ... > | <text:span ... > | <text:meta ... > | <text:bookmark ... > | <text:bookmark-start ... > | <text:bookmark-end ... > | <text:reference-mark ... > | <text:reference-mark-start ... > | <text:reference-mark-end ... > | <text:note ... > | <text:ruby ... > | <office:annotation ... > | <office:annotation-end ... > | <text:change ... > | <text:change-start ... > | <text:change-end ... > | <draw:rect ... > | <draw:line ... > | <draw:polyline ... > | <draw:polygon ... > | <draw:regular-polygon ... > | <draw:path ... > | <draw:circle ... > | <draw:ellipse ... > | <draw:g ... > | <draw:page-thumbnail ... > | <draw:frame ... > | <draw:measure ... > | <draw:caption ... > | <draw:connector ... > | <draw:control ... > | <dr3d:scene ... > | <draw:custom-shape ... > | <draw:a ... > | <text:date ... > | <text:time ... > | <text:page-number ... > | <text:page-continuation ... > | <text:sender-firstname ... > | <text:sender-lastname ... > | <text:sender-initials ... > | <text:sender-title ... > | <text:sender-position ... > | <text:sender-email ... > | <text:sender-phone-private ... > | <text:sender-fax ... > | <text:sender-company ... > | <text:sender-phone-work ... > | <text:sender-street ... > | <text:sender-city ... > | <text:sender-postal-code ... > | <text:sender-country ... > | <text:sender-state-or-province ... > | <text:author-name ... > | <text:author-initials ... > | <text:chapter ... > | <text:file-name ... > | <text:template-name ... > | <text:sheet-name ... > | <text:variable-set ... > | <text:variable-get ... > | <text:variable-input ... > | <text:user-field-get ... > | <text:user-field-input ... > | <text:sequence ... > | <text:expression ... > | <text:text-input ... > | <text:initial-creator ... > | <text:creation-date ... > | <text:creation-time ... > | <text:description ... > | <text:user-defined ... > | <text:print-time ... > | <text:print-date ... > | <text:printed-by ... > | <text:title ... > | <text:subject ... > | <text:keywords ... > | <text:editing-cycles ... > | <text:editing-duration ... > | <text:modification-time ... > | <text:modification-date ... > | <text:creator ... > | <CHOICE_NAME_CLASS ... > | <text:database-display ... > | <text:database-next ... > | <text:database-row-select ... > | <text:database-row-number ... > | <text:database-name ... > | <text:page-variable-set ... > | <text:page-variable-get ... > | <text:placeholder ... > | <text:conditional-text ... > | <text:hidden-text ... > | <CHOICE_NAME_CLASS ... > | <text:note-ref ... > | <text:sequence-ref ... > | <text:script ... > | <text:execute-macro ... > | <text:hidden-paragraph ... > | <text:dde-connection ... > | <text:measure ... > | <text:table-formula ... > | <text:meta-field ... > | <text:toc-mark-start ... > | <text:toc-mark-end ... > | <text:toc-mark ... > | <text:user-index-mark-start ... > | <text:user-index-mark-end ... > | <text:user-index-mark ... > | <text:alphabetical-index-mark-start ... > | <text:alphabetical-index-mark-end ... > | <text:alphabetical-index-mark ... > | <text:bibliography-mark ... > | <presentation:header ... > | <presentation:footer ... > | <presentation:date-time ... > | <text:a ... >)* >  +
@@ -17839,6 +23891,10 @@

text:page Element

  + + Child Relations + <text:page text:master-page-name="(<NCName>)?" >  +
@@ -17869,6 +23925,11 @@

text:page-continuation Element   + + Child Relations + <text:page-continuation text:select-page="previous | next" (text:string-value="<string>" )? + TEXT>  +
@@ -17900,6 +23961,14 @@

text:page-count Element

  + + Child Relations + <CHOICE_NAME_CLASS ( (style:num-format="(1 | i | I | <string>)?" | + (style:num-format="a | A" (style:num-letter-sync="<boolean>" )? + ))? + )? + TEXT>  +
@@ -17934,6 +24003,17 @@

text:page-number Element

  + + Child Relations + <text:page-number ( (style:num-format="(1 | i | I | <string>)?" | + (style:num-format="a | A" (style:num-letter-sync="<boolean>" )? + ))? + )? + (text:fixed="<boolean>" )? + (text:page-adjust="<integer>" )? + (text:select-page="previous | current | next" )? + TEXT>  +
@@ -17956,6 +24036,10 @@

text:page-sequence Element

<text:page>*    + + Child Relations + <text:page-sequence (<text:page ... >)+ >  +
@@ -17987,6 +24071,14 @@

text:page-variable-get Element   + + Child Relations + <text:page-variable-get ( (style:num-format="(1 | i | I | <string>)?" | + (style:num-format="a | A" (style:num-letter-sync="<boolean>" )? + ))? + )? + TEXT>  +
@@ -18017,6 +24109,12 @@

text:page-variable-set Element   + + Child Relations + <text:page-variable-set (text:active="<boolean>" )? + (text:page-adjust="<integer>" )? + TEXT>  +
@@ -18048,6 +24146,14 @@

text:paragraph-count Element   + + Child Relations + <CHOICE_NAME_CLASS ( (style:num-format="(1 | i | I | <string>)?" | + (style:num-format="a | A" (style:num-letter-sync="<boolean>" )? + ))? + )? + TEXT>  +
@@ -18078,6 +24184,11 @@

text:placeholder Element

  + + Child Relations + <text:placeholder text:placeholder-type="text | table | text-box | image | object" (text:description="<string>" )? + TEXT>  +
@@ -18100,7 +24211,7 @@

text:print-date Element

Attributes style:data-style-name  - text:date-value[1]  + text:date-value[2]  text:fixed    @@ -18109,6 +24220,13 @@

text:print-date Element

  + + Child Relations + <text:print-date (text:fixed="<boolean>" )? + (style:data-style-name="(<NCName>)?" )? + (text:date-value="<date>" )? + TEXT>  +
@@ -18140,6 +24258,13 @@

text:print-time Element

  + + Child Relations + <text:print-time (text:fixed="<boolean>" )? + (style:data-style-name="(<NCName>)?" )? + (text:time-value="<time>" )? + TEXT>  +
@@ -18169,6 +24294,11 @@

text:printed-by Element

  + + Child Relations + <text:printed-by (text:fixed="<boolean>" )? + TEXT>  +
@@ -18197,6 +24327,10 @@

text:reference-mark Element

  + + Child Relations + <text:reference-mark text:name="<string>" >  +
@@ -18225,6 +24359,10 @@

text:reference-mark-end Element<   + + Child Relations + <text:reference-mark-end text:name="<string>" >  +
@@ -18253,6 +24391,10 @@

text:reference-mark-start Elem   + + Child Relations + <text:reference-mark-start text:name="<string>" >  +
@@ -18275,7 +24417,7 @@

text:reference-ref Element

Attributes text:ref-name  - text:reference-format[3]  + text:reference-format[2]    @@ -18283,6 +24425,12 @@

text:reference-ref Element

  + + Child Relations + <CHOICE_NAME_CLASS TEXT (text:ref-name="<string>" )? + (text:reference-format="page | chapter | direction | text | number-no-superior | number-all-superior | number" )? + >  +
@@ -18313,6 +24461,11 @@

text:ruby Element

<text:ruby-text>    + + Child Relations + <text:ruby (text:style-name="(<NCName>)?" )? + <text:ruby-base ... ><text:ruby-text ... >>  +
@@ -18463,6 +24616,10 @@

text:ruby-base Element

<text:word-count>*    + + Child Relations + <text:ruby-base (TEXT | <text:s ... > | <text:tab ... > | <text:line-break ... > | <text:soft-page-break ... > | <text:span ... > | <text:meta ... > | <text:bookmark ... > | <text:bookmark-start ... > | <text:bookmark-end ... > | <text:reference-mark ... > | <text:reference-mark-start ... > | <text:reference-mark-end ... > | <text:note ... > | <text:ruby ... > | <office:annotation ... > | <office:annotation-end ... > | <text:change ... > | <text:change-start ... > | <text:change-end ... > | <draw:rect ... > | <draw:line ... > | <draw:polyline ... > | <draw:polygon ... > | <draw:regular-polygon ... > | <draw:path ... > | <draw:circle ... > | <draw:ellipse ... > | <draw:g ... > | <draw:page-thumbnail ... > | <draw:frame ... > | <draw:measure ... > | <draw:caption ... > | <draw:connector ... > | <draw:control ... > | <dr3d:scene ... > | <draw:custom-shape ... > | <draw:a ... > | <text:date ... > | <text:time ... > | <text:page-number ... > | <text:page-continuation ... > | <text:sender-firstname ... > | <text:sender-lastname ... > | <text:sender-initials ... > | <text:sender-title ... > | <text:sender-position ... > | <text:sender-email ... > | <text:sender-phone-private ... > | <text:sender-fax ... > | <text:sender-company ... > | <text:sender-phone-work ... > | <text:sender-street ... > | <text:sender-city ... > | <text:sender-postal-code ... > | <text:sender-country ... > | <text:sender-state-or-province ... > | <text:author-name ... > | <text:author-initials ... > | <text:chapter ... > | <text:file-name ... > | <text:template-name ... > | <text:sheet-name ... > | <text:variable-set ... > | <text:variable-get ... > | <text:variable-input ... > | <text:user-field-get ... > | <text:user-field-input ... > | <text:sequence ... > | <text:expression ... > | <text:text-input ... > | <text:initial-creator ... > | <text:creation-date ... > | <text:creation-time ... > | <text:description ... > | <text:user-defined ... > | <text:print-time ... > | <text:print-date ... > | <text:printed-by ... > | <text:title ... > | <text:subject ... > | <text:keywords ... > | <text:editing-cycles ... > | <text:editing-duration ... > | <text:modification-time ... > | <text:modification-date ... > | <text:creator ... > | <CHOICE_NAME_CLASS ... > | <text:database-display ... > | <text:database-next ... > | <text:database-row-select ... > | <text:database-row-number ... > | <text:database-name ... > | <text:page-variable-set ... > | <text:page-variable-get ... > | <text:placeholder ... > | <text:conditional-text ... > | <text:hidden-text ... > | <CHOICE_NAME_CLASS ... > | <text:note-ref ... > | <text:sequence-ref ... > | <text:script ... > | <text:execute-macro ... > | <text:hidden-paragraph ... > | <text:dde-connection ... > | <text:measure ... > | <text:table-formula ... > | <text:meta-field ... > | <text:toc-mark-start ... > | <text:toc-mark-end ... > | <text:toc-mark ... > | <text:user-index-mark-start ... > | <text:user-index-mark-end ... > | <text:user-index-mark ... > | <text:alphabetical-index-mark-start ... > | <text:alphabetical-index-mark-end ... > | <text:alphabetical-index-mark ... > | <text:bibliography-mark ... > | <presentation:header ... > | <presentation:footer ... > | <presentation:date-time ... > | <text:a ... >)* >  +
@@ -18486,6 +24643,11 @@

text:ruby-text Element

  + + Child Relations + <text:ruby-text (text:style-name="(<NCName>)?" )? + TEXT>  +
@@ -18514,6 +24676,11 @@

text:s Element

  + + Child Relations + <text:s (text:c="<nonNegativeInteger>" )? + >  +
@@ -18545,6 +24712,12 @@

text:script Element

  + + Child Relations + <text:script + (xlink:type="simple" xlink:href="<anyIRI>" ) | TEXT (script:language="<string>" )? + >  +
@@ -18572,8 +24745,8 @@

text:section Element

Attributes text:condition[2]  - text:display[3]  - text:display[10]  + text:display[4]  + text:display[8]  text:name  text:protected  text:protection-key  @@ -18624,6 +24797,18 @@

text:section Element

<text:user-index>*    + + Child Relations + <text:section (text:style-name="(<NCName>)?" )? + text:name="<string>" (text:protected="<boolean>" )? + (text:protection-key="<string>" )? + (text:protection-key-digest-algorithm="<anyIRI>" )? + (xml:id="<ID>" )? + (text:display="true | none" | + (text:display="condition" text:condition="<string>" ))? + (<text:section-source ... > | <office:dde-source ... >)? + (<text:h ... > | <text:p ... > | <text:list ... > | <text:numbered-paragraph ... > | <table:table ... > | <text:section ... > | <text:soft-page-break ... > | <text:table-of-content ... > | <text:illustration-index ... > | <text:table-index ... > | <text:object-index ... > | <text:user-index ... > | <text:alphabetical-index ... > | <text:bibliography ... > | <draw:rect ... > | <draw:line ... > | <draw:polyline ... > | <draw:polygon ... > | <draw:regular-polygon ... > | <draw:path ... > | <draw:circle ... > | <draw:ellipse ... > | <draw:g ... > | <draw:page-thumbnail ... > | <draw:frame ... > | <draw:measure ... > | <draw:caption ... > | <draw:connector ... > | <draw:control ... > | <dr3d:scene ... > | <draw:custom-shape ... > | <draw:a ... > | <text:change ... > | <text:change-start ... > | <text:change-end ... >)* >  +
@@ -18641,7 +24826,7 @@

text:section-source Element

text:filter-name  text:section-name  xlink:href  - xlink:show[3]  + xlink:show[2]  xlink:type    @@ -18650,6 +24835,14 @@

text:section-source Element

  + + Child Relations + <text:section-source (xlink:type="simple" xlink:href="<anyIRI>" (xlink:show="embed" )? + )? + (text:section-name="<string>" )? + (text:filter-name="<string>" )? + >  +
@@ -18679,6 +24872,11 @@

text:sender-city Element

  + + Child Relations + <text:sender-city (text:fixed="<boolean>" )? + TEXT>  +
@@ -18708,6 +24906,11 @@

text:sender-company Element

  + + Child Relations + <text:sender-company (text:fixed="<boolean>" )? + TEXT>  +
@@ -18737,6 +24940,11 @@

text:sender-country Element

  + + Child Relations + <text:sender-country (text:fixed="<boolean>" )? + TEXT>  +
@@ -18766,6 +24974,11 @@

text:sender-email Element

  + + Child Relations + <text:sender-email (text:fixed="<boolean>" )? + TEXT>  +
@@ -18795,6 +25008,11 @@

text:sender-fax Element

  + + Child Relations + <text:sender-fax (text:fixed="<boolean>" )? + TEXT>  +
@@ -18824,6 +25042,11 @@

text:sender-firstname Element<   + + Child Relations + <text:sender-firstname (text:fixed="<boolean>" )? + TEXT>  +
@@ -18853,6 +25076,11 @@

text:sender-initials Element   + + Child Relations + <text:sender-initials (text:fixed="<boolean>" )? + TEXT>  +
@@ -18882,6 +25110,11 @@

text:sender-lastname Element   + + Child Relations + <text:sender-lastname (text:fixed="<boolean>" )? + TEXT>  +
@@ -18911,6 +25144,11 @@

text:sender-phone-private Elem   + + Child Relations + <text:sender-phone-private (text:fixed="<boolean>" )? + TEXT>  +
@@ -18940,6 +25178,11 @@

text:sender-phone-work Element   + + Child Relations + <text:sender-phone-work (text:fixed="<boolean>" )? + TEXT>  +
@@ -18969,6 +25212,11 @@

text:sender-position Element   + + Child Relations + <text:sender-position (text:fixed="<boolean>" )? + TEXT>  +
@@ -18998,6 +25246,11 @@

text:sender-postal-code Element<   + + Child Relations + <text:sender-postal-code (text:fixed="<boolean>" )? + TEXT>  +
@@ -19027,6 +25280,11 @@

text:sender-state-or-provi   + + Child Relations + <text:sender-state-or-province (text:fixed="<boolean>" )? + TEXT>  +
@@ -19056,6 +25314,11 @@

text:sender-street Element

  + + Child Relations + <text:sender-street (text:fixed="<boolean>" )? + TEXT>  +
@@ -19085,6 +25348,11 @@

text:sender-title Element

  + + Child Relations + <text:sender-title (text:fixed="<boolean>" )? + TEXT>  +
@@ -19119,6 +25387,16 @@

text:sequence Element

  + + Child Relations + <text:sequence text:name="<string>" (text:formula="<string>" )? + ( (style:num-format="(1 | i | I | <string>)?" | + (style:num-format="a | A" (style:num-letter-sync="<boolean>" )? + ))? + )? + (text:ref-name="<string>" )? + TEXT>  +
@@ -19143,6 +25421,11 @@

text:sequence-decl Element

  + + Child Relations + <text:sequence-decl text:name="<string>" text:display-outline-level="<nonNegativeInteger>" (text:separation-character="string]" )? + >  +
@@ -19173,6 +25456,10 @@

text:sequence-decls Element

<text:sequence-decl>*    + + Child Relations + <text:sequence-decls (<text:sequence-decl ... >)* >  +
@@ -19195,7 +25482,7 @@

text:sequence-ref Element

Attributes text:ref-name  - text:reference-format[2]  + text:reference-format[3]    @@ -19203,6 +25490,12 @@

text:sequence-ref Element

  + + Child Relations + <text:sequence-ref TEXT (text:ref-name="<string>" )? + (text:reference-format="page | chapter | direction | text | category-and-value | caption | value" )? + >  +
@@ -19231,6 +25524,10 @@

text:sheet-name Element

  + + Child Relations + <text:sheet-name TEXT>  +
@@ -19273,6 +25570,10 @@

text:soft-page-break Element&nb   + + Child Relations + <text:soft-page-break EMPTY>  +
@@ -19296,6 +25597,12 @@

text:sort-key Element

  + + Child Relations + <text:sort-key + (text:key="address | annote | author | bibliography-type | booktitle | chapter | custom1 | custom2 | custom3 | custom4 | custom5 | edition | editor | howpublished | identifier | institution | isbn | issn | journal | month | note | number | organizations | pages | publisher | report-type | school | series | title | url | volume | year" (text:sort-ascending="<boolean>" )? + )>  +
@@ -19454,6 +25761,14 @@

text:span Element

<text:word-count>*    + + Child Relations + <text:span (text:style-name="(<NCName>)?" )? + (text:class-names=" +START_list(<NCName>)* +END_list" )? + (TEXT | <text:s ... > | <text:tab ... > | <text:line-break ... > | <text:soft-page-break ... > | <text:span ... > | <text:meta ... > | <text:bookmark ... > | <text:bookmark-start ... > | <text:bookmark-end ... > | <text:reference-mark ... > | <text:reference-mark-start ... > | <text:reference-mark-end ... > | <text:note ... > | <text:ruby ... > | <office:annotation ... > | <office:annotation-end ... > | <text:change ... > | <text:change-start ... > | <text:change-end ... > | <draw:rect ... > | <draw:line ... > | <draw:polyline ... > | <draw:polygon ... > | <draw:regular-polygon ... > | <draw:path ... > | <draw:circle ... > | <draw:ellipse ... > | <draw:g ... > | <draw:page-thumbnail ... > | <draw:frame ... > | <draw:measure ... > | <draw:caption ... > | <draw:connector ... > | <draw:control ... > | <dr3d:scene ... > | <draw:custom-shape ... > | <draw:a ... > | <text:date ... > | <text:time ... > | <text:page-number ... > | <text:page-continuation ... > | <text:sender-firstname ... > | <text:sender-lastname ... > | <text:sender-initials ... > | <text:sender-title ... > | <text:sender-position ... > | <text:sender-email ... > | <text:sender-phone-private ... > | <text:sender-fax ... > | <text:sender-company ... > | <text:sender-phone-work ... > | <text:sender-street ... > | <text:sender-city ... > | <text:sender-postal-code ... > | <text:sender-country ... > | <text:sender-state-or-province ... > | <text:author-name ... > | <text:author-initials ... > | <text:chapter ... > | <text:file-name ... > | <text:template-name ... > | <text:sheet-name ... > | <text:variable-set ... > | <text:variable-get ... > | <text:variable-input ... > | <text:user-field-get ... > | <text:user-field-input ... > | <text:sequence ... > | <text:expression ... > | <text:text-input ... > | <text:initial-creator ... > | <text:creation-date ... > | <text:creation-time ... > | <text:description ... > | <text:user-defined ... > | <text:print-time ... > | <text:print-date ... > | <text:printed-by ... > | <text:title ... > | <text:subject ... > | <text:keywords ... > | <text:editing-cycles ... > | <text:editing-duration ... > | <text:modification-time ... > | <text:modification-date ... > | <text:creator ... > | <CHOICE_NAME_CLASS ... > | <text:database-display ... > | <text:database-next ... > | <text:database-row-select ... > | <text:database-row-number ... > | <text:database-name ... > | <text:page-variable-set ... > | <text:page-variable-get ... > | <text:placeholder ... > | <text:conditional-text ... > | <text:hidden-text ... > | <CHOICE_NAME_CLASS ... > | <text:note-ref ... > | <text:sequence-ref ... > | <text:script ... > | <text:execute-macro ... > | <text:hidden-paragraph ... > | <text:dde-connection ... > | <text:measure ... > | <text:table-formula ... > | <text:meta-field ... > | <text:toc-mark-start ... > | <text:toc-mark-end ... > | <text:toc-mark ... > | <text:user-index-mark-start ... > | <text:user-index-mark-end ... > | <text:user-index-mark ... > | <text:alphabetical-index-mark-start ... > | <text:alphabetical-index-mark-end ... > | <text:alphabetical-index-mark ... > | <text:bibliography-mark ... > | <presentation:header ... > | <presentation:footer ... > | <presentation:date-time ... > | <text:a ... >)* >  +
@@ -19483,6 +25798,11 @@

text:subject Element

  + + Child Relations + <text:subject (text:fixed="<boolean>" )? + TEXT>  +
@@ -19511,6 +25831,11 @@

text:tab Element

  + + Child Relations + <text:tab (text:tab-ref="<nonNegativeInteger>" )? + >  +
@@ -19542,6 +25867,14 @@

text:table-count Element

  + + Child Relations + <CHOICE_NAME_CLASS ( (style:num-format="(1 | i | I | <string>)?" | + (style:num-format="a | A" (style:num-letter-sync="<boolean>" )? + ))? + )? + TEXT>  +
@@ -19564,7 +25897,7 @@

text:table-formula Element

Attributes style:data-style-name  - text:display[1]  + text:display[5]  text:formula    @@ -19573,6 +25906,13 @@

text:table-formula Element

  + + Child Relations + <text:table-formula (text:formula="<string>" )? + (text:display="value | formula" )? + (style:data-style-name="(<NCName>)?" )? + TEXT>  +
@@ -19614,6 +25954,15 @@

text:table-index Element

<text:table-index-source>    + + Child Relations + <text:table-index (text:style-name="(<NCName>)?" )? + text:name="<string>" (text:protected="<boolean>" )? + (text:protection-key="<string>" )? + (text:protection-key-digest-algorithm="<anyIRI>" )? + (xml:id="<ID>" )? + <text:table-index-source ... ><text:index-body ... >>  +
@@ -19641,6 +25990,11 @@

text:table-index-entry-t <text:index-entry-text>*    + + Child Relations + <text:table-index-entry-template + (text:style-name="(<NCName>)?" (<text:index-entry-chapter ... > | <text:index-entry-page-number ... > | <text:index-entry-text ... > | <text:index-entry-span ... > | <text:index-entry-tab-stop ... >)* )>  +
@@ -19669,6 +26023,17 @@

text:table-index-source Element< <text:table-index-entry-template>    + + Child Relations + <text:table-index-source (text:index-scope="document | chapter" )? + (text:relative-tab-stop-position="<boolean>" )? + (text:use-caption="<boolean>" )? + (text:caption-sequence-name="<string>" )? + (text:caption-sequence-format="text | category-and-value | caption" )? + (<text:index-title-template ... >)? + (<text:table-index-entry-template ... >)? + >  +
@@ -19710,6 +26075,15 @@

text:table-of-content Element< <text:table-of-content-source>    + + Child Relations + <text:table-of-content (text:style-name="(<NCName>)?" )? + text:name="<string>" (text:protected="<boolean>" )? + (text:protection-key="<string>" )? + (text:protection-key-digest-algorithm="<anyIRI>" )? + (xml:id="<ID>" )? + <text:table-of-content-source ... ><text:index-body ... >>  +
@@ -19740,6 +26114,10 @@

text:table-of-conte <text:index-entry-text>*    + + Child Relations + <text:table-of-content-entry-template text:outline-level="<positiveInteger>" text:style-name="(<NCName>)?" (<text:index-entry-chapter ... > | <text:index-entry-page-number ... > | <text:index-entry-text ... > | <text:index-entry-span ... > | <text:index-entry-tab-stop ... > | <text:index-entry-link-start ... > | <text:index-entry-link-end ... >)* >  +
@@ -19770,6 +26148,17 @@

text:table-of-content-sourc <text:table-of-content-entry-template>*    + + Child Relations + <text:table-of-content-source (text:outline-level="<positiveInteger>" )? + (text:use-outline-level="<boolean>" )? + (text:use-index-marks="<boolean>" )? + (text:use-index-source-styles="<boolean>" )? + (text:index-scope="document | chapter" )? + (text:relative-tab-stop-position="<boolean>" )? + (<text:index-title-template ... >)? + (<text:table-of-content-entry-template ... >)* (<text:index-source-styles ... >)* >  +
@@ -19791,7 +26180,7 @@

text:template-name Element

Attributes - text:display[5]  + text:display[6]    @@ -19799,6 +26188,11 @@

text:template-name Element

  + + Child Relations + <text:template-name (text:display="full | path | name | name-and-extension | area | title" )? + TEXT>  +
@@ -19828,6 +26222,11 @@

text:text-input Element

  + + Child Relations + <text:text-input (text:description="<string>" )? + TEXT>  +
@@ -19860,6 +26259,14 @@

text:time Element

  + + Child Relations + <text:time (text:fixed="<boolean>" )? + (style:data-style-name="(<NCName>)?" )? + (text:time-value="<time> | <dateTime>" )? + (text:time-adjust="<duration>" )? + TEXT>  +
@@ -19889,6 +26296,11 @@

text:title Element

  + + Child Relations + <text:title (text:fixed="<boolean>" )? + TEXT>  +
@@ -19918,6 +26330,11 @@

text:toc-mark Element

  + + Child Relations + <text:toc-mark text:string-value="<string>" (text:outline-level="<positiveInteger>" )? + >  +
@@ -19938,7 +26355,7 @@

text:toc-mark-end Element

Attributes - text:id[2]  + text:id[1]    @@ -19946,6 +26363,10 @@

text:toc-mark-end Element

  + + Child Relations + <text:toc-mark-end text:id="<string>" >  +
@@ -19966,7 +26387,7 @@

text:toc-mark-start Element

Attributes - text:id[2]  + text:id[1]  text:outline-level[1]    @@ -19975,6 +26396,12 @@

text:toc-mark-start Element

  + + Child Relations + <text:toc-mark-start + (text:id="<string>" (text:outline-level="<positiveInteger>" )? + )>  +
@@ -20002,6 +26429,11 @@

text:tracked-changes Element<text:changed-region>*    + + Child Relations + <text:tracked-changes (text:track-changes="<boolean>" )? + (<text:changed-region ... >)* >  +
@@ -20038,6 +26470,17 @@

text:user-defined Element

  + + Child Relations + <text:user-defined (text:fixed="<boolean>" )? + text:name="<string>" (style:data-style-name="(<NCName>)?" )? + (office:value="<double>" )? + (office:date-value="<date> | <dateTime>" )? + (office:time-value="<duration>" )? + (office:boolean-value="<boolean>" )? + (office:string-value="<string>" )? + TEXT>  +
@@ -20060,11 +26503,11 @@

text:user-field-decl Elementoffice:value  office:value-type[1]  office:value-type[2]  + office:value-type[3]  office:value-type[4]  office:value-type[5]  office:value-type[6]  office:value-type[7]  - office:value-type[9]  text:formula  text:name    @@ -20074,6 +26517,21 @@

text:user-field-decl Element   + + Child Relations + <text:user-field-decl text:name="<string>" ( (text:formula="<string>" )? + )? + + (office:value-type="float" office:value="<double>" ) | + (office:value-type="percentage" office:value="<double>" ) | + (office:value-type="currency" office:value="<double>" (office:currency="<string>" )? + ) | + (office:value-type="date" office:date-value="<date> | <dateTime>" ) | + (office:value-type="time" office:time-value="<duration>" ) | + (office:value-type="boolean" office:boolean-value="<boolean>" ) | + (office:value-type="string" (office:string-value="<string>" )? + )>  +
@@ -20104,6 +26562,10 @@

text:user-field-decls Element< <text:user-field-decl>*    + + Child Relations + <text:user-field-decls (<text:user-field-decl ... >)* >  +
@@ -20126,7 +26588,7 @@

text:user-field-get Element

Attributes style:data-style-name  - text:display[4]  + text:display[7]  text:name    @@ -20135,6 +26597,12 @@

text:user-field-get Element

  + + Child Relations + <text:user-field-get text:name="<string>" (text:display="value | formula | none" )? + (style:data-style-name="(<NCName>)?" )? + TEXT>  +
@@ -20166,6 +26634,12 @@

text:user-field-input Element<   + + Child Relations + <text:user-field-input text:name="<string>" (text:description="<string>" )? + (style:data-style-name="(<NCName>)?" )? + TEXT>  +
@@ -20207,6 +26681,15 @@

text:user-index Element

<text:user-index-source>    + + Child Relations + <text:user-index (text:style-name="(<NCName>)?" )? + text:name="<string>" (text:protected="<boolean>" )? + (text:protection-key="<string>" )? + (text:protection-key-digest-algorithm="<anyIRI>" )? + (xml:id="<ID>" )? + <text:user-index-source ... ><text:index-body ... >>  +
@@ -20235,6 +26718,10 @@

text:user-index-entry-tem <text:index-entry-text>*    + + Child Relations + <text:user-index-entry-template text:outline-level="<positiveInteger>" text:style-name="(<NCName>)?" (<text:index-entry-chapter ... > | <text:index-entry-page-number ... > | <text:index-entry-text ... > | <text:index-entry-span ... > | <text:index-entry-tab-stop ... >)* >  +
@@ -20265,6 +26752,11 @@

text:user-index-mark Element   + + Child Relations + <text:user-index-mark text:string-value="<string>" (text:outline-level="<positiveInteger>" )? + text:index-name="<string>" >  +
@@ -20285,7 +26777,7 @@

text:user-index-mark-end Elemen Attributes - text:id[2]  + text:id[1]    @@ -20293,6 +26785,10 @@

text:user-index-mark-end Elemen   + + Child Relations + <text:user-index-mark-end text:id="<string>" >  +
@@ -20313,7 +26809,7 @@

text:user-index-mark-start El Attributes - text:id[2]  + text:id[1]  text:index-name  text:outline-level[1]    @@ -20323,6 +26819,11 @@

text:user-index-mark-start El   + + Child Relations + <text:user-index-mark-start text:id="<string>" (text:outline-level="<positiveInteger>" )? + text:index-name="<string>" >  +
@@ -20357,6 +26858,20 @@

text:user-index-source Element<text:user-index-entry-template>*    + + Child Relations + <text:user-index-source (text:index-scope="document | chapter" )? + (text:relative-tab-stop-position="<boolean>" )? + (text:use-index-marks="<boolean>" )? + (text:use-index-source-styles="<boolean>" )? + (text:use-graphics="<boolean>" )? + (text:use-tables="<boolean>" )? + (text:use-floating-frames="<boolean>" )? + (text:use-objects="<boolean>" )? + (text:copy-outline-levels="<boolean>" )? + text:index-name="<string>" (<text:index-title-template ... >)? + (<text:user-index-entry-template ... >)* (<text:index-source-styles ... >)* >  +
@@ -20371,7 +26886,7 @@

text:variable-decl Element

Attributes - office:value-type[8]  + office:value-type[9]  text:name    @@ -20380,6 +26895,10 @@

text:variable-decl Element

  + + Child Relations + <text:variable-decl text:name="<string>" office:value-type="float | time | date | percentage | currency | boolean | string" >  +
@@ -20410,6 +26929,10 @@

text:variable-decls Element

<text:variable-decl>*    + + Child Relations + <text:variable-decls (<text:variable-decl ... >)* >  +
@@ -20432,7 +26955,7 @@

text:variable-get Element

Attributes style:data-style-name  - text:display[1]  + text:display[5]  text:name    @@ -20441,6 +26964,12 @@

text:variable-get Element

  + + Child Relations + <text:variable-get text:name="<string>" (text:display="value | formula" )? + (style:data-style-name="(<NCName>)?" )? + TEXT>  +
@@ -20462,10 +26991,10 @@

text:variable-input Element

Attributes - office:value-type[8]  + office:value-type[9]  style:data-style-name  text:description  - text:display[7]  + text:display[10]  text:name    @@ -20474,6 +27003,13 @@

text:variable-input Element

  + + Child Relations + <text:variable-input text:name="<string>" (text:description="<string>" )? + office:value-type="float | time | date | percentage | currency | boolean | string" (text:display="value | none" )? + (style:data-style-name="(<NCName>)?" )? + TEXT>  +
@@ -20503,13 +27039,13 @@

text:variable-set Element

office:value  office:value-type[1]  office:value-type[2]  + office:value-type[3]  office:value-type[4]  office:value-type[5]  office:value-type[6]  office:value-type[7]  - office:value-type[9]  style:data-style-name  - text:display[7]  + text:display[10]  text:formula  text:name    @@ -20519,6 +27055,22 @@

text:variable-set Element

  + + Child Relations + <text:variable-set text:name="<string>" (text:formula="<string>" )? + + (office:value-type="float" office:value="<double>" ) | + (office:value-type="percentage" office:value="<double>" ) | + (office:value-type="currency" office:value="<double>" (office:currency="<string>" )? + ) | + (office:value-type="date" office:date-value="<date> | <dateTime>" ) | + (office:value-type="time" office:time-value="<duration>" ) | + (office:value-type="boolean" office:boolean-value="<boolean>" ) | + (office:value-type="string" (office:string-value="<string>" )? + ) (text:display="value | none" )? + (style:data-style-name="(<NCName>)?" )? + TEXT>  +
@@ -20550,6 +27102,14 @@

text:word-count Element

  + + Child Relations + <CHOICE_NAME_CLASS ( (style:num-format="(1 | i | I | <string>)?" | + (style:num-format="a | A" (style:num-letter-sync="<boolean>" )? + ))? + )? + TEXT>  +
@@ -20573,6 +27133,11 @@

xforms:model Element

[any org.w3c.dom.Element]    + + Child Relations + <xforms:model + ((*:*="TEXT" )* (<*:* ... >)* )>  +

anim:audio-level Attribute

@@ -20586,7 +27151,7 @@

anim:audio-level Attribute

Datatypes - double  + double    @@ -20594,6 +27159,10 @@

anim:audio-level Attribute

  + + RNG Relations + anim:audio-level="<double>"   +

anim:color-interpolation Attribute

@@ -20612,10 +27181,14 @@

anim:color-interpolation Attr Values - "hsl"  - "rgb"  + "hsl"  + "rgb"    + + RNG Relations + anim:color-interpolation="rgb | hsl"   +

anim:color-interpolation-direction Attribute

@@ -20634,10 +27207,14 @@

anim:color-interpol Values - "clockwise"  - "counter-clockwise"  + "clockwise"  + "counter-clockwise"    + + RNG Relations + anim:color-interpolation-direction="clockwise | counter-clockwise"   +

anim:command Attribute

@@ -20651,7 +27228,7 @@

anim:command Attribute

Datatypes - string  + string    @@ -20659,6 +27236,10 @@

anim:command Attribute

  + + RNG Relations + anim:command="<string>"   +

anim:formula Attribute

@@ -20676,7 +27257,7 @@

anim:formula Attribute

Datatypes - string  + string    @@ -20684,6 +27265,10 @@

anim:formula Attribute

  + + RNG Relations + anim:formula="<string>"   +

anim:id Attribute

@@ -20701,7 +27286,7 @@

anim:id Attribute

Datatypes - NCName  + NCName    @@ -20709,6 +27294,10 @@

anim:id Attribute

  + + RNG Relations + anim:id="<NCName>"   +

anim:iterate-interval Attribute

@@ -20722,7 +27311,7 @@

anim:iterate-interval Attribute< Datatypes - duration  + duration    @@ -20730,6 +27319,10 @@

anim:iterate-interval Attribute<   + + RNG Relations + anim:iterate-interval="<duration>"   +

anim:iterate-type Attribute

@@ -20743,7 +27336,7 @@

anim:iterate-type Attribute

Datatypes - string  + string    @@ -20751,6 +27344,10 @@

anim:iterate-type Attribute

  + + RNG Relations + anim:iterate-type="<string>"   +

anim:name Attribute

@@ -20764,7 +27361,7 @@

anim:name Attribute

Datatypes - string  + string    @@ -20772,6 +27369,10 @@

anim:name Attribute

  + + RNG Relations + anim:name="<string>"   +

anim:sub-item Attribute

@@ -20792,7 +27393,7 @@

anim:sub-item Attribute

Datatypes - string  + string    @@ -20800,6 +27401,10 @@

anim:sub-item Attribute

  + + RNG Relations + anim:sub-item="<string>"   +

anim:value Attribute

@@ -20813,7 +27418,7 @@

anim:value Attribute

Datatypes - string  + string    @@ -20821,6 +27426,10 @@

anim:value Attribute

  + + RNG Relations + anim:value="<string>"   +

chart:angle-offset Attribute (new in ODF 1.2)

@@ -20834,7 +27443,7 @@

chart:angle-offset Attribute&nb Datatypes - string  + string    @@ -20842,6 +27451,10 @@

chart:angle-offset Attribute&nb   + + RNG Relations + chart:angle-offset="<string>"   +

chart:attached-axis Attribute

@@ -20855,7 +27468,7 @@

chart:attached-axis Attribute< Datatypes - string  + string    @@ -20863,6 +27476,10 @@

chart:attached-axis Attribute<   + + RNG Relations + chart:attached-axis="<string>"   +

chart:auto-position Attribute (new in ODF 1.2)

@@ -20881,10 +27498,14 @@

chart:auto-position Attribute& Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + chart:auto-position="<boolean>"   +

chart:auto-size Attribute (new in ODF 1.2)

@@ -20903,10 +27524,14 @@

chart:auto-size Attribute (ne Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + chart:auto-size="<boolean>"   +

chart:automatic-content Attribute (new in ODF 1.2)

@@ -20925,10 +27550,14 @@

chart:automatic-content Attrib Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + chart:automatic-content="<boolean>"   +

chart:axis-label-position Attribute (new in ODF 1.2)

@@ -20947,12 +27576,16 @@

chart:axis-label-position At Values - "near-axis"  - "near-axis-other-side"  - "outside-end"  - "outside-start"  + "near-axis"  + "near-axis-other-side"  + "outside-end"  + "outside-start"    + + RNG Relations + chart:axis-label-position="near-axis | near-axis-other-side | outside-start | outside-end"   +

chart:axis-position Attribute (new in ODF 1.2)

@@ -20966,16 +27599,20 @@

chart:axis-position Attribute& Datatypes - double  + double    Values - "end"  - "start"  + "end"  + "start"    + + RNG Relations + chart:axis-position="start | end | <double>"   +

chart:class[1] Attribute

@@ -20991,7 +27628,7 @@

chart:class[1] Attribute

Datatypes - QName  + QName    @@ -20999,6 +27636,10 @@

chart:class[1] Attribute

  + + RNG Relations + chart:class="QName]"   +

chart:class[2] Attribute

@@ -21018,10 +27659,14 @@

chart:class[2] Attribute

Values - "major"  - "minor"  + "major"  + "minor"    + + RNG Relations + chart:class="major | minor"   +

chart:column-mapping Attribute

@@ -21035,7 +27680,7 @@

chart:column-mapping Attribute Datatypes - string  + string    @@ -21043,6 +27688,10 @@

chart:column-mapping Attribute   + + RNG Relations + chart:column-mapping="<string>"   +

chart:connect-bars Attribute (new in ODF 1.2)

@@ -21061,10 +27710,14 @@

chart:connect-bars Attribute&nb Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + chart:connect-bars="<boolean>"   +

chart:data-label-number Attribute (new in ODF 1.2)

@@ -21083,12 +27736,16 @@

chart:data-label-number Attrib Values - "none"  - "percentage"  - "value"  - "value-and-percentage"  + "none"  + "percentage"  + "value"  + "value-and-percentage"    + + RNG Relations + chart:data-label-number="none | value | percentage | value-and-percentage"   +

chart:data-label-symbol Attribute (new in ODF 1.2)

@@ -21107,10 +27764,14 @@

chart:data-label-symbol Attrib Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + chart:data-label-symbol="<boolean>"   +

chart:data-label-text Attribute (new in ODF 1.2)

@@ -21129,10 +27790,14 @@

chart:data-label-text Attribute< Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + chart:data-label-text="<boolean>"   +

chart:data-source-has-labels Attribute

@@ -21151,12 +27816,16 @@

chart:data-source-has-lab Values - "both"  - "column"  - "none"  - "row"  + "both"  + "column"  + "none"  + "row"    + + RNG Relations + chart:data-source-has-labels="none | row | column | both"   +

chart:deep Attribute (new in ODF 1.2)

@@ -21175,10 +27844,14 @@

chart:deep Attribute (new in ODF 1 Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + chart:deep="<boolean>"   +

chart:dimension Attribute

@@ -21198,11 +27871,15 @@

chart:dimension Attribute

Values - "x"  - "y"  - "z"  + "x"  + "y"  + "z"    + + RNG Relations + chart:dimension="x | y | z"   +

chart:display-equation Attribute (new in ODF 1.2)

@@ -21221,10 +27898,14 @@

chart:display-equation Attribut Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + chart:display-equation="<boolean>"   +

chart:display-label Attribute (new in ODF 1.2)

@@ -21243,10 +27924,14 @@

chart:display-label Attribute& Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + chart:display-label="<boolean>"   +

chart:display-r-square Attribute (new in ODF 1.2)

@@ -21265,10 +27950,14 @@

chart:display-r-square Attribut Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + chart:display-r-square="<boolean>"   +

chart:error-category Attribute (new in ODF 1.2)

@@ -21287,16 +27976,20 @@

chart:error-category Attribute Values - "cell-range"  - "constant"  - "error-margin"  - "none"  - "percentage"  - "standard-deviation"  - "standard-error"  - "variance"  + "cell-range"  + "constant"  + "error-margin"  + "none"  + "percentage"  + "standard-deviation"  + "standard-error"  + "variance"    + + RNG Relations + chart:error-category="none | variance | standard-deviation | percentage | error-margin | constant | standard-error | cell-range"   +

chart:error-lower-indicator Attribute (new in ODF 1.2)

@@ -21315,10 +28008,14 @@

chart:error-lower-indicato Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + chart:error-lower-indicator="<boolean>"   +

chart:error-lower-limit Attribute (new in ODF 1.2)

@@ -21332,7 +28029,7 @@

chart:error-lower-limit Attrib Datatypes - double  + double    @@ -21340,6 +28037,10 @@

chart:error-lower-limit Attrib   + + RNG Relations + chart:error-lower-limit="<double>"   +

chart:error-lower-range Attribute (new in ODF 1.2)

@@ -21353,7 +28054,7 @@

chart:error-lower-range Attrib Datatypes - string  + string    @@ -21361,6 +28062,10 @@

chart:error-lower-range Attrib   + + RNG Relations + chart:error-lower-range="<string>"   +

chart:error-margin Attribute (new in ODF 1.2)

@@ -21374,7 +28079,7 @@

chart:error-margin Attribute&nb Datatypes - double  + double    @@ -21382,6 +28087,10 @@

chart:error-margin Attribute&nb   + + RNG Relations + chart:error-margin="<double>"   +

chart:error-percentage Attribute (new in ODF 1.2)

@@ -21395,7 +28104,7 @@

chart:error-percentage Attribut Datatypes - double  + double    @@ -21403,6 +28112,10 @@

chart:error-percentage Attribut   + + RNG Relations + chart:error-percentage="<double>"   +

chart:error-upper-indicator Attribute (new in ODF 1.2)

@@ -21421,10 +28134,14 @@

chart:error-upper-indicato Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + chart:error-upper-indicator="<boolean>"   +

chart:error-upper-limit Attribute (new in ODF 1.2)

@@ -21438,7 +28155,7 @@

chart:error-upper-limit Attrib Datatypes - double  + double    @@ -21446,6 +28163,10 @@

chart:error-upper-limit Attrib   + + RNG Relations + chart:error-upper-limit="<double>"   +

chart:error-upper-range Attribute (new in ODF 1.2)

@@ -21459,7 +28180,7 @@

chart:error-upper-range Attrib Datatypes - string  + string    @@ -21467,6 +28188,10 @@

chart:error-upper-range Attrib   + + RNG Relations + chart:error-upper-range="<string>"   +

chart:gap-width Attribute (new in ODF 1.2)

@@ -21480,7 +28205,7 @@

chart:gap-width Attribute (ne Datatypes - integer  + integer    @@ -21488,6 +28213,10 @@

chart:gap-width Attribute (ne   + + RNG Relations + chart:gap-width="<integer>"   +

chart:group-bars-per-axis Attribute (new in ODF 1.2)

@@ -21506,10 +28235,14 @@

chart:group-bars-per-axis At Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + chart:group-bars-per-axis="<boolean>"   +

chart:hole-size Attribute (new in ODF 1.2)

@@ -21523,7 +28256,7 @@

chart:hole-size Attribute (ne Datatypes - string  + string    @@ -21531,6 +28264,10 @@

chart:hole-size Attribute (ne   + + RNG Relations + chart:hole-size="string]"   +

chart:include-hidden-cells Attribute (new in ODF 1.2)

@@ -21549,10 +28286,14 @@

chart:include-hidden-cells Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + chart:include-hidden-cells="<boolean>"   +

chart:interpolation Attribute (new in ODF 1.2)

@@ -21571,11 +28312,15 @@

chart:interpolation Attribute& Values - "b-spline"  - "cubic-spline"  - "none"  + "b-spline"  + "cubic-spline"  + "none"    + + RNG Relations + chart:interpolation="none | cubic-spline | b-spline"   +

chart:interval-major Attribute (new in ODF 1.2)

@@ -21589,7 +28334,7 @@

chart:interval-major Attribute Datatypes - double  + double    @@ -21597,6 +28342,10 @@

chart:interval-major Attribute   + + RNG Relations + chart:interval-major="<double>"   +

chart:interval-minor-divisor Attribute (new in ODF 1.2)

@@ -21610,7 +28359,7 @@

chart:interval-minor-divi Datatypes - positiveInteger  + positiveInteger    @@ -21618,6 +28367,10 @@

chart:interval-minor-divi   + + RNG Relations + chart:interval-minor-divisor="<positiveInteger>"   +

chart:japanese-candle-stick Attribute (new in ODF 1.2)

@@ -21636,10 +28389,14 @@

chart:japanese-candle-stic Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + chart:japanese-candle-stick="<boolean>"   +

chart:label-arrangement Attribute (new in ODF 1.2)

@@ -21658,11 +28415,15 @@

chart:label-arrangement Attrib Values - "side-by-side"  - "stagger-even"  - "stagger-odd"  + "side-by-side"  + "stagger-even"  + "stagger-odd"    + + RNG Relations + chart:label-arrangement="side-by-side | stagger-even | stagger-odd"   +

chart:label-cell-address Attribute

@@ -21676,7 +28437,7 @@

chart:label-cell-address Attr Datatypes - string  + string    @@ -21684,6 +28445,10 @@

chart:label-cell-address Attr   + + RNG Relations + chart:label-cell-address="<string>"   +

chart:label-position Attribute (new in ODF 1.2)

@@ -21702,21 +28467,25 @@

chart:label-position Attribute Values - "avoid-overlap"  - "bottom"  - "bottom-left"  - "bottom-right"  - "center"  - "inside"  - "left"  - "near-origin"  - "outside"  - "right"  - "top"  - "top-left"  - "top-right"  + "avoid-overlap"  + "bottom"  + "bottom-left"  + "bottom-right"  + "center"  + "inside"  + "left"  + "near-origin"  + "outside"  + "right"  + "top"  + "top-left"  + "top-right"    + + RNG Relations + chart:label-position="avoid-overlap | center | top | top-right | right | bottom-right | bottom | bottom-left | left | top-left | inside | outside | near-origin"   +

chart:label-position-negative Attribute (new in ODF 1.2)

@@ -21735,21 +28504,25 @@

chart:label-position-neg Values - "avoid-overlap"  - "bottom"  - "bottom-left"  - "bottom-right"  - "center"  - "inside"  - "left"  - "near-origin"  - "outside"  - "right"  - "top"  - "top-left"  - "top-right"  + "avoid-overlap"  + "bottom"  + "bottom-left"  + "bottom-right"  + "center"  + "inside"  + "left"  + "near-origin"  + "outside"  + "right"  + "top"  + "top-left"  + "top-right"    + + RNG Relations + chart:label-position-negative="avoid-overlap | center | top | top-right | right | bottom-right | bottom | bottom-left | left | top-left | inside | outside | near-origin"   +

chart:legend-align Attribute

@@ -21768,11 +28541,15 @@

chart:legend-align Attribute Values - "center"  - "end"  - "start"  + "center"  + "end"  + "start"    + + RNG Relations + chart:legend-align="start | center | end"   +

chart:legend-position[1] Attribute

@@ -21792,12 +28569,16 @@

chart:legend-position[1] Attribu Values - "bottom"  - "end"  - "start"  - "top"  + "bottom"  + "end"  + "start"  + "top"    + + RNG Relations + chart:legend-position="start | end | top | bottom"   +

chart:legend-position[2] Attribute

@@ -21817,12 +28598,16 @@

chart:legend-position[2] Attribu Values - "bottom-end"  - "bottom-start"  - "top-end"  - "top-start"  + "bottom-end"  + "bottom-start"  + "top-end"  + "top-start"    + + RNG Relations + chart:legend-position="top-start | bottom-start | top-end | bottom-end"   +

chart:lines Attribute (new in ODF 1.2)

@@ -21841,10 +28626,14 @@

chart:lines Attribute (new in ODF Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + chart:lines="<boolean>"   +

chart:link-data-style-to-source Attribute (new in ODF 1.2)

@@ -21863,10 +28652,14 @@

chart:link-data-style- Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + chart:link-data-style-to-source="<boolean>"   +

chart:logarithmic Attribute (new in ODF 1.2)

@@ -21885,10 +28678,14 @@

chart:logarithmic Attribute  Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + chart:logarithmic="<boolean>"   +

chart:maximum Attribute (new in ODF 1.2)

@@ -21902,7 +28699,7 @@

chart:maximum Attribute (new in Datatypes - double  + double    @@ -21910,6 +28707,10 @@

chart:maximum Attribute (new in   + + RNG Relations + chart:maximum="<double>"   +

chart:mean-value Attribute (new in ODF 1.2)

@@ -21928,10 +28729,14 @@

chart:mean-value Attribute ( Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + chart:mean-value="<boolean>"   +

chart:minimum Attribute (new in ODF 1.2)

@@ -21945,7 +28750,7 @@

chart:minimum Attribute (new in Datatypes - double  + double    @@ -21953,6 +28758,10 @@

chart:minimum Attribute (new in   + + RNG Relations + chart:minimum="<double>"   +

chart:name Attribute

@@ -21966,7 +28775,7 @@

chart:name Attribute

Datatypes - string  + string    @@ -21974,6 +28783,10 @@

chart:name Attribute

  + + RNG Relations + chart:name="<string>"   +

chart:origin Attribute (new in ODF 1.2)

@@ -21987,7 +28800,7 @@

chart:origin Attribute (new in O Datatypes - double  + double    @@ -21995,6 +28808,10 @@

chart:origin Attribute (new in O   + + RNG Relations + chart:origin="<double>"   +

chart:overlap Attribute (new in ODF 1.2)

@@ -22008,7 +28825,7 @@

chart:overlap Attribute (new in Datatypes - integer  + integer    @@ -22016,6 +28833,10 @@

chart:overlap Attribute (new in   + + RNG Relations + chart:overlap="<integer>"   +

chart:percentage Attribute (new in ODF 1.2)

@@ -22034,10 +28855,14 @@

chart:percentage Attribute ( Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + chart:percentage="<boolean>"   +

chart:pie-offset Attribute (new in ODF 1.2)

@@ -22051,7 +28876,7 @@

chart:pie-offset Attribute ( Datatypes - nonNegativeInteger  + nonNegativeInteger    @@ -22059,6 +28884,10 @@

chart:pie-offset Attribute (   + + RNG Relations + chart:pie-offset="<nonNegativeInteger>"   +

chart:regression-type Attribute (new in ODF 1.2)

@@ -22077,13 +28906,17 @@

chart:regression-type Attribute< Values - "exponential"  - "linear"  - "logarithmic"  - "none"  - "power"  + "exponential"  + "linear"  + "logarithmic"  + "none"  + "power"    + + RNG Relations + chart:regression-type="none | linear | logarithmic | exponential | power"   +

chart:repeated Attribute

@@ -22097,7 +28930,7 @@

chart:repeated Attribute

Datatypes - positiveInteger  + positiveInteger    @@ -22105,6 +28938,10 @@

chart:repeated Attribute

  + + RNG Relations + chart:repeated="<positiveInteger>"   +

chart:reverse-direction Attribute (new in ODF 1.2)

@@ -22123,10 +28960,14 @@

chart:reverse-direction Attrib Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + chart:reverse-direction="<boolean>"   +

chart:right-angled-axes Attribute (new in ODF 1.2)

@@ -22145,10 +28986,14 @@

chart:right-angled-axes Attrib Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + chart:right-angled-axes="<boolean>"   +

chart:row-mapping Attribute

@@ -22162,7 +29007,7 @@

chart:row-mapping Attribute

Datatypes - string  + string    @@ -22170,6 +29015,10 @@

chart:row-mapping Attribute

  + + RNG Relations + chart:row-mapping="<string>"   +

chart:scale-text Attribute (new in ODF 1.2)

@@ -22188,10 +29037,14 @@

chart:scale-text Attribute ( Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + chart:scale-text="<boolean>"   +

chart:series-source Attribute (new in ODF 1.2)

@@ -22210,10 +29063,14 @@

chart:series-source Attribute& Values - "columns"  - "rows"  + "columns"  + "rows"    + + RNG Relations + chart:series-source="columns | rows"   +

chart:solid-type Attribute (new in ODF 1.2)

@@ -22232,12 +29089,16 @@

chart:solid-type Attribute ( Values - "cone"  - "cuboid"  - "cylinder"  - "pyramid"  + "cone"  + "cuboid"  + "cylinder"  + "pyramid"    + + RNG Relations + chart:solid-type="cuboid | cylinder | cone | pyramid"   +

chart:sort-by-x-values Attribute (new in ODF 1.2)

@@ -22256,10 +29117,14 @@

chart:sort-by-x-values Attribut Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + chart:sort-by-x-values="<boolean>"   +

chart:spline-order Attribute (new in ODF 1.2)

@@ -22273,7 +29138,7 @@

chart:spline-order Attribute&nb Datatypes - positiveInteger  + positiveInteger    @@ -22281,6 +29146,10 @@

chart:spline-order Attribute&nb   + + RNG Relations + chart:spline-order="<positiveInteger>"   +

chart:spline-resolution Attribute (new in ODF 1.2)

@@ -22294,7 +29163,7 @@

chart:spline-resolution Attrib Datatypes - positiveInteger  + positiveInteger    @@ -22302,6 +29171,10 @@

chart:spline-resolution Attrib   + + RNG Relations + chart:spline-resolution="<positiveInteger>"   +

chart:stacked Attribute (new in ODF 1.2)

@@ -22320,10 +29193,14 @@

chart:stacked Attribute (new in Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + chart:stacked="<boolean>"   +

chart:style-name Attribute

@@ -22356,7 +29233,7 @@

chart:style-name Attribute

Datatypes - NCName  + NCName    @@ -22364,6 +29241,10 @@

chart:style-name Attribute

  + + RNG Relations + chart:style-name="(<NCName>)?"   +

chart:symbol-height Attribute (new in ODF 1.2)

@@ -22377,7 +29258,7 @@

chart:symbol-height Attribute& Datatypes - string  + string    @@ -22385,6 +29266,10 @@

chart:symbol-height Attribute&   + + RNG Relations + chart:symbol-height="string]"   +

chart:symbol-name Attribute (new in ODF 1.2)

@@ -22403,23 +29288,27 @@

chart:symbol-name Attribute  Values - "arrow-down"  - "arrow-left"  - "arrow-right"  - "arrow-up"  - "asterisk"  - "bow-tie"  - "circle"  - "diamond"  - "horizontal-bar"  - "hourglass"  - "plus"  - "square"  - "star"  - "vertical-bar"  - "x"  + "arrow-down"  + "arrow-left"  + "arrow-right"  + "arrow-up"  + "asterisk"  + "bow-tie"  + "circle"  + "diamond"  + "horizontal-bar"  + "hourglass"  + "plus"  + "square"  + "star"  + "vertical-bar"  + "x"    + + RNG Relations + chart:symbol-name="square | diamond | arrow-down | arrow-up | arrow-right | arrow-left | bow-tie | hourglass | circle | star | x | plus | asterisk | horizontal-bar | vertical-bar"   +

chart:symbol-type[1] Attribute (new in ODF 1.2)

@@ -22439,9 +29328,13 @@

chart:symbol-type[1] Attribute&n Values - "automatic"  + "automatic"    + + RNG Relations + chart:symbol-type="automatic"   +

chart:symbol-type[2] Attribute (new in ODF 1.2)

@@ -22461,9 +29354,13 @@

chart:symbol-type[2] Attribute&n Values - "named-symbol"  + "none"    + + RNG Relations + chart:symbol-type="none"   +

chart:symbol-type[3] Attribute (new in ODF 1.2)

@@ -22483,9 +29380,13 @@

chart:symbol-type[3] Attribute&n Values - "none"  + "image"    + + RNG Relations + chart:symbol-type="image"   +

chart:symbol-type[4] Attribute (new in ODF 1.2)

@@ -22505,9 +29406,13 @@

chart:symbol-type[4] Attribute&n Values - "image"  + "named-symbol"    + + RNG Relations + chart:symbol-type="named-symbol"   +

chart:symbol-width Attribute (new in ODF 1.2)

@@ -22521,7 +29426,7 @@

chart:symbol-width Attribute&nb Datatypes - string  + string    @@ -22529,6 +29434,10 @@

chart:symbol-width Attribute&nb   + + RNG Relations + chart:symbol-width="string]"   +

chart:text-overlap Attribute (new in ODF 1.2)

@@ -22547,10 +29456,14 @@

chart:text-overlap Attribute&nb Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + chart:text-overlap="<boolean>"   +

chart:three-dimensional Attribute (new in ODF 1.2)

@@ -22569,10 +29482,14 @@

chart:three-dimensional Attrib Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + chart:three-dimensional="<boolean>"   +

chart:tick-mark-position Attribute (new in ODF 1.2)

@@ -22591,11 +29508,15 @@

chart:tick-mark-position Attr Values - "at-axis"  - "at-labels"  - "at-labels-and-axis"  + "at-axis"  + "at-labels"  + "at-labels-and-axis"    + + RNG Relations + chart:tick-mark-position="at-labels | at-axis | at-labels-and-axis"   +

chart:tick-marks-major-inner Attribute (new in ODF 1.2)

@@ -22614,10 +29535,14 @@

chart:tick-marks-major-in Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + chart:tick-marks-major-inner="<boolean>"   +

chart:tick-marks-major-outer Attribute (new in ODF 1.2)

@@ -22636,10 +29561,14 @@

chart:tick-marks-major-ou Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + chart:tick-marks-major-outer="<boolean>"   +

chart:tick-marks-minor-inner Attribute (new in ODF 1.2)

@@ -22658,10 +29587,14 @@

chart:tick-marks-minor-in Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + chart:tick-marks-minor-inner="<boolean>"   +

chart:tick-marks-minor-outer Attribute (new in ODF 1.2)

@@ -22680,10 +29613,14 @@

chart:tick-marks-minor-ou Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + chart:tick-marks-minor-outer="<boolean>"   +

chart:treat-empty-cells Attribute (new in ODF 1.2)

@@ -22702,11 +29639,15 @@

chart:treat-empty-cells Attrib Values - "ignore"  - "leave-gap"  - "use-zero"  + "ignore"  + "leave-gap"  + "use-zero"    + + RNG Relations + chart:treat-empty-cells="use-zero | leave-gap | ignore"   +

chart:values-cell-range-address Attribute

@@ -22720,7 +29661,7 @@

chart:values-cell-rang Datatypes - string  + string    @@ -22728,6 +29669,10 @@

chart:values-cell-rang   + + RNG Relations + chart:values-cell-range-address="<string>"   +

chart:vertical Attribute (new in ODF 1.2)

@@ -22746,10 +29691,14 @@

chart:vertical Attribute (new Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + chart:vertical="<boolean>"   +

chart:visible Attribute (new in ODF 1.2)

@@ -22768,10 +29717,14 @@

chart:visible Attribute (new in Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + chart:visible="<boolean>"   +

config:name Attribute

@@ -22789,7 +29742,7 @@

config:name Attribute

Datatypes - string  + string    @@ -22797,6 +29750,10 @@

config:name Attribute

  + + RNG Relations + config:name="<string>"   +

config:type Attribute

@@ -22815,16 +29772,20 @@

config:type Attribute

Values - "base64Binary"  - "boolean"  - "datetime"  - "double"  - "int"  - "long"  - "short"  - "string"  + "base64Binary"  + "boolean"  + "datetime"  + "double"  + "int"  + "long"  + "short"  + "string"    + + RNG Relations + config:type="boolean | short | int | long | double | string | datetime | base64Binary"   +

db:additional-column-statement Attribute (new in ODF 1.2)

@@ -22838,7 +29799,7 @@

db:additional-column-st Datatypes - string  + string    @@ -22846,6 +29807,10 @@

db:additional-column-st   + + RNG Relations + db:additional-column-statement="<string>"   +

db:append-table-alias-name Attribute (new in ODF 1.2)

@@ -22864,10 +29829,14 @@

db:append-table-alias-name Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + db:append-table-alias-name="<boolean>"   +

db:apply-command Attribute (new in ODF 1.2)

@@ -22887,10 +29856,14 @@

db:apply-command Attribute ( Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + db:apply-command="<boolean>"   +

db:as-template Attribute (new in ODF 1.2)

@@ -22909,10 +29882,14 @@

db:as-template Attribute (new Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + db:as-template="<boolean>"   +

db:base-dn Attribute (new in ODF 1.2)

@@ -22926,7 +29903,7 @@

db:base-dn Attribute (new in ODF 1 Datatypes - string  + string    @@ -22934,6 +29911,10 @@

db:base-dn Attribute (new in ODF 1   + + RNG Relations + db:base-dn="<string>"   +

db:boolean-comparison-mode Attribute (new in ODF 1.2)

@@ -22952,12 +29933,16 @@

db:boolean-comparison-mode Values - "equal-boolean"  - "equal-integer"  - "equal-use-only-zero"  - "is-boolean"  + "equal-boolean"  + "equal-integer"  + "equal-use-only-zero"  + "is-boolean"    + + RNG Relations + db:boolean-comparison-mode="equal-integer | is-boolean | equal-boolean | equal-use-only-zero"   +

db:catalog-name Attribute (new in ODF 1.2)

@@ -22974,7 +29959,7 @@

db:catalog-name Attribute (ne Datatypes - string  + string    @@ -22982,6 +29967,10 @@

db:catalog-name Attribute (ne   + + RNG Relations + db:catalog-name="<string>"   +

db:command Attribute (new in ODF 1.2)

@@ -22997,7 +29986,7 @@

db:command Attribute (new in ODF 1 Datatypes - string  + string    @@ -23005,6 +29994,10 @@

db:command Attribute (new in ODF 1   + + RNG Relations + db:command="<string>"   +

db:data-source-setting-is-list Attribute (new in ODF 1.2)

@@ -23023,10 +30016,14 @@

db:data-source-setting- Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + db:data-source-setting-is-list="<boolean>"   +

db:data-source-setting-name Attribute (new in ODF 1.2)

@@ -23040,7 +30037,7 @@

db:data-source-setting-nam Datatypes - string  + string    @@ -23048,6 +30045,10 @@

db:data-source-setting-nam   + + RNG Relations + db:data-source-setting-name="<string>"   +

db:data-source-setting-type Attribute (new in ODF 1.2)

@@ -23066,14 +30067,18 @@

db:data-source-setting-typ Values - "boolean"  - "double"  - "int"  - "long"  - "short"  - "string"  + "boolean"  + "double"  + "int"  + "long"  + "short"  + "string"    + + RNG Relations + db:data-source-setting-type="boolean | short | int | long | double | string"   +

db:data-type Attribute (new in ODF 1.2)

@@ -23092,37 +30097,41 @@

db:data-type Attribute (new in O Values - "array"  - "bigint"  - "binary"  - "bit"  - "blob"  - "boolean"  - "char"  - "clob"  - "date"  - "decimal"  - "distinct"  - "double"  - "float"  - "integer"  - "longvarbinary"  - "longvarchar"  - "numeric"  - "object"  - "other"  - "real"  - "ref"  - "smallint"  - "sqlnull"  - "struct"  - "time"  - "timestmp"  - "tinyint"  - "varbinary"  - "varchar"  + "array"  + "bigint"  + "binary"  + "bit"  + "blob"  + "boolean"  + "char"  + "clob"  + "date"  + "decimal"  + "distinct"  + "double"  + "float"  + "integer"  + "longvarbinary"  + "longvarchar"  + "numeric"  + "object"  + "other"  + "real"  + "ref"  + "smallint"  + "sqlnull"  + "struct"  + "time"  + "timestmp"  + "tinyint"  + "varbinary"  + "varchar"    + + RNG Relations + db:data-type="bit | boolean | tinyint | smallint | integer | bigint | float | real | double | numeric | decimal | char | varchar | longvarchar | date | time | timestmp | binary | varbinary | longvarbinary | sqlnull | other | object | distinct | struct | array | blob | clob | ref"   +

db:database-name Attribute (new in ODF 1.2)

@@ -23136,7 +30145,7 @@

db:database-name Attribute ( Datatypes - string  + string    @@ -23144,6 +30153,10 @@

db:database-name Attribute (   + + RNG Relations + db:database-name="<string>"   +

db:decimal Attribute (new in ODF 1.2)

@@ -23157,7 +30170,7 @@

db:decimal Attribute (new in ODF 1 Datatypes - string  + string    @@ -23165,6 +30178,10 @@

db:decimal Attribute (new in ODF 1   + + RNG Relations + db:decimal="<string>"   +

db:default-cell-style-name Attribute (new in ODF 1.2)

@@ -23178,7 +30195,7 @@

db:default-cell-style-name Datatypes - NCName  + NCName    @@ -23186,6 +30203,10 @@

db:default-cell-style-name   + + RNG Relations + db:default-cell-style-name="(<NCName>)?"   +

db:default-row-style-name Attribute (new in ODF 1.2)

@@ -23200,7 +30221,7 @@

db:default-row-style-name At Datatypes - NCName  + NCName    @@ -23208,6 +30229,10 @@

db:default-row-style-name At   + + RNG Relations + db:default-row-style-name="(<NCName>)?"   +

db:delete-rule Attribute (new in ODF 1.2)

@@ -23226,13 +30251,17 @@

db:delete-rule Attribute (new Values - "cascade"  - "no-action"  - "restrict"  - "set-default"  - "set-null"  + "cascade"  + "no-action"  + "restrict"  + "set-default"  + "set-null"    + + RNG Relations + db:delete-rule="cascade | restrict | set-null | no-action | set-default"   +

db:description Attribute (new in ODF 1.2)

@@ -23251,7 +30280,7 @@

db:description Attribute (new Datatypes - string  + string    @@ -23259,6 +30288,10 @@

db:description Attribute (new   + + RNG Relations + db:description="<string>"   +

db:enable-sql92-check Attribute (new in ODF 1.2)

@@ -23277,10 +30310,14 @@

db:enable-sql92-check Attribute< Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + db:enable-sql92-check="<boolean>"   +

db:encoding Attribute (new in ODF 1.2)

@@ -23294,7 +30331,7 @@

db:encoding Attribute (new in ODF Datatypes - string  + string    @@ -23302,6 +30339,10 @@

db:encoding Attribute (new in ODF   + + RNG Relations + db:encoding="string]"   +

db:escape-processing Attribute (new in ODF 1.2)

@@ -23320,10 +30361,14 @@

db:escape-processing Attribute Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + db:escape-processing="<boolean>"   +

db:extension Attribute (new in ODF 1.2)

@@ -23337,7 +30382,7 @@

db:extension Attribute (new in O Datatypes - string  + string    @@ -23345,6 +30390,10 @@

db:extension Attribute (new in O   + + RNG Relations + db:extension="<string>"   +

db:field Attribute (new in ODF 1.2)

@@ -23358,7 +30407,7 @@

db:field Attribute (new in ODF 1.2) Datatypes - string  + string    @@ -23366,6 +30415,10 @@

db:field Attribute (new in ODF 1.2)   + + RNG Relations + db:field="<string>"   +

db:hostname Attribute (new in ODF 1.2)

@@ -23379,7 +30432,7 @@

db:hostname Attribute (new in ODF Datatypes - string  + string    @@ -23387,6 +30440,10 @@

db:hostname Attribute (new in ODF   + + RNG Relations + db:hostname="<string>"   +

db:ignore-driver-privileges Attribute (new in ODF 1.2)

@@ -23405,10 +30462,14 @@

db:ignore-driver-privilege Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + db:ignore-driver-privileges="<boolean>"   +

db:is-ascending Attribute (new in ODF 1.2)

@@ -23427,10 +30488,14 @@

db:is-ascending Attribute (ne Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + db:is-ascending="<boolean>"   +

db:is-autoincrement Attribute (new in ODF 1.2)

@@ -23449,10 +30514,14 @@

db:is-autoincrement Attribute& Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + db:is-autoincrement="<boolean>"   +

db:is-clustered Attribute (new in ODF 1.2)

@@ -23471,10 +30540,14 @@

db:is-clustered Attribute (ne Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + db:is-clustered="<boolean>"   +

db:is-empty-allowed Attribute (new in ODF 1.2)

@@ -23493,10 +30566,14 @@

db:is-empty-allowed Attribute& Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + db:is-empty-allowed="<boolean>"   +

db:is-first-row-header-line Attribute (new in ODF 1.2)

@@ -23516,10 +30593,14 @@

db:is-first-row-header-lin Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + db:is-first-row-header-line="<boolean>"   +

db:is-nullable Attribute (new in ODF 1.2)

@@ -23538,10 +30619,14 @@

db:is-nullable Attribute (new Values - "no-nulls"  - "nullable"  + "no-nulls"  + "nullable"    + + RNG Relations + db:is-nullable="no-nulls | nullable"   +

db:is-password-required Attribute (new in ODF 1.2)

@@ -23560,10 +30645,14 @@

db:is-password-required Attrib Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + db:is-password-required="<boolean>"   +

db:is-table-name-length-limited Attribute (new in ODF 1.2)

@@ -23582,10 +30671,14 @@

db:is-table-name-lengt Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + db:is-table-name-length-limited="<boolean>"   +

db:is-unique Attribute (new in ODF 1.2)

@@ -23604,10 +30697,14 @@

db:is-unique Attribute (new in O Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + db:is-unique="<boolean>"   +

db:local-socket Attribute (new in ODF 1.2)

@@ -23621,7 +30718,7 @@

db:local-socket Attribute (ne Datatypes - string  + string    @@ -23629,6 +30726,10 @@

db:local-socket Attribute (ne   + + RNG Relations + db:local-socket="<string>"   +

db:login-timeout Attribute (new in ODF 1.2)

@@ -23642,7 +30743,7 @@

db:login-timeout Attribute ( Datatypes - positiveInteger  + positiveInteger    @@ -23650,6 +30751,10 @@

db:login-timeout Attribute (   + + RNG Relations + db:login-timeout="<positiveInteger>"   +

db:max-row-count Attribute (new in ODF 1.2)

@@ -23663,7 +30768,7 @@

db:max-row-count Attribute ( Datatypes - integer  + integer    @@ -23671,6 +30776,10 @@

db:max-row-count Attribute (   + + RNG Relations + db:max-row-count="<integer>"   +

db:media-type Attribute (new in ODF 1.2)

@@ -23684,7 +30793,7 @@

db:media-type Attribute (new in Datatypes - string  + string    @@ -23692,6 +30801,10 @@

db:media-type Attribute (new in   + + RNG Relations + db:media-type="<string>"   +

db:name Attribute (new in ODF 1.2)

@@ -23717,7 +30830,7 @@

db:name Attribute (new in ODF 1.2) Datatypes - string  + string    @@ -23725,6 +30838,10 @@

db:name Attribute (new in ODF 1.2)   + + RNG Relations + db:name="<string>"   +

db:parameter-name-substitution Attribute (new in ODF 1.2)

@@ -23743,10 +30860,14 @@

db:parameter-name-subst Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + db:parameter-name-substitution="<boolean>"   +

db:port Attribute (new in ODF 1.2)

@@ -23760,7 +30881,7 @@

db:port Attribute (new in ODF 1.2) Datatypes - positiveInteger  + positiveInteger    @@ -23768,6 +30889,10 @@

db:port Attribute (new in ODF 1.2)   + + RNG Relations + db:port="<positiveInteger>"   +

db:precision Attribute (new in ODF 1.2)

@@ -23781,7 +30906,7 @@

db:precision Attribute (new in O Datatypes - positiveInteger  + positiveInteger    @@ -23789,6 +30914,10 @@

db:precision Attribute (new in O   + + RNG Relations + db:precision="<positiveInteger>"   +

db:referenced-table-name Attribute (new in ODF 1.2)

@@ -23802,7 +30931,7 @@

db:referenced-table-name Attr Datatypes - string  + string    @@ -23810,6 +30939,10 @@

db:referenced-table-name Attr   + + RNG Relations + db:referenced-table-name="<string>"   +

db:related-column-name Attribute (new in ODF 1.2)

@@ -23823,7 +30956,7 @@

db:related-column-name Attribut Datatypes - string  + string    @@ -23831,6 +30964,10 @@

db:related-column-name Attribut   + + RNG Relations + db:related-column-name="<string>"   +

db:row-retrieving-statement Attribute (new in ODF 1.2)

@@ -23844,7 +30981,7 @@

db:row-retrieving-statemen Datatypes - string  + string    @@ -23852,6 +30989,10 @@

db:row-retrieving-statemen   + + RNG Relations + db:row-retrieving-statement="<string>"   +

db:scale Attribute (new in ODF 1.2)

@@ -23865,7 +31006,7 @@

db:scale Attribute (new in ODF 1.2) Datatypes - positiveInteger  + positiveInteger    @@ -23873,6 +31014,10 @@

db:scale Attribute (new in ODF 1.2)   + + RNG Relations + db:scale="<positiveInteger>"   +

db:schema-name Attribute (new in ODF 1.2)

@@ -23888,7 +31033,7 @@

db:schema-name Attribute (new Datatypes - string  + string    @@ -23896,6 +31041,10 @@

db:schema-name Attribute (new   + + RNG Relations + db:schema-name="<string>"   +

db:show-deleted Attribute (new in ODF 1.2)

@@ -23915,10 +31064,14 @@

db:show-deleted Attribute (ne Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + db:show-deleted="<boolean>"   +

db:string Attribute (new in ODF 1.2)

@@ -23932,7 +31085,7 @@

db:string Attribute (new in ODF 1.2 Datatypes - string  + string    @@ -23940,6 +31093,10 @@

db:string Attribute (new in ODF 1.2   + + RNG Relations + db:string="<string>"   +

db:style-name Attribute (new in ODF 1.2)

@@ -23955,7 +31112,7 @@

db:style-name Attribute (new in Datatypes - NCName  + NCName    @@ -23963,6 +31120,10 @@

db:style-name Attribute (new in   + + RNG Relations + db:style-name="(<NCName>)?"   +

db:suppress-version-columns Attribute (new in ODF 1.2)

@@ -23981,10 +31142,14 @@

db:suppress-version-column Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + db:suppress-version-columns="<boolean>"   +

db:system-driver-settings Attribute (new in ODF 1.2)

@@ -23998,7 +31163,7 @@

db:system-driver-settings At Datatypes - string  + string    @@ -24006,6 +31171,10 @@

db:system-driver-settings At   + + RNG Relations + db:system-driver-settings="<string>"   +

db:thousand Attribute (new in ODF 1.2)

@@ -24019,7 +31188,7 @@

db:thousand Attribute (new in ODF Datatypes - string  + string    @@ -24027,6 +31196,10 @@

db:thousand Attribute (new in ODF   + + RNG Relations + db:thousand="<string>"   +

db:title Attribute (new in ODF 1.2)

@@ -24045,7 +31218,7 @@

db:title Attribute (new in ODF 1.2) Datatypes - string  + string    @@ -24053,6 +31226,10 @@

db:title Attribute (new in ODF 1.2)   + + RNG Relations + db:title="<string>"   +

db:type[1] Attribute (new in ODF 1.2)

@@ -24061,13 +31238,13 @@

db:type[1] Attribute (new in ODF 1.2) Parent Elements - db:table-definition  + db:server-database    Datatypes - string  + QName    @@ -24075,6 +31252,10 @@

db:type[1] Attribute (new in ODF 1.2)   + + RNG Relations + db:type="QName]"   +

db:type[2] Attribute (new in ODF 1.2)

@@ -24083,13 +31264,13 @@

db:type[2] Attribute (new in ODF 1.2) Parent Elements - db:server-database  + db:table-definition    Datatypes - QName  + string    @@ -24097,6 +31278,10 @@

db:type[2] Attribute (new in ODF 1.2)   + + RNG Relations + db:type="<string>"   +

db:type[3] Attribute (new in ODF 1.2)

@@ -24116,11 +31301,15 @@

db:type[3] Attribute (new in ODF 1.2) Values - "foreign"  - "primary"  - "unique"  + "foreign"  + "primary"  + "unique"    + + RNG Relations + db:type="primary | unique | foreign"   +

db:type-name Attribute (new in ODF 1.2)

@@ -24134,7 +31323,7 @@

db:type-name Attribute (new in O Datatypes - string  + string    @@ -24142,6 +31331,10 @@

db:type-name Attribute (new in O   + + RNG Relations + db:type-name="<string>"   +

db:update-rule Attribute (new in ODF 1.2)

@@ -24160,13 +31353,17 @@

db:update-rule Attribute (new Values - "cascade"  - "no-action"  - "restrict"  - "set-default"  - "set-null"  + "cascade"  + "no-action"  + "restrict"  + "set-default"  + "set-null"    + + RNG Relations + db:update-rule="cascade | restrict | set-null | no-action | set-default"   +

db:use-catalog Attribute (new in ODF 1.2)

@@ -24185,10 +31382,14 @@

db:use-catalog Attribute (new Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + db:use-catalog="<boolean>"   +

db:use-system-user Attribute (new in ODF 1.2)

@@ -24207,10 +31408,14 @@

db:use-system-user Attribute&nb Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + db:use-system-user="<boolean>"   +

db:user-name Attribute (new in ODF 1.2)

@@ -24224,7 +31429,7 @@

db:user-name Attribute (new in O Datatypes - string  + string    @@ -24232,6 +31437,10 @@

db:user-name Attribute (new in O   + + RNG Relations + db:user-name="<string>"   +

db:visible Attribute (new in ODF 1.2)

@@ -24250,10 +31459,14 @@

db:visible Attribute (new in ODF 1 Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + db:visible="<boolean>"   +

dr3d:ambient-color Attribute

@@ -24269,7 +31482,7 @@

dr3d:ambient-color Attribute Datatypes - string  + string    @@ -24277,6 +31490,10 @@

dr3d:ambient-color Attribute   + + RNG Relations + dr3d:ambient-color="string]"   +

dr3d:back-scale Attribute (new in ODF 1.2)

@@ -24290,7 +31507,7 @@

dr3d:back-scale Attribute (ne Datatypes - string  + string    @@ -24298,6 +31515,10 @@

dr3d:back-scale Attribute (ne   + + RNG Relations + dr3d:back-scale="string]"   +

dr3d:backface-culling Attribute (new in ODF 1.2)

@@ -24316,10 +31537,14 @@

dr3d:backface-culling Attribute< Values - "disabled"  - "enabled"  + "disabled"  + "enabled"    + + RNG Relations + dr3d:backface-culling="enabled | disabled"   +

dr3d:center Attribute

@@ -24333,7 +31558,7 @@

dr3d:center Attribute

Datatypes - string  + string    @@ -24341,6 +31566,10 @@

dr3d:center Attribute

  + + RNG Relations + dr3d:center="string]"   +

dr3d:close-back Attribute (new in ODF 1.2)

@@ -24359,10 +31588,14 @@

dr3d:close-back Attribute (ne Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + dr3d:close-back="<boolean>"   +

dr3d:close-front Attribute (new in ODF 1.2)

@@ -24381,10 +31614,14 @@

dr3d:close-front Attribute ( Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + dr3d:close-front="<boolean>"   +

dr3d:depth Attribute (new in ODF 1.2)

@@ -24398,7 +31635,7 @@

dr3d:depth Attribute (new in ODF 1 Datatypes - string  + string    @@ -24406,6 +31643,10 @@

dr3d:depth Attribute (new in ODF 1   + + RNG Relations + dr3d:depth="string]"   +

dr3d:diffuse-color Attribute

@@ -24420,7 +31661,7 @@

dr3d:diffuse-color Attribute Datatypes - string  + string    @@ -24428,6 +31669,10 @@

dr3d:diffuse-color Attribute   + + RNG Relations + dr3d:diffuse-color="string]"   +

dr3d:direction Attribute

@@ -24441,7 +31686,7 @@

dr3d:direction Attribute

Datatypes - string  + string    @@ -24449,6 +31694,10 @@

dr3d:direction Attribute

  + + RNG Relations + dr3d:direction="string]"   +

dr3d:distance Attribute

@@ -24463,7 +31712,7 @@

dr3d:distance Attribute

Datatypes - string  + string    @@ -24471,6 +31720,10 @@

dr3d:distance Attribute

  + + RNG Relations + dr3d:distance="string]"   +

dr3d:edge-rounding Attribute (new in ODF 1.2)

@@ -24484,7 +31737,7 @@

dr3d:edge-rounding Attribute&nb Datatypes - string  + string    @@ -24492,6 +31745,10 @@

dr3d:edge-rounding Attribute&nb   + + RNG Relations + dr3d:edge-rounding="string]"   +

dr3d:edge-rounding-mode Attribute (new in ODF 1.2)

@@ -24510,10 +31767,14 @@

dr3d:edge-rounding-mode Attrib Values - "attractive"  - "correct"  + "attractive"  + "correct"    + + RNG Relations + dr3d:edge-rounding-mode="correct | attractive"   +

dr3d:emissive-color Attribute (new in ODF 1.2)

@@ -24527,7 +31788,7 @@

dr3d:emissive-color Attribute& Datatypes - string  + string    @@ -24535,6 +31796,10 @@

dr3d:emissive-color Attribute&   + + RNG Relations + dr3d:emissive-color="string]"   +

dr3d:enabled Attribute

@@ -24553,10 +31818,14 @@

dr3d:enabled Attribute

Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + dr3d:enabled="<boolean>"   +

dr3d:end-angle Attribute (new in ODF 1.2)

@@ -24570,7 +31839,7 @@

dr3d:end-angle Attribute (new Datatypes - string  + string    @@ -24578,6 +31847,10 @@

dr3d:end-angle Attribute (new   + + RNG Relations + dr3d:end-angle="<string>"   +

dr3d:focal-length Attribute

@@ -24592,7 +31865,7 @@

dr3d:focal-length Attribute

Datatypes - string  + string    @@ -24600,6 +31873,10 @@

dr3d:focal-length Attribute

  + + RNG Relations + dr3d:focal-length="string]"   +

dr3d:horizontal-segments Attribute (new in ODF 1.2)

@@ -24613,7 +31890,7 @@

dr3d:horizontal-segments Attr Datatypes - nonNegativeInteger  + nonNegativeInteger    @@ -24621,6 +31898,10 @@

dr3d:horizontal-segments Attr   + + RNG Relations + dr3d:horizontal-segments="<nonNegativeInteger>"   +

dr3d:lighting-mode[1] Attribute

@@ -24640,10 +31921,14 @@

dr3d:lighting-mode[1] Attribute Values - "double-sided"  - "standard"  + "double-sided"  + "standard"    + + RNG Relations + dr3d:lighting-mode="standard | double-sided"   +

dr3d:lighting-mode[2] Attribute

@@ -24664,10 +31949,14 @@

dr3d:lighting-mode[2] Attribute Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + dr3d:lighting-mode="<boolean>"   +

dr3d:max-edge Attribute

@@ -24681,7 +31970,7 @@

dr3d:max-edge Attribute

Datatypes - string  + string    @@ -24689,6 +31978,10 @@

dr3d:max-edge Attribute

  + + RNG Relations + dr3d:max-edge="string]"   +

dr3d:min-edge Attribute

@@ -24702,7 +31995,7 @@

dr3d:min-edge Attribute

Datatypes - string  + string    @@ -24710,6 +32003,10 @@

dr3d:min-edge Attribute

  + + RNG Relations + dr3d:min-edge="string]"   +

dr3d:normals-direction Attribute (new in ODF 1.2)

@@ -24728,10 +32025,14 @@

dr3d:normals-direction Attribut Values - "inverse"  - "normal"  + "inverse"  + "normal"    + + RNG Relations + dr3d:normals-direction="normal | inverse"   +

dr3d:normals-kind Attribute (new in ODF 1.2)

@@ -24750,11 +32051,15 @@

dr3d:normals-kind Attribute  Values - "flat"  - "object"  - "sphere"  + "flat"  + "object"  + "sphere"    + + RNG Relations + dr3d:normals-kind="object | flat | sphere"   +

dr3d:projection Attribute

@@ -24775,10 +32080,14 @@

dr3d:projection Attribute

Values - "parallel"  - "perspective"  + "parallel"  + "perspective"    + + RNG Relations + dr3d:projection="parallel | perspective"   +

dr3d:shade-mode Attribute

@@ -24799,12 +32108,16 @@

dr3d:shade-mode Attribute

Values - "draft"  - "flat"  - "gouraud"  - "phong"  + "draft"  + "flat"  + "gouraud"  + "phong"    + + RNG Relations + dr3d:shade-mode="flat | phong | gouraud | draft"   +

dr3d:shadow Attribute (new in ODF 1.2)

@@ -24823,10 +32136,14 @@

dr3d:shadow Attribute (new in ODF Values - "hidden"  - "visible"  + "hidden"  + "visible"    + + RNG Relations + dr3d:shadow="visible | hidden"   +

dr3d:shadow-slant Attribute

@@ -24841,7 +32158,7 @@

dr3d:shadow-slant Attribute

Datatypes - string  + string    @@ -24849,6 +32166,10 @@

dr3d:shadow-slant Attribute

  + + RNG Relations + dr3d:shadow-slant="<string>"   +

dr3d:shininess Attribute (new in ODF 1.2)

@@ -24862,7 +32183,7 @@

dr3d:shininess Attribute (new Datatypes - string  + string    @@ -24870,6 +32191,10 @@

dr3d:shininess Attribute (new   + + RNG Relations + dr3d:shininess="string]"   +

dr3d:size Attribute

@@ -24883,7 +32208,7 @@

dr3d:size Attribute

Datatypes - string  + string    @@ -24891,6 +32216,10 @@

dr3d:size Attribute

  + + RNG Relations + dr3d:size="string]"   +

dr3d:specular Attribute

@@ -24909,10 +32238,14 @@

dr3d:specular Attribute

Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + dr3d:specular="<boolean>"   +

dr3d:specular-color Attribute (new in ODF 1.2)

@@ -24926,7 +32259,7 @@

dr3d:specular-color Attribute& Datatypes - string  + string    @@ -24934,6 +32267,10 @@

dr3d:specular-color Attribute&   + + RNG Relations + dr3d:specular-color="string]"   +

dr3d:texture-filter Attribute (new in ODF 1.2)

@@ -24952,10 +32289,14 @@

dr3d:texture-filter Attribute& Values - "disabled"  - "enabled"  + "disabled"  + "enabled"    + + RNG Relations + dr3d:texture-filter="enabled | disabled"   +

dr3d:texture-generation-mode-x Attribute (new in ODF 1.2)

@@ -24974,11 +32315,15 @@

dr3d:texture-generation Values - "object"  - "parallel"  - "sphere"  + "object"  + "parallel"  + "sphere"    + + RNG Relations + dr3d:texture-generation-mode-x="object | parallel | sphere"   +

dr3d:texture-generation-mode-y Attribute (new in ODF 1.2)

@@ -24997,11 +32342,15 @@

dr3d:texture-generation Values - "object"  - "parallel"  - "sphere"  + "object"  + "parallel"  + "sphere"    + + RNG Relations + dr3d:texture-generation-mode-y="object | parallel | sphere"   +

dr3d:texture-kind Attribute (new in ODF 1.2)

@@ -25020,11 +32369,15 @@

dr3d:texture-kind Attribute  Values - "color"  - "intensity"  - "luminance"  + "color"  + "intensity"  + "luminance"    + + RNG Relations + dr3d:texture-kind="luminance | intensity | color"   +

dr3d:texture-mode Attribute (new in ODF 1.2)

@@ -25043,11 +32396,15 @@

dr3d:texture-mode Attribute  Values - "blend"  - "modulate"  - "replace"  + "blend"  + "modulate"  + "replace"    + + RNG Relations + dr3d:texture-mode="replace | modulate | blend"   +

dr3d:transform Attribute

@@ -25066,7 +32423,7 @@

dr3d:transform Attribute

Datatypes - string  + string    @@ -25074,6 +32431,10 @@

dr3d:transform Attribute

  + + RNG Relations + dr3d:transform="<string>"   +

dr3d:vertical-segments Attribute (new in ODF 1.2)

@@ -25087,7 +32448,7 @@

dr3d:vertical-segments Attribut Datatypes - nonNegativeInteger  + nonNegativeInteger    @@ -25095,6 +32456,10 @@

dr3d:vertical-segments Attribut   + + RNG Relations + dr3d:vertical-segments="<nonNegativeInteger>"   +

dr3d:vpn Attribute

@@ -25109,7 +32474,7 @@

dr3d:vpn Attribute

Datatypes - string  + string    @@ -25117,6 +32482,10 @@

dr3d:vpn Attribute

  + + RNG Relations + dr3d:vpn="string]"   +

dr3d:vrp Attribute

@@ -25131,7 +32500,7 @@

dr3d:vrp Attribute

Datatypes - string  + string    @@ -25139,6 +32508,10 @@

dr3d:vrp Attribute

  + + RNG Relations + dr3d:vrp="string]"   +

dr3d:vup Attribute

@@ -25153,7 +32526,7 @@

dr3d:vup Attribute

Datatypes - string  + string    @@ -25161,6 +32534,10 @@

dr3d:vup Attribute

  + + RNG Relations + dr3d:vup="string]"   +

draw:align Attribute

@@ -25179,16 +32556,20 @@

draw:align Attribute

Values - "bottom-left"  - "bottom-right"  - "center"  - "left"  - "right"  - "top"  - "top-left"  - "top-right"  + "bottom-left"  + "bottom-right"  + "center"  + "left"  + "right"  + "top"  + "top-left"  + "top-right"    + + RNG Relations + draw:align="top-left | top | top-right | left | center | right | bottom-left | bottom-right"   +

draw:angle Attribute

@@ -25203,7 +32584,7 @@

draw:angle Attribute

Datatypes - string  + string    @@ -25211,6 +32592,10 @@

draw:angle Attribute

  + + RNG Relations + draw:angle="<string>"   +

draw:archive Attribute

@@ -25224,7 +32609,7 @@

draw:archive Attribute

Datatypes - string  + string    @@ -25232,6 +32617,10 @@

draw:archive Attribute

  + + RNG Relations + draw:archive="<string>"   +

draw:auto-grow-height Attribute (new in ODF 1.2)

@@ -25250,10 +32639,14 @@

draw:auto-grow-height Attribute< Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + draw:auto-grow-height="<boolean>"   +

draw:auto-grow-width Attribute (new in ODF 1.2)

@@ -25272,10 +32665,14 @@

draw:auto-grow-width Attribute Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + draw:auto-grow-width="<boolean>"   +

draw:background-size Attribute (new in ODF 1.2)

@@ -25294,10 +32691,14 @@

draw:background-size Attribute Values - "border"  - "full"  + "border"  + "full"    + + RNG Relations + draw:background-size="full | border"   +

draw:blue Attribute (new in ODF 1.2)

@@ -25311,7 +32712,7 @@

draw:blue Attribute (new in ODF 1.2 Datatypes - string  + string    @@ -25319,6 +32720,10 @@

draw:blue Attribute (new in ODF 1.2   + + RNG Relations + draw:blue="string]"   +

draw:border Attribute

@@ -25333,7 +32738,7 @@

draw:border Attribute

Datatypes - string  + string    @@ -25341,6 +32746,10 @@

draw:border Attribute

  + + RNG Relations + draw:border="string]"   +

draw:caption-angle Attribute (new in ODF 1.2)

@@ -25354,7 +32763,7 @@

draw:caption-angle Attribute&nb Datatypes - string  + string    @@ -25362,6 +32771,10 @@

draw:caption-angle Attribute&nb   + + RNG Relations + draw:caption-angle="<string>"   +

draw:caption-angle-type Attribute (new in ODF 1.2)

@@ -25380,10 +32793,14 @@

draw:caption-angle-type Attrib Values - "fixed"  - "free"  + "fixed"  + "free"    + + RNG Relations + draw:caption-angle-type="fixed | free"   +

draw:caption-escape Attribute (new in ODF 1.2)

@@ -25397,8 +32814,8 @@

draw:caption-escape Attribute& Datatypes - string  - string  + string  + string    @@ -25406,6 +32823,10 @@

draw:caption-escape Attribute&   + + RNG Relations + draw:caption-escape="string] | string]"   +

draw:caption-escape-direction Attribute (new in ODF 1.2)

@@ -25424,11 +32845,15 @@

draw:caption-escape-dire Values - "auto"  - "horizontal"  - "vertical"  + "auto"  + "horizontal"  + "vertical"    + + RNG Relations + draw:caption-escape-direction="horizontal | vertical | auto"   +

draw:caption-fit-line-length Attribute (new in ODF 1.2)

@@ -25447,10 +32872,14 @@

draw:caption-fit-line-len Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + draw:caption-fit-line-length="<boolean>"   +

draw:caption-gap Attribute (new in ODF 1.2)

@@ -25464,7 +32893,7 @@

draw:caption-gap Attribute ( Datatypes - string  + string    @@ -25472,6 +32901,10 @@

draw:caption-gap Attribute (   + + RNG Relations + draw:caption-gap="string]"   +

draw:caption-id Attribute (new in ODF 1.1)

@@ -25501,7 +32934,7 @@

draw:caption-id Attribute (ne Datatypes - IDREF  + IDREF    @@ -25509,6 +32942,10 @@

draw:caption-id Attribute (ne   + + RNG Relations + draw:caption-id="<IDREF>"   +

draw:caption-line-length Attribute (new in ODF 1.2)

@@ -25522,7 +32959,7 @@

draw:caption-line-length Attr Datatypes - string  + string    @@ -25530,6 +32967,10 @@

draw:caption-line-length Attr   + + RNG Relations + draw:caption-line-length="string]"   +

draw:caption-point-x Attribute

@@ -25544,7 +32985,7 @@

draw:caption-point-x Attribute Datatypes - string  + string    @@ -25552,6 +32993,10 @@

draw:caption-point-x Attribute   + + RNG Relations + draw:caption-point-x="string]"   +

draw:caption-point-y Attribute

@@ -25566,7 +33011,7 @@

draw:caption-point-y Attribute Datatypes - string  + string    @@ -25574,6 +33019,10 @@

draw:caption-point-y Attribute   + + RNG Relations + draw:caption-point-y="string]"   +

draw:caption-type Attribute (new in ODF 1.2)

@@ -25592,11 +33041,15 @@

draw:caption-type Attribute  Values - "angled-connector-line"  - "angled-line"  - "straight-line"  + "angled-connector-line"  + "angled-line"  + "straight-line"    + + RNG Relations + draw:caption-type="straight-line | angled-line | angled-connector-line"   +

draw:chain-next-name Attribute

@@ -25610,7 +33063,7 @@

draw:chain-next-name Attribute Datatypes - string  + string    @@ -25618,6 +33071,10 @@

draw:chain-next-name Attribute   + + RNG Relations + draw:chain-next-name="<string>"   +

draw:class-id Attribute

@@ -25631,7 +33088,7 @@

draw:class-id Attribute

Datatypes - string  + string    @@ -25639,6 +33096,10 @@

draw:class-id Attribute

  + + RNG Relations + draw:class-id="<string>"   +

draw:class-names Attribute

@@ -25673,7 +33134,7 @@

draw:class-names Attribute

Datatypes - NCName  + NCName    @@ -25681,6 +33142,12 @@

draw:class-names Attribute

  + + RNG Relations + draw:class-names=" +START_list(<NCName>)* +END_list"   +

draw:code Attribute

@@ -25694,7 +33161,7 @@

draw:code Attribute

Datatypes - string  + string    @@ -25702,6 +33169,10 @@

draw:code Attribute

  + + RNG Relations + draw:code="<string>"   +

draw:color Attribute

@@ -25716,7 +33187,7 @@

draw:color Attribute

Datatypes - string  + string    @@ -25724,6 +33195,10 @@

draw:color Attribute

  + + RNG Relations + draw:color="string]"   +

draw:color-inversion Attribute (new in ODF 1.2)

@@ -25742,10 +33217,14 @@

draw:color-inversion Attribute Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + draw:color-inversion="<boolean>"   +

draw:color-mode Attribute (new in ODF 1.2)

@@ -25764,12 +33243,16 @@

draw:color-mode Attribute (ne Values - "greyscale"  - "mono"  - "standard"  - "watermark"  + "greyscale"  + "mono"  + "standard"  + "watermark"    + + RNG Relations + draw:color-mode="greyscale | mono | watermark | standard"   +

draw:concave[1] Attribute

@@ -25789,9 +33272,13 @@

draw:concave[1] Attribute

Values - "true"  + "true"    + + RNG Relations + draw:concave="true"   +

draw:concave[2] Attribute

@@ -25811,9 +33298,13 @@

draw:concave[2] Attribute

Values - "false"  + "false"    + + RNG Relations + draw:concave="false"   +

draw:concentric-gradient-fill-allowed Attribute

@@ -25832,10 +33323,14 @@

draw:concentric- Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + draw:concentric-gradient-fill-allowed="<boolean>"   +

draw:contrast Attribute (new in ODF 1.2)

@@ -25849,7 +33344,7 @@

draw:contrast Attribute (new in Datatypes - string  + string    @@ -25857,6 +33352,10 @@

draw:contrast Attribute (new in   + + RNG Relations + draw:contrast="string]"   +

draw:control Attribute

@@ -25870,7 +33369,7 @@

draw:control Attribute

Datatypes - IDREF  + IDREF    @@ -25878,6 +33377,10 @@

draw:control Attribute

  + + RNG Relations + draw:control="<IDREF>"   +

draw:copy-of Attribute

@@ -25891,7 +33394,7 @@

draw:copy-of Attribute

Datatypes - string  + string    @@ -25899,6 +33402,10 @@

draw:copy-of Attribute

  + + RNG Relations + draw:copy-of="<string>"   +

draw:corner-radius Attribute

@@ -25915,7 +33422,7 @@

draw:corner-radius Attribute Datatypes - string  + string    @@ -25923,6 +33430,10 @@

draw:corner-radius Attribute   + + RNG Relations + draw:corner-radius="string]"   +

draw:corners Attribute

@@ -25936,7 +33447,7 @@

draw:corners Attribute

Datatypes - positiveInteger  + positiveInteger    @@ -25944,6 +33455,10 @@

draw:corners Attribute

  + + RNG Relations + draw:corners="<positiveInteger>"   +

draw:cx Attribute

@@ -25958,7 +33473,7 @@

draw:cx Attribute

Datatypes - string  + string    @@ -25966,6 +33481,10 @@

draw:cx Attribute

  + + RNG Relations + draw:cx="string]"   +

draw:cy Attribute

@@ -25980,7 +33499,7 @@

draw:cy Attribute

Datatypes - string  + string    @@ -25988,6 +33507,10 @@

draw:cy Attribute

  + + RNG Relations + draw:cy="string]"   +

draw:data Attribute

@@ -26001,7 +33524,7 @@

draw:data Attribute

Datatypes - string  + string    @@ -26009,6 +33532,10 @@

draw:data Attribute

  + + RNG Relations + draw:data="<string>"   +

draw:decimal-places Attribute (new in ODF 1.2)

@@ -26022,7 +33549,7 @@

draw:decimal-places Attribute& Datatypes - nonNegativeInteger  + nonNegativeInteger    @@ -26030,6 +33557,10 @@

draw:decimal-places Attribute&   + + RNG Relations + draw:decimal-places="<nonNegativeInteger>"   +

draw:display Attribute

@@ -26048,12 +33579,16 @@

draw:display Attribute

Values - "always"  - "none"  - "printer"  - "screen"  + "always"  + "none"  + "printer"  + "screen"    + + RNG Relations + draw:display="always | screen | printer | none"   +

draw:display-name Attribute

@@ -26074,7 +33609,7 @@

draw:display-name Attribute

Datatypes - string  + string    @@ -26082,6 +33617,10 @@

draw:display-name Attribute

  + + RNG Relations + draw:display-name="<string>"   +

draw:distance[1] Attribute

@@ -26096,8 +33635,8 @@

draw:distance[1] Attribute

Datatypes - string  - string  + string  + string    @@ -26105,6 +33644,10 @@

draw:distance[1] Attribute

  + + RNG Relations + draw:distance="string] | string]"   +

draw:distance[2] Attribute

@@ -26119,7 +33662,7 @@

draw:distance[2] Attribute

Datatypes - string  + string    @@ -26127,6 +33670,10 @@

draw:distance[2] Attribute

  + + RNG Relations + draw:distance="string]"   +

draw:dots1 Attribute

@@ -26140,7 +33687,7 @@

draw:dots1 Attribute

Datatypes - integer  + integer    @@ -26148,6 +33695,10 @@

draw:dots1 Attribute

  + + RNG Relations + draw:dots1="<integer>"   +

draw:dots1-length Attribute

@@ -26161,8 +33712,8 @@

draw:dots1-length Attribute

Datatypes - string  - string  + string  + string    @@ -26170,6 +33721,10 @@

draw:dots1-length Attribute

  + + RNG Relations + draw:dots1-length="string] | string]"   +

draw:dots2 Attribute

@@ -26183,7 +33738,7 @@

draw:dots2 Attribute

Datatypes - integer  + integer    @@ -26191,6 +33746,10 @@

draw:dots2 Attribute

  + + RNG Relations + draw:dots2="<integer>"   +

draw:dots2-length Attribute

@@ -26204,8 +33763,8 @@

draw:dots2-length Attribute

Datatypes - string  - string  + string  + string    @@ -26213,6 +33772,10 @@

draw:dots2-length Attribute

  + + RNG Relations + draw:dots2-length="string] | string]"   +

draw:draw-aspect Attribute (new in ODF 1.2)

@@ -26231,12 +33794,16 @@

draw:draw-aspect Attribute ( Values - "content"  - "icon"  - "print-view"  - "thumbnail"  + "content"  + "icon"  + "print-view"  + "thumbnail"    + + RNG Relations + draw:draw-aspect="content | thumbnail | icon | print-view"   +

draw:end Attribute

@@ -26250,7 +33817,7 @@

draw:end Attribute

Datatypes - string  + string    @@ -26258,6 +33825,10 @@

draw:end Attribute

  + + RNG Relations + draw:end="string]"   +

draw:end-angle Attribute

@@ -26272,7 +33843,7 @@

draw:end-angle Attribute

Datatypes - string  + string    @@ -26280,6 +33851,10 @@

draw:end-angle Attribute

  + + RNG Relations + draw:end-angle="<string>"   +

draw:end-color Attribute

@@ -26293,7 +33868,7 @@

draw:end-color Attribute

Datatypes - string  + string    @@ -26301,6 +33876,10 @@

draw:end-color Attribute

  + + RNG Relations + draw:end-color="string]"   +

draw:end-glue-point Attribute

@@ -26314,7 +33893,7 @@

draw:end-glue-point Attribute< Datatypes - nonNegativeInteger  + nonNegativeInteger    @@ -26322,6 +33901,10 @@

draw:end-glue-point Attribute<   + + RNG Relations + draw:end-glue-point="<nonNegativeInteger>"   +

draw:end-guide Attribute (new in ODF 1.2)

@@ -26335,7 +33918,7 @@

draw:end-guide Attribute (new Datatypes - string  + string    @@ -26343,6 +33926,10 @@

draw:end-guide Attribute (new   + + RNG Relations + draw:end-guide="string]"   +

draw:end-intensity Attribute

@@ -26356,7 +33943,7 @@

draw:end-intensity Attribute Datatypes - string  + string    @@ -26364,6 +33951,10 @@

draw:end-intensity Attribute   + + RNG Relations + draw:end-intensity="string]"   +

draw:end-line-spacing-horizontal Attribute (new in ODF 1.2)

@@ -26377,7 +33968,7 @@

draw:end-line-spacing Datatypes - string  + string    @@ -26385,6 +33976,10 @@

draw:end-line-spacing   + + RNG Relations + draw:end-line-spacing-horizontal="string]"   +

draw:end-line-spacing-vertical Attribute (new in ODF 1.2)

@@ -26398,7 +33993,7 @@

draw:end-line-spacing-v Datatypes - string  + string    @@ -26406,6 +34001,10 @@

draw:end-line-spacing-v   + + RNG Relations + draw:end-line-spacing-vertical="string]"   +

draw:end-shape Attribute

@@ -26419,7 +34018,7 @@

draw:end-shape Attribute

Datatypes - IDREF  + IDREF    @@ -26427,6 +34026,10 @@

draw:end-shape Attribute

  + + RNG Relations + draw:end-shape="<IDREF>"   +

draw:engine Attribute

@@ -26440,7 +34043,7 @@

draw:engine Attribute

Datatypes - QName  + QName    @@ -26448,6 +34051,10 @@

draw:engine Attribute

  + + RNG Relations + draw:engine="QName]"   +

draw:enhanced-path Attribute

@@ -26461,7 +34068,7 @@

draw:enhanced-path Attribute Datatypes - string  + string    @@ -26469,6 +34076,10 @@

draw:enhanced-path Attribute   + + RNG Relations + draw:enhanced-path="<string>"   +

draw:escape-direction Attribute (new in ODF 1.2)

@@ -26487,15 +34098,19 @@

draw:escape-direction Attribute< Values - "auto"  - "down"  - "horizontal"  - "left"  - "right"  - "up"  - "vertical"  + "auto"  + "down"  + "horizontal"  + "left"  + "right"  + "up"  + "vertical"    + + RNG Relations + draw:escape-direction="auto | left | right | up | down | horizontal | vertical"   +

draw:extrusion Attribute

@@ -26514,10 +34129,14 @@

draw:extrusion Attribute

Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + draw:extrusion="<boolean>"   +

draw:extrusion-allowed Attribute

@@ -26536,10 +34155,14 @@

draw:extrusion-allowed Attribut Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + draw:extrusion-allowed="<boolean>"   +

draw:extrusion-brightness Attribute

@@ -26553,7 +34176,7 @@

draw:extrusion-brightness At Datatypes - string  + string    @@ -26561,6 +34184,10 @@

draw:extrusion-brightness At   + + RNG Relations + draw:extrusion-brightness="string]"   +

draw:extrusion-color Attribute

@@ -26579,10 +34206,14 @@

draw:extrusion-color Attribute Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + draw:extrusion-color="<boolean>"   +

draw:extrusion-depth Attribute

@@ -26596,8 +34227,8 @@

draw:extrusion-depth Attribute Datatypes - double  - string  + double  + string    @@ -26605,6 +34236,12 @@

draw:extrusion-depth Attribute   + + RNG Relations + draw:extrusion-depth=" +START_liststring]<double> +END_list"   +

draw:extrusion-diffusion Attribute

@@ -26618,7 +34255,7 @@

draw:extrusion-diffusion Attr Datatypes - string  + string    @@ -26626,6 +34263,10 @@

draw:extrusion-diffusion Attr   + + RNG Relations + draw:extrusion-diffusion="string]"   +

draw:extrusion-first-light-direction Attribute

@@ -26639,7 +34280,7 @@

draw:extrusion-fi Datatypes - string  + string    @@ -26647,6 +34288,10 @@

draw:extrusion-fi   + + RNG Relations + draw:extrusion-first-light-direction="string]"   +

draw:extrusion-first-light-harsh Attribute

@@ -26665,10 +34310,14 @@

draw:extrusion-first- Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + draw:extrusion-first-light-harsh="<boolean>"   +

draw:extrusion-first-light-level Attribute

@@ -26682,7 +34331,7 @@

draw:extrusion-first- Datatypes - string  + string    @@ -26690,6 +34339,10 @@

draw:extrusion-first-   + + RNG Relations + draw:extrusion-first-light-level="string]"   +

draw:extrusion-light-face Attribute

@@ -26708,10 +34361,14 @@

draw:extrusion-light-face At Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + draw:extrusion-light-face="<boolean>"   +

draw:extrusion-metal Attribute

@@ -26730,10 +34387,14 @@

draw:extrusion-metal Attribute Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + draw:extrusion-metal="<boolean>"   +

draw:extrusion-number-of-line-segments Attribute

@@ -26747,7 +34408,7 @@

draw:extrusion- Datatypes - integer  + integer    @@ -26755,6 +34416,10 @@

draw:extrusion-   + + RNG Relations + draw:extrusion-number-of-line-segments="<integer>"   +

draw:extrusion-origin Attribute

@@ -26768,7 +34433,7 @@

draw:extrusion-origin Attribute< Datatypes - double  + double    @@ -26776,6 +34441,12 @@

draw:extrusion-origin Attribute<   + + RNG Relations + draw:extrusion-origin=" +START_listdouble]double] +END_list"   +

draw:extrusion-rotation-angle Attribute

@@ -26789,7 +34460,7 @@

draw:extrusion-rotation- Datatypes - string  + string    @@ -26797,6 +34468,12 @@

draw:extrusion-rotation-   + + RNG Relations + draw:extrusion-rotation-angle=" +START_list<string><string> +END_list"   +

draw:extrusion-rotation-center Attribute

@@ -26810,7 +34487,7 @@

draw:extrusion-rotation Datatypes - string  + string    @@ -26818,6 +34495,10 @@

draw:extrusion-rotation   + + RNG Relations + draw:extrusion-rotation-center="string]"   +

draw:extrusion-second-light-direction Attribute

@@ -26831,7 +34512,7 @@

draw:extrusion-s Datatypes - string  + string    @@ -26839,6 +34520,10 @@

draw:extrusion-s   + + RNG Relations + draw:extrusion-second-light-direction="string]"   +

draw:extrusion-second-light-harsh Attribute

@@ -26857,10 +34542,14 @@

draw:extrusion-secon Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + draw:extrusion-second-light-harsh="<boolean>"   +

draw:extrusion-second-light-level Attribute

@@ -26874,7 +34563,7 @@

draw:extrusion-secon Datatypes - string  + string    @@ -26882,6 +34571,10 @@

draw:extrusion-secon   + + RNG Relations + draw:extrusion-second-light-level="string]"   +

draw:extrusion-shininess Attribute

@@ -26895,7 +34588,7 @@

draw:extrusion-shininess Attr Datatypes - string  + string    @@ -26903,6 +34596,10 @@

draw:extrusion-shininess Attr   + + RNG Relations + draw:extrusion-shininess="string]"   +

draw:extrusion-skew Attribute

@@ -26916,8 +34613,8 @@

draw:extrusion-skew Attribute< Datatypes - double  - string  + double  + string    @@ -26925,6 +34622,12 @@

draw:extrusion-skew Attribute<   + + RNG Relations + draw:extrusion-skew=" +START_list<double><string> +END_list"   +

draw:extrusion-specularity Attribute

@@ -26938,7 +34641,7 @@

draw:extrusion-specularity Datatypes - string  + string    @@ -26946,6 +34649,10 @@

draw:extrusion-specularity   + + RNG Relations + draw:extrusion-specularity="string]"   +

draw:extrusion-viewpoint Attribute

@@ -26959,7 +34666,7 @@

draw:extrusion-viewpoint Attr Datatypes - string  + string    @@ -26967,6 +34674,10 @@

draw:extrusion-viewpoint Attr   + + RNG Relations + draw:extrusion-viewpoint="string]"   +

draw:fill Attribute (new in ODF 1.2)

@@ -26986,13 +34697,17 @@

draw:fill Attribute (new in ODF 1.2 Values - "bitmap"  - "gradient"  - "hatch"  - "none"  - "solid"  + "bitmap"  + "gradient"  + "hatch"  + "none"  + "solid"    + + RNG Relations + draw:fill="none | solid | bitmap | gradient | hatch"   +

draw:fill-color Attribute (new in ODF 1.2)

@@ -27007,7 +34722,7 @@

draw:fill-color Attribute (ne Datatypes - string  + string    @@ -27015,6 +34730,10 @@

draw:fill-color Attribute (ne   + + RNG Relations + draw:fill-color="string]"   +

draw:fill-gradient-name Attribute (new in ODF 1.2)

@@ -27029,7 +34748,7 @@

draw:fill-gradient-name Attrib Datatypes - NCName  + NCName    @@ -27037,6 +34756,10 @@

draw:fill-gradient-name Attrib   + + RNG Relations + draw:fill-gradient-name="(<NCName>)?"   +

draw:fill-hatch-name Attribute (new in ODF 1.2)

@@ -27051,7 +34774,7 @@

draw:fill-hatch-name Attribute Datatypes - NCName  + NCName    @@ -27059,6 +34782,10 @@

draw:fill-hatch-name Attribute   + + RNG Relations + draw:fill-hatch-name="(<NCName>)?"   +

draw:fill-hatch-solid Attribute (new in ODF 1.2)

@@ -27078,10 +34805,14 @@

draw:fill-hatch-solid Attribute< Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + draw:fill-hatch-solid="<boolean>"   +

draw:fill-image-height Attribute (new in ODF 1.2)

@@ -27096,8 +34827,8 @@

draw:fill-image-height Attribut Datatypes - string  - string  + string  + string    @@ -27105,6 +34836,10 @@

draw:fill-image-height Attribut   + + RNG Relations + draw:fill-image-height="string] | string]"   +

draw:fill-image-name Attribute (new in ODF 1.2)

@@ -27119,7 +34854,7 @@

draw:fill-image-name Attribute Datatypes - NCName  + NCName    @@ -27127,6 +34862,10 @@

draw:fill-image-name Attribute   + + RNG Relations + draw:fill-image-name="(<NCName>)?"   +

draw:fill-image-ref-point Attribute (new in ODF 1.2)

@@ -27146,17 +34885,21 @@

draw:fill-image-ref-point At Values - "bottom"  - "bottom-left"  - "bottom-right"  - "center"  - "left"  - "right"  - "top"  - "top-left"  - "top-right"  + "bottom"  + "bottom-left"  + "bottom-right"  + "center"  + "left"  + "right"  + "top"  + "top-left"  + "top-right"    + + RNG Relations + draw:fill-image-ref-point="top-left | top | top-right | left | center | right | bottom-left | bottom | bottom-right"   +

draw:fill-image-ref-point-x Attribute (new in ODF 1.2)

@@ -27171,7 +34914,7 @@

draw:fill-image-ref-point- Datatypes - string  + string    @@ -27179,6 +34922,10 @@

draw:fill-image-ref-point-   + + RNG Relations + draw:fill-image-ref-point-x="string]"   +

draw:fill-image-ref-point-y Attribute (new in ODF 1.2)

@@ -27193,7 +34940,7 @@

draw:fill-image-ref-point- Datatypes - string  + string    @@ -27201,6 +34948,10 @@

draw:fill-image-ref-point-   + + RNG Relations + draw:fill-image-ref-point-y="string]"   +

draw:fill-image-width Attribute (new in ODF 1.2)

@@ -27215,8 +34966,8 @@

draw:fill-image-width Attribute< Datatypes - string  - string  + string  + string    @@ -27224,6 +34975,10 @@

draw:fill-image-width Attribute<   + + RNG Relations + draw:fill-image-width="string] | string]"   +

draw:filter-name Attribute

@@ -27237,7 +34992,7 @@

draw:filter-name Attribute

Datatypes - string  + string    @@ -27245,6 +35000,10 @@

draw:filter-name Attribute

  + + RNG Relations + draw:filter-name="<string>"   +

draw:fit-to-contour Attribute (new in ODF 1.2)

@@ -27263,10 +35022,14 @@

draw:fit-to-contour Attribute& Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + draw:fit-to-contour="<boolean>"   +

draw:fit-to-size Attribute (new in ODF 1.2)

@@ -27285,10 +35048,14 @@

draw:fit-to-size Attribute ( Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + draw:fit-to-size="<boolean>"   +

draw:formula Attribute

@@ -27302,7 +35069,7 @@

draw:formula Attribute

Datatypes - string  + string    @@ -27310,6 +35077,10 @@

draw:formula Attribute

  + + RNG Relations + draw:formula="<string>"   +

draw:frame-display-border Attribute (new in ODF 1.2)

@@ -27328,10 +35099,14 @@

draw:frame-display-border At Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + draw:frame-display-border="<boolean>"   +

draw:frame-display-scrollbar Attribute (new in ODF 1.2)

@@ -27350,10 +35125,14 @@

draw:frame-display-scroll Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + draw:frame-display-scrollbar="<boolean>"   +

draw:frame-margin-horizontal Attribute (new in ODF 1.2)

@@ -27367,7 +35146,7 @@

draw:frame-margin-horizon Datatypes - string  + string    @@ -27375,6 +35154,10 @@

draw:frame-margin-horizon   + + RNG Relations + draw:frame-margin-horizontal="string]"   +

draw:frame-margin-vertical Attribute (new in ODF 1.2)

@@ -27388,7 +35171,7 @@

draw:frame-margin-vertical Datatypes - string  + string    @@ -27396,6 +35179,10 @@

draw:frame-margin-vertical   + + RNG Relations + draw:frame-margin-vertical="string]"   +

draw:frame-name Attribute

@@ -27409,7 +35196,7 @@

draw:frame-name Attribute

Datatypes - string  + string    @@ -27417,6 +35204,10 @@

draw:frame-name Attribute

  + + RNG Relations + draw:frame-name="<string>"   +

draw:gamma Attribute (new in ODF 1.2)

@@ -27430,7 +35221,7 @@

draw:gamma Attribute (new in ODF 1 Datatypes - string  + string    @@ -27438,6 +35229,10 @@

draw:gamma Attribute (new in ODF 1   + + RNG Relations + draw:gamma="string]"   +

draw:glue-point-leaving-directions Attribute

@@ -27451,7 +35246,7 @@

draw:glue-point-lea Datatypes - string  + string    @@ -27459,6 +35254,10 @@

draw:glue-point-lea   + + RNG Relations + draw:glue-point-leaving-directions="<string>"   +

draw:glue-point-type Attribute

@@ -27477,11 +35276,15 @@

draw:glue-point-type Attribute Values - "none"  - "rectangle"  - "segments"  + "none"  + "rectangle"  + "segments"    + + RNG Relations + draw:glue-point-type="none | segments | rectangle"   +

draw:glue-points Attribute

@@ -27495,7 +35298,7 @@

draw:glue-points Attribute

Datatypes - string  + string    @@ -27503,6 +35306,10 @@

draw:glue-points Attribute

  + + RNG Relations + draw:glue-points="<string>"   +

draw:gradient-step-count Attribute (new in ODF 1.2)

@@ -27517,7 +35324,7 @@

draw:gradient-step-count Attr Datatypes - nonNegativeInteger  + nonNegativeInteger    @@ -27525,6 +35332,10 @@

draw:gradient-step-count Attr   + + RNG Relations + draw:gradient-step-count="<nonNegativeInteger>"   +

draw:green Attribute (new in ODF 1.2)

@@ -27538,7 +35349,7 @@

draw:green Attribute (new in ODF 1 Datatypes - string  + string    @@ -27546,6 +35357,10 @@

draw:green Attribute (new in ODF 1   + + RNG Relations + draw:green="string]"   +

draw:guide-distance Attribute (new in ODF 1.2)

@@ -27559,7 +35374,7 @@

draw:guide-distance Attribute& Datatypes - string  + string    @@ -27567,6 +35382,10 @@

draw:guide-distance Attribute&   + + RNG Relations + draw:guide-distance="string]"   +

draw:guide-overhang Attribute (new in ODF 1.2)

@@ -27580,7 +35399,7 @@

draw:guide-overhang Attribute& Datatypes - string  + string    @@ -27588,6 +35407,10 @@

draw:guide-overhang Attribute&   + + RNG Relations + draw:guide-overhang="string]"   +

draw:handle-mirror-horizontal Attribute

@@ -27606,10 +35429,14 @@

draw:handle-mirror-horiz Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + draw:handle-mirror-horizontal="<boolean>"   +

draw:handle-mirror-vertical Attribute

@@ -27628,10 +35455,14 @@

draw:handle-mirror-vertica Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + draw:handle-mirror-vertical="<boolean>"   +

draw:handle-polar Attribute

@@ -27645,7 +35476,7 @@

draw:handle-polar Attribute

Datatypes - string  + string    @@ -27653,6 +35484,10 @@

draw:handle-polar Attribute

  + + RNG Relations + draw:handle-polar="<string>"   +

draw:handle-position Attribute

@@ -27666,7 +35501,7 @@

draw:handle-position Attribute Datatypes - string  + string    @@ -27674,6 +35509,10 @@

draw:handle-position Attribute   + + RNG Relations + draw:handle-position="<string>"   +

draw:handle-radius-range-maximum Attribute

@@ -27687,7 +35526,7 @@

draw:handle-radius-ra Datatypes - string  + string    @@ -27695,6 +35534,10 @@

draw:handle-radius-ra   + + RNG Relations + draw:handle-radius-range-maximum="<string>"   +

draw:handle-radius-range-minimum Attribute

@@ -27708,7 +35551,7 @@

draw:handle-radius-ra Datatypes - string  + string    @@ -27716,6 +35559,10 @@

draw:handle-radius-ra   + + RNG Relations + draw:handle-radius-range-minimum="<string>"   +

draw:handle-range-x-maximum Attribute

@@ -27729,7 +35576,7 @@

draw:handle-range-x-maximu Datatypes - string  + string    @@ -27737,6 +35584,10 @@

draw:handle-range-x-maximu   + + RNG Relations + draw:handle-range-x-maximum="<string>"   +

draw:handle-range-x-minimum Attribute

@@ -27750,7 +35601,7 @@

draw:handle-range-x-minimu Datatypes - string  + string    @@ -27758,6 +35609,10 @@

draw:handle-range-x-minimu   + + RNG Relations + draw:handle-range-x-minimum="<string>"   +

draw:handle-range-y-maximum Attribute

@@ -27771,7 +35626,7 @@

draw:handle-range-y-maximu Datatypes - string  + string    @@ -27779,6 +35634,10 @@

draw:handle-range-y-maximu   + + RNG Relations + draw:handle-range-y-maximum="<string>"   +

draw:handle-range-y-minimum Attribute

@@ -27792,7 +35651,7 @@

draw:handle-range-y-minimu Datatypes - string  + string    @@ -27800,6 +35659,10 @@

draw:handle-range-y-minimu   + + RNG Relations + draw:handle-range-y-minimum="<string>"   +

draw:handle-switched Attribute

@@ -27818,10 +35681,14 @@

draw:handle-switched Attribute Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + draw:handle-switched="<boolean>"   +

draw:id[1] Attribute

@@ -27829,6 +35696,32 @@

draw:id[1] Attribute

+ + + + + + + + + + + + + + +
Parent Elements + draw:glue-point  + 
Datatypes + nonNegativeInteger  + 
Values
RNG Relationsdraw:id="<nonNegativeInteger>"  
+
+

draw:id[2] Attribute

+

There are more than one Definitions by this name.

+ + + @@ -27866,27 +35759,9 @@

draw:id[1] Attribute

-
Parent Elements dr3d:cube  dr3d:extrude  @@ -27858,7 +35751,7 @@

draw:id[1] Attribute

Datatypes - NCName  + NCName   
 
-
-

draw:id[2] Attribute

-

There are more than one Definitions by this name.

- - - - - - - - - - - + +
Parent Elements - draw:glue-point  - 
Datatypes - nonNegativeInteger  - 
ValuesRNG Relationsdraw:id="<NCName>"  

@@ -27901,7 +35776,7 @@

draw:image-opacity Attribute&nb Datatypes - string  + string    @@ -27909,6 +35784,10 @@

draw:image-opacity Attribute&nb   + + RNG Relations + draw:image-opacity="string]"   +

draw:kind Attribute

@@ -27928,12 +35807,16 @@

draw:kind Attribute

Values - "arc"  - "cut"  - "full"  - "section"  + "arc"  + "cut"  + "full"  + "section"    + + RNG Relations + draw:kind="full | section | cut | arc"   +

draw:layer Attribute

@@ -27967,7 +35850,7 @@

draw:layer Attribute

Datatypes - string  + string    @@ -27975,6 +35858,10 @@

draw:layer Attribute

  + + RNG Relations + draw:layer="<string>"   +

draw:line-distance Attribute (new in ODF 1.2)

@@ -27988,7 +35875,7 @@

draw:line-distance Attribute&nb Datatypes - string  + string    @@ -27996,6 +35883,10 @@

draw:line-distance Attribute&nb   + + RNG Relations + draw:line-distance="string]"   +

draw:line-skew Attribute

@@ -28009,7 +35900,7 @@

draw:line-skew Attribute

Datatypes - string  + string    @@ -28017,6 +35908,12 @@

draw:line-skew Attribute

  + + RNG Relations + draw:line-skew=" +START_liststring](string](string])?)? +END_list"   +

draw:luminance Attribute (new in ODF 1.2)

@@ -28030,7 +35927,7 @@

draw:luminance Attribute (new Datatypes - string  + string    @@ -28038,6 +35935,10 @@

draw:luminance Attribute (new   + + RNG Relations + draw:luminance="string]"   +

draw:marker-end Attribute (new in ODF 1.2)

@@ -28051,7 +35952,7 @@

draw:marker-end Attribute (ne Datatypes - NCName  + NCName    @@ -28059,6 +35960,10 @@

draw:marker-end Attribute (ne   + + RNG Relations + draw:marker-end="(<NCName>)?"   +

draw:marker-end-center Attribute (new in ODF 1.2)

@@ -28077,10 +35982,14 @@

draw:marker-end-center Attribut Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + draw:marker-end-center="<boolean>"   +

draw:marker-end-width Attribute (new in ODF 1.2)

@@ -28094,7 +36003,7 @@

draw:marker-end-width Attribute< Datatypes - string  + string    @@ -28102,6 +36011,10 @@

draw:marker-end-width Attribute<   + + RNG Relations + draw:marker-end-width="string]"   +

draw:marker-start Attribute (new in ODF 1.2)

@@ -28115,7 +36028,7 @@

draw:marker-start Attribute  Datatypes - NCName  + NCName    @@ -28123,6 +36036,10 @@

draw:marker-start Attribute    + + RNG Relations + draw:marker-start="(<NCName>)?"   +

draw:marker-start-center Attribute (new in ODF 1.2)

@@ -28141,10 +36058,14 @@

draw:marker-start-center Attr Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + draw:marker-start-center="<boolean>"   +

draw:marker-start-width Attribute (new in ODF 1.2)

@@ -28158,7 +36079,7 @@

draw:marker-start-width Attrib Datatypes - string  + string    @@ -28166,6 +36087,10 @@

draw:marker-start-width Attrib   + + RNG Relations + draw:marker-start-width="string]"   +

draw:master-page-name Attribute

@@ -28179,7 +36104,7 @@

draw:master-page-name Attribute< Datatypes - NCName  + NCName    @@ -28187,6 +36112,10 @@

draw:master-page-name Attribute<   + + RNG Relations + draw:master-page-name="(<NCName>)?"   +

draw:may-script Attribute

@@ -28205,10 +36134,14 @@

draw:may-script Attribute

Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + draw:may-script="<boolean>"   +

draw:measure-align Attribute (new in ODF 1.2)

@@ -28227,12 +36160,16 @@

draw:measure-align Attribute&nb Values - "automatic"  - "inside"  - "left-outside"  - "right-outside"  + "automatic"  + "inside"  + "left-outside"  + "right-outside"    + + RNG Relations + draw:measure-align="automatic | left-outside | inside | right-outside"   +

draw:measure-vertical-align Attribute (new in ODF 1.2)

@@ -28251,12 +36188,16 @@

draw:measure-vertical-alig Values - "above"  - "automatic"  - "below"  - "center"  + "above"  + "automatic"  + "below"  + "center"    + + RNG Relations + draw:measure-vertical-align="automatic | above | below | center"   +

draw:mime-type Attribute

@@ -28270,7 +36211,7 @@

draw:mime-type Attribute

Datatypes - string  + string    @@ -28278,6 +36219,10 @@

draw:mime-type Attribute

  + + RNG Relations + draw:mime-type="<string>"   +

draw:mirror-horizontal Attribute

@@ -28296,10 +36241,14 @@

draw:mirror-horizontal Attribut Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + draw:mirror-horizontal="<boolean>"   +

draw:mirror-vertical Attribute

@@ -28318,10 +36267,14 @@

draw:mirror-vertical Attribute Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + draw:mirror-vertical="<boolean>"   +

draw:modifiers Attribute

@@ -28335,7 +36288,7 @@

draw:modifiers Attribute

Datatypes - string  + string    @@ -28343,6 +36296,10 @@

draw:modifiers Attribute

  + + RNG Relations + draw:modifiers="<string>"   +

draw:name[1] Attribute

@@ -28377,7 +36334,7 @@

draw:name[1] Attribute

Datatypes - string  + string    @@ -28385,6 +36342,10 @@

draw:name[1] Attribute

  + + RNG Relations + draw:name="<string>"   +

draw:name[2] Attribute

@@ -28406,7 +36367,7 @@

draw:name[2] Attribute

Datatypes - NCName  + NCName    @@ -28414,6 +36375,10 @@

draw:name[2] Attribute

  + + RNG Relations + draw:name="<NCName>"   +

draw:nav-order Attribute (new in ODF 1.1)

@@ -28427,7 +36392,7 @@

draw:nav-order Attribute (new Datatypes - IDREFS  + IDREFS    @@ -28435,6 +36400,10 @@

draw:nav-order Attribute (new   + + RNG Relations + draw:nav-order="<IDREFS>"   +

draw:nohref Attribute

@@ -28455,9 +36424,13 @@

draw:nohref Attribute

Values - "nohref"  + "nohref"    + + RNG Relations + draw:nohref="nohref"   +

draw:notify-on-update-of-ranges Attribute

@@ -28471,7 +36444,7 @@

draw:notify-on-update- Datatypes - string  + string    @@ -28479,6 +36452,10 @@

draw:notify-on-update-   + + RNG Relations + draw:notify-on-update-of-ranges="<string> | <string>"   +

draw:object Attribute

@@ -28492,7 +36469,7 @@

draw:object Attribute

Datatypes - string  + string    @@ -28500,6 +36477,10 @@

draw:object Attribute

  + + RNG Relations + draw:object="<string>"   +

draw:ole-draw-aspect Attribute (new in ODF 1.2)

@@ -28513,7 +36494,7 @@

draw:ole-draw-aspect Attribute Datatypes - nonNegativeInteger  + nonNegativeInteger    @@ -28521,6 +36502,10 @@

draw:ole-draw-aspect Attribute   + + RNG Relations + draw:ole-draw-aspect="<nonNegativeInteger>"   +

draw:opacity Attribute (new in ODF 1.2)

@@ -28536,7 +36521,7 @@

draw:opacity Attribute (new in O Datatypes - string  + string    @@ -28544,6 +36529,10 @@

draw:opacity Attribute (new in O   + + RNG Relations + draw:opacity="string]"   +

draw:opacity-name Attribute (new in ODF 1.2)

@@ -28558,7 +36547,7 @@

draw:opacity-name Attribute  Datatypes - NCName  + NCName    @@ -28566,6 +36555,10 @@

draw:opacity-name Attribute    + + RNG Relations + draw:opacity-name="(<NCName>)?"   +

draw:page-number Attribute

@@ -28579,7 +36572,7 @@

draw:page-number Attribute

Datatypes - positiveInteger  + positiveInteger    @@ -28587,6 +36580,10 @@

draw:page-number Attribute

  + + RNG Relations + draw:page-number="<positiveInteger>"   +

draw:parallel Attribute (new in ODF 1.2)

@@ -28605,10 +36602,14 @@

draw:parallel Attribute (new in Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + draw:parallel="<boolean>"   +

draw:path-stretchpoint-x Attribute

@@ -28622,7 +36623,7 @@

draw:path-stretchpoint-x Attr Datatypes - double  + double    @@ -28630,6 +36631,10 @@

draw:path-stretchpoint-x Attr   + + RNG Relations + draw:path-stretchpoint-x="<double>"   +

draw:path-stretchpoint-y Attribute

@@ -28643,7 +36648,7 @@

draw:path-stretchpoint-y Attr Datatypes - double  + double    @@ -28651,6 +36656,10 @@

draw:path-stretchpoint-y Attr   + + RNG Relations + draw:path-stretchpoint-y="<double>"   +

draw:placing Attribute (new in ODF 1.2)

@@ -28669,10 +36678,14 @@

draw:placing Attribute (new in O Values - "above"  - "below"  + "above"  + "below"    + + RNG Relations + draw:placing="below | above"   +

draw:points Attribute

@@ -28689,7 +36702,7 @@

draw:points Attribute

Datatypes - string  + string    @@ -28697,6 +36710,10 @@

draw:points Attribute

  + + RNG Relations + draw:points="string]"   +

draw:protected Attribute

@@ -28715,10 +36732,14 @@

draw:protected Attribute

Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + draw:protected="<boolean>"   +

draw:recreate-on-edit Attribute

@@ -28738,10 +36759,14 @@

draw:recreate-on-edit Attribute< Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + draw:recreate-on-edit="<boolean>"   +

draw:red Attribute (new in ODF 1.2)

@@ -28755,7 +36780,7 @@

draw:red Attribute (new in ODF 1.2) Datatypes - string  + string    @@ -28763,6 +36788,10 @@

draw:red Attribute (new in ODF 1.2)   + + RNG Relations + draw:red="string]"   +

draw:rotation Attribute

@@ -28776,7 +36805,7 @@

draw:rotation Attribute

Datatypes - string  + string    @@ -28784,6 +36813,10 @@

draw:rotation Attribute

  + + RNG Relations + draw:rotation="<string>"   +

draw:secondary-fill-color Attribute (new in ODF 1.2)

@@ -28798,7 +36831,7 @@

draw:secondary-fill-color At Datatypes - string  + string    @@ -28806,6 +36839,10 @@

draw:secondary-fill-color At   + + RNG Relations + draw:secondary-fill-color="string]"   +

draw:shadow Attribute (new in ODF 1.2)

@@ -28824,10 +36861,14 @@

draw:shadow Attribute (new in ODF Values - "hidden"  - "visible"  + "hidden"  + "visible"    + + RNG Relations + draw:shadow="visible | hidden"   +

draw:shadow-color Attribute (new in ODF 1.2)

@@ -28841,7 +36882,7 @@

draw:shadow-color Attribute  Datatypes - string  + string    @@ -28849,6 +36890,10 @@

draw:shadow-color Attribute    + + RNG Relations + draw:shadow-color="string]"   +

draw:shadow-offset-x Attribute (new in ODF 1.2)

@@ -28862,7 +36907,7 @@

draw:shadow-offset-x Attribute Datatypes - string  + string    @@ -28870,6 +36915,10 @@

draw:shadow-offset-x Attribute   + + RNG Relations + draw:shadow-offset-x="string]"   +

draw:shadow-offset-y Attribute (new in ODF 1.2)

@@ -28883,7 +36932,7 @@

draw:shadow-offset-y Attribute Datatypes - string  + string    @@ -28891,6 +36940,10 @@

draw:shadow-offset-y Attribute   + + RNG Relations + draw:shadow-offset-y="string]"   +

draw:shadow-opacity Attribute (new in ODF 1.2)

@@ -28904,7 +36957,7 @@

draw:shadow-opacity Attribute& Datatypes - string  + string    @@ -28912,6 +36965,10 @@

draw:shadow-opacity Attribute&   + + RNG Relations + draw:shadow-opacity="string]"   +

draw:shape-id Attribute

@@ -28930,7 +36987,7 @@

draw:shape-id Attribute

Datatypes - IDREF  + IDREF    @@ -28938,6 +36995,10 @@

draw:shape-id Attribute

  + + RNG Relations + draw:shape-id="<IDREF>"   +

draw:sharpness Attribute

@@ -28951,7 +37012,7 @@

draw:sharpness Attribute

Datatypes - string  + string    @@ -28959,6 +37020,10 @@

draw:sharpness Attribute

  + + RNG Relations + draw:sharpness="string]"   +

draw:show-unit Attribute (new in ODF 1.2)

@@ -28977,10 +37042,14 @@

draw:show-unit Attribute (new Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + draw:show-unit="<boolean>"   +

draw:start Attribute

@@ -28994,7 +37063,7 @@

draw:start Attribute

Datatypes - string  + string    @@ -29002,6 +37071,10 @@

draw:start Attribute

  + + RNG Relations + draw:start="string]"   +

draw:start-angle Attribute

@@ -29016,7 +37089,7 @@

draw:start-angle Attribute

Datatypes - string  + string    @@ -29024,6 +37097,10 @@

draw:start-angle Attribute

  + + RNG Relations + draw:start-angle="<string>"   +

draw:start-color Attribute

@@ -29037,7 +37114,7 @@

draw:start-color Attribute

Datatypes - string  + string    @@ -29045,6 +37122,10 @@

draw:start-color Attribute

  + + RNG Relations + draw:start-color="string]"   +

draw:start-glue-point Attribute

@@ -29058,7 +37139,7 @@

draw:start-glue-point Attribute< Datatypes - nonNegativeInteger  + nonNegativeInteger    @@ -29066,6 +37147,10 @@

draw:start-glue-point Attribute<   + + RNG Relations + draw:start-glue-point="<nonNegativeInteger>"   +

draw:start-guide Attribute (new in ODF 1.2)

@@ -29079,7 +37164,7 @@

draw:start-guide Attribute ( Datatypes - string  + string    @@ -29087,6 +37172,10 @@

draw:start-guide Attribute (   + + RNG Relations + draw:start-guide="string]"   +

draw:start-intensity Attribute

@@ -29100,7 +37189,7 @@

draw:start-intensity Attribute Datatypes - string  + string    @@ -29108,6 +37197,10 @@

draw:start-intensity Attribute   + + RNG Relations + draw:start-intensity="string]"   +

draw:start-line-spacing-horizontal Attribute (new in ODF 1.2)

@@ -29121,7 +37214,7 @@

draw:start-line-spa Datatypes - string  + string    @@ -29129,6 +37222,10 @@

draw:start-line-spa   + + RNG Relations + draw:start-line-spacing-horizontal="string]"   +

draw:start-line-spacing-vertical Attribute (new in ODF 1.2)

@@ -29142,7 +37239,7 @@

draw:start-line-spaci Datatypes - string  + string    @@ -29150,6 +37247,10 @@

draw:start-line-spaci   + + RNG Relations + draw:start-line-spacing-vertical="string]"   +

draw:start-shape Attribute

@@ -29163,7 +37264,7 @@

draw:start-shape Attribute

Datatypes - IDREF  + IDREF    @@ -29171,6 +37272,10 @@

draw:start-shape Attribute

  + + RNG Relations + draw:start-shape="<IDREF>"   +

draw:stroke Attribute (new in ODF 1.2)

@@ -29189,11 +37294,15 @@

draw:stroke Attribute (new in ODF Values - "dash"  - "none"  - "solid"  + "dash"  + "none"  + "solid"    + + RNG Relations + draw:stroke="none | dash | solid"   +

draw:stroke-dash Attribute (new in ODF 1.2)

@@ -29207,7 +37316,7 @@

draw:stroke-dash Attribute ( Datatypes - NCName  + NCName    @@ -29215,6 +37324,10 @@

draw:stroke-dash Attribute (   + + RNG Relations + draw:stroke-dash="(<NCName>)?"   +

draw:stroke-dash-names Attribute (new in ODF 1.2)

@@ -29228,7 +37341,7 @@

draw:stroke-dash-names Attribut Datatypes - NCName  + NCName    @@ -29236,6 +37349,12 @@

draw:stroke-dash-names Attribut   + + RNG Relations + draw:stroke-dash-names=" +START_list(<NCName>)* +END_list"   +

draw:stroke-linejoin Attribute (new in ODF 1.2)

@@ -29254,13 +37373,17 @@

draw:stroke-linejoin Attribute Values - "bevel"  - "middle"  - "miter"  - "none"  - "round"  + "bevel"  + "middle"  + "miter"  + "none"  + "round"    + + RNG Relations + draw:stroke-linejoin="miter | round | bevel | middle | none"   +

draw:style[1] Attribute

@@ -29269,8 +37392,7 @@

draw:style[1] Attribute

Parent Elements - draw:gradient  - draw:opacity  + draw:stroke-dash    @@ -29281,14 +37403,14 @@

draw:style[1] Attribute

Values - "axial"  - "ellipsoid"  - "linear"  - "radial"  - "rectangular"  - "square"  + "rect"  + "round"    + + RNG Relations + draw:style="rect | round"   +

draw:style[2] Attribute

@@ -29297,7 +37419,8 @@

draw:style[2] Attribute

Parent Elements - draw:hatch  + draw:gradient  + draw:opacity    @@ -29308,11 +37431,18 @@

draw:style[2] Attribute

Values - "double"  - "single"  - "triple"  + "axial"  + "ellipsoid"  + "linear"  + "radial"  + "rectangular"  + "square"    + + RNG Relations + draw:style="linear | axial | radial | ellipsoid | square | rectangular"   +

draw:style[3] Attribute

@@ -29321,7 +37451,7 @@

draw:style[3] Attribute

Parent Elements - draw:stroke-dash  + draw:hatch    @@ -29332,10 +37462,15 @@

draw:style[3] Attribute

Values - "rect"  - "round"  + "double"  + "single"  + "triple"    + + RNG Relations + draw:style="single | double | triple"   +

draw:style-name Attribute

@@ -29374,7 +37509,7 @@

draw:style-name Attribute

Datatypes - NCName  + NCName    @@ -29382,6 +37517,10 @@

draw:style-name Attribute

  + + RNG Relations + draw:style-name="(<NCName>)?"   +

draw:symbol-color Attribute (new in ODF 1.2)

@@ -29395,7 +37534,7 @@

draw:symbol-color Attribute  Datatypes - string  + string    @@ -29403,6 +37542,10 @@

draw:symbol-color Attribute    + + RNG Relations + draw:symbol-color="string]"   +

draw:text-areas Attribute

@@ -29416,7 +37559,7 @@

draw:text-areas Attribute

Datatypes - string  + string    @@ -29424,6 +37567,10 @@

draw:text-areas Attribute

  + + RNG Relations + draw:text-areas="<string>"   +

draw:text-path Attribute

@@ -29442,10 +37589,14 @@

draw:text-path Attribute

Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + draw:text-path="<boolean>"   +

draw:text-path-allowed Attribute

@@ -29464,10 +37615,14 @@

draw:text-path-allowed Attribut Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + draw:text-path-allowed="<boolean>"   +

draw:text-path-mode Attribute

@@ -29486,11 +37641,15 @@

draw:text-path-mode Attribute< Values - "normal"  - "path"  - "shape"  + "normal"  + "path"  + "shape"    + + RNG Relations + draw:text-path-mode="normal | path | shape"   +

draw:text-path-same-letter-heights Attribute

@@ -29509,10 +37668,14 @@

draw:text-path-same Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + draw:text-path-same-letter-heights="<boolean>"   +

draw:text-path-scale Attribute

@@ -29531,10 +37694,14 @@

draw:text-path-scale Attribute Values - "path"  - "shape"  + "path"  + "shape"    + + RNG Relations + draw:text-path-scale="path | shape"   +

draw:text-rotate-angle Attribute

@@ -29548,7 +37715,7 @@

draw:text-rotate-angle Attribut Datatypes - string  + string    @@ -29556,6 +37723,10 @@

draw:text-rotate-angle Attribut   + + RNG Relations + draw:text-rotate-angle="<string>"   +

draw:text-style-name Attribute

@@ -29583,7 +37754,7 @@

draw:text-style-name Attribute Datatypes - NCName  + NCName    @@ -29591,6 +37762,10 @@

draw:text-style-name Attribute   + + RNG Relations + draw:text-style-name="(<NCName>)?"   +

draw:textarea-horizontal-align Attribute (new in ODF 1.2)

@@ -29609,12 +37784,16 @@

draw:textarea-horizonta Values - "center"  - "justify"  - "left"  - "right"  + "center"  + "justify"  + "left"  + "right"    + + RNG Relations + draw:textarea-horizontal-align="left | center | right | justify"   +

draw:textarea-vertical-align Attribute (new in ODF 1.2)

@@ -29633,12 +37812,16 @@

draw:textarea-vertical-al Values - "bottom"  - "justify"  - "middle"  - "top"  + "bottom"  + "justify"  + "middle"  + "top"    + + RNG Relations + draw:textarea-vertical-align="top | middle | bottom | justify"   +

draw:tile-repeat-offset Attribute (new in ODF 1.2)

@@ -29653,16 +37836,22 @@

draw:tile-repeat-offset Attrib Datatypes - string  + string    Values - "horizontal"  - "vertical"  + "horizontal"  + "vertical"    + + RNG Relations + draw:tile-repeat-offset=" +START_liststring]horizontal | vertical +END_list"   +

draw:transform Attribute

@@ -29691,7 +37880,7 @@

draw:transform Attribute

Datatypes - string  + string    @@ -29699,6 +37888,10 @@

draw:transform Attribute

  + + RNG Relations + draw:transform="<string>"   +

draw:type[1] Attribute

@@ -29718,12 +37911,16 @@

draw:type[1] Attribute

Values - "curve"  - "line"  - "lines"  - "standard"  + "curve"  + "line"  + "lines"  + "standard"    + + RNG Relations + draw:type="standard | lines | line | curve"   +

draw:type[2] Attribute

@@ -29738,15 +37935,19 @@

draw:type[2] Attribute

Datatypes - string  + string    Values - "non-primitive"  + "non-primitive"    + + RNG Relations + draw:type="non-primitive | <string>"   +

draw:unit Attribute (new in ODF 1.2)

@@ -29765,18 +37966,22 @@

draw:unit Attribute (new in ODF 1.2 Values - "automatic"  - "cm"  - "ft"  - "inch"  - "km"  - "m"  - "mi"  - "mm"  - "pc"  - "pt"  + "automatic"  + "cm"  + "ft"  + "inch"  + "km"  + "m"  + "mi"  + "mm"  + "pc"  + "pt"    + + RNG Relations + draw:unit="automatic | mm | cm | m | km | pt | pc | inch | ft | mi"   +

draw:value Attribute

@@ -29790,7 +37995,7 @@

draw:value Attribute

Datatypes - string  + string    @@ -29798,6 +38003,10 @@

draw:value Attribute

  + + RNG Relations + draw:value="<string>"   +

draw:visible-area-height Attribute (new in ODF 1.2)

@@ -29811,7 +38020,7 @@

draw:visible-area-height Attr Datatypes - string  + string    @@ -29819,6 +38028,10 @@

draw:visible-area-height Attr   + + RNG Relations + draw:visible-area-height="string]"   +

draw:visible-area-left Attribute (new in ODF 1.2)

@@ -29832,7 +38045,7 @@

draw:visible-area-left Attribut Datatypes - string  + string    @@ -29840,6 +38053,10 @@

draw:visible-area-left Attribut   + + RNG Relations + draw:visible-area-left="string]"   +

draw:visible-area-top Attribute (new in ODF 1.2)

@@ -29853,7 +38070,7 @@

draw:visible-area-top Attribute< Datatypes - string  + string    @@ -29861,6 +38078,10 @@

draw:visible-area-top Attribute<   + + RNG Relations + draw:visible-area-top="string]"   +

draw:visible-area-width Attribute (new in ODF 1.2)

@@ -29874,7 +38095,7 @@

draw:visible-area-width Attrib Datatypes - string  + string    @@ -29882,6 +38103,10 @@

draw:visible-area-width Attrib   + + RNG Relations + draw:visible-area-width="string]"   +

draw:wrap-influence-on-position Attribute (new in ODF 1.2)

@@ -29900,11 +38125,15 @@

draw:wrap-influence-on Values - "iterative"  - "once-concurrent"  - "once-successive"  + "iterative"  + "once-concurrent"  + "once-successive"    + + RNG Relations + draw:wrap-influence-on-position="iterative | once-concurrent | once-successive"   +

draw:z-index Attribute

@@ -29939,7 +38168,7 @@

draw:z-index Attribute

Datatypes - nonNegativeInteger  + nonNegativeInteger    @@ -29947,6 +38176,10 @@

draw:z-index Attribute

  + + RNG Relations + draw:z-index="<nonNegativeInteger>"   +

fo:background-color Attribute (new in ODF 1.2)

@@ -29968,15 +38201,19 @@

fo:background-color Attribute& Datatypes - string  + string    Values - "transparent"  + "transparent"    + + RNG Relations + fo:background-color="transparent | string]"   +

fo:border Attribute (new in ODF 1.2)

@@ -29994,7 +38231,7 @@

fo:border Attribute (new in ODF 1.2 Datatypes - string  + string    @@ -30002,6 +38239,10 @@

fo:border Attribute (new in ODF 1.2   + + RNG Relations + fo:border="<string>"   +

fo:border-bottom Attribute (new in ODF 1.2)

@@ -30019,7 +38260,7 @@

fo:border-bottom Attribute ( Datatypes - string  + string    @@ -30027,6 +38268,10 @@

fo:border-bottom Attribute (   + + RNG Relations + fo:border-bottom="<string>"   +

fo:border-left Attribute (new in ODF 1.2)

@@ -30044,7 +38289,7 @@

fo:border-left Attribute (new Datatypes - string  + string    @@ -30052,6 +38297,10 @@

fo:border-left Attribute (new   + + RNG Relations + fo:border-left="<string>"   +

fo:border-right Attribute (new in ODF 1.2)

@@ -30069,7 +38318,7 @@

fo:border-right Attribute (ne Datatypes - string  + string    @@ -30077,6 +38326,10 @@

fo:border-right Attribute (ne   + + RNG Relations + fo:border-right="<string>"   +

fo:border-top Attribute (new in ODF 1.2)

@@ -30094,7 +38347,7 @@

fo:border-top Attribute (new in Datatypes - string  + string    @@ -30102,6 +38355,10 @@

fo:border-top Attribute (new in   + + RNG Relations + fo:border-top="<string>"   +

fo:break-after Attribute (new in ODF 1.2)

@@ -30123,11 +38380,15 @@

fo:break-after Attribute (new Values - "auto"  - "column"  - "page"  + "auto"  + "column"  + "page"    + + RNG Relations + fo:break-after="auto | column | page"   +

fo:break-before Attribute (new in ODF 1.2)

@@ -30149,11 +38410,15 @@

fo:break-before Attribute (ne Values - "auto"  - "column"  - "page"  + "auto"  + "column"  + "page"    + + RNG Relations + fo:break-before="auto | column | page"   +

fo:clip Attribute (new in ODF 1.2)

@@ -30167,15 +38432,19 @@

fo:clip Attribute (new in ODF 1.2) Datatypes - string  + string    Values - "auto"  + "auto"    + + RNG Relations + fo:clip="auto | string]"   +

fo:color Attribute (new in ODF 1.2)

@@ -30189,7 +38458,7 @@

fo:color Attribute (new in ODF 1.2) Datatypes - string  + string    @@ -30197,6 +38466,10 @@

fo:color Attribute (new in ODF 1.2)   + + RNG Relations + fo:color="string]"   +

fo:column-count Attribute (new in ODF 1.2)

@@ -30210,7 +38483,7 @@

fo:column-count Attribute (ne Datatypes - positiveInteger  + positiveInteger    @@ -30218,6 +38491,10 @@

fo:column-count Attribute (ne   + + RNG Relations + fo:column-count="<positiveInteger>"   +

fo:column-gap Attribute (new in ODF 1.2)

@@ -30231,7 +38508,7 @@

fo:column-gap Attribute (new in Datatypes - string  + string    @@ -30239,6 +38516,10 @@

fo:column-gap Attribute (new in   + + RNG Relations + fo:column-gap="string]"   +

fo:country Attribute

@@ -30254,7 +38535,7 @@

fo:country Attribute

Datatypes - token  + token    @@ -30262,6 +38543,10 @@

fo:country Attribute

  + + RNG Relations + fo:country="token]"   +

fo:end-indent Attribute (new in ODF 1.2)

@@ -30275,7 +38560,7 @@

fo:end-indent Attribute (new in Datatypes - string  + string    @@ -30283,6 +38568,10 @@

fo:end-indent Attribute (new in   + + RNG Relations + fo:end-indent="string]"   +

fo:font-family Attribute (new in ODF 1.2)

@@ -30296,7 +38585,7 @@

fo:font-family Attribute (new Datatypes - string  + string    @@ -30304,6 +38593,10 @@

fo:font-family Attribute (new   + + RNG Relations + fo:font-family="<string>"   +

fo:font-size Attribute (new in ODF 1.2)

@@ -30317,8 +38610,8 @@

fo:font-size Attribute (new in O Datatypes - string  - string  + string  + string    @@ -30326,6 +38619,10 @@

fo:font-size Attribute (new in O   + + RNG Relations + fo:font-size="string] | string]"   +

fo:font-style Attribute (new in ODF 1.2)

@@ -30344,11 +38641,15 @@

fo:font-style Attribute (new in Values - "italic"  - "normal"  - "oblique"  + "italic"  + "normal"  + "oblique"    + + RNG Relations + fo:font-style="normal | italic | oblique"   +

fo:font-variant Attribute (new in ODF 1.2)

@@ -30367,10 +38668,14 @@

fo:font-variant Attribute (ne Values - "normal"  - "small-caps"  + "normal"  + "small-caps"    + + RNG Relations + fo:font-variant="normal | small-caps"   +

fo:font-weight Attribute (new in ODF 1.2)

@@ -30389,19 +38694,23 @@

fo:font-weight Attribute (new Values - "100"  - "200"  - "300"  - "400"  - "500"  - "600"  - "700"  - "800"  - "900"  - "bold"  - "normal"  + "100"  + "200"  + "300"  + "400"  + "500"  + "600"  + "700"  + "800"  + "900"  + "bold"  + "normal"    + + RNG Relations + fo:font-weight="normal | bold | 100 | 200 | 300 | 400 | 500 | 600 | 700 | 800 | 900"   +

fo:height Attribute (new in ODF 1.2)

@@ -30415,7 +38724,7 @@

fo:height Attribute (new in ODF 1.2 Datatypes - string  + string    @@ -30423,6 +38732,10 @@

fo:height Attribute (new in ODF 1.2   + + RNG Relations + fo:height="string]"   +

fo:hyphenate Attribute (new in ODF 1.2)

@@ -30441,10 +38754,14 @@

fo:hyphenate Attribute (new in O Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + fo:hyphenate="<boolean>"   +

fo:hyphenation-keep Attribute (new in ODF 1.2)

@@ -30463,10 +38780,14 @@

fo:hyphenation-keep Attribute& Values - "auto"  - "page"  + "auto"  + "page"    + + RNG Relations + fo:hyphenation-keep="auto | page"   +

fo:hyphenation-ladder-count Attribute (new in ODF 1.2)

@@ -30480,15 +38801,19 @@

fo:hyphenation-ladder-coun Datatypes - positiveInteger  + positiveInteger    Values - "no-limit"  + "no-limit"    + + RNG Relations + fo:hyphenation-ladder-count="no-limit | <positiveInteger>"   +

fo:hyphenation-push-char-count Attribute (new in ODF 1.2)

@@ -30502,7 +38827,7 @@

fo:hyphenation-push-cha Datatypes - positiveInteger  + positiveInteger    @@ -30510,6 +38835,10 @@

fo:hyphenation-push-cha   + + RNG Relations + fo:hyphenation-push-char-count="<positiveInteger>"   +

fo:hyphenation-remain-char-count Attribute (new in ODF 1.2)

@@ -30523,7 +38852,7 @@

fo:hyphenation-remain Datatypes - positiveInteger  + positiveInteger    @@ -30531,6 +38860,10 @@

fo:hyphenation-remain   + + RNG Relations + fo:hyphenation-remain-char-count="<positiveInteger>"   +

fo:keep-together Attribute (new in ODF 1.2)

@@ -30550,10 +38883,14 @@

fo:keep-together Attribute ( Values - "always"  - "auto"  + "always"  + "auto"    + + RNG Relations + fo:keep-together="auto | always"   +

fo:keep-with-next Attribute (new in ODF 1.2)

@@ -30573,10 +38910,14 @@

fo:keep-with-next Attribute  Values - "always"  - "auto"  + "always"  + "auto"    + + RNG Relations + fo:keep-with-next="auto | always"   +

fo:language Attribute

@@ -30592,7 +38933,7 @@

fo:language Attribute

Datatypes - token  + token    @@ -30600,6 +38941,10 @@

fo:language Attribute

  + + RNG Relations + fo:language="token]"   +

fo:letter-spacing Attribute (new in ODF 1.2)

@@ -30613,15 +38958,19 @@

fo:letter-spacing Attribute  Datatypes - string  + string    Values - "normal"  + "normal"    + + RNG Relations + fo:letter-spacing="string] | normal"   +

fo:line-height Attribute (new in ODF 1.2)

@@ -30635,16 +38984,20 @@

fo:line-height Attribute (new Datatypes - string  - string  + string  + string    Values - "normal"  + "normal"    + + RNG Relations + fo:line-height="normal | string] | string]"   +

fo:margin Attribute (new in ODF 1.2)

@@ -30662,8 +39015,8 @@

fo:margin Attribute (new in ODF 1.2 Datatypes - string  - string  + string  + string    @@ -30671,6 +39024,10 @@

fo:margin Attribute (new in ODF 1.2   + + RNG Relations + fo:margin="string] | string]"   +

fo:margin-bottom Attribute (new in ODF 1.2)

@@ -30688,8 +39045,8 @@

fo:margin-bottom Attribute ( Datatypes - string  - string  + string  + string    @@ -30697,6 +39054,10 @@

fo:margin-bottom Attribute (   + + RNG Relations + fo:margin-bottom="string] | string]"   +

fo:margin-left[1] Attribute (new in ODF 1.2)

@@ -30705,13 +39066,19 @@

fo:margin-left[1] Attribute (n Parent Elements - style:list-level-label-alignment  + style:graphic-properties  + style:header-footer-properties  + style:page-layout-properties  + style:paragraph-properties  + style:section-properties  + style:table-properties    Datatypes - string  + string  + string    @@ -30719,6 +39086,10 @@

fo:margin-left[1] Attribute (n   + + RNG Relations + fo:margin-left="string] | string]"   +

fo:margin-left[2] Attribute (new in ODF 1.2)

@@ -30727,19 +39098,13 @@

fo:margin-left[2] Attribute (n Parent Elements - style:graphic-properties  - style:header-footer-properties  - style:page-layout-properties  - style:paragraph-properties  - style:section-properties  - style:table-properties  + style:list-level-label-alignment    Datatypes - string  - string  + string    @@ -30747,6 +39112,10 @@

fo:margin-left[2] Attribute (n   + + RNG Relations + fo:margin-left="string]"   +

fo:margin-right Attribute (new in ODF 1.2)

@@ -30765,8 +39134,8 @@

fo:margin-right Attribute (ne Datatypes - string  - string  + string  + string    @@ -30774,6 +39143,10 @@

fo:margin-right Attribute (ne   + + RNG Relations + fo:margin-right="string] | string]"   +

fo:margin-top Attribute (new in ODF 1.2)

@@ -30791,8 +39164,8 @@

fo:margin-top Attribute (new in Datatypes - string  - string  + string  + string    @@ -30800,6 +39173,10 @@

fo:margin-top Attribute (new in   + + RNG Relations + fo:margin-top="string] | string]"   +

fo:max-height Attribute

@@ -30814,8 +39191,8 @@

fo:max-height Attribute

Datatypes - string  - string  + string  + string    @@ -30823,6 +39200,10 @@

fo:max-height Attribute

  + + RNG Relations + fo:max-height="string] | string]"   +

fo:max-width Attribute

@@ -30837,8 +39218,8 @@

fo:max-width Attribute

Datatypes - string  - string  + string  + string    @@ -30846,33 +39227,13 @@

fo:max-width Attribute

  - -
-

fo:min-height[1] Attribute

-

There are more than one Definitions by this name.

- - - - - - - - - - - + +
Parent Elements - draw:text-box  - style:graphic-properties  - 
Datatypes - string  - string  - 
ValuesRNG Relationsfo:max-width="string] | string]"  

-

fo:min-height[2] Attribute

+

fo:min-height[1] Attribute

There are more than one Definitions by this name.

@@ -30884,7 +39245,7 @@

fo:min-height[2] Attribute

@@ -30892,9 +39253,14 @@

fo:min-height[2] Attribute

+ + + +
Datatypes - string  + string   
 
RNG Relationsfo:min-height="string]"  

-

fo:min-width Attribute

+

fo:min-height[2] Attribute

+

There are more than one Definitions by this name.

@@ -30906,8 +39272,8 @@

fo:min-width Attribute

@@ -30915,45 +39281,26 @@

fo:min-width Attribute

-
Parent Elements
Datatypes - string  - string  + string  + string   
 
-
-

fo:orphans Attribute (new in ODF 1.2)

- - - - - - - - - - - + +
Parent Elements - style:paragraph-properties  - 
Datatypes - nonNegativeInteger  - 
ValuesRNG Relationsfo:min-height="string] | string]"  

-

fo:padding Attribute (new in ODF 1.2)

+

fo:min-width Attribute

@@ -30961,49 +39308,24 @@

fo:padding Attribute (new in ODF 1

-
Parent Elements + draw:text-box  style:graphic-properties  - style:header-footer-properties  - style:page-layout-properties  - style:paragraph-properties  - style:table-cell-properties   
Datatypes - string  + string  + string   
 
-
-

fo:padding-bottom Attribute (new in ODF 1.2)

- - - - - - - - - - - + +
Parent Elements - style:graphic-properties  - style:header-footer-properties  - style:page-layout-properties  - style:paragraph-properties  - style:table-cell-properties  - 
Datatypes - string  - 
ValuesRNG Relationsfo:min-width="string] | string]"  

-

fo:padding-left Attribute (new in ODF 1.2)

+

fo:orphans Attribute (new in ODF 1.2)

@@ -31011,34 +39333,13 @@

fo:padding-left Attribute (ne

-
Parent Elements - style:graphic-properties  - style:header-footer-properties  - style:page-layout-properties  style:paragraph-properties  - style:table-cell-properties   
Datatypes - string  + nonNegativeInteger   
 
-
-

fo:padding-right Attribute (new in ODF 1.2)

- - - - - - - - - - - + +
Parent Elements - style:graphic-properties  - style:header-footer-properties  - style:page-layout-properties  - style:paragraph-properties  - style:table-cell-properties  - 
Datatypes - string  - 
ValuesRNG Relationsfo:orphans="<nonNegativeInteger>"  

-

fo:padding-top Attribute (new in ODF 1.2)

+

fo:padding Attribute (new in ODF 1.2)

@@ -31053,7 +39354,7 @@

fo:padding-top Attribute (new

@@ -31061,6 +39362,126 @@

fo:padding-top Attribute (new

+ + + + +
Parent Elements
Datatypes - string  + string   
 
RNG Relationsfo:padding="string]"  
+
+

fo:padding-bottom Attribute (new in ODF 1.2)

+ + + + + + + + + + + + + + + + + +
Parent Elements + style:graphic-properties  + style:header-footer-properties  + style:page-layout-properties  + style:paragraph-properties  + style:table-cell-properties  + 
Datatypes + string  + 
Values
RNG Relationsfo:padding-bottom="string]"  
+
+

fo:padding-left Attribute (new in ODF 1.2)

+ + + + + + + + + + + + + + + + + +
Parent Elements + style:graphic-properties  + style:header-footer-properties  + style:page-layout-properties  + style:paragraph-properties  + style:table-cell-properties  + 
Datatypes + string  + 
Values
RNG Relationsfo:padding-left="string]"  
+
+

fo:padding-right Attribute (new in ODF 1.2)

+ + + + + + + + + + + + + + + + + +
Parent Elements + style:graphic-properties  + style:header-footer-properties  + style:page-layout-properties  + style:paragraph-properties  + style:table-cell-properties  + 
Datatypes + string  + 
Values
RNG Relationsfo:padding-right="string]"  
+
+

fo:padding-top Attribute (new in ODF 1.2)

+ + + + + + + + + + + + + + + + +
Parent Elements + style:graphic-properties  + style:header-footer-properties  + style:page-layout-properties  + style:paragraph-properties  + style:table-cell-properties  + 
Datatypes + string  + 
Values
RNG Relationsfo:padding-top="string]"  

fo:page-height Attribute (new in ODF 1.2)

@@ -31074,7 +39495,7 @@

fo:page-height Attribute (new Datatypes - string  + string    @@ -31082,6 +39503,10 @@

fo:page-height Attribute (new   + + RNG Relations + fo:page-height="string]"   +

fo:page-width Attribute (new in ODF 1.2)

@@ -31095,7 +39520,7 @@

fo:page-width Attribute (new in Datatypes - string  + string    @@ -31103,6 +39528,10 @@

fo:page-width Attribute (new in   + + RNG Relations + fo:page-width="string]"   +

fo:script Attribute (new in ODF 1.2)

@@ -31118,7 +39547,7 @@

fo:script Attribute (new in ODF 1.2 Datatypes - token  + token    @@ -31126,6 +39555,10 @@

fo:script Attribute (new in ODF 1.2   + + RNG Relations + fo:script="token]"   +

fo:space-after Attribute (new in ODF 1.2)

@@ -31139,7 +39572,7 @@

fo:space-after Attribute (new Datatypes - string  + string    @@ -31147,6 +39580,10 @@

fo:space-after Attribute (new   + + RNG Relations + fo:space-after="string]"   +

fo:space-before Attribute (new in ODF 1.2)

@@ -31160,7 +39597,7 @@

fo:space-before Attribute (ne Datatypes - string  + string    @@ -31168,6 +39605,10 @@

fo:space-before Attribute (ne   + + RNG Relations + fo:space-before="string]"   +

fo:start-indent Attribute (new in ODF 1.2)

@@ -31181,7 +39622,7 @@

fo:start-indent Attribute (ne Datatypes - string  + string    @@ -31189,6 +39630,10 @@

fo:start-indent Attribute (ne   + + RNG Relations + fo:start-indent="string]"   +

fo:text-align Attribute (new in ODF 1.2)

@@ -31208,14 +39653,18 @@

fo:text-align Attribute (new in Values - "center"  - "end"  - "justify"  - "left"  - "right"  - "start"  + "center"  + "end"  + "justify"  + "left"  + "right"  + "start"    + + RNG Relations + fo:text-align="start | end | left | right | center | justify"   +

fo:text-align-last Attribute (new in ODF 1.2)

@@ -31234,11 +39683,15 @@

fo:text-align-last Attribute&nb Values - "center"  - "justify"  - "start"  + "center"  + "justify"  + "start"    + + RNG Relations + fo:text-align-last="start | center | justify"   +

fo:text-indent[1] Attribute (new in ODF 1.2)

@@ -31253,7 +39706,7 @@

fo:text-indent[1] Attribute (n Datatypes - string  + string    @@ -31261,6 +39714,10 @@

fo:text-indent[1] Attribute (n   + + RNG Relations + fo:text-indent="string]"   +

fo:text-indent[2] Attribute (new in ODF 1.2)

@@ -31275,8 +39732,8 @@

fo:text-indent[2] Attribute (n Datatypes - string  - string  + string  + string    @@ -31284,6 +39741,10 @@

fo:text-indent[2] Attribute (n   + + RNG Relations + fo:text-indent="string] | string]"   +

fo:text-shadow Attribute (new in ODF 1.2)

@@ -31297,15 +39758,19 @@

fo:text-shadow Attribute (new Datatypes - string  + string    Values - "none"  + "none"    + + RNG Relations + fo:text-shadow="none | <string>"   +

fo:text-transform Attribute (new in ODF 1.2)

@@ -31324,12 +39789,16 @@

fo:text-transform Attribute  Values - "capitalize"  - "lowercase"  - "none"  - "uppercase"  + "capitalize"  + "lowercase"  + "none"  + "uppercase"    + + RNG Relations + fo:text-transform="none | lowercase | uppercase | capitalize"   +

fo:widows Attribute (new in ODF 1.2)

@@ -31343,7 +39812,7 @@

fo:widows Attribute (new in ODF 1.2 Datatypes - nonNegativeInteger  + nonNegativeInteger    @@ -31351,6 +39820,10 @@

fo:widows Attribute (new in ODF 1.2   + + RNG Relations + fo:widows="<nonNegativeInteger>"   +

fo:width Attribute (new in ODF 1.2)

@@ -31364,7 +39837,7 @@

fo:width Attribute (new in ODF 1.2) Datatypes - string  + string    @@ -31372,6 +39845,10 @@

fo:width Attribute (new in ODF 1.2)   + + RNG Relations + fo:width="string]"   +

fo:wrap-option Attribute (new in ODF 1.2)

@@ -31391,10 +39868,14 @@

fo:wrap-option Attribute (new Values - "no-wrap"  - "wrap"  + "no-wrap"  + "wrap"    + + RNG Relations + fo:wrap-option="no-wrap | wrap"   +

form:allow-deletes Attribute

@@ -31413,10 +39894,14 @@

form:allow-deletes Attribute Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + form:allow-deletes="<boolean>"   +

form:allow-inserts Attribute

@@ -31435,10 +39920,14 @@

form:allow-inserts Attribute Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + form:allow-inserts="<boolean>"   +

form:allow-updates Attribute

@@ -31457,10 +39946,14 @@

form:allow-updates Attribute Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + form:allow-updates="<boolean>"   +

form:apply-design-mode Attribute

@@ -31479,10 +39972,14 @@

form:apply-design-mode Attribut Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + form:apply-design-mode="<boolean>"   +

form:apply-filter Attribute

@@ -31501,10 +39998,14 @@

form:apply-filter Attribute

Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + form:apply-filter="<boolean>"   +

form:auto-complete Attribute

@@ -31523,10 +40024,14 @@

form:auto-complete Attribute Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + form:auto-complete="<boolean>"   +

form:automatic-focus Attribute

@@ -31545,10 +40050,14 @@

form:automatic-focus Attribute Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + form:automatic-focus="<boolean>"   +

form:bound-column Attribute

@@ -31562,7 +40071,7 @@

form:bound-column Attribute

Datatypes - string  + string    @@ -31570,6 +40079,10 @@

form:bound-column Attribute

  + + RNG Relations + form:bound-column="<string>"   +

form:button-type Attribute

@@ -31589,12 +40102,16 @@

form:button-type Attribute

Values - "push"  - "reset"  - "submit"  - "url"  + "push"  + "reset"  + "submit"  + "url"    + + RNG Relations + form:button-type="submit | reset | push | url"   +

form:command Attribute

@@ -31608,7 +40125,7 @@

form:command Attribute

Datatypes - string  + string    @@ -31616,6 +40133,10 @@

form:command Attribute

  + + RNG Relations + form:command="<string>"   +

form:command-type Attribute

@@ -31634,11 +40155,15 @@

form:command-type Attribute

Values - "command"  - "query"  - "table"  + "command"  + "query"  + "table"    + + RNG Relations + form:command-type="table | query | command"   +

form:control-implementation Attribute

@@ -31674,7 +40199,7 @@

form:control-implementatio Datatypes - QName  + QName    @@ -31682,6 +40207,10 @@

form:control-implementatio   + + RNG Relations + form:control-implementation="QName]"   +

form:convert-empty-to-null Attribute

@@ -31707,10 +40236,14 @@

form:convert-empty-to-null Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + form:convert-empty-to-null="<boolean>"   +

form:current-selected Attribute

@@ -31730,10 +40263,14 @@

form:current-selected Attribute< Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + form:current-selected="<boolean>"   +

form:current-state Attribute

@@ -31752,11 +40289,15 @@

form:current-state Attribute Values - "checked"  - "unchecked"  - "unknown"  + "checked"  + "unchecked"  + "unknown"    + + RNG Relations + form:current-state="unchecked | checked | unknown"   +

form:current-value[1] Attribute

@@ -31771,7 +40312,7 @@

form:current-value[1] Attribute Datatypes - time  + time    @@ -31779,6 +40320,10 @@

form:current-value[1] Attribute   + + RNG Relations + form:current-value="<time>"   +

form:current-value[2] Attribute

@@ -31787,13 +40332,13 @@

form:current-value[2] Attribute Parent Elements - form:date  + form:number    Datatypes - date  + double    @@ -31801,6 +40346,10 @@

form:current-value[2] Attribute   + + RNG Relations + form:current-value="<double>"   +

form:current-value[3] Attribute

@@ -31809,13 +40358,17 @@

form:current-value[3] Attribute Parent Elements - form:number  + form:combobox  + form:file  + form:formatted-text  + form:text  + form:textarea    Datatypes - double  + string    @@ -31823,6 +40376,10 @@

form:current-value[3] Attribute   + + RNG Relations + form:current-value="<string>"   +

form:current-value[4] Attribute

@@ -31831,17 +40388,13 @@

form:current-value[4] Attribute Parent Elements - form:combobox  - form:file  - form:formatted-text  - form:text  - form:textarea  + form:date    Datatypes - string  + date    @@ -31849,6 +40402,10 @@

form:current-value[4] Attribute   + + RNG Relations + form:current-value="<date>"   +

form:data-field Attribute

@@ -31872,7 +40429,7 @@

form:data-field Attribute

Datatypes - string  + string    @@ -31880,6 +40437,10 @@

form:data-field Attribute

  + + RNG Relations + form:data-field="<string>"   +

form:datasource Attribute

@@ -31893,8 +40454,8 @@

form:datasource Attribute

Datatypes - anyURI  - string  + anyURI  + string    @@ -31902,6 +40463,10 @@

form:datasource Attribute

  + + RNG Relations + form:datasource="<anyIRI> | <string>"   +

form:default-button Attribute

@@ -31920,10 +40485,14 @@

form:default-button Attribute< Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + form:default-button="<boolean>"   +

form:delay-for-repeat Attribute

@@ -31942,7 +40511,7 @@

form:delay-for-repeat Attribute< Datatypes - duration  + duration    @@ -31950,6 +40519,10 @@

form:delay-for-repeat Attribute<   + + RNG Relations + form:delay-for-repeat="<duration>"   +

form:detail-fields Attribute

@@ -31963,7 +40536,7 @@

form:detail-fields Attribute Datatypes - string  + string    @@ -31971,6 +40544,10 @@

form:detail-fields Attribute   + + RNG Relations + form:detail-fields="<string>"   +

form:disabled Attribute

@@ -32007,10 +40584,14 @@

form:disabled Attribute

Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + form:disabled="<boolean>"   +

form:dropdown Attribute

@@ -32030,10 +40611,14 @@

form:dropdown Attribute

Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + form:dropdown="<boolean>"   +

form:echo-char Attribute

@@ -32047,7 +40632,7 @@

form:echo-char Attribute

Datatypes - string  + string    @@ -32055,6 +40640,10 @@

form:echo-char Attribute

  + + RNG Relations + form:echo-char="string]"   +

form:enctype Attribute

@@ -32068,7 +40657,7 @@

form:enctype Attribute

Datatypes - string  + string    @@ -32076,6 +40665,10 @@

form:enctype Attribute

  + + RNG Relations + form:enctype="<string>"   +

form:escape-processing Attribute

@@ -32094,10 +40687,14 @@

form:escape-processing Attribut Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + form:escape-processing="<boolean>"   +

form:filter Attribute

@@ -32111,7 +40708,7 @@

form:filter Attribute

Datatypes - string  + string    @@ -32119,6 +40716,10 @@

form:filter Attribute

  + + RNG Relations + form:filter="<string>"   +

form:focus-on-click Attribute

@@ -32137,10 +40738,14 @@

form:focus-on-click Attribute< Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + form:focus-on-click="<boolean>"   +

form:for Attribute

@@ -32155,7 +40760,7 @@

form:for Attribute

Datatypes - string  + string    @@ -32163,6 +40768,10 @@

form:for Attribute

  + + RNG Relations + form:for="<string>"   +

form:id Attribute

@@ -32196,7 +40805,7 @@

form:id Attribute

Datatypes - NCName  + NCName    @@ -32204,6 +40813,10 @@

form:id Attribute

  + + RNG Relations + form:id="<NCName>"   +

form:ignore-result Attribute

@@ -32222,10 +40835,14 @@

form:ignore-result Attribute Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + form:ignore-result="<boolean>"   +

form:image-align Attribute

@@ -32246,11 +40863,15 @@

form:image-align Attribute

Values - "center"  - "end"  - "start"  + "center"  + "end"  + "start"    + + RNG Relations + form:image-align="start | center | end"   +

form:image-data Attribute

@@ -32266,7 +40887,7 @@

form:image-data Attribute

Datatypes - anyURI  + anyURI    @@ -32274,6 +40895,10 @@

form:image-data Attribute

  + + RNG Relations + form:image-data="<anyIRI>"   +

form:image-position[1] Attribute

@@ -32295,9 +40920,13 @@

form:image-position[1] Attribute Values - "center"  + "center"    + + RNG Relations + form:image-position="center"   +

form:image-position[2] Attribute

@@ -32319,12 +40948,16 @@

form:image-position[2] Attribute Values - "bottom"  - "end"  - "start"  - "top"  + "bottom"  + "end"  + "start"  + "top"    + + RNG Relations + form:image-position="start | end | top | bottom"   +

form:is-tristate Attribute

@@ -32343,10 +40976,14 @@

form:is-tristate Attribute

Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + form:is-tristate="<boolean>"   +

form:label Attribute

@@ -32367,7 +41004,7 @@

form:label Attribute

Datatypes - string  + string    @@ -32375,6 +41012,10 @@

form:label Attribute

  + + RNG Relations + form:label="<string>"   +

form:linked-cell Attribute (new in ODF 1.2)

@@ -32400,8 +41041,8 @@

form:linked-cell Attribute ( Datatypes - string  - string  + string  + string    @@ -32409,6 +41050,10 @@

form:linked-cell Attribute (   + + RNG Relations + form:linked-cell="string] | <string>"   +

form:list-linkage-type Attribute (new in ODF 1.2)

@@ -32427,10 +41072,14 @@

form:list-linkage-type Attribut Values - "selection"  - "selection-indices"  + "selection"  + "selection-indices"    + + RNG Relations + form:list-linkage-type="selection | selection-indices"   +

form:list-source Attribute

@@ -32445,7 +41094,7 @@

form:list-source Attribute

Datatypes - string  + string    @@ -32453,6 +41102,10 @@

form:list-source Attribute

  + + RNG Relations + form:list-source="<string>"   +

form:list-source-type Attribute

@@ -32472,14 +41125,18 @@

form:list-source-type Attribute< Values - "query"  - "sql"  - "sql-pass-through"  - "table"  - "table-fields"  - "value-list"  + "query"  + "sql"  + "sql-pass-through"  + "table"  + "table-fields"  + "value-list"    + + RNG Relations + form:list-source-type="table | query | sql | sql-pass-through | value-list | table-fields"   +

form:master-fields Attribute

@@ -32493,7 +41150,7 @@

form:master-fields Attribute Datatypes - string  + string    @@ -32501,6 +41158,10 @@

form:master-fields Attribute   + + RNG Relations + form:master-fields="<string>"   +

form:max-length Attribute

@@ -32522,7 +41183,7 @@

form:max-length Attribute

Datatypes - nonNegativeInteger  + nonNegativeInteger    @@ -32530,6 +41191,10 @@

form:max-length Attribute

  + + RNG Relations + form:max-length="<nonNegativeInteger>"   +

form:max-value[1] Attribute

@@ -32538,13 +41203,13 @@

form:max-value[1] Attribute

Parent Elements - form:time  + form:number    Datatypes - time  + double    @@ -32552,6 +41217,10 @@

form:max-value[1] Attribute

  + + RNG Relations + form:max-value="<double>"   +

form:max-value[2] Attribute

@@ -32560,13 +41229,13 @@

form:max-value[2] Attribute

Parent Elements - form:value-range  + form:time    Datatypes - integer  + time    @@ -32574,6 +41243,10 @@

form:max-value[2] Attribute

  + + RNG Relations + form:max-value="<time>"   +

form:max-value[3] Attribute

@@ -32588,7 +41261,7 @@

form:max-value[3] Attribute

Datatypes - date  + date    @@ -32596,6 +41269,10 @@

form:max-value[3] Attribute

  + + RNG Relations + form:max-value="<date>"   +

form:max-value[4] Attribute

@@ -32604,13 +41281,13 @@

form:max-value[4] Attribute

Parent Elements - form:number  + form:formatted-text    Datatypes - double  + string    @@ -32618,6 +41295,10 @@

form:max-value[4] Attribute

  + + RNG Relations + form:max-value="<string>"   +

form:max-value[5] Attribute

@@ -32626,13 +41307,13 @@

form:max-value[5] Attribute

Parent Elements - form:formatted-text  + form:value-range    Datatypes - string  + integer    @@ -32640,6 +41321,10 @@

form:max-value[5] Attribute

  + + RNG Relations + form:max-value="<integer>"   +

form:method Attribute

@@ -32653,16 +41338,20 @@

form:method Attribute

Datatypes - string  + string    Values - "get"  - "post"  + "get"  + "post"    + + RNG Relations + form:method="get | post | <string>"   +

form:min-value[1] Attribute

@@ -32671,13 +41360,13 @@

form:min-value[1] Attribute

Parent Elements - form:number  + form:value-range    Datatypes - double  + integer    @@ -32685,6 +41374,10 @@

form:min-value[1] Attribute

  + + RNG Relations + form:min-value="<integer>"   +

form:min-value[2] Attribute

@@ -32693,13 +41386,13 @@

form:min-value[2] Attribute

Parent Elements - form:formatted-text  + form:time    Datatypes - string  + time    @@ -32707,6 +41400,10 @@

form:min-value[2] Attribute

  + + RNG Relations + form:min-value="<time>"   +

form:min-value[3] Attribute

@@ -32715,13 +41412,13 @@

form:min-value[3] Attribute

Parent Elements - form:date  + form:formatted-text    Datatypes - date  + string    @@ -32729,6 +41426,10 @@

form:min-value[3] Attribute

  + + RNG Relations + form:min-value="<string>"   +

form:min-value[4] Attribute

@@ -32737,13 +41438,13 @@

form:min-value[4] Attribute

Parent Elements - form:time  + form:date    Datatypes - time  + date    @@ -32751,6 +41452,10 @@

form:min-value[4] Attribute

  + + RNG Relations + form:min-value="<date>"   +

form:min-value[5] Attribute

@@ -32759,13 +41464,13 @@

form:min-value[5] Attribute

Parent Elements - form:value-range  + form:number    Datatypes - integer  + double    @@ -32773,6 +41478,10 @@

form:min-value[5] Attribute

  + + RNG Relations + form:min-value="<double>"   +

form:multi-line Attribute

@@ -32791,10 +41500,14 @@

form:multi-line Attribute

Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + form:multi-line="<boolean>"   +

form:multiple Attribute

@@ -32813,10 +41526,14 @@

form:multiple Attribute

Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + form:multiple="<boolean>"   +

form:name Attribute

@@ -32852,7 +41569,7 @@

form:name Attribute

Datatypes - string  + string    @@ -32860,6 +41577,10 @@

form:name Attribute

  + + RNG Relations + form:name="<string>"   +

form:navigation-mode Attribute

@@ -32878,11 +41599,15 @@

form:navigation-mode Attribute Values - "current"  - "none"  - "parent"  + "current"  + "none"  + "parent"    + + RNG Relations + form:navigation-mode="none | current | parent"   +

form:order Attribute

@@ -32896,7 +41621,7 @@

form:order Attribute

Datatypes - string  + string    @@ -32904,6 +41629,10 @@

form:order Attribute

  + + RNG Relations + form:order="<string>"   +

form:orientation Attribute

@@ -32922,10 +41651,14 @@

form:orientation Attribute

Values - "horizontal"  - "vertical"  + "horizontal"  + "vertical"    + + RNG Relations + form:orientation="horizontal | vertical"   +

form:page-step-size Attribute

@@ -32939,7 +41672,7 @@

form:page-step-size Attribute< Datatypes - positiveInteger  + positiveInteger    @@ -32947,6 +41680,10 @@

form:page-step-size Attribute<   + + RNG Relations + form:page-step-size="<positiveInteger>"   +

form:printable Attribute

@@ -32983,10 +41720,14 @@

form:printable Attribute

Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + form:printable="<boolean>"   +

form:property-name Attribute

@@ -33001,7 +41742,7 @@

form:property-name Attribute Datatypes - string  + string    @@ -33009,6 +41750,10 @@

form:property-name Attribute   + + RNG Relations + form:property-name="<string>"   +

form:readonly Attribute

@@ -33035,10 +41780,14 @@

form:readonly Attribute

Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + form:readonly="<boolean>"   +

form:repeat Attribute (new in ODF 1.2)

@@ -33062,10 +41811,14 @@

form:repeat Attribute (new in ODF Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + form:repeat="<boolean>"   +

form:selected Attribute

@@ -33085,10 +41838,14 @@

form:selected Attribute

Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + form:selected="<boolean>"   +

form:size Attribute

@@ -33103,7 +41860,7 @@

form:size Attribute

Datatypes - nonNegativeInteger  + nonNegativeInteger    @@ -33111,6 +41868,10 @@

form:size Attribute

  + + RNG Relations + form:size="<nonNegativeInteger>"   +

form:source-cell-range Attribute (new in ODF 1.2)

@@ -33125,10 +41886,10 @@

form:source-cell-range Attribut Datatypes - string  - string  - string  - string  + string  + string  + string  + string    @@ -33136,6 +41897,10 @@

form:source-cell-range Attribut   + + RNG Relations + form:source-cell-range="string] | string] | string] | <string>"   +

form:spin-button Attribute (new in ODF 1.2)

@@ -33157,10 +41922,14 @@

form:spin-button Attribute ( Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + form:spin-button="<boolean>"   +

form:state Attribute

@@ -33179,11 +41948,15 @@

form:state Attribute

Values - "checked"  - "unchecked"  - "unknown"  + "checked"  + "unchecked"  + "unknown"    + + RNG Relations + form:state="unchecked | checked | unknown"   +

form:step-size Attribute

@@ -33197,7 +41970,7 @@

form:step-size Attribute

Datatypes - positiveInteger  + positiveInteger    @@ -33205,6 +41978,10 @@

form:step-size Attribute

  + + RNG Relations + form:step-size="<positiveInteger>"   +

form:tab-cycle Attribute

@@ -33223,11 +42000,15 @@

form:tab-cycle Attribute

Values - "current"  - "page"  - "records"  + "current"  + "page"  + "records"    + + RNG Relations + form:tab-cycle="records | current | page"   +

form:tab-index Attribute

@@ -33256,7 +42037,7 @@

form:tab-index Attribute

Datatypes - nonNegativeInteger  + nonNegativeInteger    @@ -33264,6 +42045,10 @@

form:tab-index Attribute

  + + RNG Relations + form:tab-index="<nonNegativeInteger>"   +

form:tab-stop Attribute

@@ -33297,10 +42082,14 @@

form:tab-stop Attribute

Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + form:tab-stop="<boolean>"   +

form:text-style-name Attribute

@@ -33314,7 +42103,7 @@

form:text-style-name Attribute Datatypes - NCName  + NCName    @@ -33322,6 +42111,10 @@

form:text-style-name Attribute   + + RNG Relations + form:text-style-name="(<NCName>)?"   +

form:title Attribute

@@ -33353,7 +42146,7 @@

form:title Attribute

Datatypes - string  + string    @@ -33361,6 +42154,10 @@

form:title Attribute

  + + RNG Relations + form:title="<string>"   +

form:toggle Attribute

@@ -33379,10 +42176,14 @@

form:toggle Attribute

Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + form:toggle="<boolean>"   +

form:validation Attribute

@@ -33401,10 +42202,14 @@

form:validation Attribute

Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + form:validation="<boolean>"   +

form:value[1] Attribute

@@ -33413,25 +42218,13 @@

form:value[1] Attribute

Parent Elements - form:button  - form:checkbox  - form:combobox  - form:file  - form:formatted-text  - form:hidden  - form:image  - form:option  - form:password  - form:radio  - form:text  - form:textarea  - form:value-range  + form:date    Datatypes - string  + date    @@ -33439,6 +42232,10 @@

form:value[1] Attribute

  + + RNG Relations + form:value="<date>"   +

form:value[2] Attribute

@@ -33447,13 +42244,13 @@

form:value[2] Attribute

Parent Elements - form:date  + form:number    Datatypes - date  + double    @@ -33461,6 +42258,10 @@

form:value[2] Attribute

  + + RNG Relations + form:value="<double>"   +

form:value[3] Attribute

@@ -33469,13 +42270,13 @@

form:value[3] Attribute

Parent Elements - form:number  + form:time    Datatypes - double  + time    @@ -33483,6 +42284,10 @@

form:value[3] Attribute

  + + RNG Relations + form:value="<time>"   +

form:value[4] Attribute

@@ -33491,13 +42296,25 @@

form:value[4] Attribute

Parent Elements - form:time  + form:button  + form:checkbox  + form:combobox  + form:file  + form:formatted-text  + form:hidden  + form:image  + form:option  + form:password  + form:radio  + form:text  + form:textarea  + form:value-range    Datatypes - time  + string    @@ -33505,6 +42322,10 @@

form:value[4] Attribute

  + + RNG Relations + form:value="<string>"   +

form:visual-effect Attribute

@@ -33524,10 +42345,14 @@

form:visual-effect Attribute Values - "3d"  - "flat"  + "3d"  + "flat"    + + RNG Relations + form:visual-effect="flat | 3d"   +

form:xforms-list-source Attribute

@@ -33541,7 +42366,7 @@

form:xforms-list-source Attrib Datatypes - string  + string    @@ -33549,6 +42374,10 @@

form:xforms-list-source Attrib   + + RNG Relations + form:xforms-list-source="<string>"   +

form:xforms-submission Attribute

@@ -33562,7 +42391,7 @@

form:xforms-submission Attribut Datatypes - string  + string    @@ -33570,6 +42399,10 @@

form:xforms-submission Attribut   + + RNG Relations + form:xforms-submission="<string>"   +

grddl:transformation Attribute (new in ODF 1.2)

@@ -33587,7 +42420,7 @@

grddl:transformation Attribute Datatypes - anyURI  + anyURI    @@ -33595,6 +42428,12 @@

grddl:transformation Attribute   + + RNG Relations + grddl:transformation=" +START_list(<anyIRI>)* +END_list"   +

meta:cell-count Attribute (new in ODF 1.2)

@@ -33608,7 +42447,7 @@

meta:cell-count Attribute (ne Datatypes - nonNegativeInteger  + nonNegativeInteger    @@ -33616,6 +42455,10 @@

meta:cell-count Attribute (ne   + + RNG Relations + meta:cell-count="<nonNegativeInteger>"   +

meta:character-count Attribute (new in ODF 1.2)

@@ -33629,7 +42472,7 @@

meta:character-count Attribute Datatypes - nonNegativeInteger  + nonNegativeInteger    @@ -33637,6 +42480,10 @@

meta:character-count Attribute   + + RNG Relations + meta:character-count="<nonNegativeInteger>"   +

meta:date Attribute (new in ODF 1.2)

@@ -33650,7 +42497,7 @@

meta:date Attribute (new in ODF 1.2 Datatypes - dateTime  + dateTime    @@ -33658,6 +42505,10 @@

meta:date Attribute (new in ODF 1.2   + + RNG Relations + meta:date="<dateTime>"   +

meta:delay Attribute (new in ODF 1.2)

@@ -33671,7 +42522,7 @@

meta:delay Attribute (new in ODF 1 Datatypes - duration  + duration    @@ -33679,6 +42530,10 @@

meta:delay Attribute (new in ODF 1   + + RNG Relations + meta:delay="<duration>"   +

meta:draw-count Attribute (new in ODF 1.2)

@@ -33692,7 +42547,7 @@

meta:draw-count Attribute (ne Datatypes - nonNegativeInteger  + nonNegativeInteger    @@ -33700,6 +42555,10 @@

meta:draw-count Attribute (ne   + + RNG Relations + meta:draw-count="<nonNegativeInteger>"   +

meta:frame-count Attribute (new in ODF 1.2)

@@ -33713,7 +42572,7 @@

meta:frame-count Attribute ( Datatypes - nonNegativeInteger  + nonNegativeInteger    @@ -33721,6 +42580,10 @@

meta:frame-count Attribute (   + + RNG Relations + meta:frame-count="<nonNegativeInteger>"   +

meta:image-count Attribute (new in ODF 1.2)

@@ -33734,7 +42597,7 @@

meta:image-count Attribute ( Datatypes - nonNegativeInteger  + nonNegativeInteger    @@ -33742,6 +42605,10 @@

meta:image-count Attribute (   + + RNG Relations + meta:image-count="<nonNegativeInteger>"   +

meta:name Attribute (new in ODF 1.2)

@@ -33755,7 +42622,7 @@

meta:name Attribute (new in ODF 1.2 Datatypes - string  + string    @@ -33763,6 +42630,10 @@

meta:name Attribute (new in ODF 1.2   + + RNG Relations + meta:name="<string>"   +

meta:non-whitespace-character-count Attribute (new in ODF 1.2)

@@ -33776,7 +42647,7 @@

meta:non-whitespac Datatypes - nonNegativeInteger  + nonNegativeInteger    @@ -33784,6 +42655,10 @@

meta:non-whitespac   + + RNG Relations + meta:non-whitespace-character-count="<nonNegativeInteger>"   +

meta:object-count Attribute (new in ODF 1.2)

@@ -33797,7 +42672,7 @@

meta:object-count Attribute  Datatypes - nonNegativeInteger  + nonNegativeInteger    @@ -33805,6 +42680,10 @@

meta:object-count Attribute    + + RNG Relations + meta:object-count="<nonNegativeInteger>"   +

meta:ole-object-count Attribute (new in ODF 1.2)

@@ -33818,7 +42697,7 @@

meta:ole-object-count Attribute< Datatypes - nonNegativeInteger  + nonNegativeInteger    @@ -33826,6 +42705,10 @@

meta:ole-object-count Attribute<   + + RNG Relations + meta:ole-object-count="<nonNegativeInteger>"   +

meta:page-count Attribute (new in ODF 1.2)

@@ -33839,7 +42722,7 @@

meta:page-count Attribute (ne Datatypes - nonNegativeInteger  + nonNegativeInteger    @@ -33847,6 +42730,10 @@

meta:page-count Attribute (ne   + + RNG Relations + meta:page-count="<nonNegativeInteger>"   +

meta:paragraph-count Attribute (new in ODF 1.2)

@@ -33860,7 +42747,7 @@

meta:paragraph-count Attribute Datatypes - nonNegativeInteger  + nonNegativeInteger    @@ -33868,6 +42755,10 @@

meta:paragraph-count Attribute   + + RNG Relations + meta:paragraph-count="<nonNegativeInteger>"   +

meta:row-count Attribute (new in ODF 1.2)

@@ -33881,7 +42772,7 @@

meta:row-count Attribute (new Datatypes - nonNegativeInteger  + nonNegativeInteger    @@ -33889,6 +42780,10 @@

meta:row-count Attribute (new   + + RNG Relations + meta:row-count="<nonNegativeInteger>"   +

meta:sentence-count Attribute (new in ODF 1.2)

@@ -33902,7 +42797,7 @@

meta:sentence-count Attribute& Datatypes - nonNegativeInteger  + nonNegativeInteger    @@ -33910,6 +42805,10 @@

meta:sentence-count Attribute&   + + RNG Relations + meta:sentence-count="<nonNegativeInteger>"   +

meta:syllable-count Attribute (new in ODF 1.2)

@@ -33923,7 +42822,7 @@

meta:syllable-count Attribute& Datatypes - nonNegativeInteger  + nonNegativeInteger    @@ -33931,6 +42830,10 @@

meta:syllable-count Attribute&   + + RNG Relations + meta:syllable-count="<nonNegativeInteger>"   +

meta:table-count Attribute (new in ODF 1.2)

@@ -33944,7 +42847,7 @@

meta:table-count Attribute ( Datatypes - nonNegativeInteger  + nonNegativeInteger    @@ -33952,6 +42855,10 @@

meta:table-count Attribute (   + + RNG Relations + meta:table-count="<nonNegativeInteger>"   +

meta:value-type[1] Attribute (new in ODF 1.2)

@@ -33971,9 +42878,13 @@

meta:value-type[1] Attribute  Values - "time"  + "boolean"    + + RNG Relations + meta:value-type="boolean"   +

meta:value-type[2] Attribute (new in ODF 1.2)

@@ -33993,9 +42904,13 @@

meta:value-type[2] Attribute  Values - "float"  + "date"    + + RNG Relations + meta:value-type="date"   +

meta:value-type[3] Attribute (new in ODF 1.2)

@@ -34015,9 +42930,13 @@

meta:value-type[3] Attribute  Values - "boolean"  + "time"    + + RNG Relations + meta:value-type="time"   +

meta:value-type[4] Attribute (new in ODF 1.2)

@@ -34037,9 +42956,13 @@

meta:value-type[4] Attribute  Values - "date"  + "float"    + + RNG Relations + meta:value-type="float"   +

meta:value-type[5] Attribute (new in ODF 1.2)

@@ -34059,9 +42982,13 @@

meta:value-type[5] Attribute  Values - "string"  + "string"    + + RNG Relations + meta:value-type="string"   +

meta:word-count Attribute (new in ODF 1.2)

@@ -34075,7 +43002,7 @@

meta:word-count Attribute (ne Datatypes - nonNegativeInteger  + nonNegativeInteger    @@ -34083,6 +43010,10 @@

meta:word-count Attribute (ne   + + RNG Relations + meta:word-count="<nonNegativeInteger>"   +

number:automatic-order Attribute

@@ -34102,10 +43033,14 @@

number:automatic-order Attribut Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + number:automatic-order="<boolean>"   +

number:calendar Attribute

@@ -34125,22 +43060,26 @@

number:calendar Attribute

Datatypes - string  + string    Values - "ROC"  - "buddhist"  - "gengou"  - "gregorian"  - "hanja"  - "hanja_yoil"  - "hijri"  - "jewish"  + "ROC"  + "buddhist"  + "gengou"  + "gregorian"  + "hanja"  + "hanja_yoil"  + "hijri"  + "jewish"    + + RNG Relations + number:calendar="gregorian | gengou | ROC | hanja_yoil | hanja | hijri | jewish | buddhist | <string>"   +

number:country Attribute

@@ -34161,7 +43100,7 @@

number:country Attribute

Datatypes - token  + token    @@ -34169,6 +43108,10 @@

number:country Attribute

  + + RNG Relations + number:country="token]"   +

number:decimal-places Attribute

@@ -34184,7 +43127,7 @@

number:decimal-places Attribute< Datatypes - integer  + integer    @@ -34192,6 +43135,10 @@

number:decimal-places Attribute<   + + RNG Relations + number:decimal-places="<integer>"   +

number:decimal-replacement Attribute

@@ -34205,7 +43152,7 @@

number:decimal-replacement Datatypes - string  + string    @@ -34213,6 +43160,10 @@

number:decimal-replacement   + + RNG Relations + number:decimal-replacement="<string>"   +

number:denominator-value Attribute

@@ -34226,7 +43177,7 @@

number:denominator-value Attr Datatypes - integer  + integer    @@ -34234,6 +43185,10 @@

number:denominator-value Attr   + + RNG Relations + number:denominator-value="<integer>"   +

number:display-factor Attribute

@@ -34247,7 +43202,7 @@

number:display-factor Attribute< Datatypes - double  + double    @@ -34255,6 +43210,10 @@

number:display-factor Attribute<   + + RNG Relations + number:display-factor="<double>"   +

number:format-source Attribute

@@ -34274,10 +43233,14 @@

number:format-source Attribute Values - "fixed"  - "language"  + "fixed"  + "language"    + + RNG Relations + number:format-source="fixed | language"   +

number:grouping Attribute

@@ -34298,10 +43261,14 @@

number:grouping Attribute

Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + number:grouping="<boolean>"   +

number:language Attribute

@@ -34322,7 +43289,7 @@

number:language Attribute

Datatypes - token  + token    @@ -34330,6 +43297,10 @@

number:language Attribute

  + + RNG Relations + number:language="token]"   +

number:min-denominator-digits Attribute

@@ -34343,7 +43314,7 @@

number:min-denominator-d Datatypes - integer  + integer    @@ -34351,6 +43322,10 @@

number:min-denominator-d   + + RNG Relations + number:min-denominator-digits="<integer>"   +

number:min-exponent-digits Attribute

@@ -34364,7 +43339,7 @@

number:min-exponent-digits Datatypes - integer  + integer    @@ -34372,6 +43347,10 @@

number:min-exponent-digits   + + RNG Relations + number:min-exponent-digits="<integer>"   +

number:min-integer-digits Attribute

@@ -34387,7 +43366,7 @@

number:min-integer-digits At Datatypes - integer  + integer    @@ -34395,6 +43374,10 @@

number:min-integer-digits At   + + RNG Relations + number:min-integer-digits="<integer>"   +

number:min-numerator-digits Attribute

@@ -34408,7 +43391,7 @@

number:min-numerator-digit Datatypes - integer  + integer    @@ -34416,6 +43399,10 @@

number:min-numerator-digit   + + RNG Relations + number:min-numerator-digits="<integer>"   +

number:position Attribute

@@ -34429,7 +43416,7 @@

number:position Attribute

Datatypes - integer  + integer    @@ -34437,6 +43424,10 @@

number:position Attribute

  + + RNG Relations + number:position="<integer>"   +

number:possessive-form Attribute

@@ -34455,10 +43446,14 @@

number:possessive-form Attribut Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + number:possessive-form="<boolean>"   +

number:rfc-language-tag Attribute (new in ODF 1.2)

@@ -34479,7 +43474,7 @@

number:rfc-language-tag Attrib Datatypes - language  + language    @@ -34487,6 +43482,10 @@

number:rfc-language-tag Attrib   + + RNG Relations + number:rfc-language-tag="<language>"   +

number:script Attribute (new in ODF 1.2)

@@ -34507,7 +43506,7 @@

number:script Attribute (new in Datatypes - token  + token    @@ -34515,6 +43514,10 @@

number:script Attribute (new in   + + RNG Relations + number:script="token]"   +

number:style Attribute

@@ -34541,10 +43544,14 @@

number:style Attribute

Values - "long"  - "short"  + "long"  + "short"    + + RNG Relations + number:style="short | long"   +

number:textual Attribute

@@ -34563,10 +43570,14 @@

number:textual Attribute

Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + number:textual="<boolean>"   +

number:title Attribute

@@ -34586,7 +43597,7 @@

number:title Attribute

Datatypes - string  + string    @@ -34594,6 +43605,10 @@

number:title Attribute

  + + RNG Relations + number:title="<string>"   +

number:transliteration-country Attribute

@@ -34613,7 +43628,7 @@

number:transliteration- Datatypes - token  + token    @@ -34621,6 +43636,10 @@

number:transliteration-   + + RNG Relations + number:transliteration-country="token]"   +

number:transliteration-format Attribute

@@ -34640,7 +43659,7 @@

number:transliteration-f Datatypes - string  + string    @@ -34648,6 +43667,10 @@

number:transliteration-f   + + RNG Relations + number:transliteration-format="<string>"   +

number:transliteration-language Attribute

@@ -34667,7 +43690,7 @@

number:transliteration Datatypes - token  + token    @@ -34675,6 +43698,10 @@

number:transliteration   + + RNG Relations + number:transliteration-language="token]"   +

number:transliteration-style Attribute

@@ -34699,11 +43726,15 @@

number:transliteration-st Values - "long"  - "medium"  - "short"  + "long"  + "medium"  + "short"    + + RNG Relations + number:transliteration-style="short | medium | long"   +

number:truncate-on-overflow Attribute

@@ -34722,10 +43753,14 @@

number:truncate-on-overflo Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + number:truncate-on-overflow="<boolean>"   +

office:automatic-update Attribute

@@ -34745,10 +43780,14 @@

office:automatic-update Attrib Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + office:automatic-update="<boolean>"   +

office:boolean-value Attribute

@@ -34758,7 +43797,7 @@

office:boolean-value Attribute db:column  db:column-definition  - form:list-value[7]  + form:list-value[2]  form:property  table:change-track-table-cell  table:covered-table-cell  @@ -34777,10 +43816,14 @@

office:boolean-value Attribute Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + office:boolean-value="<boolean>"   +

office:conversion-mode Attribute

@@ -34799,11 +43842,15 @@

office:conversion-mode Attribut Values - "into-default-style-data-style"  - "into-english-number"  - "keep-text"  + "into-default-style-data-style"  + "into-english-number"  + "keep-text"    + + RNG Relations + office:conversion-mode="into-default-style-data-style | into-english-number | keep-text"   +

office:currency Attribute

@@ -34813,7 +43860,7 @@

office:currency Attribute

db:column  db:column-definition  - form:list-value[5]  + form:list-value[6]  form:property  table:change-track-table-cell  table:covered-table-cell  @@ -34826,7 +43873,7 @@

office:currency Attribute

Datatypes - string  + string    @@ -34834,6 +43881,10 @@

office:currency Attribute

  + + RNG Relations + office:currency="<string>"   +

office:date-value Attribute

@@ -34843,7 +43894,7 @@

office:date-value Attribute

db:column  db:column-definition  - form:list-value[4]  + form:list-value[3]  form:property  table:change-track-table-cell  table:covered-table-cell  @@ -34857,8 +43908,8 @@

office:date-value Attribute

Datatypes - date  - dateTime  + date  + dateTime    @@ -34866,6 +43917,10 @@

office:date-value Attribute

  + + RNG Relations + office:date-value="<date> | <dateTime>"   +

office:dde-application Attribute

@@ -34880,7 +43935,7 @@

office:dde-application Attribut Datatypes - string  + string    @@ -34888,6 +43943,10 @@

office:dde-application Attribut   + + RNG Relations + office:dde-application="<string>"   +

office:dde-item Attribute

@@ -34902,7 +43961,7 @@

office:dde-item Attribute

Datatypes - string  + string    @@ -34910,6 +43969,10 @@

office:dde-item Attribute

  + + RNG Relations + office:dde-item="<string>"   +

office:dde-topic Attribute

@@ -34924,7 +43987,7 @@

office:dde-topic Attribute

Datatypes - string  + string    @@ -34932,6 +43995,10 @@

office:dde-topic Attribute

  + + RNG Relations + office:dde-topic="<string>"   +

office:display Attribute

@@ -34950,10 +44017,14 @@

office:display Attribute

Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + office:display="<boolean>"   +

office:mimetype Attribute

@@ -34967,7 +44038,7 @@

office:mimetype Attribute

Datatypes - string  + string    @@ -34975,6 +44046,10 @@

office:mimetype Attribute

  + + RNG Relations + office:mimetype="<string>"   +

office:name Attribute

@@ -34996,7 +44071,7 @@

office:name Attribute

Datatypes - string  + string    @@ -35004,6 +44079,10 @@

office:name Attribute

  + + RNG Relations + office:name="<string>"   +

office:server-map Attribute

@@ -35022,10 +44101,14 @@

office:server-map Attribute

Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + office:server-map="<boolean>"   +

office:string-value Attribute

@@ -35035,7 +44118,7 @@

office:string-value Attribute< db:column  db:column-definition  - form:list-value[1]  + form:list-value[4]  form:property  table:change-track-table-cell  table:covered-table-cell  @@ -35049,7 +44132,7 @@

office:string-value Attribute< Datatypes - string  + string    @@ -35057,6 +44140,10 @@

office:string-value Attribute<   + + RNG Relations + office:string-value="<string>"   +

office:target-frame Attribute

@@ -35072,18 +44159,22 @@

office:target-frame Attribute< Datatypes - string  + string    Values - "_blank"  - "_parent"  - "_self"  - "_top"  + "_blank"  + "_parent"  + "_self"  + "_top"    + + RNG Relations + office:target-frame="_self | _blank | _parent | _top | <string>"   +

office:target-frame-name Attribute

@@ -35102,18 +44193,22 @@

office:target-frame-name Attr Datatypes - string  + string    Values - "_blank"  - "_parent"  - "_self"  - "_top"  + "_blank"  + "_parent"  + "_self"  + "_top"    + + RNG Relations + office:target-frame-name="_self | _blank | _parent | _top | <string>"   +

office:time-value Attribute

@@ -35123,7 +44218,7 @@

office:time-value Attribute

db:column  db:column-definition  - form:list-value[6]  + form:list-value[1]  form:property  table:change-track-table-cell  table:covered-table-cell  @@ -35137,7 +44232,7 @@

office:time-value Attribute

Datatypes - duration  + duration    @@ -35145,6 +44240,10 @@

office:time-value Attribute

  + + RNG Relations + office:time-value="<duration>"   +

office:title Attribute (new in ODF 1.1)

@@ -35159,7 +44258,7 @@

office:title Attribute (new in O Datatypes - string  + string    @@ -35167,6 +44266,10 @@

office:title Attribute (new in O   + + RNG Relations + office:title="<string>"   +

office:value Attribute

@@ -35176,9 +44279,9 @@

office:value Attribute

db:column  db:column-definition  - form:list-value[2]  - form:list-value[3]  form:list-value[5]  + form:list-value[6]  + form:list-value[7]  form:property  table:change-track-table-cell  table:covered-table-cell  @@ -35192,7 +44295,7 @@

office:value Attribute

Datatypes - double  + double    @@ -35200,6 +44303,10 @@

office:value Attribute

  + + RNG Relations + office:value="<double>"   +

office:value-type[1] Attribute

@@ -35228,9 +44335,13 @@

office:value-type[1] Attribute Values - "percentage"  + "percentage"    + + RNG Relations + office:value-type="percentage"   +

office:value-type[2] Attribute

@@ -35259,9 +44370,13 @@

office:value-type[2] Attribute Values - "time"  + "string"    + + RNG Relations + office:value-type="string"   +

office:value-type[3] Attribute

@@ -35270,8 +44385,16 @@

office:value-type[3] Attribute Parent Elements + db:column  + db:column-definition  form:list-property  form:property  + table:change-track-table-cell  + table:covered-table-cell  + table:table-cell  + text:expression  + text:user-field-decl  + text:variable-set    @@ -35282,9 +44405,13 @@

office:value-type[3] Attribute Values - "void"  + "boolean"    + + RNG Relations + office:value-type="boolean"   +

office:value-type[4] Attribute

@@ -35313,9 +44440,13 @@

office:value-type[4] Attribute Values - "string"  + "date"    + + RNG Relations + office:value-type="date"   +

office:value-type[5] Attribute

@@ -35344,9 +44475,13 @@

office:value-type[5] Attribute Values - "boolean"  + "float"    + + RNG Relations + office:value-type="float"   +

office:value-type[6] Attribute

@@ -35375,9 +44510,13 @@

office:value-type[6] Attribute Values - "float"  + "currency"    + + RNG Relations + office:value-type="currency"   +

office:value-type[7] Attribute

@@ -35406,9 +44545,13 @@

office:value-type[7] Attribute Values - "date"  + "time"    + + RNG Relations + office:value-type="time"   +

office:value-type[8] Attribute

@@ -35417,8 +44560,8 @@

office:value-type[8] Attribute Parent Elements - text:variable-decl  - text:variable-input  + form:list-property  + form:property    @@ -35429,15 +44572,13 @@

office:value-type[8] Attribute Values - "boolean"  - "currency"  - "date"  - "float"  - "percentage"  - "string"  - "time"  + "void"    + + RNG Relations + office:value-type="void"   +

office:value-type[9] Attribute

@@ -35446,16 +44587,8 @@

office:value-type[9] Attribute Parent Elements - db:column  - db:column-definition  - form:list-property  - form:property  - table:change-track-table-cell  - table:covered-table-cell  - table:table-cell  - text:expression  - text:user-field-decl  - text:variable-set  + text:variable-decl  + text:variable-input    @@ -35466,9 +44599,19 @@

office:value-type[9] Attribute Values - "currency"  + "boolean"  + "currency"  + "date"  + "float"  + "percentage"  + "string"  + "time"    + + RNG Relations + office:value-type="float | time | date | percentage | currency | boolean | string"   +

office:version Attribute

@@ -35491,9 +44634,13 @@

office:version Attribute

Values - "1.2"  + "1.2"    + + RNG Relations + office:version="1.2"   +

presentation:action Attribute

@@ -35512,21 +44659,25 @@

presentation:action Attribute< Values - "execute"  - "fade-out"  - "first-page"  - "hide"  - "last-page"  - "last-visited-page"  - "next-page"  - "none"  - "previous-page"  - "show"  - "sound"  - "stop"  - "verb"  + "execute"  + "fade-out"  + "first-page"  + "hide"  + "last-page"  + "last-visited-page"  + "next-page"  + "none"  + "previous-page"  + "show"  + "sound"  + "stop"  + "verb"    + + RNG Relations + presentation:action="none | previous-page | next-page | first-page | last-page | hide | stop | execute | show | verb | fade-out | sound | last-visited-page"   +

presentation:animations Attribute

@@ -35545,10 +44696,14 @@

presentation:animations Attrib Values - "disabled"  - "enabled"  + "disabled"  + "enabled"    + + RNG Relations + presentation:animations="enabled | disabled"   +

presentation:background-objects-visible Attribute (new in ODF 1.2)

@@ -35567,10 +44722,14 @@

presentation:b Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + presentation:background-objects-visible="<boolean>"   +

presentation:background-visible Attribute (new in ODF 1.2)

@@ -35589,10 +44748,14 @@

presentation:backgroun Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + presentation:background-visible="<boolean>"   +

presentation:class Attribute

@@ -35612,24 +44775,28 @@

presentation:class Attribute Values - "chart"  - "date-time"  - "footer"  - "graphic"  - "handout"  - "header"  - "notes"  - "object"  - "orgchart"  - "outline"  - "page"  - "page-number"  - "subtitle"  - "table"  - "text"  - "title"  + "chart"  + "date-time"  + "footer"  + "graphic"  + "handout"  + "header"  + "notes"  + "object"  + "orgchart"  + "outline"  + "page"  + "page-number"  + "subtitle"  + "table"  + "text"  + "title"    + + RNG Relations + presentation:class="title | outline | subtitle | text | graphic | object | chart | table | orgchart | page | notes | handout | header | footer | date-time | page-number"   +

presentation:class-names Attribute

@@ -35664,7 +44831,7 @@

presentation:class-names Attr Datatypes - NCName  + NCName    @@ -35672,6 +44839,12 @@

presentation:class-names Attr   + + RNG Relations + presentation:class-names=" +START_list(<NCName>)* +END_list"   +

presentation:delay Attribute

@@ -35688,7 +44861,7 @@

presentation:delay Attribute Datatypes - duration  + duration    @@ -35696,6 +44869,10 @@

presentation:delay Attribute   + + RNG Relations + presentation:delay="<duration>"   +

presentation:direction Attribute

@@ -35718,36 +44895,40 @@

presentation:direction Attribut Values - "clockwise"  - "counter-clockwise"  - "from-bottom"  - "from-center"  - "from-left"  - "from-lower-left"  - "from-lower-right"  - "from-right"  - "from-top"  - "from-upper-left"  - "from-upper-right"  - "horizontal"  - "none"  - "path"  - "spiral-inward-left"  - "spiral-inward-right"  - "spiral-outward-left"  - "spiral-outward-right"  - "to-bottom"  - "to-center"  - "to-left"  - "to-lower-left"  - "to-lower-right"  - "to-right"  - "to-top"  - "to-upper-left"  - "to-upper-right"  - "vertical"  + "clockwise"  + "counter-clockwise"  + "from-bottom"  + "from-center"  + "from-left"  + "from-lower-left"  + "from-lower-right"  + "from-right"  + "from-top"  + "from-upper-left"  + "from-upper-right"  + "horizontal"  + "none"  + "path"  + "spiral-inward-left"  + "spiral-inward-right"  + "spiral-outward-left"  + "spiral-outward-right"  + "to-bottom"  + "to-center"  + "to-left"  + "to-lower-left"  + "to-lower-right"  + "to-right"  + "to-top"  + "to-upper-left"  + "to-upper-right"  + "vertical"    + + RNG Relations + presentation:direction="none | from-left | from-top | from-right | from-bottom | from-center | from-upper-left | from-upper-right | from-lower-left | from-lower-right | to-left | to-top | to-right | to-bottom | to-upper-left | to-upper-right | to-lower-right | to-lower-left | path | spiral-inward-left | spiral-inward-right | spiral-outward-left | spiral-outward-right | vertical | horizontal | to-center | clockwise | counter-clockwise"   +

presentation:display-date-time Attribute (new in ODF 1.2)

@@ -35766,10 +44947,14 @@

presentation:display-da Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + presentation:display-date-time="<boolean>"   +

presentation:display-footer Attribute (new in ODF 1.2)

@@ -35788,10 +44973,14 @@

presentation:display-foote Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + presentation:display-footer="<boolean>"   +

presentation:display-header Attribute (new in ODF 1.2)

@@ -35810,10 +44999,14 @@

presentation:display-heade Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + presentation:display-header="<boolean>"   +

presentation:display-page-number Attribute (new in ODF 1.2)

@@ -35832,10 +45025,14 @@

presentation:display- Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + presentation:display-page-number="<boolean>"   +

presentation:duration Attribute (new in ODF 1.2)

@@ -35849,7 +45046,7 @@

presentation:duration Attribute< Datatypes - duration  + duration    @@ -35857,6 +45054,10 @@

presentation:duration Attribute<   + + RNG Relations + presentation:duration="<duration>"   +

presentation:effect Attribute

@@ -35879,25 +45080,29 @@

presentation:effect Attribute< Values - "appear"  - "checkerboard"  - "close"  - "dissolve"  - "fade"  - "hide"  - "laser"  - "lines"  - "move"  - "move-short"  - "none"  - "open"  - "random"  - "rotate"  - "stretch"  - "stripes"  - "wavyline"  + "appear"  + "checkerboard"  + "close"  + "dissolve"  + "fade"  + "hide"  + "laser"  + "lines"  + "move"  + "move-short"  + "none"  + "open"  + "random"  + "rotate"  + "stretch"  + "stripes"  + "wavyline"    + + RNG Relations + presentation:effect="none | fade | move | stripes | open | close | dissolve | wavyline | random | lines | laser | appear | hide | move-short | checkerboard | rotate | stretch"   +

presentation:endless Attribute

@@ -35916,10 +45121,14 @@

presentation:endless Attribute Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + presentation:endless="<boolean>"   +

presentation:force-manual Attribute

@@ -35938,10 +45147,14 @@

presentation:force-manual At Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + presentation:force-manual="<boolean>"   +

presentation:full-screen Attribute

@@ -35960,10 +45173,14 @@

presentation:full-screen Attr Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + presentation:full-screen="<boolean>"   +

presentation:group-id Attribute

@@ -35981,7 +45198,7 @@

presentation:group-id Attribute< Datatypes - string  + string    @@ -35989,6 +45206,10 @@

presentation:group-id Attribute<   + + RNG Relations + presentation:group-id="<string>"   +

presentation:master-element Attribute

@@ -36006,7 +45227,7 @@

presentation:master-elemen Datatypes - IDREF  + IDREF    @@ -36014,6 +45235,10 @@

presentation:master-elemen   + + RNG Relations + presentation:master-element="<IDREF>"   +

presentation:mouse-as-pen Attribute

@@ -36032,10 +45257,14 @@

presentation:mouse-as-pen At Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + presentation:mouse-as-pen="<boolean>"   +

presentation:mouse-visible Attribute

@@ -36054,10 +45283,14 @@

presentation:mouse-visible Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + presentation:mouse-visible="<boolean>"   +

presentation:name Attribute

@@ -36074,7 +45307,7 @@

presentation:name Attribute

Datatypes - string  + string    @@ -36082,6 +45315,10 @@

presentation:name Attribute

  + + RNG Relations + presentation:name="<string>"   +

presentation:node-type Attribute

@@ -36104,15 +45341,19 @@

presentation:node-type Attribut Values - "after-previous"  - "default"  - "interactive-sequence"  - "main-sequence"  - "on-click"  - "timing-root"  - "with-previous"  + "after-previous"  + "default"  + "interactive-sequence"  + "main-sequence"  + "on-click"  + "timing-root"  + "with-previous"    + + RNG Relations + presentation:node-type="default | on-click | with-previous | after-previous | timing-root | main-sequence | interactive-sequence"   +

presentation:object Attribute

@@ -36131,24 +45372,28 @@

presentation:object Attribute< Values - "chart"  - "date-time"  - "footer"  - "graphic"  - "handout"  - "header"  - "notes"  - "object"  - "orgchart"  - "outline"  - "page"  - "page-number"  - "subtitle"  - "table"  - "text"  - "title"  + "chart"  + "date-time"  + "footer"  + "graphic"  + "handout"  + "header"  + "notes"  + "object"  + "orgchart"  + "outline"  + "page"  + "page-number"  + "subtitle"  + "table"  + "text"  + "title"    + + RNG Relations + presentation:object="title | outline | subtitle | text | graphic | object | chart | table | orgchart | page | notes | handout | header | footer | date-time | page-number"   +

presentation:pages Attribute

@@ -36162,7 +45407,7 @@

presentation:pages Attribute Datatypes - string  + string    @@ -36170,6 +45415,10 @@

presentation:pages Attribute   + + RNG Relations + presentation:pages="<string>"   +

presentation:path-id Attribute

@@ -36186,7 +45435,7 @@

presentation:path-id Attribute Datatypes - string  + string    @@ -36194,6 +45443,10 @@

presentation:path-id Attribute   + + RNG Relations + presentation:path-id="<string>"   +

presentation:pause Attribute

@@ -36207,7 +45460,7 @@

presentation:pause Attribute Datatypes - duration  + duration    @@ -36215,6 +45468,10 @@

presentation:pause Attribute   + + RNG Relations + presentation:pause="<duration>"   +

presentation:placeholder Attribute

@@ -36234,10 +45491,14 @@

presentation:placeholder Attr Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + presentation:placeholder="<boolean>"   +

presentation:play-full Attribute

@@ -36256,10 +45517,14 @@

presentation:play-full Attribut Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + presentation:play-full="<boolean>"   +

presentation:presentation-page-layout-name Attribute

@@ -36274,7 +45539,7 @@

presentatio Datatypes - NCName  + NCName    @@ -36282,6 +45547,10 @@

presentatio   + + RNG Relations + presentation:presentation-page-layout-name="(<NCName>)?"   +

presentation:preset-class Attribute

@@ -36304,15 +45573,19 @@

presentation:preset-class At Values - "custom"  - "emphasis"  - "entrance"  - "exit"  - "media-call"  - "motion-path"  - "ole-action"  + "custom"  + "emphasis"  + "entrance"  + "exit"  + "media-call"  + "motion-path"  + "ole-action"    + + RNG Relations + presentation:preset-class="custom | entrance | exit | emphasis | motion-path | ole-action | media-call"   +

presentation:preset-id Attribute

@@ -36330,7 +45603,7 @@

presentation:preset-id Attribut Datatypes - string  + string    @@ -36338,6 +45611,10 @@

presentation:preset-id Attribut   + + RNG Relations + presentation:preset-id="<string>"   +

presentation:preset-sub-type Attribute

@@ -36355,7 +45632,7 @@

presentation:preset-sub-t Datatypes - string  + string    @@ -36363,6 +45640,10 @@

presentation:preset-sub-t   + + RNG Relations + presentation:preset-sub-type="<string>"   +

presentation:show Attribute

@@ -36376,7 +45657,7 @@

presentation:show Attribute

Datatypes - string  + string    @@ -36384,6 +45665,10 @@

presentation:show Attribute

  + + RNG Relations + presentation:show="<string>"   +

presentation:show-end-of-presentation-slide Attribute (new in ODF 1.1)

@@ -36402,10 +45687,14 @@

presentati Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + presentation:show-end-of-presentation-slide="<boolean>"   +

presentation:show-logo Attribute

@@ -36424,10 +45713,14 @@

presentation:show-logo Attribut Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + presentation:show-logo="<boolean>"   +

presentation:source Attribute

@@ -36446,10 +45739,14 @@

presentation:source Attribute< Values - "current-date"  - "fixed"  + "current-date"  + "fixed"    + + RNG Relations + presentation:source="fixed | current-date"   +

presentation:speed Attribute

@@ -36473,11 +45770,15 @@

presentation:speed Attribute Values - "fast"  - "medium"  - "slow"  + "fast"  + "medium"  + "slow"    + + RNG Relations + presentation:speed="slow | medium | fast"   +

presentation:start-page Attribute

@@ -36491,7 +45792,7 @@

presentation:start-page Attrib Datatypes - string  + string    @@ -36499,6 +45800,10 @@

presentation:start-page Attrib   + + RNG Relations + presentation:start-page="<string>"   +

presentation:start-scale Attribute

@@ -36516,7 +45821,7 @@

presentation:start-scale Attr Datatypes - string  + string    @@ -36524,6 +45829,10 @@

presentation:start-scale Attr   + + RNG Relations + presentation:start-scale="string]"   +

presentation:start-with-navigator Attribute

@@ -36542,10 +45851,14 @@

presentation:start-w Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + presentation:start-with-navigator="<boolean>"   +

presentation:stay-on-top Attribute

@@ -36564,10 +45877,14 @@

presentation:stay-on-top Attr Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + presentation:stay-on-top="<boolean>"   +

presentation:style-name Attribute

@@ -36602,7 +45919,7 @@

presentation:style-name Attrib Datatypes - NCName  + NCName    @@ -36610,6 +45927,10 @@

presentation:style-name Attrib   + + RNG Relations + presentation:style-name="(<NCName>)?"   +

presentation:transition-on-click Attribute

@@ -36628,10 +45949,14 @@

presentation:transiti Values - "disabled"  - "enabled"  + "disabled"  + "enabled"    + + RNG Relations + presentation:transition-on-click="enabled | disabled"   +

presentation:transition-speed Attribute (new in ODF 1.2)

@@ -36650,11 +45975,15 @@

presentation:transition- Values - "fast"  - "medium"  - "slow"  + "fast"  + "medium"  + "slow"    + + RNG Relations + presentation:transition-speed="slow | medium | fast"   +

presentation:transition-style Attribute (new in ODF 1.2)

@@ -36673,72 +46002,76 @@

presentation:transition- Values - "clockwise"  - "close"  - "close-horizontal"  - "close-vertical"  - "counterclockwise"  - "dissolve"  - "fade-from-bottom"  - "fade-from-center"  - "fade-from-left"  - "fade-from-lowerleft"  - "fade-from-lowerright"  - "fade-from-right"  - "fade-from-top"  - "fade-from-upperleft"  - "fade-from-upperright"  - "fade-to-center"  - "fly-away"  - "horizontal-checkerboard"  - "horizontal-lines"  - "horizontal-stripes"  - "interlocking-horizontal-left"  - "interlocking-horizontal-right"  - "interlocking-vertical-bottom"  - "interlocking-vertical-top"  - "melt"  - "move-from-bottom"  - "move-from-left"  - "move-from-lowerleft"  - "move-from-lowerright"  - "move-from-right"  - "move-from-top"  - "move-from-upperleft"  - "move-from-upperright"  - "none"  - "open"  - "open-horizontal"  - "open-vertical"  - "random"  - "roll-from-bottom"  - "roll-from-left"  - "roll-from-right"  - "roll-from-top"  - "spiralin-left"  - "spiralin-right"  - "spiralout-left"  - "spiralout-right"  - "stretch-from-bottom"  - "stretch-from-left"  - "stretch-from-right"  - "stretch-from-top"  - "uncover-to-bottom"  - "uncover-to-left"  - "uncover-to-lowerleft"  - "uncover-to-lowerright"  - "uncover-to-right"  - "uncover-to-top"  - "uncover-to-upperleft"  - "uncover-to-upperright"  - "vertical-checkerboard"  - "vertical-lines"  - "vertical-stripes"  - "wavyline-from-bottom"  - "wavyline-from-left"  - "wavyline-from-right"  - "wavyline-from-top"  -  + "clockwise"  + "close"  + "close-horizontal"  + "close-vertical"  + "counterclockwise"  + "dissolve"  + "fade-from-bottom"  + "fade-from-center"  + "fade-from-left"  + "fade-from-lowerleft"  + "fade-from-lowerright"  + "fade-from-right"  + "fade-from-top"  + "fade-from-upperleft"  + "fade-from-upperright"  + "fade-to-center"  + "fly-away"  + "horizontal-checkerboard"  + "horizontal-lines"  + "horizontal-stripes"  + "interlocking-horizontal-left"  + "interlocking-horizontal-right"  + "interlocking-vertical-bottom"  + "interlocking-vertical-top"  + "melt"  + "move-from-bottom"  + "move-from-left"  + "move-from-lowerleft"  + "move-from-lowerright"  + "move-from-right"  + "move-from-top"  + "move-from-upperleft"  + "move-from-upperright"  + "none"  + "open"  + "open-horizontal"  + "open-vertical"  + "random"  + "roll-from-bottom"  + "roll-from-left"  + "roll-from-right"  + "roll-from-top"  + "spiralin-left"  + "spiralin-right"  + "spiralout-left"  + "spiralout-right"  + "stretch-from-bottom"  + "stretch-from-left"  + "stretch-from-right"  + "stretch-from-top"  + "uncover-to-bottom"  + "uncover-to-left"  + "uncover-to-lowerleft"  + "uncover-to-lowerright"  + "uncover-to-right"  + "uncover-to-top"  + "uncover-to-upperleft"  + "uncover-to-upperright"  + "vertical-checkerboard"  + "vertical-lines"  + "vertical-stripes"  + "wavyline-from-bottom"  + "wavyline-from-left"  + "wavyline-from-right"  + "wavyline-from-top"  +  + + + RNG Relations + presentation:transition-style="none | fade-from-left | fade-from-top | fade-from-right | fade-from-bottom | fade-from-upperleft | fade-from-upperright | fade-from-lowerleft | fade-from-lowerright | move-from-left | move-from-top | move-from-right | move-from-bottom | move-from-upperleft | move-from-upperright | move-from-lowerleft | move-from-lowerright | uncover-to-left | uncover-to-top | uncover-to-right | uncover-to-bottom | uncover-to-upperleft | uncover-to-upperright | uncover-to-lowerleft | uncover-to-lowerright | fade-to-center | fade-from-center | vertical-stripes | horizontal-stripes | clockwise | counterclockwise | open-vertical | open-horizontal | close-vertical | close-horizontal | wavyline-from-left | wavyline-from-top | wavyline-from-right | wavyline-from-bottom | spiralin-left | spiralin-right | spiralout-left | spiralout-right | roll-from-top | roll-from-left | roll-from-right | roll-from-bottom | stretch-from-left | stretch-from-top | stretch-from-right | stretch-from-bottom | vertical-lines | horizontal-lines | dissolve | random | vertical-checkerboard | horizontal-checkerboard | interlocking-horizontal-left | interlocking-horizontal-right | interlocking-vertical-top | interlocking-vertical-bottom | fly-away | open | close | melt"  
@@ -36758,11 +46091,15 @@

presentation:transition-t Values - "automatic"  - "manual"  - "semi-automatic"  + "automatic"  + "manual"  + "semi-automatic"    + + RNG Relations + presentation:transition-type="manual | automatic | semi-automatic"   +

presentation:use-date-time-name Attribute

@@ -36778,7 +46115,7 @@

presentation:use-date- Datatypes - string  + string    @@ -36786,6 +46123,10 @@

presentation:use-date-   + + RNG Relations + presentation:use-date-time-name="<string>"   +

presentation:use-footer-name Attribute

@@ -36801,7 +46142,7 @@

presentation:use-footer-n Datatypes - string  + string    @@ -36809,6 +46150,10 @@

presentation:use-footer-n   + + RNG Relations + presentation:use-footer-name="<string>"   +

presentation:use-header-name Attribute

@@ -36824,7 +46169,7 @@

presentation:use-header-n Datatypes - string  + string    @@ -36832,6 +46177,10 @@

presentation:use-header-n   + + RNG Relations + presentation:use-header-name="<string>"   +

presentation:user-transformed Attribute

@@ -36851,10 +46200,14 @@

presentation:user-transf Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + presentation:user-transformed="<boolean>"   +

presentation:verb Attribute

@@ -36868,7 +46221,7 @@

presentation:verb Attribute

Datatypes - nonNegativeInteger  + nonNegativeInteger    @@ -36876,6 +46229,10 @@

presentation:verb Attribute

  + + RNG Relations + presentation:verb="<nonNegativeInteger>"   +

presentation:visibility Attribute (new in ODF 1.2)

@@ -36894,10 +46251,14 @@

presentation:visibility Attrib Values - "hidden"  - "visible"  + "hidden"  + "visible"    + + RNG Relations + presentation:visibility="visible | hidden"   +

script:event-name Attribute

@@ -36912,7 +46273,7 @@

script:event-name Attribute

Datatypes - string  + string    @@ -36920,6 +46281,10 @@

script:event-name Attribute

  + + RNG Relations + script:event-name="<string>"   +

script:language Attribute

@@ -36935,7 +46300,7 @@

script:language Attribute

Datatypes - string  + string    @@ -36943,6 +46308,10 @@

script:language Attribute

  + + RNG Relations + script:language="<string>"   +

script:macro-name Attribute

@@ -36956,7 +46325,7 @@

script:macro-name Attribute

Datatypes - string  + string    @@ -36964,6 +46333,10 @@

script:macro-name Attribute

  + + RNG Relations + script:macro-name="<string>"   +

smil:accelerate Attribute

@@ -36985,7 +46358,7 @@

smil:accelerate Attribute

Datatypes - decimal  + decimal    @@ -36993,6 +46366,10 @@

smil:accelerate Attribute

  + + RNG Relations + smil:accelerate="decimal]"   +

smil:accumulate Attribute

@@ -37016,10 +46393,14 @@

smil:accumulate Attribute

Values - "none"  - "sum"  + "none"  + "sum"    + + RNG Relations + smil:accumulate="none | sum"   +

smil:additive Attribute

@@ -37043,10 +46424,14 @@

smil:additive Attribute

Values - "replace"  - "sum"  + "replace"  + "sum"    + + RNG Relations + smil:additive="replace | sum"   +

smil:attributeName Attribute

@@ -37064,7 +46449,7 @@

smil:attributeName Attribute Datatypes - string  + string    @@ -37072,6 +46457,10 @@

smil:attributeName Attribute   + + RNG Relations + smil:attributeName="<string>"   +

smil:autoReverse Attribute

@@ -37098,10 +46487,14 @@

smil:autoReverse Attribute

Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + smil:autoReverse="<boolean>"   +

smil:begin Attribute

@@ -37125,7 +46518,7 @@

smil:begin Attribute

Datatypes - string  + string    @@ -37133,6 +46526,10 @@

smil:begin Attribute

  + + RNG Relations + smil:begin="<string>"   +

smil:by Attribute

@@ -37150,7 +46547,7 @@

smil:by Attribute

Datatypes - string  + string    @@ -37158,6 +46555,10 @@

smil:by Attribute

  + + RNG Relations + smil:by="<string>"   +

smil:calcMode Attribute

@@ -37179,12 +46580,16 @@

smil:calcMode Attribute

Values - "discrete"  - "linear"  - "paced"  - "spline"  + "discrete"  + "linear"  + "paced"  + "spline"    + + RNG Relations + smil:calcMode="discrete | linear | paced | spline"   +

smil:decelerate Attribute

@@ -37206,7 +46611,7 @@

smil:decelerate Attribute

Datatypes - decimal  + decimal    @@ -37214,6 +46619,10 @@

smil:decelerate Attribute

  + + RNG Relations + smil:decelerate="decimal]"   +

smil:direction Attribute

@@ -37233,10 +46642,14 @@

smil:direction Attribute

Values - "forward"  - "reverse"  + "forward"  + "reverse"    + + RNG Relations + smil:direction="forward | reverse"   +

smil:dur Attribute

@@ -37259,7 +46672,7 @@

smil:dur Attribute

Datatypes - string  + string    @@ -37267,6 +46680,10 @@

smil:dur Attribute

  + + RNG Relations + smil:dur="<string>"   +

smil:end Attribute

@@ -37290,7 +46707,7 @@

smil:end Attribute

Datatypes - string  + string    @@ -37298,6 +46715,10 @@

smil:end Attribute

  + + RNG Relations + smil:end="<string>"   +

smil:endsync Attribute

@@ -37313,18 +46734,22 @@

smil:endsync Attribute

Datatypes - IDREF  + IDREF    Values - "all"  - "first"  - "last"  - "media"  + "all"  + "first"  + "last"  + "media"    + + RNG Relations + smil:endsync="first | last | all | media | <IDREF>"   +

smil:fadeColor Attribute

@@ -37339,7 +46764,7 @@

smil:fadeColor Attribute

Datatypes - string  + string    @@ -37347,6 +46772,10 @@

smil:fadeColor Attribute

  + + RNG Relations + smil:fadeColor="string]"   +

smil:fill Attribute

@@ -37374,14 +46803,18 @@

smil:fill Attribute

Values - "auto"  - "default"  - "freeze"  - "hold"  - "remove"  - "transition"  + "auto"  + "default"  + "freeze"  + "hold"  + "remove"  + "transition"    + + RNG Relations + smil:fill="remove | freeze | hold | auto | default | transition"   +

smil:fillDefault Attribute

@@ -37409,14 +46842,18 @@

smil:fillDefault Attribute

Values - "auto"  - "freeze"  - "hold"  - "inherit"  - "remove"  - "transition"  + "auto"  + "freeze"  + "hold"  + "inherit"  + "remove"  + "transition"    + + RNG Relations + smil:fillDefault="remove | freeze | hold | transition | auto | inherit"   +

smil:from Attribute

@@ -37434,7 +46871,7 @@

smil:from Attribute

Datatypes - string  + string    @@ -37442,6 +46879,10 @@

smil:from Attribute

  + + RNG Relations + smil:from="<string>"   +

smil:keySplines Attribute

@@ -37457,7 +46898,7 @@

smil:keySplines Attribute

Datatypes - string  + string    @@ -37465,6 +46906,10 @@

smil:keySplines Attribute

  + + RNG Relations + smil:keySplines="<string>"   +

smil:keyTimes Attribute

@@ -37480,7 +46925,7 @@

smil:keyTimes Attribute

Datatypes - string  + string    @@ -37488,6 +46933,10 @@

smil:keyTimes Attribute

  + + RNG Relations + smil:keyTimes="<string>"   +

smil:mode Attribute

@@ -37506,10 +46955,14 @@

smil:mode Attribute

Values - "in"  - "out"  + "in"  + "out"    + + RNG Relations + smil:mode="in | out"   +

smil:repeatCount Attribute

@@ -37532,15 +46985,19 @@

smil:repeatCount Attribute

Datatypes - decimal  + decimal    Values - "indefinite"  + "indefinite"    + + RNG Relations + smil:repeatCount="decimal] | indefinite"   +

smil:repeatDur Attribute

@@ -37563,7 +47020,7 @@

smil:repeatDur Attribute

Datatypes - string  + string    @@ -37571,6 +47028,10 @@

smil:repeatDur Attribute

  + + RNG Relations + smil:repeatDur="<string>"   +

smil:restart Attribute

@@ -37598,12 +47059,16 @@

smil:restart Attribute

Values - "always"  - "default"  - "never"  - "whenNotActive"  + "always"  + "default"  + "never"  + "whenNotActive"    + + RNG Relations + smil:restart="never | always | whenNotActive | default"   +

smil:restartDefault Attribute

@@ -37631,12 +47096,16 @@

smil:restartDefault Attribute< Values - "always"  - "inherit"  - "never"  - "whenNotActive"  + "always"  + "inherit"  + "never"  + "whenNotActive"    + + RNG Relations + smil:restartDefault="never | always | whenNotActive | inherit"   +

smil:subtype Attribute

@@ -37651,7 +47120,7 @@

smil:subtype Attribute

Datatypes - string  + string    @@ -37659,6 +47128,10 @@

smil:subtype Attribute

  + + RNG Relations + smil:subtype="<string>"   +

smil:targetElement Attribute

@@ -37679,7 +47152,7 @@

smil:targetElement Attribute Datatypes - IDREF  + IDREF    @@ -37687,6 +47160,10 @@

smil:targetElement Attribute   + + RNG Relations + smil:targetElement="<IDREF>"   +

smil:to Attribute

@@ -37705,7 +47182,7 @@

smil:to Attribute

Datatypes - string  + string    @@ -37713,6 +47190,10 @@

smil:to Attribute

  + + RNG Relations + smil:to="<string>"   +

smil:type Attribute

@@ -37727,7 +47208,7 @@

smil:type Attribute

Datatypes - string  + string    @@ -37735,6 +47216,10 @@

smil:type Attribute

  + + RNG Relations + smil:type="<string>"   +

smil:values Attribute

@@ -37752,7 +47237,7 @@

smil:values Attribute

Datatypes - string  + string    @@ -37760,6 +47245,10 @@

smil:values Attribute

  + + RNG Relations + smil:values="<string>"   +

style:adjustment Attribute (new in ODF 1.2)

@@ -37778,11 +47267,15 @@

style:adjustment Attribute ( Values - "center"  - "left"  - "right"  + "center"  + "left"  + "right"    + + RNG Relations + style:adjustment="left | center | right"   +

style:apply-style-name Attribute

@@ -37796,7 +47289,7 @@

style:apply-style-name Attribut Datatypes - NCName  + NCName    @@ -37804,6 +47297,10 @@

style:apply-style-name Attribut   + + RNG Relations + style:apply-style-name="(<NCName>)?"   +

style:auto-text-indent Attribute (new in ODF 1.2)

@@ -37822,10 +47319,14 @@

style:auto-text-indent Attribut Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + style:auto-text-indent="<boolean>"   +

style:auto-update Attribute

@@ -37844,10 +47345,14 @@

style:auto-update Attribute

Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + style:auto-update="<boolean>"   +

style:background-transparency Attribute (new in ODF 1.2)

@@ -37862,7 +47367,7 @@

style:background-transpa Datatypes - string  + string    @@ -37870,6 +47375,10 @@

style:background-transpa   + + RNG Relations + style:background-transparency="string]"   +

style:base-cell-address Attribute

@@ -37883,7 +47392,7 @@

style:base-cell-address Attrib Datatypes - string  + string    @@ -37891,6 +47400,10 @@

style:base-cell-address Attrib   + + RNG Relations + style:base-cell-address="string]"   +

style:border-line-width Attribute (new in ODF 1.2)

@@ -37908,7 +47421,7 @@

style:border-line-width Attrib Datatypes - string  + string    @@ -37916,6 +47429,12 @@

style:border-line-width Attrib   + + RNG Relations + style:border-line-width=" +START_liststring]string]string] +END_list"   +

style:border-line-width-bottom Attribute (new in ODF 1.2)

@@ -37933,7 +47452,7 @@

style:border-line-width Datatypes - string  + string    @@ -37941,6 +47460,12 @@

style:border-line-width   + + RNG Relations + style:border-line-width-bottom=" +START_liststring]string]string] +END_list"   +

style:border-line-width-left Attribute (new in ODF 1.2)

@@ -37958,7 +47483,7 @@

style:border-line-width-l Datatypes - string  + string    @@ -37966,6 +47491,12 @@

style:border-line-width-l   + + RNG Relations + style:border-line-width-left=" +START_liststring]string]string] +END_list"   +

style:border-line-width-right Attribute (new in ODF 1.2)

@@ -37983,7 +47514,7 @@

style:border-line-width- Datatypes - string  + string    @@ -37991,6 +47522,12 @@

style:border-line-width-   + + RNG Relations + style:border-line-width-right=" +START_liststring]string]string] +END_list"   +

style:border-line-width-top Attribute (new in ODF 1.2)

@@ -38008,7 +47545,7 @@

style:border-line-width-to Datatypes - string  + string    @@ -38016,6 +47553,12 @@

style:border-line-width-to   + + RNG Relations + style:border-line-width-top=" +START_liststring]string]string] +END_list"   +

style:cell-protect Attribute (new in ODF 1.2)

@@ -38034,12 +47577,18 @@

style:cell-protect Attribute&nb Values - "formula-hidden"  - "hidden-and-protected"  - "none"  - "protected"  + "formula-hidden"  + "hidden-and-protected"  + "none"  + "protected"    + + RNG Relations + style:cell-protect="none | hidden-and-protected | +START_list(protected | formula-hidden)+ +END_list"   +

style:char Attribute (new in ODF 1.2)

@@ -38053,7 +47602,7 @@

style:char Attribute (new in ODF 1 Datatypes - string  + string    @@ -38061,6 +47610,10 @@

style:char Attribute (new in ODF 1   + + RNG Relations + style:char="string]"   +

style:class Attribute

@@ -38074,7 +47627,7 @@

style:class Attribute

Datatypes - string  + string    @@ -38082,6 +47635,10 @@

style:class Attribute

  + + RNG Relations + style:class="<string>"   +

style:color Attribute (new in ODF 1.2)

@@ -38096,7 +47653,7 @@

style:color Attribute (new in ODF Datatypes - string  + string    @@ -38104,6 +47661,10 @@

style:color Attribute (new in ODF   + + RNG Relations + style:color="string]"   +

style:column-width Attribute (new in ODF 1.2)

@@ -38117,7 +47678,7 @@

style:column-width Attribute&nb Datatypes - string  + string    @@ -38125,6 +47686,10 @@

style:column-width Attribute&nb   + + RNG Relations + style:column-width="string]"   +

style:condition Attribute

@@ -38138,7 +47703,7 @@

style:condition Attribute

Datatypes - string  + string    @@ -38146,6 +47711,10 @@

style:condition Attribute

  + + RNG Relations + style:condition="<string>"   +

style:country-asian Attribute (new in ODF 1.2)

@@ -38159,7 +47728,7 @@

style:country-asian Attribute& Datatypes - token  + token    @@ -38167,6 +47736,10 @@

style:country-asian Attribute&   + + RNG Relations + style:country-asian="token]"   +

style:country-complex Attribute (new in ODF 1.2)

@@ -38180,7 +47753,7 @@

style:country-complex Attribute< Datatypes - token  + token    @@ -38188,6 +47761,10 @@

style:country-complex Attribute<   + + RNG Relations + style:country-complex="token]"   +

style:data-style-name Attribute

@@ -38221,7 +47798,7 @@

style:data-style-name Attribute< Datatypes - NCName  + NCName    @@ -38229,6 +47806,10 @@

style:data-style-name Attribute<   + + RNG Relations + style:data-style-name="(<NCName>)?"   +

style:decimal-places Attribute (new in ODF 1.2)

@@ -38242,7 +47823,7 @@

style:decimal-places Attribute Datatypes - nonNegativeInteger  + nonNegativeInteger    @@ -38250,6 +47831,10 @@

style:decimal-places Attribute   + + RNG Relations + style:decimal-places="<nonNegativeInteger>"   +

style:default-outline-level Attribute

@@ -38263,7 +47848,7 @@

style:default-outline-leve Datatypes - positiveInteger  + positiveInteger    @@ -38271,6 +47856,10 @@

style:default-outline-leve   + + RNG Relations + style:default-outline-level="(<positiveInteger>)?"   +

style:diagonal-bl-tr Attribute (new in ODF 1.2)

@@ -38284,7 +47873,7 @@

style:diagonal-bl-tr Attribute Datatypes - string  + string    @@ -38292,6 +47881,10 @@

style:diagonal-bl-tr Attribute   + + RNG Relations + style:diagonal-bl-tr="<string>"   +

style:diagonal-bl-tr-widths Attribute (new in ODF 1.2)

@@ -38305,7 +47898,7 @@

style:diagonal-bl-tr-width Datatypes - string  + string    @@ -38313,6 +47906,12 @@

style:diagonal-bl-tr-width   + + RNG Relations + style:diagonal-bl-tr-widths=" +START_liststring]string]string] +END_list"   +

style:diagonal-tl-br Attribute (new in ODF 1.2)

@@ -38326,7 +47925,7 @@

style:diagonal-tl-br Attribute Datatypes - string  + string    @@ -38334,6 +47933,10 @@

style:diagonal-tl-br Attribute   + + RNG Relations + style:diagonal-tl-br="<string>"   +

style:diagonal-tl-br-widths Attribute (new in ODF 1.2)

@@ -38347,7 +47950,7 @@

style:diagonal-tl-br-width Datatypes - string  + string    @@ -38355,6 +47958,12 @@

style:diagonal-tl-br-width   + + RNG Relations + style:diagonal-tl-br-widths=" +START_liststring]string]string] +END_list"   +

style:direction Attribute (new in ODF 1.2)

@@ -38374,10 +47983,14 @@

style:direction Attribute (ne Values - "ltr"  - "ttb"  + "ltr"  + "ttb"    + + RNG Relations + style:direction="ltr | ttb"   +

style:display Attribute

@@ -38399,10 +48012,14 @@

style:display Attribute

Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + style:display="<boolean>"   +

style:display-name Attribute

@@ -38426,7 +48043,7 @@

style:display-name Attribute Datatypes - string  + string    @@ -38434,6 +48051,10 @@

style:display-name Attribute   + + RNG Relations + style:display-name="<string>"   +

style:distance Attribute (new in ODF 1.2)

@@ -38447,7 +48068,7 @@

style:distance Attribute (new Datatypes - string  + string    @@ -38455,6 +48076,10 @@

style:distance Attribute (new   + + RNG Relations + style:distance="string]"   +

style:distance-after-sep Attribute (new in ODF 1.2)

@@ -38468,7 +48093,7 @@

style:distance-after-sep Attr Datatypes - string  + string    @@ -38476,6 +48101,10 @@

style:distance-after-sep Attr   + + RNG Relations + style:distance-after-sep="string]"   +

style:distance-before-sep Attribute (new in ODF 1.2)

@@ -38489,7 +48118,7 @@

style:distance-before-sep At Datatypes - string  + string    @@ -38497,6 +48126,10 @@

style:distance-before-sep At   + + RNG Relations + style:distance-before-sep="string]"   +

style:dynamic-spacing Attribute (new in ODF 1.2)

@@ -38515,10 +48148,14 @@

style:dynamic-spacing Attribute< Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + style:dynamic-spacing="<boolean>"   +

style:editable Attribute (new in ODF 1.2)

@@ -38538,10 +48175,14 @@

style:editable Attribute (new Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + style:editable="<boolean>"   +

style:family[1] Attribute

@@ -38562,9 +48203,13 @@

style:family[1] Attribute

Values - "paragraph"  + "table-row"    + + RNG Relations + style:family="table-row"   +

style:family[2] Attribute

@@ -38585,9 +48230,13 @@

style:family[2] Attribute

Values - "table-cell"  + "paragraph"    + + RNG Relations + style:family="paragraph"   +

style:family[3] Attribute

@@ -38608,9 +48257,13 @@

style:family[3] Attribute

Values - "section"  + "drawing-page"    + + RNG Relations + style:family="drawing-page"   +

style:family[4] Attribute

@@ -38631,9 +48284,13 @@

style:family[4] Attribute

Values - "table-row"  + "section"    + + RNG Relations + style:family="section"   +

style:family[5] Attribute

@@ -38654,9 +48311,13 @@

style:family[5] Attribute

Values - "table"  + "table-cell"    + + RNG Relations + style:family="table-cell"   +

style:family[6] Attribute

@@ -38677,9 +48338,13 @@

style:family[6] Attribute

Values - "drawing-page"  + "table"    + + RNG Relations + style:family="table"   +

style:family[7] Attribute

@@ -38700,9 +48365,13 @@

style:family[7] Attribute

Values - "ruby"  + "ruby"    + + RNG Relations + style:family="ruby"   +

style:family[8] Attribute

@@ -38723,9 +48392,13 @@

style:family[8] Attribute

Values - "chart"  + "text"    + + RNG Relations + style:family="text"   +

style:family[9] Attribute

@@ -38746,9 +48419,13 @@

style:family[9] Attribute

Values - "text"  + "table-column"    + + RNG Relations + style:family="table-column"   +

style:family[10] Attribute

@@ -38769,9 +48446,13 @@

style:family[10] Attribute

Values - "table-column"  + "chart"    + + RNG Relations + style:family="chart"   +

style:family[11] Attribute

@@ -38792,10 +48473,14 @@

style:family[11] Attribute

Values - "graphic"  - "presentation"  + "graphic"  + "presentation"    + + RNG Relations + style:family="graphic | presentation"   +

style:filter-name Attribute (new in ODF 1.2)

@@ -38809,7 +48494,7 @@

style:filter-name Attribute  Datatypes - string  + string    @@ -38817,6 +48502,10 @@

style:filter-name Attribute    + + RNG Relations + style:filter-name="<string>"   +

style:first-page-number Attribute (new in ODF 1.2)

@@ -38830,15 +48519,19 @@

style:first-page-number Attrib Datatypes - positiveInteger  + positiveInteger    Values - "continue"  + "continue"    + + RNG Relations + style:first-page-number="<positiveInteger> | continue"   +

style:flow-with-text Attribute (new in ODF 1.2)

@@ -38857,10 +48550,14 @@

style:flow-with-text Attribute Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + style:flow-with-text="<boolean>"   +

style:font-adornments Attribute

@@ -38874,7 +48571,7 @@

style:font-adornments Attribute< Datatypes - string  + string    @@ -38882,6 +48579,10 @@

style:font-adornments Attribute<   + + RNG Relations + style:font-adornments="<string>"   +

style:font-charset Attribute

@@ -38896,7 +48597,7 @@

style:font-charset Attribute Datatypes - string  + string    @@ -38904,6 +48605,10 @@

style:font-charset Attribute   + + RNG Relations + style:font-charset="string]"   +

style:font-charset-asian Attribute (new in ODF 1.2)

@@ -38917,7 +48622,7 @@

style:font-charset-asian Attr Datatypes - string  + string    @@ -38925,6 +48630,10 @@

style:font-charset-asian Attr   + + RNG Relations + style:font-charset-asian="string]"   +

style:font-charset-complex Attribute (new in ODF 1.2)

@@ -38938,7 +48647,7 @@

style:font-charset-complex Datatypes - string  + string    @@ -38946,6 +48655,10 @@

style:font-charset-complex   + + RNG Relations + style:font-charset-complex="string]"   +

style:font-family-asian Attribute (new in ODF 1.2)

@@ -38959,7 +48672,7 @@

style:font-family-asian Attrib Datatypes - string  + string    @@ -38967,6 +48680,10 @@

style:font-family-asian Attrib   + + RNG Relations + style:font-family-asian="<string>"   +

style:font-family-complex Attribute (new in ODF 1.2)

@@ -38980,7 +48697,7 @@

style:font-family-complex At Datatypes - string  + string    @@ -38988,6 +48705,10 @@

style:font-family-complex At   + + RNG Relations + style:font-family-complex="<string>"   +

style:font-family-generic Attribute

@@ -39007,14 +48728,18 @@

style:font-family-generic At Values - "decorative"  - "modern"  - "roman"  - "script"  - "swiss"  - "system"  + "decorative"  + "modern"  + "roman"  + "script"  + "swiss"  + "system"    + + RNG Relations + style:font-family-generic="roman | swiss | modern | decorative | script | system"   +

style:font-family-generic-asian Attribute (new in ODF 1.2)

@@ -39033,14 +48758,18 @@

style:font-family-gene Values - "decorative"  - "modern"  - "roman"  - "script"  - "swiss"  - "system"  + "decorative"  + "modern"  + "roman"  + "script"  + "swiss"  + "system"    + + RNG Relations + style:font-family-generic-asian="roman | swiss | modern | decorative | script | system"   +

style:font-family-generic-complex Attribute (new in ODF 1.2)

@@ -39059,14 +48788,18 @@

style:font-family-ge Values - "decorative"  - "modern"  - "roman"  - "script"  - "swiss"  - "system"  + "decorative"  + "modern"  + "roman"  + "script"  + "swiss"  + "system"    + + RNG Relations + style:font-family-generic-complex="roman | swiss | modern | decorative | script | system"   +

style:font-independent-line-spacing Attribute (new in ODF 1.2)

@@ -39085,10 +48818,14 @@

style:font-indepen Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + style:font-independent-line-spacing="<boolean>"   +

style:font-name Attribute (new in ODF 1.2)

@@ -39103,7 +48840,7 @@

style:font-name Attribute (ne Datatypes - string  + string    @@ -39111,6 +48848,10 @@

style:font-name Attribute (ne   + + RNG Relations + style:font-name="<string>"   +

style:font-name-asian Attribute (new in ODF 1.2)

@@ -39124,7 +48865,7 @@

style:font-name-asian Attribute< Datatypes - string  + string    @@ -39132,6 +48873,10 @@

style:font-name-asian Attribute<   + + RNG Relations + style:font-name-asian="<string>"   +

style:font-name-complex Attribute (new in ODF 1.2)

@@ -39145,7 +48890,7 @@

style:font-name-complex Attrib Datatypes - string  + string    @@ -39153,6 +48898,10 @@

style:font-name-complex Attrib   + + RNG Relations + style:font-name-complex="<string>"   +

style:font-pitch Attribute

@@ -39172,10 +48921,14 @@

style:font-pitch Attribute

Values - "fixed"  - "variable"  + "fixed"  + "variable"    + + RNG Relations + style:font-pitch="fixed | variable"   +

style:font-pitch-asian Attribute (new in ODF 1.2)

@@ -39194,10 +48947,14 @@

style:font-pitch-asian Attribut Values - "fixed"  - "variable"  + "fixed"  + "variable"    + + RNG Relations + style:font-pitch-asian="fixed | variable"   +

style:font-pitch-complex Attribute (new in ODF 1.2)

@@ -39216,10 +48973,14 @@

style:font-pitch-complex Attr Values - "fixed"  - "variable"  + "fixed"  + "variable"    + + RNG Relations + style:font-pitch-complex="fixed | variable"   +

style:font-relief Attribute (new in ODF 1.2)

@@ -39238,11 +48999,15 @@

style:font-relief Attribute  Values - "embossed"  - "engraved"  - "none"  + "embossed"  + "engraved"  + "none"    + + RNG Relations + style:font-relief="none | embossed | engraved"   +

style:font-size-asian Attribute (new in ODF 1.2)

@@ -39256,8 +49021,8 @@

style:font-size-asian Attribute< Datatypes - string  - string  + string  + string    @@ -39265,6 +49030,10 @@

style:font-size-asian Attribute<   + + RNG Relations + style:font-size-asian="string] | string]"   +

style:font-size-complex Attribute (new in ODF 1.2)

@@ -39278,8 +49047,8 @@

style:font-size-complex Attrib Datatypes - string  - string  + string  + string    @@ -39287,6 +49056,10 @@

style:font-size-complex Attrib   + + RNG Relations + style:font-size-complex="string] | string]"   +

style:font-size-rel Attribute (new in ODF 1.2)

@@ -39300,7 +49073,7 @@

style:font-size-rel Attribute& Datatypes - string  + string    @@ -39308,6 +49081,10 @@

style:font-size-rel Attribute&   + + RNG Relations + style:font-size-rel="string]"   +

style:font-size-rel-asian Attribute (new in ODF 1.2)

@@ -39321,7 +49098,7 @@

style:font-size-rel-asian At Datatypes - string  + string    @@ -39329,6 +49106,10 @@

style:font-size-rel-asian At   + + RNG Relations + style:font-size-rel-asian="string]"   +

style:font-size-rel-complex Attribute (new in ODF 1.2)

@@ -39342,7 +49123,7 @@

style:font-size-rel-comple Datatypes - string  + string    @@ -39350,6 +49131,10 @@

style:font-size-rel-comple   + + RNG Relations + style:font-size-rel-complex="string]"   +

style:font-style-asian Attribute (new in ODF 1.2)

@@ -39368,11 +49153,15 @@

style:font-style-asian Attribut Values - "italic"  - "normal"  - "oblique"  + "italic"  + "normal"  + "oblique"    + + RNG Relations + style:font-style-asian="normal | italic | oblique"   +

style:font-style-complex Attribute (new in ODF 1.2)

@@ -39391,11 +49180,15 @@

style:font-style-complex Attr Values - "italic"  - "normal"  - "oblique"  + "italic"  + "normal"  + "oblique"    + + RNG Relations + style:font-style-complex="normal | italic | oblique"   +

style:font-style-name Attribute (new in ODF 1.2)

@@ -39409,7 +49202,7 @@

style:font-style-name Attribute< Datatypes - string  + string    @@ -39417,6 +49210,10 @@

style:font-style-name Attribute<   + + RNG Relations + style:font-style-name="<string>"   +

style:font-style-name-asian Attribute (new in ODF 1.2)

@@ -39430,7 +49227,7 @@

style:font-style-name-asia Datatypes - string  + string    @@ -39438,6 +49235,10 @@

style:font-style-name-asia   + + RNG Relations + style:font-style-name-asian="<string>"   +

style:font-style-name-complex Attribute (new in ODF 1.2)

@@ -39451,7 +49252,7 @@

style:font-style-name-co Datatypes - string  + string    @@ -39459,6 +49260,10 @@

style:font-style-name-co   + + RNG Relations + style:font-style-name-complex="<string>"   +

style:font-weight-asian Attribute (new in ODF 1.2)

@@ -39477,19 +49282,23 @@

style:font-weight-asian Attrib Values - "100"  - "200"  - "300"  - "400"  - "500"  - "600"  - "700"  - "800"  - "900"  - "bold"  - "normal"  + "100"  + "200"  + "300"  + "400"  + "500"  + "600"  + "700"  + "800"  + "900"  + "bold"  + "normal"    + + RNG Relations + style:font-weight-asian="normal | bold | 100 | 200 | 300 | 400 | 500 | 600 | 700 | 800 | 900"   +

style:font-weight-complex Attribute (new in ODF 1.2)

@@ -39508,19 +49317,23 @@

style:font-weight-complex At Values - "100"  - "200"  - "300"  - "400"  - "500"  - "600"  - "700"  - "800"  - "900"  - "bold"  - "normal"  + "100"  + "200"  + "300"  + "400"  + "500"  + "600"  + "700"  + "800"  + "900"  + "bold"  + "normal"    + + RNG Relations + style:font-weight-complex="normal | bold | 100 | 200 | 300 | 400 | 500 | 600 | 700 | 800 | 900"   +

style:footnote-max-height Attribute (new in ODF 1.2)

@@ -39534,7 +49347,7 @@

style:footnote-max-height At Datatypes - string  + string    @@ -39542,6 +49355,10 @@

style:footnote-max-height At   + + RNG Relations + style:footnote-max-height="string]"   +

style:glyph-orientation-vertical Attribute (new in ODF 1.2)

@@ -39560,13 +49377,17 @@

style:glyph-orientati Values - "0"  - "0deg"  - "0grad"  - "0rad"  - "auto"  + "0"  + "0deg"  + "0grad"  + "0rad"  + "auto"    + + RNG Relations + style:glyph-orientation-vertical="auto | 0 | 0deg | 0rad | 0grad"   +

style:height Attribute (new in ODF 1.2)

@@ -39580,7 +49401,7 @@

style:height Attribute (new in O Datatypes - string  + string    @@ -39588,6 +49409,10 @@

style:height Attribute (new in O   + + RNG Relations + style:height="string]"   +

style:horizontal-pos Attribute (new in ODF 1.2)

@@ -39606,15 +49431,19 @@

style:horizontal-pos Attribute Values - "center"  - "from-inside"  - "from-left"  - "inside"  - "left"  - "outside"  - "right"  + "center"  + "from-inside"  + "from-left"  + "inside"  + "left"  + "outside"  + "right"    + + RNG Relations + style:horizontal-pos="left | center | right | from-left | inside | outside | from-inside"   +

style:horizontal-rel Attribute (new in ODF 1.2)

@@ -39633,21 +49462,25 @@

style:horizontal-rel Attribute Values - "char"  - "frame"  - "frame-content"  - "frame-end-margin"  - "frame-start-margin"  - "page"  - "page-content"  - "page-end-margin"  - "page-start-margin"  - "paragraph"  - "paragraph-content"  - "paragraph-end-margin"  - "paragraph-start-margin"  + "char"  + "frame"  + "frame-content"  + "frame-end-margin"  + "frame-start-margin"  + "page"  + "page-content"  + "page-end-margin"  + "page-start-margin"  + "paragraph"  + "paragraph-content"  + "paragraph-end-margin"  + "paragraph-start-margin"    + + RNG Relations + style:horizontal-rel="page | page-content | page-start-margin | page-end-margin | frame | frame-content | frame-start-margin | frame-end-margin | paragraph | paragraph-content | paragraph-start-margin | paragraph-end-margin | char"   +

style:join-border Attribute (new in ODF 1.2)

@@ -39666,10 +49499,14 @@

style:join-border Attribute  Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + style:join-border="<boolean>"   +

style:justify-single-word Attribute (new in ODF 1.2)

@@ -39688,10 +49525,14 @@

style:justify-single-word At Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + style:justify-single-word="<boolean>"   +

style:language-asian Attribute (new in ODF 1.2)

@@ -39705,7 +49546,7 @@

style:language-asian Attribute Datatypes - token  + token    @@ -39713,6 +49554,10 @@

style:language-asian Attribute   + + RNG Relations + style:language-asian="token]"   +

style:language-complex Attribute (new in ODF 1.2)

@@ -39726,7 +49571,7 @@

style:language-complex Attribut Datatypes - token  + token    @@ -39734,6 +49579,10 @@

style:language-complex Attribut   + + RNG Relations + style:language-complex="token]"   +

style:layout-grid-base-height Attribute (new in ODF 1.2)

@@ -39747,7 +49596,7 @@

style:layout-grid-base-h Datatypes - string  + string    @@ -39755,6 +49604,10 @@

style:layout-grid-base-h   + + RNG Relations + style:layout-grid-base-height="string]"   +

style:layout-grid-base-width Attribute (new in ODF 1.2)

@@ -39768,7 +49621,7 @@

style:layout-grid-base-wi Datatypes - string  + string    @@ -39776,6 +49629,10 @@

style:layout-grid-base-wi   + + RNG Relations + style:layout-grid-base-width="string]"   +

style:layout-grid-color Attribute (new in ODF 1.2)

@@ -39789,7 +49646,7 @@

style:layout-grid-color Attrib Datatypes - string  + string    @@ -39797,6 +49654,10 @@

style:layout-grid-color Attrib   + + RNG Relations + style:layout-grid-color="string]"   +

style:layout-grid-display Attribute (new in ODF 1.2)

@@ -39815,10 +49676,14 @@

style:layout-grid-display At Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + style:layout-grid-display="<boolean>"   +

style:layout-grid-lines Attribute (new in ODF 1.2)

@@ -39832,7 +49697,7 @@

style:layout-grid-lines Attrib Datatypes - positiveInteger  + positiveInteger    @@ -39840,6 +49705,10 @@

style:layout-grid-lines Attrib   + + RNG Relations + style:layout-grid-lines="<positiveInteger>"   +

style:layout-grid-mode Attribute (new in ODF 1.2)

@@ -39858,11 +49727,15 @@

style:layout-grid-mode Attribut Values - "both"  - "line"  - "none"  + "both"  + "line"  + "none"    + + RNG Relations + style:layout-grid-mode="none | line | both"   +

style:layout-grid-print Attribute (new in ODF 1.2)

@@ -39881,10 +49754,14 @@

style:layout-grid-print Attrib Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + style:layout-grid-print="<boolean>"   +

style:layout-grid-ruby-below Attribute (new in ODF 1.2)

@@ -39903,10 +49780,14 @@

style:layout-grid-ruby-be Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + style:layout-grid-ruby-below="<boolean>"   +

style:layout-grid-ruby-height Attribute (new in ODF 1.2)

@@ -39920,7 +49801,7 @@

style:layout-grid-ruby-h Datatypes - string  + string    @@ -39928,6 +49809,10 @@

style:layout-grid-ruby-h   + + RNG Relations + style:layout-grid-ruby-height="string]"   +

style:layout-grid-snap-to Attribute (new in ODF 1.2)

@@ -39946,10 +49831,14 @@

style:layout-grid-snap-to At Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + style:layout-grid-snap-to="<boolean>"   +

style:layout-grid-standard-mode Attribute (new in ODF 1.2)

@@ -39968,10 +49857,14 @@

style:layout-grid-stan Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + style:layout-grid-standard-mode="<boolean>"   +

style:leader-char Attribute

@@ -39985,7 +49878,7 @@

style:leader-char Attribute

Datatypes - string  + string    @@ -39993,6 +49886,10 @@

style:leader-char Attribute

  + + RNG Relations + style:leader-char="string]"   +

style:leader-color Attribute (new in ODF 1.2)

@@ -40006,15 +49903,19 @@

style:leader-color Attribute&nb Datatypes - string  + string    Values - "font-color"  + "font-color"    + + RNG Relations + style:leader-color="font-color | string]"   +

style:leader-style Attribute (new in ODF 1.2)

@@ -40033,16 +49934,20 @@

style:leader-style Attribute&nb Values - "dash"  - "dot-dash"  - "dot-dot-dash"  - "dotted"  - "long-dash"  - "none"  - "solid"  - "wave"  + "dash"  + "dot-dash"  + "dot-dot-dash"  + "dotted"  + "long-dash"  + "none"  + "solid"  + "wave"    + + RNG Relations + style:leader-style="none | solid | dotted | dash | long-dash | dot-dash | dot-dot-dash | wave"   +

style:leader-text Attribute (new in ODF 1.2)

@@ -40056,7 +49961,7 @@

style:leader-text Attribute  Datatypes - string  + string    @@ -40064,6 +49969,10 @@

style:leader-text Attribute    + + RNG Relations + style:leader-text="string]"   +

style:leader-text-style Attribute (new in ODF 1.2)

@@ -40077,7 +49986,7 @@

style:leader-text-style Attrib Datatypes - NCName  + NCName    @@ -40085,6 +49994,10 @@

style:leader-text-style Attrib   + + RNG Relations + style:leader-text-style="(<NCName>)?"   +

style:leader-type Attribute (new in ODF 1.2)

@@ -40103,11 +50016,15 @@

style:leader-type Attribute  Values - "double"  - "none"  - "single"  + "double"  + "none"  + "single"    + + RNG Relations + style:leader-type="none | single | double"   +

style:leader-width Attribute (new in ODF 1.2)

@@ -40121,22 +50038,26 @@

style:leader-width Attribute&nb Datatypes - positiveInteger  - string  - string  + positiveInteger  + string  + string    Values - "auto"  - "bold"  - "medium"  - "normal"  - "thick"  - "thin"  + "auto"  + "bold"  + "medium"  + "normal"  + "thick"  + "thin"    + + RNG Relations + style:leader-width="auto | normal | bold | thin | medium | thick | <positiveInteger> | string] | string]"   +

style:legend-expansion[1] Attribute

@@ -40156,9 +50077,15 @@

style:legend-expansion[1] Attri Values - "custom"  + "balanced"  + "high"  + "wide"    + + RNG Relations + style:legend-expansion="wide | high | balanced"   +

style:legend-expansion[2] Attribute

@@ -40178,11 +50105,13 @@

style:legend-expansion[2] Attri Values - "balanced"  - "high"  - "wide"  + "custom"    + + RNG Relations + style:legend-expansion="custom"   +

style:legend-expansion-aspect-ratio Attribute

@@ -40196,7 +50125,7 @@

style:legend-expan Datatypes - double  + double    @@ -40204,6 +50133,10 @@

style:legend-expan   + + RNG Relations + style:legend-expansion-aspect-ratio="<double>"   +

style:length Attribute (new in ODF 1.2)

@@ -40217,15 +50150,19 @@

style:length Attribute (new in O Datatypes - positiveInteger  + positiveInteger    Values - "word"  + "word"    + + RNG Relations + style:length="word | <positiveInteger>"   +

style:letter-kerning Attribute (new in ODF 1.2)

@@ -40244,10 +50181,14 @@

style:letter-kerning Attribute Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + style:letter-kerning="<boolean>"   +

style:line-break Attribute (new in ODF 1.2)

@@ -40266,10 +50207,14 @@

style:line-break Attribute ( Values - "normal"  - "strict"  + "normal"  + "strict"    + + RNG Relations + style:line-break="normal | strict"   +

style:line-height-at-least Attribute (new in ODF 1.2)

@@ -40283,7 +50228,7 @@

style:line-height-at-least Datatypes - string  + string    @@ -40291,6 +50236,10 @@

style:line-height-at-least   + + RNG Relations + style:line-height-at-least="string]"   +

style:line-spacing Attribute (new in ODF 1.2)

@@ -40304,7 +50253,7 @@

style:line-spacing Attribute&nb Datatypes - string  + string    @@ -40312,6 +50261,10 @@

style:line-spacing Attribute&nb   + + RNG Relations + style:line-spacing="string]"   +

style:line-style Attribute (new in ODF 1.2)

@@ -40330,16 +50283,20 @@

style:line-style Attribute ( Values - "dash"  - "dot-dash"  - "dot-dot-dash"  - "dotted"  - "long-dash"  - "none"  - "solid"  - "wave"  + "dash"  + "dot-dash"  + "dot-dot-dash"  + "dotted"  + "long-dash"  + "none"  + "solid"  + "wave"    + + RNG Relations + style:line-style="none | solid | dotted | dash | long-dash | dot-dash | dot-dot-dash | wave"   +

style:lines Attribute (new in ODF 1.2)

@@ -40353,7 +50310,7 @@

style:lines Attribute (new in ODF Datatypes - positiveInteger  + positiveInteger    @@ -40361,6 +50318,10 @@

style:lines Attribute (new in ODF   + + RNG Relations + style:lines="<positiveInteger>"   +

style:list-level Attribute (new in ODF 1.2)

@@ -40374,7 +50335,7 @@

style:list-level Attribute ( Datatypes - positiveInteger  + positiveInteger    @@ -40382,6 +50343,10 @@

style:list-level Attribute (   + + RNG Relations + style:list-level="(<positiveInteger>)?"   +

style:list-style-name Attribute

@@ -40395,7 +50360,7 @@

style:list-style-name Attribute< Datatypes - NCName  + NCName    @@ -40403,6 +50368,10 @@

style:list-style-name Attribute<   + + RNG Relations + style:list-style-name="(<NCName>)?"   +

style:master-page-name Attribute

@@ -40416,7 +50385,7 @@

style:master-page-name Attribut Datatypes - NCName  + NCName    @@ -40424,6 +50393,10 @@

style:master-page-name Attribut   + + RNG Relations + style:master-page-name="(<NCName>)?"   +

style:may-break-between-rows Attribute (new in ODF 1.2)

@@ -40442,10 +50415,14 @@

style:may-break-between-r Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + style:may-break-between-rows="<boolean>"   +

style:min-row-height Attribute (new in ODF 1.2)

@@ -40459,7 +50436,7 @@

style:min-row-height Attribute Datatypes - string  + string    @@ -40467,6 +50444,10 @@

style:min-row-height Attribute   + + RNG Relations + style:min-row-height="string]"   +

style:mirror Attribute (new in ODF 1.2)

@@ -40485,13 +50466,21 @@

style:mirror Attribute (new in O Values - "horizontal"  - "horizontal-on-even"  - "horizontal-on-odd"  - "none"  - "vertical"  + "horizontal"  + "horizontal-on-even"  + "horizontal-on-odd"  + "none"  + "vertical"    + + RNG Relations + style:mirror="none | vertical | horizontal | horizontal-on-odd | horizontal-on-even | +START_listverticalhorizontal | horizontal-on-odd | horizontal-on-even +END_list | +START_listhorizontal | horizontal-on-odd | horizontal-on-evenvertical +END_list"   +

style:name[1] Attribute

@@ -40500,25 +50489,13 @@

style:name[1] Attribute

Parent Elements - number:boolean-style  - number:currency-style  - number:date-style  - number:number-style  - number:percentage-style  - number:text-style  - number:time-style  - style:master-page  - style:page-layout  - style:presentation-page-layout  - style:style  - text:list-style  - text:outline-style  + style:font-face    Datatypes - NCName  + string    @@ -40526,6 +50503,10 @@

style:name[1] Attribute

  + + RNG Relations + style:name="<string>"   +

style:name[2] Attribute

@@ -40534,13 +50515,25 @@

style:name[2] Attribute

Parent Elements - style:font-face  + number:boolean-style  + number:currency-style  + number:date-style  + number:number-style  + number:percentage-style  + number:text-style  + number:time-style  + style:master-page  + style:page-layout  + style:presentation-page-layout  + style:style  + text:list-style  + text:outline-style    Datatypes - string  + NCName    @@ -40548,6 +50541,10 @@

style:name[2] Attribute

  + + RNG Relations + style:name="<NCName>"   +

style:next-style-name Attribute

@@ -40562,7 +50559,7 @@

style:next-style-name Attribute< Datatypes - NCName  + NCName    @@ -40570,6 +50567,10 @@

style:next-style-name Attribute<   + + RNG Relations + style:next-style-name="(<NCName>)?"   +

style:num-format[1] Attribute

@@ -40599,17 +50600,21 @@

style:num-format[1] Attribute

Datatypes - string  + string    Values - "1"  - "I"  - "i"  + "1"  + "I"  + "i"    + + RNG Relations + style:num-format="(1 | i | I | <string>)?"   +

style:num-format[2] Attribute

@@ -40644,10 +50649,14 @@

style:num-format[2] Attribute

Values - "A"  - "a"  + "A"  + "a"    + + RNG Relations + style:num-format="a | A"   +

style:num-letter-sync Attribute

@@ -40681,10 +50690,14 @@

style:num-letter-sync Attribute< Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + style:num-letter-sync="<boolean>"   +

style:num-prefix Attribute

@@ -40702,7 +50715,7 @@

style:num-prefix Attribute

Datatypes - string  + string    @@ -40710,6 +50723,10 @@

style:num-prefix Attribute

  + + RNG Relations + style:num-prefix="<string>"   +

style:num-suffix Attribute

@@ -40727,7 +50744,7 @@

style:num-suffix Attribute

Datatypes - string  + string    @@ -40735,6 +50752,10 @@

style:num-suffix Attribute

  + + RNG Relations + style:num-suffix="<string>"   +

style:number-wrapped-paragraphs Attribute (new in ODF 1.2)

@@ -40748,15 +50769,19 @@

style:number-wrapped-p Datatypes - positiveInteger  + positiveInteger    Values - "no-limit"  + "no-limit"    + + RNG Relations + style:number-wrapped-paragraphs="no-limit | <positiveInteger>"   +

style:overflow-behavior Attribute (new in ODF 1.2)

@@ -40775,10 +50800,14 @@

style:overflow-behavior Attrib Values - "auto-create-new-frame"  - "clip"  + "auto-create-new-frame"  + "clip"    + + RNG Relations + style:overflow-behavior="clip | auto-create-new-frame"   +

style:page-layout-name Attribute

@@ -40794,7 +50823,7 @@

style:page-layout-name Attribut Datatypes - NCName  + NCName    @@ -40802,6 +50831,10 @@

style:page-layout-name Attribut   + + RNG Relations + style:page-layout-name="(<NCName>)?"   +

style:page-number Attribute (new in ODF 1.2)

@@ -40816,15 +50849,19 @@

style:page-number Attribute  Datatypes - positiveInteger  + positiveInteger    Values - "auto"  + "auto"    + + RNG Relations + style:page-number="<positiveInteger> | auto"   +

style:page-usage Attribute

@@ -40843,12 +50880,16 @@

style:page-usage Attribute

Values - "all"  - "left"  - "mirrored"  - "right"  + "all"  + "left"  + "mirrored"  + "right"    + + RNG Relations + style:page-usage="all | left | right | mirrored"   +

style:paper-tray-name Attribute (new in ODF 1.2)

@@ -40862,15 +50903,19 @@

style:paper-tray-name Attribute< Datatypes - string  + string    Values - "default"  + "default"    + + RNG Relations + style:paper-tray-name="default | <string>"   +

style:parent-style-name Attribute

@@ -40884,7 +50929,7 @@

style:parent-style-name Attrib Datatypes - NCName  + NCName    @@ -40892,6 +50937,10 @@

style:parent-style-name Attrib   + + RNG Relations + style:parent-style-name="(<NCName>)?"   +

style:percentage-data-style-name Attribute (new in ODF 1.2)

@@ -40905,7 +50954,7 @@

style:percentage-data Datatypes - NCName  + NCName    @@ -40913,6 +50962,10 @@

style:percentage-data   + + RNG Relations + style:percentage-data-style-name="(<NCName>)?"   +

style:position[1] Attribute

@@ -40921,24 +50974,25 @@

style:position[1] Attribute

Parent Elements - style:background-image  + style:tab-stop  + text:index-entry-tab-stop    Datatypes + string    Values - "bottom"  - "center"  - "left"  - "right"  - "top"    + + RNG Relations + style:position="string]"   +

style:position[2] Attribute

@@ -40947,21 +51001,32 @@

style:position[2] Attribute

Parent Elements - style:tab-stop  - text:index-entry-tab-stop  + style:background-image    Datatypes - string    Values + "bottom"  + "center"  + "left"  + "right"  + "top"    + + RNG Relations + style:position="left | center | right | top | bottom | +START_listleft | center | righttop | center | bottom +END_list | +START_listtop | center | bottomleft | center | right +END_list"   +

style:print Attribute (new in ODF 1.2)

@@ -40980,16 +51045,22 @@

style:print Attribute (new in ODF Values - "annotations"  - "charts"  - "drawings"  - "formulas"  - "grid"  - "headers"  - "objects"  - "zero-values"  + "annotations"  + "charts"  + "drawings"  + "formulas"  + "grid"  + "headers"  + "objects"  + "zero-values"    + + RNG Relations + style:print=" +START_list(headers | grid | annotations | objects | charts | drawings | formulas | zero-values)* +END_list"   +

style:print-content Attribute (new in ODF 1.2)

@@ -41009,10 +51080,14 @@

style:print-content Attribute& Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + style:print-content="<boolean>"   +

style:print-orientation Attribute (new in ODF 1.2)

@@ -41031,10 +51106,14 @@

style:print-orientation Attrib Values - "landscape"  - "portrait"  + "landscape"  + "portrait"    + + RNG Relations + style:print-orientation="portrait | landscape"   +

style:print-page-order Attribute (new in ODF 1.2)

@@ -41053,10 +51132,14 @@

style:print-page-order Attribut Values - "ltr"  - "ttb"  + "ltr"  + "ttb"    + + RNG Relations + style:print-page-order="ttb | ltr"   +

style:protect[1] Attribute (new in ODF 1.2)

@@ -41065,7 +51148,7 @@

style:protect[1] Attribute (new Parent Elements - style:graphic-properties  + style:section-properties    @@ -41076,12 +51159,14 @@

style:protect[1] Attribute (new Values - "content"  - "none"  - "position"  - "size"  + "false"  + "true"    + + RNG Relations + style:protect="<boolean>"   +

style:protect[2] Attribute (new in ODF 1.2)

@@ -41090,7 +51175,7 @@

style:protect[2] Attribute (new Parent Elements - style:section-properties  + style:graphic-properties    @@ -41101,10 +51186,18 @@

style:protect[2] Attribute (new Values - "false"  - "true"  + "content"  + "none"  + "position"  + "size"    + + RNG Relations + style:protect="none | +START_list(content | position | size)+ +END_list"   +

style:punctuation-wrap Attribute (new in ODF 1.2)

@@ -41123,10 +51216,14 @@

style:punctuation-wrap Attribut Values - "hanging"  - "simple"  + "hanging"  + "simple"    + + RNG Relations + style:punctuation-wrap="simple | hanging"   +

style:register-true Attribute (new in ODF 1.2)

@@ -41145,10 +51242,14 @@

style:register-true Attribute& Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + style:register-true="<boolean>"   +

style:register-truth-ref-style-name Attribute (new in ODF 1.2)

@@ -41162,7 +51263,7 @@

style:register-tru Datatypes - NCName  + NCName    @@ -41170,6 +51271,10 @@

style:register-tru   + + RNG Relations + style:register-truth-ref-style-name="(<NCName>)?"   +

style:rel-column-width Attribute (new in ODF 1.2)

@@ -41183,7 +51288,7 @@

style:rel-column-width Attribut Datatypes - string  + string    @@ -41191,6 +51296,10 @@

style:rel-column-width Attribut   + + RNG Relations + style:rel-column-width="string]"   +

style:rel-height Attribute

@@ -41205,16 +51314,20 @@

style:rel-height Attribute

Datatypes - string  + string    Values - "scale"  - "scale-min"  + "scale"  + "scale-min"    + + RNG Relations + style:rel-height="string] | scale | scale-min"   +

style:rel-width[1] Attribute

@@ -41223,23 +51336,24 @@

style:rel-width[1] Attribute

Parent Elements - draw:frame  - style:graphic-properties  + style:column    Datatypes - string  + string    Values - "scale"  - "scale-min"    + + RNG Relations + style:rel-width="string]"   +

style:rel-width[2] Attribute

@@ -41255,7 +51369,7 @@

style:rel-width[2] Attribute

Datatypes - string  + string    @@ -41263,6 +51377,10 @@

style:rel-width[2] Attribute

  + + RNG Relations + style:rel-width="string]"   +

style:rel-width[3] Attribute

@@ -41271,20 +51389,27 @@

style:rel-width[3] Attribute

Parent Elements - style:column  + draw:frame  + style:graphic-properties    Datatypes - string  + string    Values + "scale"  + "scale-min"    + + RNG Relations + style:rel-width="string] | scale | scale-min"   +

style:repeat Attribute (new in ODF 1.2)

@@ -41305,11 +51430,15 @@

style:repeat Attribute (new in O Values - "no-repeat"  - "repeat"  - "stretch"  + "no-repeat"  + "repeat"  + "stretch"    + + RNG Relations + style:repeat="no-repeat | repeat | stretch"   +

style:repeat-content Attribute (new in ODF 1.2)

@@ -41328,10 +51457,14 @@

style:repeat-content Attribute Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + style:repeat-content="<boolean>"   +

style:rfc-language-tag Attribute (new in ODF 1.2)

@@ -41347,7 +51480,7 @@

style:rfc-language-tag Attribut Datatypes - language  + language    @@ -41355,6 +51488,10 @@

style:rfc-language-tag Attribut   + + RNG Relations + style:rfc-language-tag="<language>"   +

style:rfc-language-tag-asian Attribute (new in ODF 1.2)

@@ -41368,7 +51505,7 @@

style:rfc-language-tag-as Datatypes - language  + language    @@ -41376,6 +51513,10 @@

style:rfc-language-tag-as   + + RNG Relations + style:rfc-language-tag-asian="<language>"   +

style:rfc-language-tag-complex Attribute (new in ODF 1.2)

@@ -41389,7 +51530,7 @@

style:rfc-language-tag- Datatypes - language  + language    @@ -41397,6 +51538,10 @@

style:rfc-language-tag-   + + RNG Relations + style:rfc-language-tag-complex="<language>"   +

style:rotation-align Attribute (new in ODF 1.2)

@@ -41415,12 +51560,16 @@

style:rotation-align Attribute Values - "bottom"  - "center"  - "none"  - "top"  + "bottom"  + "center"  + "none"  + "top"    + + RNG Relations + style:rotation-align="none | bottom | top | center"   +

style:rotation-angle Attribute (new in ODF 1.2)

@@ -41435,7 +51584,7 @@

style:rotation-angle Attribute Datatypes - string  + string    @@ -41443,6 +51592,10 @@

style:rotation-angle Attribute   + + RNG Relations + style:rotation-angle="<string>"   +

style:row-height Attribute (new in ODF 1.2)

@@ -41456,7 +51609,7 @@

style:row-height Attribute ( Datatypes - string  + string    @@ -41464,6 +51617,10 @@

style:row-height Attribute (   + + RNG Relations + style:row-height="string]"   +

style:ruby-align Attribute (new in ODF 1.2)

@@ -41482,13 +51639,17 @@

style:ruby-align Attribute ( Values - "center"  - "distribute-letter"  - "distribute-space"  - "left"  - "right"  + "center"  + "distribute-letter"  + "distribute-space"  + "left"  + "right"    + + RNG Relations + style:ruby-align="left | center | right | distribute-letter | distribute-space"   +

style:ruby-position Attribute (new in ODF 1.2)

@@ -41507,10 +51668,14 @@

style:ruby-position Attribute& Values - "above"  - "below"  + "above"  + "below"    + + RNG Relations + style:ruby-position="above | below"   +

style:run-through Attribute (new in ODF 1.2)

@@ -41529,10 +51694,14 @@

style:run-through Attribute  Values - "background"  - "foreground"  + "background"  + "foreground"    + + RNG Relations + style:run-through="foreground | background"   +

style:scale-to Attribute (new in ODF 1.2)

@@ -41546,7 +51715,7 @@

style:scale-to Attribute (new Datatypes - string  + string    @@ -41554,6 +51723,10 @@

style:scale-to Attribute (new   + + RNG Relations + style:scale-to="string]"   +

style:scale-to-pages Attribute (new in ODF 1.2)

@@ -41567,7 +51740,7 @@

style:scale-to-pages Attribute Datatypes - positiveInteger  + positiveInteger    @@ -41575,6 +51748,10 @@

style:scale-to-pages Attribute   + + RNG Relations + style:scale-to-pages="<positiveInteger>"   +

style:script-asian Attribute (new in ODF 1.2)

@@ -41588,7 +51765,7 @@

style:script-asian Attribute&nb Datatypes - token  + token    @@ -41596,6 +51773,10 @@

style:script-asian Attribute&nb   + + RNG Relations + style:script-asian="token]"   +

style:script-complex Attribute (new in ODF 1.2)

@@ -41609,7 +51790,7 @@

style:script-complex Attribute Datatypes - token  + token    @@ -41617,6 +51798,10 @@

style:script-complex Attribute   + + RNG Relations + style:script-complex="token]"   +

style:script-type Attribute (new in ODF 1.2)

@@ -41635,12 +51820,16 @@

style:script-type Attribute  Values - "asian"  - "complex"  - "ignore"  - "latin"  + "asian"  + "complex"  + "ignore"  + "latin"    + + RNG Relations + style:script-type="latin | asian | complex | ignore"   +

style:shadow Attribute (new in ODF 1.2)

@@ -41659,15 +51848,19 @@

style:shadow Attribute (new in O Datatypes - string  + string    Values - "none"  + "none"    + + RNG Relations + style:shadow="none | <string>"   +

style:shrink-to-fit Attribute (new in ODF 1.2)

@@ -41687,10 +51880,14 @@

style:shrink-to-fit Attribute& Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + style:shrink-to-fit="<boolean>"   +

style:snap-to-layout-grid Attribute (new in ODF 1.2)

@@ -41709,10 +51906,14 @@

style:snap-to-layout-grid At Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + style:snap-to-layout-grid="<boolean>"   +

style:style Attribute (new in ODF 1.2)

@@ -41731,13 +51932,17 @@

style:style Attribute (new in ODF Values - "dashed"  - "dot-dashed"  - "dotted"  - "none"  - "solid"  + "dashed"  + "dot-dashed"  + "dotted"  + "none"  + "solid"    + + RNG Relations + style:style="none | solid | dotted | dashed | dot-dashed"   +

style:style-name Attribute (new in ODF 1.2)

@@ -41751,7 +51956,7 @@

style:style-name Attribute ( Datatypes - NCName  + NCName    @@ -41759,6 +51964,10 @@

style:style-name Attribute (   + + RNG Relations + style:style-name="(<NCName>)?"   +

style:tab-stop-distance Attribute (new in ODF 1.2)

@@ -41772,7 +51981,7 @@

style:tab-stop-distance Attrib Datatypes - string  + string    @@ -41780,6 +51989,10 @@

style:tab-stop-distance Attrib   + + RNG Relations + style:tab-stop-distance="string]"   +

style:table-centering Attribute (new in ODF 1.2)

@@ -41798,12 +52011,16 @@

style:table-centering Attribute< Values - "both"  - "horizontal"  - "none"  - "vertical"  + "both"  + "horizontal"  + "none"  + "vertical"    + + RNG Relations + style:table-centering="horizontal | vertical | both | none"   +

style:text-align-source Attribute (new in ODF 1.2)

@@ -41822,10 +52039,14 @@

style:text-align-source Attrib Values - "fix"  - "value-type"  + "fix"  + "value-type"    + + RNG Relations + style:text-align-source="fix | value-type"   +

style:text-autospace Attribute (new in ODF 1.2)

@@ -41844,10 +52065,14 @@

style:text-autospace Attribute Values - "ideograph-alpha"  - "none"  + "ideograph-alpha"  + "none"    + + RNG Relations + style:text-autospace="none | ideograph-alpha"   +

style:text-blinking Attribute (new in ODF 1.2)

@@ -41866,10 +52091,14 @@

style:text-blinking Attribute& Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + style:text-blinking="<boolean>"   +

style:text-combine Attribute (new in ODF 1.2)

@@ -41888,11 +52117,15 @@

style:text-combine Attribute&nb Values - "letters"  - "lines"  - "none"  + "letters"  + "lines"  + "none"    + + RNG Relations + style:text-combine="none | letters | lines"   +

style:text-combine-end-char Attribute (new in ODF 1.2)

@@ -41906,7 +52139,7 @@

style:text-combine-end-cha Datatypes - string  + string    @@ -41914,6 +52147,10 @@

style:text-combine-end-cha   + + RNG Relations + style:text-combine-end-char="string]"   +

style:text-combine-start-char Attribute (new in ODF 1.2)

@@ -41927,7 +52164,7 @@

style:text-combine-start Datatypes - string  + string    @@ -41935,6 +52172,10 @@

style:text-combine-start   + + RNG Relations + style:text-combine-start-char="string]"   +

style:text-emphasize Attribute (new in ODF 1.2)

@@ -41953,15 +52194,21 @@

style:text-emphasize Attribute Values - "above"  - "accent"  - "below"  - "circle"  - "disc"  - "dot"  - "none"  + "above"  + "accent"  + "below"  + "circle"  + "disc"  + "dot"  + "none"    + + RNG Relations + style:text-emphasize="none | +START_listnone | accent | dot | circle | discabove | below +END_list"   +

style:text-line-through-color Attribute (new in ODF 1.2)

@@ -41975,15 +52222,19 @@

style:text-line-through- Datatypes - string  + string    Values - "font-color"  + "font-color"    + + RNG Relations + style:text-line-through-color="font-color | string]"   +

style:text-line-through-mode Attribute (new in ODF 1.2)

@@ -42002,10 +52253,14 @@

style:text-line-through-m Values - "continuous"  - "skip-white-space"  + "continuous"  + "skip-white-space"    + + RNG Relations + style:text-line-through-mode="continuous | skip-white-space"   +

style:text-line-through-style Attribute (new in ODF 1.2)

@@ -42024,16 +52279,20 @@

style:text-line-through- Values - "dash"  - "dot-dash"  - "dot-dot-dash"  - "dotted"  - "long-dash"  - "none"  - "solid"  - "wave"  + "dash"  + "dot-dash"  + "dot-dot-dash"  + "dotted"  + "long-dash"  + "none"  + "solid"  + "wave"    + + RNG Relations + style:text-line-through-style="none | solid | dotted | dash | long-dash | dot-dash | dot-dot-dash | wave"   +

style:text-line-through-text Attribute (new in ODF 1.2)

@@ -42047,7 +52306,7 @@

style:text-line-through-t Datatypes - string  + string    @@ -42055,6 +52314,10 @@

style:text-line-through-t   + + RNG Relations + style:text-line-through-text="<string>"   +

style:text-line-through-text-style Attribute (new in ODF 1.2)

@@ -42068,7 +52331,7 @@

style:text-line-thr Datatypes - NCName  + NCName    @@ -42076,6 +52339,10 @@

style:text-line-thr   + + RNG Relations + style:text-line-through-text-style="(<NCName>)?"   +

style:text-line-through-type Attribute (new in ODF 1.2)

@@ -42094,11 +52361,15 @@

style:text-line-through-t Values - "double"  - "none"  - "single"  + "double"  + "none"  + "single"    + + RNG Relations + style:text-line-through-type="none | single | double"   +

style:text-line-through-width Attribute (new in ODF 1.2)

@@ -42112,22 +52383,26 @@

style:text-line-through- Datatypes - positiveInteger  - string  - string  + positiveInteger  + string  + string    Values - "auto"  - "bold"  - "medium"  - "normal"  - "thick"  - "thin"  + "auto"  + "bold"  + "medium"  + "normal"  + "thick"  + "thin"    + + RNG Relations + style:text-line-through-width="auto | normal | bold | thin | medium | thick | <positiveInteger> | string] | string]"   +

style:text-outline Attribute (new in ODF 1.2)

@@ -42146,10 +52421,14 @@

style:text-outline Attribute&nb Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + style:text-outline="<boolean>"   +

style:text-overline-color Attribute (new in ODF 1.2)

@@ -42163,15 +52442,19 @@

style:text-overline-color At Datatypes - string  + string    Values - "font-color"  + "font-color"    + + RNG Relations + style:text-overline-color="font-color | string]"   +

style:text-overline-mode Attribute (new in ODF 1.2)

@@ -42190,10 +52473,14 @@

style:text-overline-mode Attr Values - "continuous"  - "skip-white-space"  + "continuous"  + "skip-white-space"    + + RNG Relations + style:text-overline-mode="continuous | skip-white-space"   +

style:text-overline-style Attribute (new in ODF 1.2)

@@ -42212,16 +52499,20 @@

style:text-overline-style At Values - "dash"  - "dot-dash"  - "dot-dot-dash"  - "dotted"  - "long-dash"  - "none"  - "solid"  - "wave"  + "dash"  + "dot-dash"  + "dot-dot-dash"  + "dotted"  + "long-dash"  + "none"  + "solid"  + "wave"    + + RNG Relations + style:text-overline-style="none | solid | dotted | dash | long-dash | dot-dash | dot-dot-dash | wave"   +

style:text-overline-type Attribute (new in ODF 1.2)

@@ -42240,11 +52531,15 @@

style:text-overline-type Attr Values - "double"  - "none"  - "single"  + "double"  + "none"  + "single"    + + RNG Relations + style:text-overline-type="none | single | double"   +

style:text-overline-width Attribute (new in ODF 1.2)

@@ -42258,22 +52553,26 @@

style:text-overline-width At Datatypes - positiveInteger  - string  - string  + positiveInteger  + string  + string    Values - "auto"  - "bold"  - "medium"  - "normal"  - "thick"  - "thin"  + "auto"  + "bold"  + "medium"  + "normal"  + "thick"  + "thin"    + + RNG Relations + style:text-overline-width="auto | normal | bold | thin | medium | thick | <positiveInteger> | string] | string]"   +

style:text-position Attribute (new in ODF 1.2)

@@ -42287,16 +52586,22 @@

style:text-position Attribute& Datatypes - string  + string    Values - "sub"  - "super"  + "sub"  + "super"    + + RNG Relations + style:text-position=" +START_liststring] | super | sub(string])? +END_list"   +

style:text-rotation-angle Attribute (new in ODF 1.2)

@@ -42310,7 +52615,7 @@

style:text-rotation-angle At Datatypes - string  + string    @@ -42318,6 +52623,10 @@

style:text-rotation-angle At   + + RNG Relations + style:text-rotation-angle="<string>"   +

style:text-rotation-scale Attribute (new in ODF 1.2)

@@ -42336,10 +52645,14 @@

style:text-rotation-scale At Values - "fixed"  - "line-height"  + "fixed"  + "line-height"    + + RNG Relations + style:text-rotation-scale="fixed | line-height"   +

style:text-scale Attribute (new in ODF 1.2)

@@ -42353,7 +52666,7 @@

style:text-scale Attribute ( Datatypes - string  + string    @@ -42361,6 +52674,10 @@

style:text-scale Attribute (   + + RNG Relations + style:text-scale="string]"   +

style:text-underline-color Attribute (new in ODF 1.2)

@@ -42374,15 +52691,19 @@

style:text-underline-color Datatypes - string  + string    Values - "font-color"  + "font-color"    + + RNG Relations + style:text-underline-color="font-color | string]"   +

style:text-underline-mode Attribute (new in ODF 1.2)

@@ -42401,10 +52722,14 @@

style:text-underline-mode At Values - "continuous"  - "skip-white-space"  + "continuous"  + "skip-white-space"    + + RNG Relations + style:text-underline-mode="continuous | skip-white-space"   +

style:text-underline-style Attribute (new in ODF 1.2)

@@ -42423,16 +52748,20 @@

style:text-underline-style Values - "dash"  - "dot-dash"  - "dot-dot-dash"  - "dotted"  - "long-dash"  - "none"  - "solid"  - "wave"  + "dash"  + "dot-dash"  + "dot-dot-dash"  + "dotted"  + "long-dash"  + "none"  + "solid"  + "wave"    + + RNG Relations + style:text-underline-style="none | solid | dotted | dash | long-dash | dot-dash | dot-dot-dash | wave"   +

style:text-underline-type Attribute (new in ODF 1.2)

@@ -42451,11 +52780,15 @@

style:text-underline-type At Values - "double"  - "none"  - "single"  + "double"  + "none"  + "single"    + + RNG Relations + style:text-underline-type="none | single | double"   +

style:text-underline-width Attribute (new in ODF 1.2)

@@ -42469,22 +52802,26 @@

style:text-underline-width Datatypes - positiveInteger  - string  - string  + positiveInteger  + string  + string    Values - "auto"  - "bold"  - "medium"  - "normal"  - "thick"  - "thin"  + "auto"  + "bold"  + "medium"  + "normal"  + "thick"  + "thin"    + + RNG Relations + style:text-underline-width="auto | normal | bold | thin | medium | thick | <positiveInteger> | string] | string]"   +

style:type[1] Attribute

@@ -42504,9 +52841,13 @@

style:type[1] Attribute

Values - "char"  + "char"    + + RNG Relations + style:type="char"   +

style:type[2] Attribute

@@ -42515,7 +52856,7 @@

style:type[2] Attribute

Parent Elements - style:tab-stop  + text:index-entry-tab-stop    @@ -42526,11 +52867,13 @@

style:type[2] Attribute

Values - "center"  - "left"  - "right"  + "left"    + + RNG Relations + style:type="left"   +

style:type[3] Attribute

@@ -42550,9 +52893,13 @@

style:type[3] Attribute

Values - "right"  + "right"    + + RNG Relations + style:type="right"   +

style:type[4] Attribute

@@ -42561,7 +52908,7 @@

style:type[4] Attribute

Parent Elements - text:index-entry-tab-stop  + style:tab-stop    @@ -42572,9 +52919,15 @@

style:type[4] Attribute

Values - "left"  + "center"  + "left"  + "right"    + + RNG Relations + style:type="left | center | right"   +

style:use-optimal-column-width Attribute (new in ODF 1.2)

@@ -42593,10 +52946,14 @@

style:use-optimal-colum Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + style:use-optimal-column-width="<boolean>"   +

style:use-optimal-row-height Attribute (new in ODF 1.2)

@@ -42615,10 +52972,14 @@

style:use-optimal-row-hei Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + style:use-optimal-row-height="<boolean>"   +

style:use-window-font-color Attribute (new in ODF 1.2)

@@ -42637,10 +52998,14 @@

style:use-window-font-colo Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + style:use-window-font-color="<boolean>"   +

style:vertical-align[1] Attribute (new in ODF 1.2)

@@ -42649,7 +53014,7 @@

style:vertical-align[1] Attribute Parent Elements - style:column-sep  + style:table-cell-properties    @@ -42660,11 +53025,16 @@

style:vertical-align[1] Attribute Values - "bottom"  - "middle"  - "top"  + "automatic"  + "bottom"  + "middle"  + "top"    + + RNG Relations + style:vertical-align="top | middle | bottom | automatic"   +

style:vertical-align[2] Attribute (new in ODF 1.2)

@@ -42673,7 +53043,7 @@

style:vertical-align[2] Attribute Parent Elements - style:table-cell-properties  + style:paragraph-properties    @@ -42684,12 +53054,17 @@

style:vertical-align[2] Attribute Values - "automatic"  - "bottom"  - "middle"  - "top"  + "auto"  + "baseline"  + "bottom"  + "middle"  + "top"    + + RNG Relations + style:vertical-align="top | middle | bottom | auto | baseline"   +

style:vertical-align[3] Attribute (new in ODF 1.2)

@@ -42698,7 +53073,7 @@

style:vertical-align[3] Attribute Parent Elements - style:paragraph-properties  + style:column-sep    @@ -42709,13 +53084,15 @@

style:vertical-align[3] Attribute Values - "auto"  - "baseline"  - "bottom"  - "middle"  - "top"  + "bottom"  + "middle"  + "top"    + + RNG Relations + style:vertical-align="top | middle | bottom"   +

style:vertical-pos Attribute (new in ODF 1.2)

@@ -42735,13 +53112,17 @@

style:vertical-pos Attribute&nb Values - "below"  - "bottom"  - "from-top"  - "middle"  - "top"  + "below"  + "bottom"  + "from-top"  + "middle"  + "top"    + + RNG Relations + style:vertical-pos="top | middle | bottom | from-top | below"   +

style:vertical-rel Attribute (new in ODF 1.2)

@@ -42761,18 +53142,22 @@

style:vertical-rel Attribute&nb Values - "baseline"  - "char"  - "frame"  - "frame-content"  - "line"  - "page"  - "page-content"  - "paragraph"  - "paragraph-content"  - "text"  + "baseline"  + "char"  + "frame"  + "frame-content"  + "line"  + "page"  + "page-content"  + "paragraph"  + "paragraph-content"  + "text"    + + RNG Relations + style:vertical-rel="page | page-content | frame | frame-content | paragraph | paragraph-content | char | line | baseline | text"   +

style:volatile Attribute

@@ -42797,10 +53182,14 @@

style:volatile Attribute

Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + style:volatile="<boolean>"   +

style:width[1] Attribute (new in ODF 1.2)

@@ -42809,14 +53198,13 @@

style:width[1] Attribute (new in Parent Elements - style:column-sep  - style:footnote-sep  + style:table-properties    Datatypes - string  + string    @@ -42824,6 +53212,10 @@

style:width[1] Attribute (new in   + + RNG Relations + style:width="string]"   +

style:width[2] Attribute (new in ODF 1.2)

@@ -42832,13 +53224,14 @@

style:width[2] Attribute (new in Parent Elements - style:table-properties  + style:column-sep  + style:footnote-sep    Datatypes - string  + string    @@ -42846,6 +53239,10 @@

style:width[2] Attribute (new in   + + RNG Relations + style:width="string]"   +

style:wrap Attribute (new in ODF 1.2)

@@ -42864,15 +53261,19 @@

style:wrap Attribute (new in ODF 1 Values - "biggest"  - "dynamic"  - "left"  - "none"  - "parallel"  - "right"  - "run-through"  + "biggest"  + "dynamic"  + "left"  + "none"  + "parallel"  + "right"  + "run-through"    + + RNG Relations + style:wrap="none | left | right | parallel | dynamic | run-through | biggest"   +

style:wrap-contour Attribute (new in ODF 1.2)

@@ -42891,10 +53292,14 @@

style:wrap-contour Attribute&nb Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + style:wrap-contour="<boolean>"   +

style:wrap-contour-mode Attribute (new in ODF 1.2)

@@ -42913,10 +53318,14 @@

style:wrap-contour-mode Attrib Values - "full"  - "outside"  + "full"  + "outside"    + + RNG Relations + style:wrap-contour-mode="full | outside"   +

style:wrap-dynamic-threshold Attribute (new in ODF 1.2)

@@ -42930,7 +53339,7 @@

style:wrap-dynamic-thresh Datatypes - string  + string    @@ -42938,6 +53347,10 @@

style:wrap-dynamic-thresh   + + RNG Relations + style:wrap-dynamic-threshold="string]"   +

style:writing-mode Attribute (new in ODF 1.2)

@@ -42961,16 +53374,20 @@

style:writing-mode Attribute&nb Values - "lr"  - "lr-tb"  - "page"  - "rl"  - "rl-tb"  - "tb"  - "tb-lr"  - "tb-rl"  + "lr"  + "lr-tb"  + "page"  + "rl"  + "rl-tb"  + "tb"  + "tb-lr"  + "tb-rl"    + + RNG Relations + style:writing-mode="lr-tb | rl-tb | tb-rl | tb-lr | lr | rl | tb | page"   +

style:writing-mode-automatic Attribute (new in ODF 1.2)

@@ -42989,10 +53406,14 @@

style:writing-mode-automa Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + style:writing-mode-automatic="<boolean>"   +

svg:accent-height Attribute

@@ -43006,7 +53427,7 @@

svg:accent-height Attribute

Datatypes - integer  + integer    @@ -43014,6 +53435,10 @@

svg:accent-height Attribute

  + + RNG Relations + svg:accent-height="<integer>"   +

svg:alphabetic Attribute

@@ -43027,7 +53452,7 @@

svg:alphabetic Attribute

Datatypes - integer  + integer    @@ -43035,6 +53460,10 @@

svg:alphabetic Attribute

  + + RNG Relations + svg:alphabetic="<integer>"   +

svg:ascent Attribute

@@ -43048,7 +53477,7 @@

svg:ascent Attribute

Datatypes - integer  + integer    @@ -43056,6 +53485,10 @@

svg:ascent Attribute

  + + RNG Relations + svg:ascent="<integer>"   +

svg:bbox Attribute

@@ -43069,7 +53502,7 @@

svg:bbox Attribute

Datatypes - string  + string    @@ -43077,6 +53510,10 @@

svg:bbox Attribute

  + + RNG Relations + svg:bbox="<string>"   +

svg:cap-height Attribute

@@ -43090,7 +53527,7 @@

svg:cap-height Attribute

Datatypes - integer  + integer    @@ -43098,6 +53535,10 @@

svg:cap-height Attribute

  + + RNG Relations + svg:cap-height="<integer>"   +

svg:cx[1] Attribute

@@ -43106,15 +53547,14 @@

svg:cx[1] Attribute

Parent Elements - draw:area-circle  - draw:circle  - draw:ellipse  + svg:radialGradient    Datatypes - string  + string  + string    @@ -43122,6 +53562,10 @@

svg:cx[1] Attribute

  + + RNG Relations + svg:cx="string] | string]"   +

svg:cx[2] Attribute

@@ -43130,14 +53574,15 @@

svg:cx[2] Attribute

Parent Elements - svg:radialGradient  + draw:area-circle  + draw:circle  + draw:ellipse    Datatypes - string  - string  + string    @@ -43145,6 +53590,10 @@

svg:cx[2] Attribute

  + + RNG Relations + svg:cx="string]"   +

svg:cy[1] Attribute

@@ -43161,7 +53610,7 @@

svg:cy[1] Attribute

Datatypes - string  + string    @@ -43169,6 +53618,10 @@

svg:cy[1] Attribute

  + + RNG Relations + svg:cy="string]"   +

svg:cy[2] Attribute

@@ -43183,8 +53636,8 @@

svg:cy[2] Attribute

Datatypes - string  - string  + string  + string    @@ -43192,6 +53645,10 @@

svg:cy[2] Attribute

  + + RNG Relations + svg:cy="string] | string]"   +

svg:d Attribute

@@ -43210,7 +53667,7 @@

svg:d Attribute

Datatypes - string  + string    @@ -43218,6 +53675,10 @@

svg:d Attribute

  + + RNG Relations + svg:d="<string>"   +

svg:descent Attribute

@@ -43231,7 +53692,7 @@

svg:descent Attribute

Datatypes - integer  + integer    @@ -43239,6 +53700,10 @@

svg:descent Attribute

  + + RNG Relations + svg:descent="<integer>"   +

svg:fill-rule Attribute (new in ODF 1.2)

@@ -43258,10 +53723,14 @@

svg:fill-rule Attribute (new in Values - "evenodd"  - "nonzero"  + "evenodd"  + "nonzero"    + + RNG Relations + svg:fill-rule="nonzero | evenodd"   +

svg:font-family Attribute

@@ -43275,7 +53744,7 @@

svg:font-family Attribute

Datatypes - string  + string    @@ -43283,6 +53752,10 @@

svg:font-family Attribute

  + + RNG Relations + svg:font-family="<string>"   +

svg:font-size Attribute

@@ -43296,7 +53769,7 @@

svg:font-size Attribute

Datatypes - string  + string    @@ -43304,6 +53777,10 @@

svg:font-size Attribute

  + + RNG Relations + svg:font-size="string]"   +

svg:font-stretch Attribute

@@ -43322,17 +53799,21 @@

svg:font-stretch Attribute

Values - "condensed"  - "expanded"  - "extra-condensed"  - "extra-expanded"  - "normal"  - "semi-condensed"  - "semi-expanded"  - "ultra-condensed"  - "ultra-expanded"  + "condensed"  + "expanded"  + "extra-condensed"  + "extra-expanded"  + "normal"  + "semi-condensed"  + "semi-expanded"  + "ultra-condensed"  + "ultra-expanded"    + + RNG Relations + svg:font-stretch="normal | ultra-condensed | extra-condensed | condensed | semi-condensed | semi-expanded | expanded | extra-expanded | ultra-expanded"   +

svg:font-style Attribute

@@ -43351,11 +53832,15 @@

svg:font-style Attribute

Values - "italic"  - "normal"  - "oblique"  + "italic"  + "normal"  + "oblique"    + + RNG Relations + svg:font-style="normal | italic | oblique"   +

svg:font-variant Attribute

@@ -43374,10 +53859,14 @@

svg:font-variant Attribute

Values - "normal"  - "small-caps"  + "normal"  + "small-caps"    + + RNG Relations + svg:font-variant="normal | small-caps"   +

svg:font-weight Attribute

@@ -43396,19 +53885,23 @@

svg:font-weight Attribute

Values - "100"  - "200"  - "300"  - "400"  - "500"  - "600"  - "700"  - "800"  - "900"  - "bold"  - "normal"  + "100"  + "200"  + "300"  + "400"  + "500"  + "600"  + "700"  + "800"  + "900"  + "bold"  + "normal"    + + RNG Relations + svg:font-weight="normal | bold | 100 | 200 | 300 | 400 | 500 | 600 | 700 | 800 | 900"   +

svg:fx Attribute

@@ -43422,8 +53915,8 @@

svg:fx Attribute

Datatypes - string  - string  + string  + string    @@ -43431,6 +53924,10 @@

svg:fx Attribute

  + + RNG Relations + svg:fx="string] | string]"   +

svg:fy Attribute

@@ -43444,8 +53941,8 @@

svg:fy Attribute

Datatypes - string  - string  + string  + string    @@ -43453,6 +53950,10 @@

svg:fy Attribute

  + + RNG Relations + svg:fy="string] | string]"   +

svg:gradientTransform Attribute

@@ -43467,7 +53968,7 @@

svg:gradientTransform Attribute< Datatypes - string  + string    @@ -43475,6 +53976,10 @@

svg:gradientTransform Attribute<   + + RNG Relations + svg:gradientTransform="<string>"   +

svg:gradientUnits Attribute

@@ -43494,9 +53999,13 @@

svg:gradientUnits Attribute

Values - "objectBoundingBox"  + "objectBoundingBox"    + + RNG Relations + svg:gradientUnits="objectBoundingBox"   +

svg:hanging Attribute

@@ -43510,7 +54019,7 @@

svg:hanging Attribute

Datatypes - integer  + integer    @@ -43518,32 +54027,13 @@

svg:hanging Attribute

  - -
-

svg:height[1] Attribute

-

There are more than one Definitions by this name.

- - - - - - - - - - - + +
Parent Elements - presentation:placeholder  - 
Datatypes - string  - string  - 
ValuesRNG Relationssvg:hanging="<integer>"  

-

svg:height[2] Attribute

+

svg:height[1] Attribute

There are more than one Definitions by this name.

@@ -43577,7 +54067,34 @@

svg:height[2] Attribute

+ + + + + + + + + +
Datatypes - string  + string  + 
Values
RNG Relationssvg:height="string]"  
+
+

svg:height[2] Attribute

+

There are more than one Definitions by this name.

+ + + + + + + + @@ -43585,6 +54102,10 @@

svg:height[2] Attribute

+ + + +
Parent Elements + presentation:placeholder  + 
Datatypes + string  + string   
 
RNG Relationssvg:height="string] | string]"  

svg:ideographic Attribute

@@ -43598,7 +54119,7 @@

svg:ideographic Attribute

Datatypes - integer  + integer    @@ -43606,6 +54127,10 @@

svg:ideographic Attribute

  + + RNG Relations + svg:ideographic="<integer>"   +

svg:mathematical Attribute

@@ -43619,7 +54144,7 @@

svg:mathematical Attribute

Datatypes - integer  + integer    @@ -43627,6 +54152,10 @@

svg:mathematical Attribute

  + + RNG Relations + svg:mathematical="<integer>"   +

svg:name Attribute (new in ODF 1.1)

@@ -43640,7 +54169,7 @@

svg:name Attribute (new in ODF 1.1) Datatypes - string  + string    @@ -43648,6 +54177,10 @@

svg:name Attribute (new in ODF 1.1)   + + RNG Relations + svg:name="<string>"   +

svg:offset Attribute

@@ -43661,8 +54194,8 @@

svg:offset Attribute

Datatypes - double  - string  + double  + string    @@ -43670,6 +54203,10 @@

svg:offset Attribute

  + + RNG Relations + svg:offset="<double> | string]"   +

svg:origin Attribute

@@ -43683,7 +54220,7 @@

svg:origin Attribute

Datatypes - string  + string    @@ -43691,6 +54228,10 @@

svg:origin Attribute

  + + RNG Relations + svg:origin="<string>"   +

svg:overline-position Attribute

@@ -43704,7 +54245,7 @@

svg:overline-position Attribute< Datatypes - integer  + integer    @@ -43712,6 +54253,10 @@

svg:overline-position Attribute<   + + RNG Relations + svg:overline-position="<integer>"   +

svg:overline-thickness Attribute

@@ -43725,7 +54270,7 @@

svg:overline-thickness Attribut Datatypes - integer  + integer    @@ -43733,6 +54278,10 @@

svg:overline-thickness Attribut   + + RNG Relations + svg:overline-thickness="<integer>"   +

svg:panose-1 Attribute

@@ -43746,7 +54295,7 @@

svg:panose-1 Attribute

Datatypes - string  + string    @@ -43754,6 +54303,10 @@

svg:panose-1 Attribute

  + + RNG Relations + svg:panose-1="<string>"   +

svg:path Attribute

@@ -43767,7 +54320,7 @@

svg:path Attribute

Datatypes - string  + string    @@ -43775,6 +54328,10 @@

svg:path Attribute

  + + RNG Relations + svg:path="<string>"   +

svg:r[1] Attribute

@@ -43789,8 +54346,8 @@

svg:r[1] Attribute

Datatypes - string  - string  + string  + string    @@ -43798,6 +54355,10 @@

svg:r[1] Attribute

  + + RNG Relations + svg:r="string] | string]"   +

svg:r[2] Attribute

@@ -43813,7 +54374,7 @@

svg:r[2] Attribute

Datatypes - string  + string    @@ -43821,6 +54382,10 @@

svg:r[2] Attribute

  + + RNG Relations + svg:r="string]"   +

svg:rx[1] Attribute

@@ -43835,7 +54400,7 @@

svg:rx[1] Attribute

Datatypes - string  + string    @@ -43843,6 +54408,10 @@

svg:rx[1] Attribute

  + + RNG Relations + svg:rx="string]"   +

svg:rx[2] Attribute

@@ -43857,7 +54426,7 @@

svg:rx[2] Attribute

Datatypes - string  + string    @@ -43865,6 +54434,10 @@

svg:rx[2] Attribute

  + + RNG Relations + svg:rx="string]"   +

svg:ry[1] Attribute

@@ -43873,13 +54446,13 @@

svg:ry[1] Attribute

Parent Elements - draw:ellipse  + draw:rect    Datatypes - string  + string    @@ -43887,6 +54460,10 @@

svg:ry[1] Attribute

  + + RNG Relations + svg:ry="string]"   +

svg:ry[2] Attribute

@@ -43895,13 +54472,13 @@

svg:ry[2] Attribute

Parent Elements - draw:rect  + draw:ellipse    Datatypes - string  + string    @@ -43909,6 +54486,10 @@

svg:ry[2] Attribute

  + + RNG Relations + svg:ry="string]"   +

svg:slope Attribute

@@ -43922,7 +54503,7 @@

svg:slope Attribute

Datatypes - integer  + integer    @@ -43930,6 +54511,10 @@

svg:slope Attribute

  + + RNG Relations + svg:slope="<integer>"   +

svg:spreadMethod Attribute

@@ -43949,11 +54534,15 @@

svg:spreadMethod Attribute

Values - "pad"  - "reflect"  - "repeat"  + "pad"  + "reflect"  + "repeat"    + + RNG Relations + svg:spreadMethod="pad | reflect | repeat"   +

svg:stemh Attribute

@@ -43967,7 +54556,7 @@

svg:stemh Attribute

Datatypes - integer  + integer    @@ -43975,6 +54564,10 @@

svg:stemh Attribute

  + + RNG Relations + svg:stemh="<integer>"   +

svg:stemv Attribute

@@ -43988,7 +54581,7 @@

svg:stemv Attribute

Datatypes - integer  + integer    @@ -43996,6 +54589,10 @@

svg:stemv Attribute

  + + RNG Relations + svg:stemv="<integer>"   +

svg:stop-color Attribute

@@ -44009,7 +54606,7 @@

svg:stop-color Attribute

Datatypes - string  + string    @@ -44017,6 +54614,10 @@

svg:stop-color Attribute

  + + RNG Relations + svg:stop-color="string]"   +

svg:stop-opacity Attribute

@@ -44030,7 +54631,7 @@

svg:stop-opacity Attribute

Datatypes - double  + double    @@ -44038,6 +54639,10 @@

svg:stop-opacity Attribute

  + + RNG Relations + svg:stop-opacity="<double>"   +

svg:strikethrough-position Attribute

@@ -44051,7 +54656,7 @@

svg:strikethrough-position Datatypes - integer  + integer    @@ -44059,6 +54664,10 @@

svg:strikethrough-position   + + RNG Relations + svg:strikethrough-position="<integer>"   +

svg:strikethrough-thickness Attribute

@@ -44072,7 +54681,7 @@

svg:strikethrough-thicknes Datatypes - integer  + integer    @@ -44080,6 +54689,10 @@

svg:strikethrough-thicknes   + + RNG Relations + svg:strikethrough-thickness="<integer>"   +

svg:string Attribute

@@ -44093,7 +54706,7 @@

svg:string Attribute

Datatypes - string  + string    @@ -44101,6 +54714,10 @@

svg:string Attribute

  + + RNG Relations + svg:string="<string>"   +

svg:stroke-color Attribute (new in ODF 1.2)

@@ -44114,7 +54731,7 @@

svg:stroke-color Attribute ( Datatypes - string  + string    @@ -44122,6 +54739,10 @@

svg:stroke-color Attribute (   + + RNG Relations + svg:stroke-color="string]"   +

svg:stroke-linecap Attribute (new in ODF 1.2)

@@ -44140,11 +54761,15 @@

svg:stroke-linecap Attribute&nb Values - "butt"  - "round"  - "square"  + "butt"  + "round"  + "square"    + + RNG Relations + svg:stroke-linecap="butt | square | round"   +

svg:stroke-opacity Attribute (new in ODF 1.2)

@@ -44158,8 +54783,8 @@

svg:stroke-opacity Attribute&nb Datatypes - double  - string  + double  + string    @@ -44167,6 +54792,10 @@

svg:stroke-opacity Attribute&nb   + + RNG Relations + svg:stroke-opacity="double] | string]"   +

svg:stroke-width Attribute (new in ODF 1.2)

@@ -44180,7 +54809,7 @@

svg:stroke-width Attribute ( Datatypes - string  + string    @@ -44188,6 +54817,10 @@

svg:stroke-width Attribute (   + + RNG Relations + svg:stroke-width="string]"   +

svg:type Attribute

@@ -44206,13 +54839,17 @@

svg:type Attribute

Values - "rotate"  - "scale"  - "skewX"  - "skewY"  - "translate"  + "rotate"  + "scale"  + "skewX"  + "skewY"  + "translate"    + + RNG Relations + svg:type="translate | scale | rotate | skewX | skewY"   +

svg:underline-position Attribute

@@ -44226,7 +54863,7 @@

svg:underline-position Attribut Datatypes - integer  + integer    @@ -44234,6 +54871,10 @@

svg:underline-position Attribut   + + RNG Relations + svg:underline-position="<integer>"   +

svg:underline-thickness Attribute

@@ -44247,7 +54888,7 @@

svg:underline-thickness Attrib Datatypes - integer  + integer    @@ -44255,6 +54896,10 @@

svg:underline-thickness Attrib   + + RNG Relations + svg:underline-thickness="<integer>"   +

svg:unicode-range Attribute

@@ -44268,7 +54913,7 @@

svg:unicode-range Attribute

Datatypes - string  + string    @@ -44276,6 +54921,10 @@

svg:unicode-range Attribute

  + + RNG Relations + svg:unicode-range="<string>"   +

svg:units-per-em Attribute

@@ -44289,7 +54938,7 @@

svg:units-per-em Attribute

Datatypes - integer  + integer    @@ -44297,6 +54946,10 @@

svg:units-per-em Attribute

  + + RNG Relations + svg:units-per-em="<integer>"   +

svg:v-alphabetic Attribute

@@ -44310,7 +54963,7 @@

svg:v-alphabetic Attribute

Datatypes - integer  + integer    @@ -44318,6 +54971,10 @@

svg:v-alphabetic Attribute

  + + RNG Relations + svg:v-alphabetic="<integer>"   +

svg:v-hanging Attribute

@@ -44331,7 +54988,7 @@

svg:v-hanging Attribute

Datatypes - integer  + integer    @@ -44339,6 +54996,10 @@

svg:v-hanging Attribute

  + + RNG Relations + svg:v-hanging="<integer>"   +

svg:v-ideographic Attribute

@@ -44352,7 +55013,7 @@

svg:v-ideographic Attribute

Datatypes - integer  + integer    @@ -44360,6 +55021,10 @@

svg:v-ideographic Attribute

  + + RNG Relations + svg:v-ideographic="<integer>"   +

svg:v-mathematical Attribute

@@ -44373,7 +55038,7 @@

svg:v-mathematical Attribute Datatypes - integer  + integer    @@ -44381,6 +55046,10 @@

svg:v-mathematical Attribute   + + RNG Relations + svg:v-mathematical="<integer>"   +

svg:viewBox Attribute

@@ -44404,7 +55073,7 @@

svg:viewBox Attribute

Datatypes - integer  + integer    @@ -44412,6 +55081,12 @@

svg:viewBox Attribute

  + + RNG Relations + svg:viewBox=" +START_list<integer><integer><integer><integer> +END_list"   +

svg:width[1] Attribute

@@ -44419,6 +55094,33 @@

svg:width[1] Attribute

+ + + + + + + + + + + + + + +
Parent Elements + presentation:placeholder  + 
Datatypes + string  + string  + 
Values
RNG Relationssvg:width="string] | string]"  
+
+

svg:width[2] Attribute

+

There are more than one Definitions by this name.

+ + + @@ -44457,28 +55159,9 @@

svg:width[1] Attribute

-
Parent Elements chart:chart  chart:floor  @@ -44449,7 +55151,7 @@

svg:width[1] Attribute

Datatypes - string  + string   
 
-
-

svg:width[2] Attribute

-

There are more than one Definitions by this name.

- - - - - - - - - - - + +
Parent Elements - presentation:placeholder  - 
Datatypes - string  - string  - 
ValuesRNG Relationssvg:width="string]"  

@@ -44493,7 +55176,7 @@

svg:widths Attribute

Datatypes - string  + string    @@ -44501,33 +55184,13 @@

svg:widths Attribute

  - -
-

svg:x[1] Attribute

-

There are more than one Definitions by this name.

- - - - - - - - - - - + +
Parent Elements - draw:glue-point  - presentation:placeholder  - 
Datatypes - string  - string  - 
ValuesRNG Relationssvg:widths="<string>"  

-

svg:x[2] Attribute

+

svg:x[1] Attribute

There are more than one Definitions by this name.

@@ -44562,7 +55225,7 @@

svg:x[2] Attribute

@@ -44570,6 +55233,38 @@

svg:x[2] Attribute

+ + + + +
Datatypes - string  + string   
 
RNG Relationssvg:x="string]"  
+
+

svg:x[2] Attribute

+

There are more than one Definitions by this name.

+ + + + + + + + + + + + + + + + +
Parent Elements + draw:glue-point  + presentation:placeholder  + 
Datatypes + string  + string  + 
Values
RNG Relationssvg:x="string] | string]"  

svg:x-height Attribute

@@ -44583,7 +55278,7 @@

svg:x-height Attribute

Datatypes - integer  + integer    @@ -44591,6 +55286,10 @@

svg:x-height Attribute

  + + RNG Relations + svg:x-height="<integer>"   +

svg:x1[1] Attribute

@@ -44599,15 +55298,14 @@

svg:x1[1] Attribute

Parent Elements - draw:connector  - draw:line  - draw:measure  + svg:linearGradient    Datatypes - string  + string  + string    @@ -44615,6 +55313,10 @@

svg:x1[1] Attribute

  + + RNG Relations + svg:x1="string] | string]"   +

svg:x1[2] Attribute

@@ -44623,14 +55325,15 @@

svg:x1[2] Attribute

Parent Elements - svg:linearGradient  + draw:connector  + draw:line  + draw:measure    Datatypes - string  - string  + string    @@ -44638,6 +55341,10 @@

svg:x1[2] Attribute

  + + RNG Relations + svg:x1="string]"   +

svg:x2[1] Attribute

@@ -44654,7 +55361,7 @@

svg:x2[1] Attribute

Datatypes - string  + string    @@ -44662,6 +55369,10 @@

svg:x2[1] Attribute

  + + RNG Relations + svg:x2="string]"   +

svg:x2[2] Attribute

@@ -44676,8 +55387,8 @@

svg:x2[2] Attribute

Datatypes - string  - string  + string  + string    @@ -44685,6 +55396,10 @@

svg:x2[2] Attribute

  + + RNG Relations + svg:x2="string] | string]"   +

svg:y[1] Attribute

@@ -44700,8 +55415,8 @@

svg:y[1] Attribute

Datatypes - string  - string  + string  + string    @@ -44709,6 +55424,10 @@

svg:y[1] Attribute

  + + RNG Relations + svg:y="string] | string]"   +

svg:y[2] Attribute

@@ -44748,7 +55467,7 @@

svg:y[2] Attribute

Datatypes - string  + string    @@ -44756,6 +55475,10 @@

svg:y[2] Attribute

  + + RNG Relations + svg:y="string]"   +

svg:y1[1] Attribute

@@ -44764,15 +55487,14 @@

svg:y1[1] Attribute

Parent Elements - draw:connector  - draw:line  - draw:measure  + svg:linearGradient    Datatypes - string  + string  + string    @@ -44780,6 +55502,10 @@

svg:y1[1] Attribute

  + + RNG Relations + svg:y1="string] | string]"   +

svg:y1[2] Attribute

@@ -44788,14 +55514,15 @@

svg:y1[2] Attribute

Parent Elements - svg:linearGradient  + draw:connector  + draw:line  + draw:measure    Datatypes - string  - string  + string    @@ -44803,6 +55530,10 @@

svg:y1[2] Attribute

  + + RNG Relations + svg:y1="string]"   +

svg:y2[1] Attribute

@@ -44811,15 +55542,14 @@

svg:y2[1] Attribute

Parent Elements - draw:connector  - draw:line  - draw:measure  + svg:linearGradient    Datatypes - string  + string  + string    @@ -44827,6 +55557,10 @@

svg:y2[1] Attribute

  + + RNG Relations + svg:y2="string] | string]"   +

svg:y2[2] Attribute

@@ -44835,14 +55569,15 @@

svg:y2[2] Attribute

Parent Elements - svg:linearGradient  + draw:connector  + draw:line  + draw:measure    Datatypes - string  - string  + string    @@ -44850,6 +55585,10 @@

svg:y2[2] Attribute

  + + RNG Relations + svg:y2="string]"   +

table:acceptance-state Attribute

@@ -44871,11 +55610,15 @@

table:acceptance-state Attribut Values - "accepted"  - "pending"  - "rejected"  + "accepted"  + "pending"  + "rejected"    + + RNG Relations + table:acceptance-state="accepted | rejected | pending"   +

table:add-empty-lines Attribute

@@ -44894,10 +55637,14 @@

table:add-empty-lines Attribute< Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + table:add-empty-lines="<boolean>"   +

table:algorithm Attribute

@@ -44911,7 +55658,7 @@

table:algorithm Attribute

Datatypes - string  + string    @@ -44919,6 +55666,10 @@

table:algorithm Attribute

  + + RNG Relations + table:algorithm="<string>"   +

table:align Attribute (new in ODF 1.2)

@@ -44937,12 +55688,16 @@

table:align Attribute (new in ODF Values - "center"  - "left"  - "margins"  - "right"  + "center"  + "left"  + "margins"  + "right"    + + RNG Relations + table:align="left | center | right | margins"   +

table:allow-empty-cell Attribute

@@ -44961,10 +55716,14 @@

table:allow-empty-cell Attribut Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + table:allow-empty-cell="<boolean>"   +

table:application-data Attribute

@@ -44978,7 +55737,7 @@

table:application-data Attribut Datatypes - string  + string    @@ -44986,6 +55745,10 @@

table:application-data Attribut   + + RNG Relations + table:application-data="<string>"   +

table:automatic-find-labels Attribute

@@ -45004,10 +55767,14 @@

table:automatic-find-label Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + table:automatic-find-labels="<boolean>"   +

table:base-cell-address Attribute

@@ -45023,7 +55790,7 @@

table:base-cell-address Attrib Datatypes - string  + string    @@ -45031,6 +55798,10 @@

table:base-cell-address Attrib   + + RNG Relations + table:base-cell-address="string]"   +

table:bind-styles-to-content Attribute

@@ -45050,10 +55821,14 @@

table:bind-styles-to-cont Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + table:bind-styles-to-content="<boolean>"   +

table:border-color Attribute

@@ -45067,7 +55842,7 @@

table:border-color Attribute Datatypes - string  + string    @@ -45075,6 +55850,10 @@

table:border-color Attribute   + + RNG Relations + table:border-color="string]"   +

table:border-model Attribute (new in ODF 1.2)

@@ -45093,10 +55872,14 @@

table:border-model Attribute&nb Values - "collapsing"  - "separating"  + "collapsing"  + "separating"    + + RNG Relations + table:border-model="collapsing | separating"   +

table:buttons Attribute

@@ -45110,7 +55893,7 @@

table:buttons Attribute

Datatypes - string  + string    @@ -45118,6 +55901,10 @@

table:buttons Attribute

  + + RNG Relations + table:buttons="<string>"   +

table:case-sensitive[1] Attribute

@@ -45132,7 +55919,7 @@

table:case-sensitive[1] Attribute Datatypes - string  + string    @@ -45140,6 +55927,10 @@

table:case-sensitive[1] Attribute   + + RNG Relations + table:case-sensitive="<string>"   +

table:case-sensitive[2] Attribute

@@ -45161,10 +55952,14 @@

table:case-sensitive[2] Attribute Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + table:case-sensitive="<boolean>"   +

table:cell-address Attribute

@@ -45178,7 +55973,7 @@

table:cell-address Attribute Datatypes - string  + string    @@ -45186,6 +55981,10 @@

table:cell-address Attribute   + + RNG Relations + table:cell-address="string]"   +

table:cell-range Attribute

@@ -45201,7 +56000,7 @@

table:cell-range Attribute

Datatypes - string  + string    @@ -45209,6 +56008,10 @@

table:cell-range Attribute

  + + RNG Relations + table:cell-range="<string>"   +

table:cell-range-address[1] Attribute

@@ -45217,17 +56020,15 @@

table:cell-range-address[1] A Parent Elements - table:highlighted-range  - table:named-range  - table:source-cell-range  + chart:categories  + chart:domain  + chart:plot-area    Datatypes - string  - string  - string  + string    @@ -45235,6 +56036,10 @@

table:cell-range-address[1] A   + + RNG Relations + table:cell-range-address="<string>"   +

table:cell-range-address[2] Attribute

@@ -45243,15 +56048,17 @@

table:cell-range-address[2] A Parent Elements - chart:categories  - chart:domain  - chart:plot-area  + table:highlighted-range  + table:named-range  + table:source-cell-range    Datatypes - string  + string  + string  + string    @@ -45259,6 +56066,10 @@

table:cell-range-address[2] A   + + RNG Relations + table:cell-range-address="string] | string] | string]"   +

table:column Attribute

@@ -45274,7 +56085,7 @@

table:column Attribute

Datatypes - integer  + integer    @@ -45282,6 +56093,10 @@

table:column Attribute

  + + RNG Relations + table:column="<integer>"   +

table:comment Attribute

@@ -45295,7 +56110,7 @@

table:comment Attribute

Datatypes - string  + string    @@ -45303,6 +56118,10 @@

table:comment Attribute

  + + RNG Relations + table:comment="<string>"   +

table:condition Attribute

@@ -45316,7 +56135,7 @@

table:condition Attribute

Datatypes - string  + string    @@ -45324,6 +56143,10 @@

table:condition Attribute

  + + RNG Relations + table:condition="<string>"   +

table:condition-source Attribute

@@ -45342,10 +56165,14 @@

table:condition-source Attribut Values - "cell-range"  - "self"  + "cell-range"  + "self"    + + RNG Relations + table:condition-source="self | cell-range"   +

table:condition-source-range-address Attribute

@@ -45359,9 +56186,9 @@

table:condition-s Datatypes - string  - string  - string  + string  + string  + string    @@ -45369,6 +56196,10 @@

table:condition-s   + + RNG Relations + table:condition-source-range-address="string] | string] | string]"   +

table:contains-error Attribute

@@ -45387,10 +56218,14 @@

table:contains-error Attribute Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + table:contains-error="<boolean>"   +

table:contains-header Attribute

@@ -45409,10 +56244,14 @@

table:contains-header Attribute< Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + table:contains-header="<boolean>"   +

table:content-validation-name Attribute

@@ -45427,7 +56266,7 @@

table:content-validation Datatypes - string  + string    @@ -45435,6 +56274,10 @@

table:content-validation   + + RNG Relations + table:content-validation-name="<string>"   +

table:copy-back Attribute

@@ -45453,10 +56296,14 @@

table:copy-back Attribute

Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + table:copy-back="<boolean>"   +

table:copy-formulas Attribute

@@ -45475,10 +56322,14 @@

table:copy-formulas Attribute< Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + table:copy-formulas="<boolean>"   +

table:copy-styles Attribute

@@ -45497,10 +56348,14 @@

table:copy-styles Attribute

Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + table:copy-styles="<boolean>"   +

table:count Attribute

@@ -45514,7 +56369,7 @@

table:count Attribute

Datatypes - positiveInteger  + positiveInteger    @@ -45522,6 +56377,10 @@

table:count Attribute

  + + RNG Relations + table:count="<positiveInteger>"   +

table:country Attribute

@@ -45535,7 +56394,7 @@

table:country Attribute

Datatypes - token  + token    @@ -45543,6 +56402,10 @@

table:country Attribute

  + + RNG Relations + table:country="token]"   +

table:data-cell-range-address Attribute

@@ -45556,9 +56419,9 @@

table:data-cell-range-ad Datatypes - string  - string  - string  + string  + string  + string    @@ -45566,6 +56429,10 @@

table:data-cell-range-ad   + + RNG Relations + table:data-cell-range-address="string] | string] | string]"   +

table:data-field Attribute

@@ -45580,7 +56447,7 @@

table:data-field Attribute

Datatypes - string  + string    @@ -45588,6 +56455,10 @@

table:data-field Attribute

  + + RNG Relations + table:data-field="<string>"   +

table:data-type[1] Attribute

@@ -45603,17 +56474,21 @@

table:data-type[1] Attribute

Datatypes - string  + string    Values - "automatic"  - "number"  - "text"  + "automatic"  + "number"  + "text"    + + RNG Relations + table:data-type="text | number | automatic | <string>"   +

table:data-type[2] Attribute

@@ -45633,10 +56508,14 @@

table:data-type[2] Attribute

Values - "number"  - "text"  + "number"  + "text"    + + RNG Relations + table:data-type="text | number"   +

table:database-name Attribute

@@ -45652,7 +56531,7 @@

table:database-name Attribute< Datatypes - string  + string    @@ -45660,6 +56539,10 @@

table:database-name Attribute<   + + RNG Relations + table:database-name="<string>"   +

table:database-table-name Attribute

@@ -45673,7 +56556,7 @@

table:database-table-name At Datatypes - string  + string    @@ -45681,6 +56564,10 @@

table:database-table-name At   + + RNG Relations + table:database-table-name="<string>"   +

table:date-end Attribute

@@ -45694,16 +56581,20 @@

table:date-end Attribute

Datatypes - date  - dateTime  + date  + dateTime    Values - "auto"  + "auto"    + + RNG Relations + table:date-end="<date> | <dateTime> | auto"   +

table:date-start Attribute

@@ -45717,16 +56608,20 @@

table:date-start Attribute

Datatypes - date  - dateTime  + date  + dateTime    Values - "auto"  + "auto"    + + RNG Relations + table:date-start="<date> | <dateTime> | auto"   +

table:date-value Attribute (new in ODF 1.1)

@@ -45740,7 +56635,7 @@

table:date-value Attribute ( Datatypes - date  + date    @@ -45748,6 +56643,10 @@

table:date-value Attribute (   + + RNG Relations + table:date-value="<date>"   +

table:default-cell-style-name Attribute

@@ -45762,7 +56661,7 @@

table:default-cell-style Datatypes - NCName  + NCName    @@ -45770,6 +56669,10 @@

table:default-cell-style   + + RNG Relations + table:default-cell-style-name="(<NCName>)?"   +

table:direction Attribute

@@ -45788,11 +56691,15 @@

table:direction Attribute

Values - "from-another-table"  - "from-same-table"  - "to-another-table"  + "from-another-table"  + "from-same-table"  + "to-another-table"    + + RNG Relations + table:direction="from-another-table | to-another-table | from-same-table"   +

table:display Attribute

@@ -45816,10 +56723,14 @@

table:display Attribute

Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + table:display="<boolean>"   +

table:display-border Attribute

@@ -45838,10 +56749,14 @@

table:display-border Attribute Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + table:display-border="<boolean>"   +

table:display-duplicates Attribute

@@ -45860,10 +56775,14 @@

table:display-duplicates Attr Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + table:display-duplicates="<boolean>"   +

table:display-filter-buttons Attribute

@@ -45882,10 +56801,14 @@

table:display-filter-butt Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + table:display-filter-buttons="<boolean>"   +

table:display-list Attribute

@@ -45904,11 +56827,15 @@

table:display-list Attribute Values - "none"  - "sort-ascending"  - "unsorted"  + "none"  + "sort-ascending"  + "unsorted"    + + RNG Relations + table:display-list="none | unsorted | sort-ascending"   +

table:display-member-mode Attribute

@@ -45927,10 +56854,14 @@

table:display-member-mode At Values - "from-bottom"  - "from-top"  + "from-bottom"  + "from-top"    + + RNG Relations + table:display-member-mode="from-top | from-bottom"   +

table:drill-down-on-double-click Attribute

@@ -45949,10 +56880,14 @@

table:drill-down-on-d Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + table:drill-down-on-double-click="<boolean>"   +

table:embedded-number-behavior Attribute (new in ODF 1.2)

@@ -45971,11 +56906,15 @@

table:embedded-number-b Values - "alpha-numeric"  - "double"  - "integer"  + "alpha-numeric"  + "double"  + "integer"    + + RNG Relations + table:embedded-number-behavior="alpha-numeric | integer | double"   +

table:enabled Attribute

@@ -45994,10 +56933,14 @@

table:enabled Attribute

Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + table:enabled="<boolean>"   +

table:end Attribute

@@ -46011,15 +56954,19 @@

table:end Attribute

Datatypes - double  + double    Values - "auto"  + "auto"    + + RNG Relations + table:end="<double> | auto"   +

table:end-cell-address Attribute

@@ -46050,7 +56997,7 @@

table:end-cell-address Attribut Datatypes - string  + string    @@ -46058,6 +57005,10 @@

table:end-cell-address Attribut   + + RNG Relations + table:end-cell-address="string]"   +

table:end-column Attribute

@@ -46072,7 +57023,7 @@

table:end-column Attribute

Datatypes - integer  + integer    @@ -46080,6 +57031,10 @@

table:end-column Attribute

  + + RNG Relations + table:end-column="<integer>"   +

table:end-position Attribute

@@ -46093,7 +57048,7 @@

table:end-position Attribute Datatypes - integer  + integer    @@ -46101,6 +57056,10 @@

table:end-position Attribute   + + RNG Relations + table:end-position="<integer>"   +

table:end-row Attribute

@@ -46115,7 +57074,7 @@

table:end-row Attribute

Datatypes - integer  + integer    @@ -46123,6 +57082,10 @@

table:end-row Attribute

  + + RNG Relations + table:end-row="<integer>"   +

table:end-table Attribute

@@ -46137,7 +57100,7 @@

table:end-table Attribute

Datatypes - integer  + integer    @@ -46145,6 +57108,10 @@

table:end-table Attribute

  + + RNG Relations + table:end-table="<integer>"   +

table:end-x Attribute

@@ -46175,7 +57142,7 @@

table:end-x Attribute

Datatypes - string  + string    @@ -46183,6 +57150,10 @@

table:end-x Attribute

  + + RNG Relations + table:end-x="string]"   +

table:end-y Attribute

@@ -46213,7 +57184,7 @@

table:end-y Attribute

Datatypes - string  + string    @@ -46221,6 +57192,10 @@

table:end-y Attribute

  + + RNG Relations + table:end-y="string]"   +

table:execute Attribute

@@ -46239,10 +57214,14 @@

table:execute Attribute

Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + table:execute="<boolean>"   +

table:expression Attribute

@@ -46256,7 +57235,7 @@

table:expression Attribute

Datatypes - string  + string    @@ -46264,6 +57243,10 @@

table:expression Attribute

  + + RNG Relations + table:expression="<string>"   +

table:field-name Attribute

@@ -46277,7 +57260,7 @@

table:field-name Attribute

Datatypes - string  + string    @@ -46285,6 +57268,10 @@

table:field-name Attribute

  + + RNG Relations + table:field-name="<string>"   +

table:field-number Attribute

@@ -46300,7 +57287,7 @@

table:field-number Attribute Datatypes - nonNegativeInteger  + nonNegativeInteger    @@ -46308,6 +57295,10 @@

table:field-number Attribute   + + RNG Relations + table:field-number="<nonNegativeInteger>"   +

table:filter-name Attribute

@@ -46322,7 +57313,7 @@

table:filter-name Attribute

Datatypes - string  + string    @@ -46330,6 +57321,10 @@

table:filter-name Attribute

  + + RNG Relations + table:filter-name="<string>"   +

table:filter-options Attribute

@@ -46344,7 +57339,7 @@

table:filter-options Attribute Datatypes - string  + string    @@ -46352,6 +57347,10 @@

table:filter-options Attribute   + + RNG Relations + table:filter-options="<string>"   +

table:first-row-end-column Attribute (new in ODF 1.2)

@@ -46370,10 +57369,14 @@

table:first-row-end-column Values - "column"  - "row"  + "column"  + "row"    + + RNG Relations + table:first-row-end-column="row | column"   +

table:first-row-start-column Attribute (new in ODF 1.2)

@@ -46392,10 +57395,14 @@

table:first-row-start-col Values - "column"  - "row"  + "column"  + "row"    + + RNG Relations + table:first-row-start-column="row | column"   +

table:formula Attribute

@@ -46411,7 +57418,7 @@

table:formula Attribute

Datatypes - string  + string    @@ -46419,6 +57426,10 @@

table:formula Attribute

  + + RNG Relations + table:formula="<string>"   +

table:function[1] Attribute

@@ -46427,32 +57438,37 @@

table:function[1] Attribute

Parent Elements - table:consolidation  - table:subtotal-field  + table:data-pilot-field  + table:data-pilot-subtotal    Datatypes - string  + string    Values - "average"  - "count"  - "countnums"  - "max"  - "min"  - "product"  - "stdev"  - "stdevp"  - "sum"  - "var"  - "varp"  + "auto"  + "average"  + "count"  + "countnums"  + "max"  + "min"  + "product"  + "stdev"  + "stdevp"  + "sum"  + "var"  + "varp"    + + RNG Relations + table:function="auto | average | count | countnums | max | min | product | stdev | stdevp | sum | var | varp | <string>"   +

table:function[2] Attribute

@@ -46461,33 +57477,36 @@

table:function[2] Attribute

Parent Elements - table:data-pilot-field  - table:data-pilot-subtotal  + table:consolidation  + table:subtotal-field    Datatypes - string  + string    Values - "auto"  - "average"  - "count"  - "countnums"  - "max"  - "min"  - "product"  - "stdev"  - "stdevp"  - "sum"  - "var"  - "varp"  + "average"  + "count"  + "countnums"  + "max"  + "min"  + "product"  + "stdev"  + "stdevp"  + "sum"  + "var"  + "varp"    + + RNG Relations + table:function="average | count | countnums | max | min | product | stdev | stdevp | sum | var | varp | <string>"   +

table:grand-total Attribute

@@ -46506,12 +57525,16 @@

table:grand-total Attribute

Values - "both"  - "column"  - "none"  - "row"  + "both"  + "column"  + "none"  + "row"    + + RNG Relations + table:grand-total="none | row | column | both"   +

table:group-by-field-number Attribute

@@ -46525,7 +57548,7 @@

table:group-by-field-numbe Datatypes - nonNegativeInteger  + nonNegativeInteger    @@ -46533,6 +57556,10 @@

table:group-by-field-numbe   + + RNG Relations + table:group-by-field-number="<nonNegativeInteger>"   +

table:grouped-by Attribute

@@ -46551,15 +57578,19 @@

table:grouped-by Attribute

Values - "days"  - "hours"  - "minutes"  - "months"  - "quarters"  - "seconds"  - "years"  + "days"  + "hours"  + "minutes"  + "months"  + "quarters"  + "seconds"  + "years"    + + RNG Relations + table:grouped-by="seconds | minutes | hours | days | months | quarters | years"   +

table:has-persistent-data Attribute

@@ -46578,10 +57609,14 @@

table:has-persistent-data At Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + table:has-persistent-data="<boolean>"   +

table:id Attribute

@@ -46603,7 +57638,7 @@

table:id Attribute

Datatypes - string  + string    @@ -46611,6 +57646,10 @@

table:id Attribute

  + + RNG Relations + table:id="<string>"   +

table:identify-categories Attribute

@@ -46629,10 +57668,14 @@

table:identify-categories At Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + table:identify-categories="<boolean>"   +

table:ignore-empty-rows Attribute

@@ -46651,10 +57694,14 @@

table:ignore-empty-rows Attrib Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + table:ignore-empty-rows="<boolean>"   +

table:index Attribute

@@ -46668,7 +57715,7 @@

table:index Attribute

Datatypes - nonNegativeInteger  + nonNegativeInteger    @@ -46676,6 +57723,10 @@

table:index Attribute

  + + RNG Relations + table:index="<nonNegativeInteger>"   +

table:is-active Attribute

@@ -46694,10 +57745,14 @@

table:is-active Attribute

Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + table:is-active="<boolean>"   +

table:is-data-layout-field Attribute

@@ -46711,7 +57766,7 @@

table:is-data-layout-field Datatypes - string  + string    @@ -46719,6 +57774,10 @@

table:is-data-layout-field   + + RNG Relations + table:is-data-layout-field="<string>"   +

table:is-selection Attribute

@@ -46737,10 +57796,14 @@

table:is-selection Attribute Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + table:is-selection="<boolean>"   +

table:is-sub-table Attribute

@@ -46759,10 +57822,14 @@

table:is-sub-table Attribute Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + table:is-sub-table="<boolean>"   +

table:label-cell-range-address Attribute

@@ -46776,9 +57843,9 @@

table:label-cell-range- Datatypes - string  - string  - string  + string  + string  + string    @@ -46786,6 +57853,10 @@

table:label-cell-range-   + + RNG Relations + table:label-cell-range-address="string] | string] | string]"   +

table:language Attribute

@@ -46799,7 +57870,7 @@

table:language Attribute

Datatypes - token  + token    @@ -46807,6 +57878,10 @@

table:language Attribute

  + + RNG Relations + table:language="token]"   +

table:last-column-spanned Attribute

@@ -46820,7 +57895,7 @@

table:last-column-spanned At Datatypes - positiveInteger  + positiveInteger    @@ -46828,6 +57903,10 @@

table:last-column-spanned At   + + RNG Relations + table:last-column-spanned="<positiveInteger>"   +

table:last-row-end-column Attribute (new in ODF 1.2)

@@ -46846,10 +57925,14 @@

table:last-row-end-column At Values - "column"  - "row"  + "column"  + "row"    + + RNG Relations + table:last-row-end-column="row | column"   +

table:last-row-spanned Attribute

@@ -46863,7 +57946,7 @@

table:last-row-spanned Attribut Datatypes - positiveInteger  + positiveInteger    @@ -46871,6 +57954,10 @@

table:last-row-spanned Attribut   + + RNG Relations + table:last-row-spanned="<positiveInteger>"   +

table:last-row-start-column Attribute (new in ODF 1.2)

@@ -46889,10 +57976,14 @@

table:last-row-start-colum Values - "column"  - "row"  + "column"  + "row"    + + RNG Relations + table:last-row-start-column="row | column"   +

table:layout-mode Attribute

@@ -46911,11 +58002,15 @@

table:layout-mode Attribute

Values - "outline-subtotals-bottom"  - "outline-subtotals-top"  - "tabular-layout"  + "outline-subtotals-bottom"  + "outline-subtotals-top"  + "tabular-layout"    + + RNG Relations + table:layout-mode="tabular-layout | outline-subtotals-top | outline-subtotals-bottom"   +

table:link-to-source-data Attribute

@@ -46934,10 +58029,14 @@

table:link-to-source-data At Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + table:link-to-source-data="<boolean>"   +

table:marked-invalid Attribute

@@ -46956,10 +58055,14 @@

table:marked-invalid Attribute Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + table:marked-invalid="<boolean>"   +

table:matrix-covered Attribute

@@ -46978,10 +58081,14 @@

table:matrix-covered Attribute Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + table:matrix-covered="<boolean>"   +

table:maximum-difference Attribute

@@ -46995,7 +58102,7 @@

table:maximum-difference Attr Datatypes - double  + double    @@ -47003,6 +58110,10 @@

table:maximum-difference Attr   + + RNG Relations + table:maximum-difference="<double>"   +

table:member-count Attribute

@@ -47016,7 +58127,7 @@

table:member-count Attribute Datatypes - nonNegativeInteger  + nonNegativeInteger    @@ -47024,6 +58135,10 @@

table:member-count Attribute   + + RNG Relations + table:member-count="<nonNegativeInteger>"   +

table:member-name Attribute

@@ -47037,7 +58152,7 @@

table:member-name Attribute

Datatypes - string  + string    @@ -47045,6 +58160,10 @@

table:member-name Attribute

  + + RNG Relations + table:member-name="<string>"   +

table:member-type[1] Attribute

@@ -47064,10 +58183,13 @@

table:member-type[1] Attribute Values - "next"  - "previous"  + "named"    + + RNG Relations + table:member-type="named"   +

table:member-type[2] Attribute

@@ -47087,9 +58209,14 @@

table:member-type[2] Attribute Values - "named"  + "next"  + "previous"    + + RNG Relations + table:member-type="previous | next"   +

table:message-type Attribute

@@ -47108,11 +58235,15 @@

table:message-type Attribute Values - "information"  - "stop"  - "warning"  + "information"  + "stop"  + "warning"    + + RNG Relations + table:message-type="stop | warning | information"   +

table:mode Attribute

@@ -47131,10 +58262,14 @@

table:mode Attribute

Values - "copy-all"  - "copy-results-only"  + "copy-all"  + "copy-results-only"    + + RNG Relations + table:mode="copy-all | copy-results-only"   +

table:multi-deletion-spanned Attribute

@@ -47148,7 +58283,7 @@

table:multi-deletion-span Datatypes - integer  + integer    @@ -47156,6 +58291,10 @@

table:multi-deletion-span   + + RNG Relations + table:multi-deletion-spanned="<integer>"   +

table:name[1] Attribute

@@ -47164,31 +58303,28 @@

table:name[1] Attribute

Parent Elements - table:cell-range-source  - table:content-validation  - table:data-pilot-group  - table:data-pilot-group-member  - table:data-pilot-member  - table:data-pilot-table  - table:database-range  - table:named-expression  - table:named-range  - table:source-service  - table:table  - table:table-template  + table:operation    Datatypes - string    Values + "remove-dependents"  + "remove-precedents"  + "trace-dependents"  + "trace-errors"  + "trace-precedents"    + + RNG Relations + table:name="trace-dependents | remove-dependents | trace-precedents | remove-precedents | trace-errors"   +

table:name[2] Attribute

@@ -47197,24 +58333,35 @@

table:name[2] Attribute

Parent Elements - table:operation  + table:cell-range-source  + table:content-validation  + table:data-pilot-group  + table:data-pilot-group-member  + table:data-pilot-member  + table:data-pilot-table  + table:database-range  + table:named-expression  + table:named-range  + table:source-service  + table:table  + table:table-template    Datatypes + string    Values - "remove-dependents"  - "remove-precedents"  - "trace-dependents"  - "trace-errors"  - "trace-precedents"    + + RNG Relations + table:name="<string>"   +

table:null-year Attribute

@@ -47228,7 +58375,7 @@

table:null-year Attribute

Datatypes - positiveInteger  + positiveInteger    @@ -47236,6 +58383,10 @@

table:null-year Attribute

  + + RNG Relations + table:null-year="<positiveInteger>"   +

table:number-columns-repeated Attribute

@@ -47251,7 +58402,7 @@

table:number-columns-rep Datatypes - positiveInteger  + positiveInteger    @@ -47259,6 +58410,10 @@

table:number-columns-rep   + + RNG Relations + table:number-columns-repeated="<positiveInteger>"   +

table:number-columns-spanned Attribute

@@ -47272,7 +58427,7 @@

table:number-columns-span Datatypes - positiveInteger  + positiveInteger    @@ -47280,6 +58435,10 @@

table:number-columns-span   + + RNG Relations + table:number-columns-spanned="<positiveInteger>"   +

table:number-matrix-columns-spanned Attribute

@@ -47294,7 +58453,7 @@

table:number-matri Datatypes - positiveInteger  + positiveInteger    @@ -47302,6 +58461,10 @@

table:number-matri   + + RNG Relations + table:number-matrix-columns-spanned="<positiveInteger>"   +

table:number-matrix-rows-spanned Attribute

@@ -47316,7 +58479,7 @@

table:number-matrix-r Datatypes - positiveInteger  + positiveInteger    @@ -47324,6 +58487,10 @@

table:number-matrix-r   + + RNG Relations + table:number-matrix-rows-spanned="<positiveInteger>"   +

table:number-rows-repeated Attribute

@@ -47337,7 +58504,7 @@

table:number-rows-repeated Datatypes - positiveInteger  + positiveInteger    @@ -47345,6 +58512,10 @@

table:number-rows-repeated   + + RNG Relations + table:number-rows-repeated="<positiveInteger>"   +

table:number-rows-spanned Attribute

@@ -47358,7 +58529,7 @@

table:number-rows-spanned At Datatypes - positiveInteger  + positiveInteger    @@ -47366,6 +58537,10 @@

table:number-rows-spanned At   + + RNG Relations + table:number-rows-spanned="<positiveInteger>"   +

table:object-name Attribute

@@ -47379,7 +58554,7 @@

table:object-name Attribute

Datatypes - string  + string    @@ -47387,6 +58562,10 @@

table:object-name Attribute

  + + RNG Relations + table:object-name="<string>"   +

table:on-update-keep-size Attribute

@@ -47405,10 +58584,14 @@

table:on-update-keep-size At Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + table:on-update-keep-size="<boolean>"   +

table:on-update-keep-styles Attribute

@@ -47427,10 +58610,14 @@

table:on-update-keep-style Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + table:on-update-keep-styles="<boolean>"   +

table:operator Attribute

@@ -47444,7 +58631,7 @@

table:operator Attribute

Datatypes - string  + string    @@ -47452,6 +58639,10 @@

table:operator Attribute

  + + RNG Relations + table:operator="<string>"   +

table:order Attribute

@@ -47472,10 +58663,14 @@

table:order Attribute

Values - "ascending"  - "descending"  + "ascending"  + "descending"    + + RNG Relations + table:order="ascending | descending"   +

table:orientation[1] Attribute

@@ -47484,8 +58679,7 @@

table:orientation[1] Attribute Parent Elements - table:database-range  - table:label-range  + table:data-pilot-field    @@ -47496,10 +58690,16 @@

table:orientation[1] Attribute Values - "column"  - "row"  + "column"  + "data"  + "hidden"  + "row"    + + RNG Relations + table:orientation="row | column | data | hidden"   +

table:orientation[2] Attribute

@@ -47508,7 +58708,8 @@

table:orientation[2] Attribute Parent Elements - table:data-pilot-field  + table:database-range  + table:label-range    @@ -47519,12 +58720,14 @@

table:orientation[2] Attribute Values - "column"  - "data"  - "hidden"  - "row"  + "column"  + "row"    + + RNG Relations + table:orientation="column | row"   +

table:orientation[3] Attribute

@@ -47544,9 +58747,13 @@

table:orientation[3] Attribute Values - "page"  + "page"    + + RNG Relations + table:orientation="page"   +

table:page-breaks-on-group-change Attribute

@@ -47565,10 +58772,14 @@

table:page-breaks-on Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + table:page-breaks-on-group-change="<boolean>"   +

table:paragraph-style-name Attribute (new in ODF 1.2)

@@ -47590,7 +58801,7 @@

table:paragraph-style-name Datatypes - NCName  + NCName    @@ -47598,6 +58809,10 @@

table:paragraph-style-name   + + RNG Relations + table:paragraph-style-name="(<NCName>)?"   +

table:parse-sql-statement Attribute

@@ -47616,10 +58831,14 @@

table:parse-sql-statement At Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + table:parse-sql-statement="<boolean>"   +

table:password Attribute

@@ -47633,7 +58852,7 @@

table:password Attribute

Datatypes - string  + string    @@ -47641,6 +58860,10 @@

table:password Attribute

  + + RNG Relations + table:password="<string>"   +

table:position Attribute

@@ -47657,7 +58880,7 @@

table:position Attribute

Datatypes - integer  + integer    @@ -47665,6 +58888,10 @@

table:position Attribute

  + + RNG Relations + table:position="<integer>"   +

table:precision-as-shown Attribute

@@ -47683,10 +58910,14 @@

table:precision-as-shown Attr Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + table:precision-as-shown="<boolean>"   +

table:print Attribute

@@ -47705,10 +58936,14 @@

table:print Attribute

Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + table:print="<boolean>"   +

table:print-ranges Attribute

@@ -47722,7 +58957,7 @@

table:print-ranges Attribute Datatypes - string  + string    @@ -47730,6 +58965,10 @@

table:print-ranges Attribute   + + RNG Relations + table:print-ranges="<string>"   +

table:protect Attribute

@@ -47749,10 +58988,14 @@

table:protect Attribute

Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + table:protect="<boolean>"   +

table:protected Attribute

@@ -47774,10 +59017,14 @@

table:protected Attribute

Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + table:protected="<boolean>"   +

table:protection-key Attribute

@@ -47792,7 +59039,7 @@

table:protection-key Attribute Datatypes - string  + string    @@ -47800,6 +59047,10 @@

table:protection-key Attribute   + + RNG Relations + table:protection-key="<string>"   +

table:protection-key-digest-algorithm Attribute (new in ODF 1.2)

@@ -47814,7 +59065,7 @@

table:protection Datatypes - anyURI  + anyURI    @@ -47822,6 +59073,10 @@

table:protection   + + RNG Relations + table:protection-key-digest-algorithm="<anyIRI>"   +

table:query-name Attribute

@@ -47835,7 +59090,7 @@

table:query-name Attribute

Datatypes - string  + string    @@ -47843,6 +59098,10 @@

table:query-name Attribute

  + + RNG Relations + table:query-name="<string>"   +

table:range-usable-as Attribute

@@ -47861,13 +59120,19 @@

table:range-usable-as Attribute< Values - "filter"  - "none"  - "print-range"  - "repeat-column"  - "repeat-row"  + "filter"  + "none"  + "print-range"  + "repeat-column"  + "repeat-row"    + + RNG Relations + table:range-usable-as="none | +START_list(print-range | filter | repeat-row | repeat-column)+ +END_list"   +

table:refresh-delay[1] Attribute

@@ -47876,21 +59141,25 @@

table:refresh-delay[1] Attribute Parent Elements - table:database-range  + table:cell-range-source  + table:table-source    Datatypes + duration    Values - "false"  - "true"    + + RNG Relations + table:refresh-delay="<duration>"   +

table:refresh-delay[2] Attribute

@@ -47899,21 +59168,25 @@

table:refresh-delay[2] Attribute Parent Elements - table:cell-range-source  - table:table-source  + table:database-range    Datatypes - duration    Values + "false"  + "true"    + + RNG Relations + table:refresh-delay="<boolean>"   +

table:rejecting-change-id Attribute

@@ -47930,7 +59203,7 @@

table:rejecting-change-id At Datatypes - string  + string    @@ -47938,6 +59211,10 @@

table:rejecting-change-id At   + + RNG Relations + table:rejecting-change-id="<string>"   +

table:rfc-language-tag Attribute (new in ODF 1.2)

@@ -47951,7 +59228,7 @@

table:rfc-language-tag Attribut Datatypes - language  + language    @@ -47959,6 +59236,10 @@

table:rfc-language-tag Attribut   + + RNG Relations + table:rfc-language-tag="<language>"   +

table:row Attribute

@@ -47974,7 +59255,7 @@

table:row Attribute

Datatypes - integer  + integer    @@ -47982,6 +59263,10 @@

table:row Attribute

  + + RNG Relations + table:row="<integer>"   +

table:scenario-ranges Attribute

@@ -47995,7 +59280,7 @@

table:scenario-ranges Attribute< Datatypes - string  + string    @@ -48003,6 +59288,10 @@

table:scenario-ranges Attribute<   + + RNG Relations + table:scenario-ranges="<string>"   +

table:script Attribute (new in ODF 1.2)

@@ -48016,7 +59305,7 @@

table:script Attribute (new in O Datatypes - token  + token    @@ -48024,6 +59313,10 @@

table:script Attribute (new in O   + + RNG Relations + table:script="token]"   +

table:search-criteria-must-apply-to-whole-cell Attribute

@@ -48042,10 +59335,14 @@

table:s Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + table:search-criteria-must-apply-to-whole-cell="<boolean>"   +

table:selected-page Attribute

@@ -48059,7 +59356,7 @@

table:selected-page Attribute< Datatypes - string  + string    @@ -48067,6 +59364,10 @@

table:selected-page Attribute<   + + RNG Relations + table:selected-page="<string>"   +

table:show-details Attribute

@@ -48085,10 +59386,14 @@

table:show-details Attribute Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + table:show-details="<boolean>"   +

table:show-empty Attribute

@@ -48107,10 +59412,14 @@

table:show-empty Attribute

Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + table:show-empty="<boolean>"   +

table:show-filter-button Attribute

@@ -48129,10 +59438,14 @@

table:show-filter-button Attr Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + table:show-filter-button="<boolean>"   +

table:sort-mode[1] Attribute

@@ -48152,9 +59465,13 @@

table:sort-mode[1] Attribute

Values - "data"  + "data"    + + RNG Relations + table:sort-mode="data"   +

table:sort-mode[2] Attribute

@@ -48174,11 +59491,15 @@

table:sort-mode[2] Attribute

Values - "manual"  - "name"  - "none"  + "manual"  + "name"  + "none"    + + RNG Relations + table:sort-mode="none | manual | name"   +

table:source-cell-range-addresses Attribute

@@ -48192,7 +59513,7 @@

table:source-cell-ra Datatypes - string  + string    @@ -48200,6 +59521,10 @@

table:source-cell-ra   + + RNG Relations + table:source-cell-range-addresses="<string>"   +

table:source-field-name Attribute

@@ -48214,7 +59539,7 @@

table:source-field-name Attrib Datatypes - string  + string    @@ -48222,6 +59547,10 @@

table:source-field-name Attrib   + + RNG Relations + table:source-field-name="<string>"   +

table:source-name Attribute

@@ -48235,7 +59564,7 @@

table:source-name Attribute

Datatypes - string  + string    @@ -48243,6 +59572,10 @@

table:source-name Attribute

  + + RNG Relations + table:source-name="<string>"   +

table:sql-statement Attribute

@@ -48256,7 +59589,7 @@

table:sql-statement Attribute< Datatypes - string  + string    @@ -48264,6 +59597,10 @@

table:sql-statement Attribute<   + + RNG Relations + table:sql-statement="<string>"   +

table:start Attribute

@@ -48277,15 +59614,19 @@

table:start Attribute

Datatypes - double  + double    Values - "auto"  + "auto"    + + RNG Relations + table:start="<double> | auto"   +

table:start-column Attribute

@@ -48300,7 +59641,7 @@

table:start-column Attribute Datatypes - integer  + integer    @@ -48308,6 +59649,10 @@

table:start-column Attribute   + + RNG Relations + table:start-column="<integer>"   +

table:start-position Attribute

@@ -48321,7 +59666,7 @@

table:start-position Attribute Datatypes - integer  + integer    @@ -48329,6 +59674,10 @@

table:start-position Attribute   + + RNG Relations + table:start-position="<integer>"   +

table:start-row Attribute

@@ -48343,7 +59692,7 @@

table:start-row Attribute

Datatypes - integer  + integer    @@ -48351,6 +59700,10 @@

table:start-row Attribute

  + + RNG Relations + table:start-row="<integer>"   +

table:start-table Attribute

@@ -48365,7 +59718,7 @@

table:start-table Attribute

Datatypes - integer  + integer    @@ -48373,6 +59726,10 @@

table:start-table Attribute

  + + RNG Relations + table:start-table="<integer>"   +

table:status Attribute

@@ -48391,10 +59748,14 @@

table:status Attribute

Values - "disable"  - "enable"  + "disable"  + "enable"    + + RNG Relations + table:status="enable | disable"   +

table:step Attribute

@@ -48408,7 +59769,7 @@

table:step Attribute

Datatypes - double  + double    @@ -48416,6 +59777,10 @@

table:step Attribute

  + + RNG Relations + table:step="<double>"   +

table:steps Attribute

@@ -48429,7 +59794,7 @@

table:steps Attribute

Datatypes - positiveInteger  + positiveInteger    @@ -48437,6 +59802,10 @@

table:steps Attribute

  + + RNG Relations + table:steps="<positiveInteger>"   +

table:structure-protected Attribute

@@ -48455,10 +59824,14 @@

table:structure-protected At Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + table:structure-protected="<boolean>"   +

table:style-name Attribute

@@ -48486,7 +59859,7 @@

table:style-name Attribute

Datatypes - NCName  + NCName    @@ -48494,6 +59867,10 @@

table:style-name Attribute

  + + RNG Relations + table:style-name="(<NCName>)?"   +

table:table Attribute

@@ -48511,7 +59888,7 @@

table:table Attribute

Datatypes - integer  + integer    @@ -48519,6 +59896,10 @@

table:table Attribute

  + + RNG Relations + table:table="<integer>"   +

table:table-background Attribute

@@ -48554,10 +59935,14 @@

table:table-background Attribut Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + table:table-background="<boolean>"   +

table:table-name Attribute

@@ -48571,7 +59956,7 @@

table:table-name Attribute

Datatypes - string  + string    @@ -48579,6 +59964,10 @@

table:table-name Attribute

  + + RNG Relations + table:table-name="<string>"   +

table:target-cell-address Attribute

@@ -48592,7 +59981,7 @@

table:target-cell-address At Datatypes - string  + string    @@ -48600,6 +59989,10 @@

table:target-cell-address At   + + RNG Relations + table:target-cell-address="string]"   +

table:target-range-address Attribute

@@ -48616,9 +60009,9 @@

table:target-range-address Datatypes - string  - string  - string  + string  + string  + string    @@ -48626,6 +60019,10 @@

table:target-range-address   + + RNG Relations + table:target-range-address="string] | string] | string]"   +

table:template-name Attribute (new in ODF 1.2)

@@ -48639,7 +60036,7 @@

table:template-name Attribute& Datatypes - string  + string    @@ -48647,6 +60044,10 @@

table:template-name Attribute&   + + RNG Relations + table:template-name="<string>"   +

table:title Attribute

@@ -48661,7 +60062,7 @@

table:title Attribute

Datatypes - string  + string    @@ -48669,6 +60070,10 @@

table:title Attribute

  + + RNG Relations + table:title="<string>"   +

table:track-changes Attribute

@@ -48687,10 +60092,14 @@

table:track-changes Attribute< Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + table:track-changes="<boolean>"   +

table:type[1] Attribute

@@ -48710,17 +60119,21 @@

table:type[1] Attribute

Values - "column-percentage"  - "index"  - "member-difference"  - "member-percentage"  - "member-percentage-difference"  - "none"  - "row-percentage"  - "running-total"  - "total-percentage"  + "column-percentage"  + "index"  + "member-difference"  + "member-percentage"  + "member-percentage-difference"  + "none"  + "row-percentage"  + "running-total"  + "total-percentage"    + + RNG Relations + table:type="none | member-difference | member-percentage | member-percentage-difference | running-total | row-percentage | column-percentage | total-percentage | index"   +

table:type[2] Attribute

@@ -48741,11 +60154,15 @@

table:type[2] Attribute

Values - "column"  - "row"  - "table"  + "column"  + "row"  + "table"    + + RNG Relations + table:type="row | column | table"   +

table:use-banding-columns-styles Attribute (new in ODF 1.2)

@@ -48764,10 +60181,14 @@

table:use-banding-col Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + table:use-banding-columns-styles="<boolean>"   +

table:use-banding-rows-styles Attribute (new in ODF 1.2)

@@ -48786,10 +60207,14 @@

table:use-banding-rows-s Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + table:use-banding-rows-styles="<boolean>"   +

table:use-first-column-styles Attribute (new in ODF 1.2)

@@ -48808,10 +60233,14 @@

table:use-first-column-s Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + table:use-first-column-styles="<boolean>"   +

table:use-first-row-styles Attribute (new in ODF 1.2)

@@ -48830,10 +60259,14 @@

table:use-first-row-styles Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + table:use-first-row-styles="<boolean>"   +

table:use-labels Attribute

@@ -48852,12 +60285,16 @@

table:use-labels Attribute

Values - "both"  - "column"  - "none"  - "row"  + "both"  + "column"  + "none"  + "row"    + + RNG Relations + table:use-labels="none | row | column | both"   +

table:use-last-column-styles Attribute (new in ODF 1.2)

@@ -48876,10 +60313,14 @@

table:use-last-column-sty Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + table:use-last-column-styles="<boolean>"   +

table:use-last-row-styles Attribute (new in ODF 1.2)

@@ -48898,10 +60339,14 @@

table:use-last-row-styles At Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + table:use-last-row-styles="<boolean>"   +

table:use-regular-expressions Attribute

@@ -48920,10 +60365,14 @@

table:use-regular-expres Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + table:use-regular-expressions="<boolean>"   +

table:use-wildcards Attribute (new in ODF 1.2)

@@ -48942,10 +60391,14 @@

table:use-wildcards Attribute& Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + table:use-wildcards="<boolean>"   +

table:used-hierarchy Attribute

@@ -48959,7 +60412,7 @@

table:used-hierarchy Attribute Datatypes - integer  + integer    @@ -48967,6 +60420,10 @@

table:used-hierarchy Attribute   + + RNG Relations + table:used-hierarchy="<integer>"   +

table:user-name Attribute

@@ -48980,7 +60437,7 @@

table:user-name Attribute

Datatypes - string  + string    @@ -48988,6 +60445,10 @@

table:user-name Attribute

  + + RNG Relations + table:user-name="<string>"   +

table:value[1] Attribute

@@ -48996,13 +60457,14 @@

table:value[1] Attribute

Parent Elements - table:filter-set-item  + table:filter-condition    Datatypes - string  + double  + string    @@ -49010,6 +60472,10 @@

table:value[1] Attribute

  + + RNG Relations + table:value="<string> | <double>"   +

table:value[2] Attribute

@@ -49018,14 +60484,13 @@

table:value[2] Attribute

Parent Elements - table:filter-condition  + table:filter-set-item    Datatypes - double  - string  + string    @@ -49033,6 +60498,10 @@

table:value[2] Attribute

  + + RNG Relations + table:value="<string>"   +

table:value-type Attribute

@@ -49051,9 +60520,13 @@

table:value-type Attribute

Values - "date"  + "date"    + + RNG Relations + table:value-type="date"   +

table:visibility Attribute

@@ -49073,11 +60546,15 @@

table:visibility Attribute

Values - "collapse"  - "filter"  - "visible"  + "collapse"  + "filter"  + "visible"    + + RNG Relations + table:visibility="visible | collapse | filter"   +

text:active Attribute

@@ -49096,10 +60573,14 @@

text:active Attribute

Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + text:active="<boolean>"   +

text:address Attribute

@@ -49113,7 +60594,7 @@

text:address Attribute

Datatypes - string  + string    @@ -49121,6 +60602,10 @@

text:address Attribute

  + + RNG Relations + CHOICE_NAME_CLASS="<string>"   +

text:alphabetical-separators Attribute

@@ -49139,10 +60624,14 @@

text:alphabetical-separat Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + text:alphabetical-separators="<boolean>"   +

text:anchor-page-number Attribute

@@ -49174,7 +60663,7 @@

text:anchor-page-number Attrib Datatypes - positiveInteger  + positiveInteger    @@ -49182,6 +60671,10 @@

text:anchor-page-number Attrib   + + RNG Relations + text:anchor-page-number="<positiveInteger>"   +

text:anchor-type Attribute

@@ -49218,13 +60711,17 @@

text:anchor-type Attribute

Values - "as-char"  - "char"  - "frame"  - "page"  - "paragraph"  + "as-char"  + "char"  + "frame"  + "page"  + "paragraph"    + + RNG Relations + text:anchor-type="page | frame | paragraph | char | as-char"   +

text:animation Attribute (new in ODF 1.2)

@@ -49243,12 +60740,16 @@

text:animation Attribute (new Values - "alternate"  - "none"  - "scroll"  - "slide"  + "alternate"  + "none"  + "scroll"  + "slide"    + + RNG Relations + text:animation="none | scroll | alternate | slide"   +

text:animation-delay Attribute (new in ODF 1.2)

@@ -49262,7 +60763,7 @@

text:animation-delay Attribute Datatypes - duration  + duration    @@ -49270,6 +60771,10 @@

text:animation-delay Attribute   + + RNG Relations + text:animation-delay="<duration>"   +

text:animation-direction Attribute (new in ODF 1.2)

@@ -49288,12 +60793,16 @@

text:animation-direction Attr Values - "down"  - "left"  - "right"  - "up"  + "down"  + "left"  + "right"  + "up"    + + RNG Relations + text:animation-direction="left | right | up | down"   +

text:animation-repeat Attribute (new in ODF 1.2)

@@ -49307,7 +60816,7 @@

text:animation-repeat Attribute< Datatypes - nonNegativeInteger  + nonNegativeInteger    @@ -49315,6 +60824,10 @@

text:animation-repeat Attribute<   + + RNG Relations + text:animation-repeat="<nonNegativeInteger>"   +

text:animation-start-inside Attribute (new in ODF 1.2)

@@ -49333,10 +60846,14 @@

text:animation-start-insid Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + text:animation-start-inside="<boolean>"   +

text:animation-steps Attribute (new in ODF 1.2)

@@ -49350,7 +60867,7 @@

text:animation-steps Attribute Datatypes - string  + string    @@ -49358,6 +60875,10 @@

text:animation-steps Attribute   + + RNG Relations + text:animation-steps="string]"   +

text:animation-stop-inside Attribute (new in ODF 1.2)

@@ -49376,10 +60897,14 @@

text:animation-stop-inside Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + text:animation-stop-inside="<boolean>"   +

text:annote Attribute

@@ -49393,7 +60918,7 @@

text:annote Attribute

Datatypes - string  + string    @@ -49401,6 +60926,10 @@

text:annote Attribute

  + + RNG Relations + CHOICE_NAME_CLASS="<string>"   +

text:author Attribute

@@ -49414,7 +60943,7 @@

text:author Attribute

Datatypes - string  + string    @@ -49422,6 +60951,10 @@

text:author Attribute

  + + RNG Relations + CHOICE_NAME_CLASS="<string>"   +

text:bibliography-data-field Attribute

@@ -49440,40 +60973,44 @@

text:bibliography-data-fi Values - "address"  - "annote"  - "author"  - "bibliography-type"  - "booktitle"  - "chapter"  - "custom1"  - "custom2"  - "custom3"  - "custom4"  - "custom5"  - "edition"  - "editor"  - "howpublished"  - "identifier"  - "institution"  - "isbn"  - "issn"  - "journal"  - "month"  - "note"  - "number"  - "organizations"  - "pages"  - "publisher"  - "report-type"  - "school"  - "series"  - "title"  - "url"  - "volume"  - "year"  + "address"  + "annote"  + "author"  + "bibliography-type"  + "booktitle"  + "chapter"  + "custom1"  + "custom2"  + "custom3"  + "custom4"  + "custom5"  + "edition"  + "editor"  + "howpublished"  + "identifier"  + "institution"  + "isbn"  + "issn"  + "journal"  + "month"  + "note"  + "number"  + "organizations"  + "pages"  + "publisher"  + "report-type"  + "school"  + "series"  + "title"  + "url"  + "volume"  + "year"    + + RNG Relations + text:bibliography-data-field="address | annote | author | bibliography-type | booktitle | chapter | custom1 | custom2 | custom3 | custom4 | custom5 | edition | editor | howpublished | identifier | institution | isbn | issn | journal | month | note | number | organizations | pages | publisher | report-type | school | series | title | url | volume | year"   +

text:bibliography-type Attribute

@@ -49493,30 +61030,34 @@

text:bibliography-type Attribut Values - "article"  - "book"  - "booklet"  - "conference"  - "custom1"  - "custom2"  - "custom3"  - "custom4"  - "custom5"  - "email"  - "inbook"  - "incollection"  - "inproceedings"  - "journal"  - "manual"  - "mastersthesis"  - "misc"  - "phdthesis"  - "proceedings"  - "techreport"  - "unpublished"  - "www"  + "article"  + "book"  + "booklet"  + "conference"  + "custom1"  + "custom2"  + "custom3"  + "custom4"  + "custom5"  + "email"  + "inbook"  + "incollection"  + "inproceedings"  + "journal"  + "manual"  + "mastersthesis"  + "misc"  + "phdthesis"  + "proceedings"  + "techreport"  + "unpublished"  + "www"    + + RNG Relations + text:bibliography-type="article | book | booklet | conference | custom1 | custom2 | custom3 | custom4 | custom5 | email | inbook | incollection | inproceedings | journal | manual | mastersthesis | misc | phdthesis | proceedings | techreport | unpublished | www"   +

text:booktitle Attribute

@@ -49530,7 +61071,7 @@

text:booktitle Attribute

Datatypes - string  + string    @@ -49538,6 +61079,10 @@

text:booktitle Attribute

  + + RNG Relations + CHOICE_NAME_CLASS="<string>"   +

text:bullet-char Attribute

@@ -49551,7 +61096,7 @@

text:bullet-char Attribute

Datatypes - string  + string    @@ -49559,6 +61104,10 @@

text:bullet-char Attribute

  + + RNG Relations + text:bullet-char="string]"   +

text:bullet-relative-size Attribute

@@ -49572,7 +61121,7 @@

text:bullet-relative-size At Datatypes - string  + string    @@ -49580,6 +61129,10 @@

text:bullet-relative-size At   + + RNG Relations + text:bullet-relative-size="string]"   +

text:c Attribute

@@ -49593,7 +61146,7 @@

text:c Attribute

Datatypes - nonNegativeInteger  + nonNegativeInteger    @@ -49601,6 +61154,10 @@

text:c Attribute

  + + RNG Relations + text:c="<nonNegativeInteger>"   +

text:capitalize-entries Attribute

@@ -49619,10 +61176,14 @@

text:capitalize-entries Attrib Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + text:capitalize-entries="<boolean>"   +

text:caption-sequence-format Attribute

@@ -49642,11 +61203,15 @@

text:caption-sequence-for Values - "caption"  - "category-and-value"  - "text"  + "caption"  + "category-and-value"  + "text"    + + RNG Relations + text:caption-sequence-format="text | category-and-value | caption"   +

text:caption-sequence-name Attribute

@@ -49661,7 +61226,7 @@

text:caption-sequence-name Datatypes - string  + string    @@ -49669,6 +61234,10 @@

text:caption-sequence-name   + + RNG Relations + text:caption-sequence-name="<string>"   +

text:change-id Attribute

@@ -49684,7 +61253,7 @@

text:change-id Attribute

Datatypes - IDREF  + IDREF    @@ -49692,6 +61261,10 @@

text:change-id Attribute

  + + RNG Relations + text:change-id="<IDREF>"   +

text:chapter Attribute

@@ -49705,7 +61278,7 @@

text:chapter Attribute

Datatypes - string  + string    @@ -49713,6 +61286,10 @@

text:chapter Attribute

  + + RNG Relations + CHOICE_NAME_CLASS="<string>"   +

text:citation-body-style-name Attribute

@@ -49726,7 +61303,7 @@

text:citation-body-style Datatypes - NCName  + NCName    @@ -49734,6 +61311,10 @@

text:citation-body-style   + + RNG Relations + text:citation-body-style-name="(<NCName>)?"   +

text:citation-style-name Attribute

@@ -49747,7 +61328,7 @@

text:citation-style-name Attr Datatypes - NCName  + NCName    @@ -49755,6 +61336,10 @@

text:citation-style-name Attr   + + RNG Relations + text:citation-style-name="(<NCName>)?"   +

text:class-names Attribute

@@ -49770,7 +61355,7 @@

text:class-names Attribute

Datatypes - NCName  + NCName    @@ -49778,6 +61363,12 @@

text:class-names Attribute

  + + RNG Relations + text:class-names=" +START_list(<NCName>)* +END_list"   +

text:column-name Attribute

@@ -49791,7 +61382,7 @@

text:column-name Attribute

Datatypes - string  + string    @@ -49799,6 +61390,10 @@

text:column-name Attribute

  + + RNG Relations + text:column-name="<string>"   +

text:combine-entries Attribute

@@ -49817,10 +61412,14 @@

text:combine-entries Attribute Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + text:combine-entries="<boolean>"   +

text:combine-entries-with-dash Attribute

@@ -49839,10 +61438,14 @@

text:combine-entries-wi Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + text:combine-entries-with-dash="<boolean>"   +

text:combine-entries-with-pp Attribute

@@ -49861,10 +61464,14 @@

text:combine-entries-with Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + text:combine-entries-with-pp="<boolean>"   +

text:comma-separated Attribute

@@ -49883,10 +61490,14 @@

text:comma-separated Attribute Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + text:comma-separated="<boolean>"   +

text:cond-style-name Attribute

@@ -49901,7 +61512,7 @@

text:cond-style-name Attribute Datatypes - NCName  + NCName    @@ -49909,6 +61520,10 @@

text:cond-style-name Attribute   + + RNG Relations + text:cond-style-name="(<NCName>)?"   +

text:condition[1] Attribute

@@ -49928,9 +61543,13 @@

text:condition[1] Attribute

Values - "none"  + "none"    + + RNG Relations + text:condition="none"   +

text:condition[2] Attribute

@@ -49950,7 +61569,7 @@

text:condition[2] Attribute

Datatypes - string  + string    @@ -49958,6 +61577,10 @@

text:condition[2] Attribute

  + + RNG Relations + text:condition="<string>"   +

text:connection-name Attribute

@@ -49971,7 +61594,7 @@

text:connection-name Attribute Datatypes - string  + string    @@ -49979,6 +61602,10 @@

text:connection-name Attribute   + + RNG Relations + text:connection-name="<string>"   +

text:consecutive-numbering Attribute

@@ -49997,10 +61624,14 @@

text:consecutive-numbering Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + text:consecutive-numbering="<boolean>"   +

text:continue-list Attribute (new in ODF 1.2)

@@ -50014,7 +61645,7 @@

text:continue-list Attribute&nb Datatypes - IDREF  + IDREF    @@ -50022,6 +61653,10 @@

text:continue-list Attribute&nb   + + RNG Relations + text:continue-list="<IDREF>"   +

text:continue-numbering Attribute

@@ -50041,10 +61676,14 @@

text:continue-numbering Attrib Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + text:continue-numbering="<boolean>"   +

text:copy-outline-levels Attribute

@@ -50063,10 +61702,14 @@

text:copy-outline-levels Attr Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + text:copy-outline-levels="<boolean>"   +

text:count-empty-lines Attribute

@@ -50085,10 +61728,14 @@

text:count-empty-lines Attribut Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + text:count-empty-lines="<boolean>"   +

text:count-in-text-boxes Attribute

@@ -50107,10 +61754,14 @@

text:count-in-text-boxes Attr Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + text:count-in-text-boxes="<boolean>"   +

text:current-value Attribute

@@ -50129,10 +61780,14 @@

text:current-value Attribute Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + text:current-value="<boolean>"   +

text:custom1 Attribute

@@ -50146,7 +61801,7 @@

text:custom1 Attribute

Datatypes - string  + string    @@ -50154,6 +61809,10 @@

text:custom1 Attribute

  + + RNG Relations + CHOICE_NAME_CLASS="<string>"   +

text:custom2 Attribute

@@ -50167,7 +61826,7 @@

text:custom2 Attribute

Datatypes - string  + string    @@ -50175,6 +61834,10 @@

text:custom2 Attribute

  + + RNG Relations + CHOICE_NAME_CLASS="<string>"   +

text:custom3 Attribute

@@ -50188,7 +61851,7 @@

text:custom3 Attribute

Datatypes - string  + string    @@ -50196,6 +61859,10 @@

text:custom3 Attribute

  + + RNG Relations + CHOICE_NAME_CLASS="<string>"   +

text:custom4 Attribute

@@ -50209,7 +61876,7 @@

text:custom4 Attribute

Datatypes - string  + string    @@ -50217,6 +61884,10 @@

text:custom4 Attribute

  + + RNG Relations + CHOICE_NAME_CLASS="<string>"   +

text:custom5 Attribute

@@ -50230,7 +61901,7 @@

text:custom5 Attribute

Datatypes - string  + string    @@ -50238,6 +61909,10 @@

text:custom5 Attribute

  + + RNG Relations + CHOICE_NAME_CLASS="<string>"   +

text:database-name Attribute

@@ -50255,7 +61930,7 @@

text:database-name Attribute Datatypes - string  + string    @@ -50263,6 +61938,10 @@

text:database-name Attribute   + + RNG Relations + text:database-name="<string>"   +

text:date-adjust Attribute

@@ -50276,7 +61955,7 @@

text:date-adjust Attribute

Datatypes - duration  + duration    @@ -50284,6 +61963,10 @@

text:date-adjust Attribute

  + + RNG Relations + text:date-adjust="<duration>"   +

text:date-value[1] Attribute

@@ -50292,14 +61975,15 @@

text:date-value[1] Attribute

Parent Elements - text:modification-date  - text:print-date  + text:creation-date  + text:date    Datatypes - date  + date  + dateTime    @@ -50307,6 +61991,10 @@

text:date-value[1] Attribute

  + + RNG Relations + text:date-value="<date> | <dateTime>"   +

text:date-value[2] Attribute

@@ -50315,15 +62003,14 @@

text:date-value[2] Attribute

Parent Elements - text:creation-date  - text:date  + text:modification-date  + text:print-date    Datatypes - date  - dateTime  + date    @@ -50331,6 +62018,10 @@

text:date-value[2] Attribute

  + + RNG Relations + text:date-value="<date>"   +

text:default-style-name Attribute

@@ -50344,7 +62035,7 @@

text:default-style-name Attrib Datatypes - NCName  + NCName    @@ -50352,6 +62043,10 @@

text:default-style-name Attrib   + + RNG Relations + text:default-style-name="(<NCName>)?"   +

text:description Attribute

@@ -50368,7 +62063,7 @@

text:description Attribute

Datatypes - string  + string    @@ -50376,6 +62071,10 @@

text:description Attribute

  + + RNG Relations + text:description="<string>"   +

text:display[1] Attribute

@@ -50384,9 +62083,8 @@

text:display[1] Attribute

Parent Elements - text:expression  - text:table-formula  - text:variable-get  + text:chapter  + text:index-entry-chapter    @@ -50397,10 +62095,17 @@

text:display[1] Attribute

Values - "formula"  - "value"  + "name"  + "number"  + "number-and-name"  + "plain-number"  + "plain-number-and-name"    + + RNG Relations + text:display="name | number | number-and-name | plain-number | plain-number-and-name"   +

text:display[2] Attribute

@@ -50409,8 +62114,7 @@

text:display[2] Attribute

Parent Elements - text:chapter  - text:index-entry-chapter  + style:text-properties    @@ -50421,13 +62125,13 @@

text:display[2] Attribute

Values - "name"  - "number"  - "number-and-name"  - "plain-number"  - "plain-number-and-name"  + "true"    + + RNG Relations + text:display="true"   +

text:display[3] Attribute

@@ -50436,8 +62140,7 @@

text:display[3] Attribute

Parent Elements - style:text-properties  - text:section  + text:file-name    @@ -50448,9 +62151,16 @@

text:display[3] Attribute

Values - "condition"  + "full"  + "name"  + "name-and-extension"  + "path"    + + RNG Relations + text:display="full | path | name | name-and-extension"   +

text:display[4] Attribute

@@ -50459,7 +62169,7 @@

text:display[4] Attribute

Parent Elements - text:user-field-get  + text:section    @@ -50470,11 +62180,14 @@

text:display[4] Attribute

Values - "formula"  - "none"  - "value"  + "none"  + "true"    + + RNG Relations + text:display="true | none"   +

text:display[5] Attribute

@@ -50483,7 +62196,9 @@

text:display[5] Attribute

Parent Elements - text:template-name  + text:expression  + text:table-formula  + text:variable-get    @@ -50494,14 +62209,14 @@

text:display[5] Attribute

Values - "area"  - "full"  - "name"  - "name-and-extension"  - "path"  - "title"  + "formula"  + "value"    + + RNG Relations + text:display="value | formula"   +

text:display[6] Attribute

@@ -50510,7 +62225,7 @@

text:display[6] Attribute

Parent Elements - text:file-name  + text:template-name    @@ -50521,12 +62236,18 @@

text:display[6] Attribute

Values - "full"  - "name"  - "name-and-extension"  - "path"  + "area"  + "full"  + "name"  + "name-and-extension"  + "path"  + "title"    + + RNG Relations + text:display="full | path | name | name-and-extension | area | title"   +

text:display[7] Attribute

@@ -50535,8 +62256,7 @@

text:display[7] Attribute

Parent Elements - text:variable-input  - text:variable-set  + text:user-field-get    @@ -50547,10 +62267,15 @@

text:display[7] Attribute

Values - "none"  - "value"  + "formula"  + "none"  + "value"    + + RNG Relations + text:display="value | formula | none"   +

text:display[8] Attribute

@@ -50560,6 +62285,7 @@

text:display[8] Attribute

Parent Elements style:text-properties  + text:section    @@ -50570,9 +62296,13 @@

text:display[8] Attribute

Values - "none"  + "condition"    + + RNG Relations + text:display="condition"   +

text:display[9] Attribute

@@ -50592,9 +62322,13 @@

text:display[9] Attribute

Values - "true"  + "none"    + + RNG Relations + text:display="none"   +

text:display[10] Attribute

@@ -50603,7 +62337,8 @@

text:display[10] Attribute

Parent Elements - text:section  + text:variable-input  + text:variable-set    @@ -50614,10 +62349,14 @@

text:display[10] Attribute

Values - "none"  - "true"  + "none"  + "value"    + + RNG Relations + text:display="value | none"   +

text:display-levels Attribute

@@ -50632,7 +62371,7 @@

text:display-levels Attribute< Datatypes - positiveInteger  + positiveInteger    @@ -50640,6 +62379,10 @@

text:display-levels Attribute<   + + RNG Relations + text:display-levels="<positiveInteger>"   +

text:display-outline-level Attribute

@@ -50653,7 +62396,7 @@

text:display-outline-level Datatypes - nonNegativeInteger  + nonNegativeInteger    @@ -50661,6 +62404,10 @@

text:display-outline-level   + + RNG Relations + text:display-outline-level="<nonNegativeInteger>"   +

text:dont-balance-text-columns Attribute (new in ODF 1.2)

@@ -50679,10 +62426,14 @@

text:dont-balance-text- Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + text:dont-balance-text-columns="<boolean>"   +

text:duration Attribute

@@ -50696,7 +62447,7 @@

text:duration Attribute

Datatypes - duration  + duration    @@ -50704,6 +62455,10 @@

text:duration Attribute

  + + RNG Relations + text:duration="<duration>"   +

text:edition Attribute

@@ -50717,7 +62472,7 @@

text:edition Attribute

Datatypes - string  + string    @@ -50725,6 +62480,10 @@

text:edition Attribute

  + + RNG Relations + CHOICE_NAME_CLASS="<string>"   +

text:editor Attribute

@@ -50738,7 +62497,7 @@

text:editor Attribute

Datatypes - string  + string    @@ -50746,6 +62505,10 @@

text:editor Attribute

  + + RNG Relations + CHOICE_NAME_CLASS="<string>"   +

text:filter-name Attribute

@@ -50759,7 +62522,7 @@

text:filter-name Attribute

Datatypes - string  + string    @@ -50767,6 +62530,10 @@

text:filter-name Attribute

  + + RNG Relations + text:filter-name="<string>"   +

text:fixed Attribute

@@ -50821,10 +62588,14 @@

text:fixed Attribute

Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + text:fixed="<boolean>"   +

text:footnotes-position Attribute

@@ -50843,12 +62614,16 @@

text:footnotes-position Attrib Values - "document"  - "page"  - "section"  - "text"  + "document"  + "page"  + "section"  + "text"    + + RNG Relations + text:footnotes-position="text | page | section | document"   +

text:formula Attribute

@@ -50866,7 +62641,7 @@

text:formula Attribute

Datatypes - string  + string    @@ -50874,6 +62649,10 @@

text:formula Attribute

  + + RNG Relations + text:formula="<string>"   +

text:global Attribute

@@ -50892,10 +62671,14 @@

text:global Attribute

Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + text:global="<boolean>"   +

text:howpublished Attribute

@@ -50909,7 +62692,7 @@

text:howpublished Attribute

Datatypes - string  + string    @@ -50917,6 +62700,10 @@

text:howpublished Attribute

  + + RNG Relations + CHOICE_NAME_CLASS="<string>"   +

text:id[1] Attribute

@@ -50925,16 +62712,19 @@

text:id[1] Attribute

Parent Elements - draw:text-box  - text:changed-region  - text:h  - text:p  + text:alphabetical-index-mark-end  + text:alphabetical-index-mark-start  + text:note  + text:toc-mark-end  + text:toc-mark-start  + text:user-index-mark-end  + text:user-index-mark-start    Datatypes - NCName  + string    @@ -50942,6 +62732,10 @@

text:id[1] Attribute

  + + RNG Relations + text:id="<string>"   +

text:id[2] Attribute

@@ -50950,19 +62744,16 @@

text:id[2] Attribute

Parent Elements - text:alphabetical-index-mark-end  - text:alphabetical-index-mark-start  - text:note  - text:toc-mark-end  - text:toc-mark-start  - text:user-index-mark-end  - text:user-index-mark-start  + draw:text-box  + text:changed-region  + text:h  + text:p    Datatypes - string  + NCName    @@ -50970,6 +62761,10 @@

text:id[2] Attribute

  + + RNG Relations + text:id="<NCName>"   +

text:identifier Attribute

@@ -50983,7 +62778,7 @@

text:identifier Attribute

Datatypes - string  + string    @@ -50991,6 +62786,10 @@

text:identifier Attribute

  + + RNG Relations + CHOICE_NAME_CLASS="<string>"   +

text:ignore-case Attribute

@@ -51009,10 +62808,14 @@

text:ignore-case Attribute

Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + text:ignore-case="<boolean>"   +

text:increment Attribute

@@ -51027,7 +62830,7 @@

text:increment Attribute

Datatypes - nonNegativeInteger  + nonNegativeInteger    @@ -51035,6 +62838,10 @@

text:increment Attribute

  + + RNG Relations + text:increment="<nonNegativeInteger>"   +

text:index-name Attribute

@@ -51050,7 +62857,7 @@

text:index-name Attribute

Datatypes - string  + string    @@ -51058,6 +62865,10 @@

text:index-name Attribute

  + + RNG Relations + text:index-name="<string>"   +

text:index-scope Attribute

@@ -51081,10 +62892,14 @@

text:index-scope Attribute

Values - "chapter"  - "document"  + "chapter"  + "document"    + + RNG Relations + text:index-scope="document | chapter"   +

text:institution Attribute

@@ -51098,7 +62913,7 @@

text:institution Attribute

Datatypes - string  + string    @@ -51106,6 +62921,10 @@

text:institution Attribute

  + + RNG Relations + CHOICE_NAME_CLASS="<string>"   +

text:is-hidden Attribute

@@ -51125,10 +62944,14 @@

text:is-hidden Attribute

Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + text:is-hidden="<boolean>"   +

text:is-list-header Attribute

@@ -51147,10 +62970,14 @@

text:is-list-header Attribute< Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + text:is-list-header="<boolean>"   +

text:isbn Attribute

@@ -51164,7 +62991,7 @@

text:isbn Attribute

Datatypes - string  + string    @@ -51172,6 +62999,10 @@

text:isbn Attribute

  + + RNG Relations + CHOICE_NAME_CLASS="<string>"   +

text:issn Attribute

@@ -51185,7 +63016,7 @@

text:issn Attribute

Datatypes - string  + string    @@ -51193,6 +63024,10 @@

text:issn Attribute

  + + RNG Relations + CHOICE_NAME_CLASS="<string>"   +

text:journal Attribute

@@ -51206,7 +63041,7 @@

text:journal Attribute

Datatypes - string  + string    @@ -51214,6 +63049,10 @@

text:journal Attribute

  + + RNG Relations + CHOICE_NAME_CLASS="<string>"   +

text:key Attribute

@@ -51232,40 +63071,44 @@

text:key Attribute

Values - "address"  - "annote"  - "author"  - "bibliography-type"  - "booktitle"  - "chapter"  - "custom1"  - "custom2"  - "custom3"  - "custom4"  - "custom5"  - "edition"  - "editor"  - "howpublished"  - "identifier"  - "institution"  - "isbn"  - "issn"  - "journal"  - "month"  - "note"  - "number"  - "organizations"  - "pages"  - "publisher"  - "report-type"  - "school"  - "series"  - "title"  - "url"  - "volume"  - "year"  + "address"  + "annote"  + "author"  + "bibliography-type"  + "booktitle"  + "chapter"  + "custom1"  + "custom2"  + "custom3"  + "custom4"  + "custom5"  + "edition"  + "editor"  + "howpublished"  + "identifier"  + "institution"  + "isbn"  + "issn"  + "journal"  + "month"  + "note"  + "number"  + "organizations"  + "pages"  + "publisher"  + "report-type"  + "school"  + "series"  + "title"  + "url"  + "volume"  + "year"    + + RNG Relations + text:key="address | annote | author | bibliography-type | booktitle | chapter | custom1 | custom2 | custom3 | custom4 | custom5 | edition | editor | howpublished | identifier | institution | isbn | issn | journal | month | note | number | organizations | pages | publisher | report-type | school | series | title | url | volume | year"   +

text:key1 Attribute

@@ -51280,7 +63123,7 @@

text:key1 Attribute

Datatypes - string  + string    @@ -51288,6 +63131,10 @@

text:key1 Attribute

  + + RNG Relations + text:key1="<string>"   +

text:key1-phonetic Attribute

@@ -51302,7 +63149,7 @@

text:key1-phonetic Attribute Datatypes - string  + string    @@ -51310,6 +63157,10 @@

text:key1-phonetic Attribute   + + RNG Relations + text:key1-phonetic="<string>"   +

text:key2 Attribute

@@ -51324,7 +63175,7 @@

text:key2 Attribute

Datatypes - string  + string    @@ -51332,6 +63183,10 @@

text:key2 Attribute

  + + RNG Relations + text:key2="<string>"   +

text:key2-phonetic Attribute

@@ -51346,7 +63201,7 @@

text:key2-phonetic Attribute Datatypes - string  + string    @@ -51354,6 +63209,10 @@

text:key2-phonetic Attribute   + + RNG Relations + text:key2-phonetic="<string>"   +

text:kind Attribute

@@ -51372,11 +63231,15 @@

text:kind Attribute

Values - "gap"  - "unit"  - "value"  + "gap"  + "unit"  + "value"    + + RNG Relations + text:kind="value | unit | gap"   +

text:label Attribute

@@ -51390,7 +63253,7 @@

text:label Attribute

Datatypes - string  + string    @@ -51398,6 +63261,10 @@

text:label Attribute

  + + RNG Relations + text:label="<string>"   +

text:label-followed-by Attribute (new in ODF 1.2)

@@ -51416,11 +63283,15 @@

text:label-followed-by Attribut Values - "listtab"  - "nothing"  - "space"  + "listtab"  + "nothing"  + "space"    + + RNG Relations + text:label-followed-by="listtab | space | nothing"   +

text:level Attribute

@@ -51438,7 +63309,7 @@

text:level Attribute

Datatypes - positiveInteger  + positiveInteger    @@ -51446,6 +63317,10 @@

text:level Attribute

  + + RNG Relations + text:level="<positiveInteger>"   +

text:line-break Attribute (new in ODF 1.2)

@@ -51464,10 +63339,14 @@

text:line-break Attribute (ne Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + text:line-break="<boolean>"   +

text:line-number Attribute (new in ODF 1.2)

@@ -51481,7 +63360,7 @@

text:line-number Attribute ( Datatypes - nonNegativeInteger  + nonNegativeInteger    @@ -51489,6 +63368,10 @@

text:line-number Attribute (   + + RNG Relations + text:line-number="<nonNegativeInteger>"   +

text:list-id Attribute (new in ODF 1.2)

@@ -51502,7 +63385,7 @@

text:list-id Attribute (new in O Datatypes - NCName  + NCName    @@ -51510,6 +63393,10 @@

text:list-id Attribute (new in O   + + RNG Relations + text:list-id="<NCName>"   +

text:list-level-position-and-space-mode Attribute (new in ODF 1.2)

@@ -51528,10 +63415,14 @@

text:list-leve Values - "label-alignment"  - "label-width-and-position"  + "label-alignment"  + "label-width-and-position"    + + RNG Relations + text:list-level-position-and-space-mode="label-width-and-position | label-alignment"   +

text:list-tab-stop-position Attribute (new in ODF 1.2)

@@ -51545,7 +63436,7 @@

text:list-tab-stop-positio Datatypes - string  + string    @@ -51553,6 +63444,10 @@

text:list-tab-stop-positio   + + RNG Relations + text:list-tab-stop-position="string]"   +

text:main-entry Attribute

@@ -51572,10 +63467,14 @@

text:main-entry Attribute

Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + text:main-entry="<boolean>"   +

text:main-entry-style-name Attribute

@@ -51589,7 +63488,7 @@

text:main-entry-style-name Datatypes - NCName  + NCName    @@ -51597,6 +63496,10 @@

text:main-entry-style-name   + + RNG Relations + text:main-entry-style-name="(<NCName>)?"   +

text:master-page-name Attribute

@@ -51611,7 +63514,7 @@

text:master-page-name Attribute< Datatypes - NCName  + NCName    @@ -51619,6 +63522,10 @@

text:master-page-name Attribute<   + + RNG Relations + text:master-page-name="(<NCName>)?"   +

text:min-label-distance Attribute (new in ODF 1.2)

@@ -51632,7 +63539,7 @@

text:min-label-distance Attrib Datatypes - string  + string    @@ -51640,6 +63547,10 @@

text:min-label-distance Attrib   + + RNG Relations + text:min-label-distance="string]"   +

text:min-label-width Attribute (new in ODF 1.2)

@@ -51653,7 +63564,7 @@

text:min-label-width Attribute Datatypes - string  + string    @@ -51661,6 +63572,10 @@

text:min-label-width Attribute   + + RNG Relations + text:min-label-width="string]"   +

text:month Attribute

@@ -51674,7 +63589,7 @@

text:month Attribute

Datatypes - string  + string    @@ -51682,6 +63597,10 @@

text:month Attribute

  + + RNG Relations + CHOICE_NAME_CLASS="<string>"   +

text:name Attribute

@@ -51720,7 +63639,7 @@

text:name Attribute

Datatypes - string  + string    @@ -51728,6 +63647,10 @@

text:name Attribute

  + + RNG Relations + text:name="<string>"   +

text:note Attribute

@@ -51741,7 +63664,7 @@

text:note Attribute

Datatypes - string  + string    @@ -51749,6 +63672,10 @@

text:note Attribute

  + + RNG Relations + CHOICE_NAME_CLASS="<string>"   +

text:note-class Attribute

@@ -51769,10 +63696,14 @@

text:note-class Attribute

Values - "endnote"  - "footnote"  + "endnote"  + "footnote"    + + RNG Relations + text:note-class="footnote | endnote"   +

text:number Attribute

@@ -51786,7 +63717,7 @@

text:number Attribute

Datatypes - string  + string    @@ -51794,6 +63725,10 @@

text:number Attribute

  + + RNG Relations + CHOICE_NAME_CLASS="<string>"   +

text:number-lines Attribute

@@ -51813,10 +63748,14 @@

text:number-lines Attribute

Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + text:number-lines="<boolean>"   +

text:number-position Attribute

@@ -51835,12 +63774,16 @@

text:number-position Attribute Values - "inner"  - "left"  - "outer"  - "right"  + "inner"  + "left"  + "outer"  + "right"    + + RNG Relations + text:number-position="left | right | inner | outer"   +

text:numbered-entries Attribute

@@ -51859,10 +63802,14 @@

text:numbered-entries Attribute< Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + text:numbered-entries="<boolean>"   +

text:offset Attribute

@@ -51876,7 +63823,7 @@

text:offset Attribute

Datatypes - string  + string    @@ -51884,6 +63831,10 @@

text:offset Attribute

  + + RNG Relations + text:offset="string]"   +

text:organizations Attribute

@@ -51897,7 +63848,7 @@

text:organizations Attribute Datatypes - string  + string    @@ -51905,6 +63856,10 @@

text:organizations Attribute   + + RNG Relations + CHOICE_NAME_CLASS="<string>"   +

text:outline-level[1] Attribute

@@ -51928,7 +63883,7 @@

text:outline-level[1] Attribute Datatypes - positiveInteger  + positiveInteger    @@ -51936,6 +63891,10 @@

text:outline-level[1] Attribute   + + RNG Relations + text:outline-level="<positiveInteger>"   +

text:outline-level[2] Attribute

@@ -51955,12 +63914,16 @@

text:outline-level[2] Attribute Values - "1"  - "2"  - "3"  - "separator"  + "1"  + "2"  + "3"  + "separator"    + + RNG Relations + text:outline-level="1 | 2 | 3 | separator"   +

text:outline-level[3] Attribute

@@ -51975,7 +63938,7 @@

text:outline-level[3] Attribute Datatypes - nonNegativeInteger  + nonNegativeInteger    @@ -51983,6 +63946,10 @@

text:outline-level[3] Attribute   + + RNG Relations + text:outline-level="<nonNegativeInteger>"   +

text:page-adjust Attribute

@@ -51997,7 +63964,7 @@

text:page-adjust Attribute

Datatypes - integer  + integer    @@ -52005,6 +63972,10 @@

text:page-adjust Attribute

  + + RNG Relations + text:page-adjust="<integer>"   +

text:pages Attribute

@@ -52018,7 +63989,7 @@

text:pages Attribute

Datatypes - string  + string    @@ -52026,6 +63997,10 @@

text:pages Attribute

  + + RNG Relations + CHOICE_NAME_CLASS="<string>"   +

text:placeholder-type Attribute

@@ -52044,13 +64019,17 @@

text:placeholder-type Attribute< Values - "image"  - "object"  - "table"  - "text"  - "text-box"  + "image"  + "object"  + "table"  + "text"  + "text-box"    + + RNG Relations + text:placeholder-type="text | table | text-box | image | object"   +

text:prefix Attribute

@@ -52064,7 +64043,7 @@

text:prefix Attribute

Datatypes - string  + string    @@ -52072,6 +64051,10 @@

text:prefix Attribute

  + + RNG Relations + text:prefix="<string>"   +

text:protected Attribute

@@ -52098,10 +64081,14 @@

text:protected Attribute

Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + text:protected="<boolean>"   +

text:protection-key Attribute

@@ -52123,7 +64110,7 @@

text:protection-key Attribute< Datatypes - string  + string    @@ -52131,6 +64118,10 @@

text:protection-key Attribute<   + + RNG Relations + text:protection-key="<string>"   +

text:protection-key-digest-algorithm Attribute (new in ODF 1.2)

@@ -52152,7 +64143,7 @@

text:protection-k Datatypes - anyURI  + anyURI    @@ -52160,6 +64151,10 @@

text:protection-k   + + RNG Relations + text:protection-key-digest-algorithm="<anyIRI>"   +

text:publisher Attribute

@@ -52173,7 +64168,7 @@

text:publisher Attribute

Datatypes - string  + string    @@ -52181,6 +64176,10 @@

text:publisher Attribute

  + + RNG Relations + CHOICE_NAME_CLASS="<string>"   +

text:ref-name Attribute

@@ -52198,7 +64197,7 @@

text:ref-name Attribute

Datatypes - string  + string    @@ -52206,6 +64205,10 @@

text:ref-name Attribute

  + + RNG Relations + text:ref-name="<string>"   +

text:reference-format[1] Attribute

@@ -52225,12 +64228,16 @@

text:reference-format[1] Attribu Values - "chapter"  - "direction"  - "page"  - "text"  + "chapter"  + "direction"  + "page"  + "text"    + + RNG Relations + text:reference-format="page | chapter | direction | text"   +

text:reference-format[2] Attribute

@@ -52239,7 +64246,8 @@

text:reference-format[2] Attribu Parent Elements - text:sequence-ref  + text:bookmark-ref  + text:reference-ref    @@ -52250,15 +64258,19 @@

text:reference-format[2] Attribu Values - "caption"  - "category-and-value"  - "chapter"  - "direction"  - "page"  - "text"  - "value"  + "chapter"  + "direction"  + "number"  + "number-all-superior"  + "number-no-superior"  + "page"  + "text"    + + RNG Relations + text:reference-format="page | chapter | direction | text | number-no-superior | number-all-superior | number"   +

text:reference-format[3] Attribute

@@ -52267,8 +64279,7 @@

text:reference-format[3] Attribu Parent Elements - text:bookmark-ref  - text:reference-ref  + text:sequence-ref    @@ -52279,15 +64290,19 @@

text:reference-format[3] Attribu Values - "chapter"  - "direction"  - "number"  - "number-all-superior"  - "number-no-superior"  - "page"  - "text"  + "caption"  + "category-and-value"  + "chapter"  + "direction"  + "page"  + "text"  + "value"    + + RNG Relations + text:reference-format="page | chapter | direction | text | category-and-value | caption | value"   +

text:relative-tab-stop-position Attribute

@@ -52311,10 +64326,14 @@

text:relative-tab-stop Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + text:relative-tab-stop-position="<boolean>"   +

text:report-type Attribute

@@ -52328,7 +64347,7 @@

text:report-type Attribute

Datatypes - string  + string    @@ -52336,6 +64355,10 @@

text:report-type Attribute

  + + RNG Relations + CHOICE_NAME_CLASS="<string>"   +

text:restart-numbering Attribute

@@ -52354,10 +64377,14 @@

text:restart-numbering Attribut Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + text:restart-numbering="<boolean>"   +

text:restart-on-page Attribute

@@ -52376,10 +64403,14 @@

text:restart-on-page Attribute Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + text:restart-on-page="<boolean>"   +

text:row-number Attribute

@@ -52393,7 +64424,7 @@

text:row-number Attribute

Datatypes - nonNegativeInteger  + nonNegativeInteger    @@ -52401,6 +64432,10 @@

text:row-number Attribute

  + + RNG Relations + text:row-number="<nonNegativeInteger>"   +

text:school Attribute

@@ -52414,7 +64449,7 @@

text:school Attribute

Datatypes - string  + string    @@ -52422,6 +64457,10 @@

text:school Attribute

  + + RNG Relations + CHOICE_NAME_CLASS="<string>"   +

text:section-name Attribute

@@ -52435,7 +64474,7 @@

text:section-name Attribute

Datatypes - string  + string    @@ -52443,6 +64482,10 @@

text:section-name Attribute

  + + RNG Relations + text:section-name="<string>"   +

text:select-page[1] Attribute

@@ -52462,10 +64505,14 @@

text:select-page[1] Attribute

Values - "next"  - "previous"  + "next"  + "previous"    + + RNG Relations + text:select-page="previous | next"   +

text:select-page[2] Attribute

@@ -52485,11 +64532,15 @@

text:select-page[2] Attribute

Values - "current"  - "next"  - "previous"  + "current"  + "next"  + "previous"    + + RNG Relations + text:select-page="previous | current | next"   +

text:separation-character Attribute

@@ -52503,7 +64554,7 @@

text:separation-character At Datatypes - string  + string    @@ -52511,6 +64562,10 @@

text:separation-character At   + + RNG Relations + text:separation-character="string]"   +

text:series Attribute

@@ -52524,7 +64579,7 @@

text:series Attribute

Datatypes - string  + string    @@ -52532,6 +64587,10 @@

text:series Attribute

  + + RNG Relations + CHOICE_NAME_CLASS="<string>"   +

text:sort-algorithm Attribute

@@ -52546,7 +64605,7 @@

text:sort-algorithm Attribute< Datatypes - string  + string    @@ -52554,6 +64613,10 @@

text:sort-algorithm Attribute<   + + RNG Relations + text:sort-algorithm="<string>"   +

text:sort-ascending Attribute

@@ -52572,10 +64635,14 @@

text:sort-ascending Attribute< Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + text:sort-ascending="<boolean>"   +

text:sort-by-position Attribute

@@ -52594,10 +64661,14 @@

text:sort-by-position Attribute< Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + text:sort-by-position="<boolean>"   +

text:space-before Attribute (new in ODF 1.2)

@@ -52611,7 +64682,7 @@

text:space-before Attribute  Datatypes - string  + string    @@ -52619,6 +64690,10 @@

text:space-before Attribute    + + RNG Relations + text:space-before="string]"   +

text:start-numbering-at Attribute

@@ -52637,11 +64712,15 @@

text:start-numbering-at Attrib Values - "chapter"  - "document"  - "page"  + "chapter"  + "document"  + "page"    + + RNG Relations + text:start-numbering-at="document | chapter | page"   +

text:start-value[1] Attribute

@@ -52659,7 +64738,7 @@

text:start-value[1] Attribute

Datatypes - nonNegativeInteger  + nonNegativeInteger    @@ -52667,6 +64746,10 @@

text:start-value[1] Attribute

  + + RNG Relations + text:start-value="<nonNegativeInteger>"   +

text:start-value[2] Attribute

@@ -52682,7 +64765,7 @@

text:start-value[2] Attribute

Datatypes - positiveInteger  + positiveInteger    @@ -52690,6 +64773,10 @@

text:start-value[2] Attribute

  + + RNG Relations + text:start-value="<positiveInteger>"   +

text:string-value Attribute

@@ -52707,7 +64794,7 @@

text:string-value Attribute

Datatypes - string  + string    @@ -52715,6 +64802,10 @@

text:string-value Attribute

  + + RNG Relations + text:string-value="<string>"   +

text:string-value-if-false Attribute

@@ -52728,7 +64819,7 @@

text:string-value-if-false Datatypes - string  + string    @@ -52736,6 +64827,10 @@

text:string-value-if-false   + + RNG Relations + text:string-value-if-false="<string>"   +

text:string-value-if-true Attribute

@@ -52749,7 +64844,7 @@

text:string-value-if-true At Datatypes - string  + string    @@ -52757,6 +64852,10 @@

text:string-value-if-true At   + + RNG Relations + text:string-value-if-true="<string>"   +

text:string-value-phonetic Attribute

@@ -52771,7 +64870,7 @@

text:string-value-phonetic Datatypes - string  + string    @@ -52779,6 +64878,10 @@

text:string-value-phonetic   + + RNG Relations + text:string-value-phonetic="<string>"   +

text:style-name Attribute

@@ -52829,7 +64932,7 @@

text:style-name Attribute

Datatypes - NCName  + NCName    @@ -52837,6 +64940,10 @@

text:style-name Attribute

  + + RNG Relations + text:style-name="(<NCName>)?"   +

text:style-override Attribute (new in ODF 1.2)

@@ -52850,7 +64957,7 @@

text:style-override Attribute& Datatypes - NCName  + NCName    @@ -52858,6 +64965,10 @@

text:style-override Attribute&   + + RNG Relations + text:style-override="(<NCName>)?"   +

text:suffix Attribute

@@ -52871,7 +64982,7 @@

text:suffix Attribute

Datatypes - string  + string    @@ -52879,6 +64990,10 @@

text:suffix Attribute

  + + RNG Relations + text:suffix="<string>"   +

text:tab-ref Attribute

@@ -52892,7 +65007,7 @@

text:tab-ref Attribute

Datatypes - nonNegativeInteger  + nonNegativeInteger    @@ -52900,6 +65015,10 @@

text:tab-ref Attribute

  + + RNG Relations + text:tab-ref="<nonNegativeInteger>"   +

text:table-name Attribute

@@ -52917,7 +65036,7 @@

text:table-name Attribute

Datatypes - string  + string    @@ -52925,6 +65044,10 @@

text:table-name Attribute

  + + RNG Relations + text:table-name="<string>"   +

text:table-type Attribute

@@ -52947,11 +65070,15 @@

text:table-type Attribute

Values - "command"  - "query"  - "table"  + "command"  + "query"  + "table"    + + RNG Relations + text:table-type="table | query | command"   +

text:time-adjust Attribute

@@ -52965,7 +65092,7 @@

text:time-adjust Attribute

Datatypes - duration  + duration    @@ -52973,6 +65100,10 @@

text:time-adjust Attribute

  + + RNG Relations + text:time-adjust="<duration>"   +

text:time-value[1] Attribute

@@ -52988,7 +65119,7 @@

text:time-value[1] Attribute

Datatypes - time  + time    @@ -52996,6 +65127,10 @@

text:time-value[1] Attribute

  + + RNG Relations + text:time-value="<time>"   +

text:time-value[2] Attribute

@@ -53011,8 +65146,8 @@

text:time-value[2] Attribute

Datatypes - dateTime  - time  + dateTime  + time    @@ -53020,6 +65155,10 @@

text:time-value[2] Attribute

  + + RNG Relations + text:time-value="<time> | <dateTime>"   +

text:title Attribute

@@ -53033,7 +65172,7 @@

text:title Attribute

Datatypes - string  + string    @@ -53041,6 +65180,10 @@

text:title Attribute

  + + RNG Relations + CHOICE_NAME_CLASS="<string>"   +

text:track-changes Attribute

@@ -53059,10 +65202,14 @@

text:track-changes Attribute Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + text:track-changes="<boolean>"   +

text:url Attribute

@@ -53076,7 +65223,7 @@

text:url Attribute

Datatypes - string  + string    @@ -53084,6 +65231,10 @@

text:url Attribute

  + + RNG Relations + CHOICE_NAME_CLASS="<string>"   +

text:use-caption Attribute

@@ -53103,10 +65254,14 @@

text:use-caption Attribute

Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + text:use-caption="<boolean>"   +

text:use-chart-objects Attribute

@@ -53125,10 +65280,14 @@

text:use-chart-objects Attribut Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + text:use-chart-objects="<boolean>"   +

text:use-draw-objects Attribute

@@ -53147,10 +65306,14 @@

text:use-draw-objects Attribute< Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + text:use-draw-objects="<boolean>"   +

text:use-floating-frames Attribute

@@ -53169,10 +65332,14 @@

text:use-floating-frames Attr Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + text:use-floating-frames="<boolean>"   +

text:use-graphics Attribute

@@ -53191,10 +65358,14 @@

text:use-graphics Attribute

Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + text:use-graphics="<boolean>"   +

text:use-index-marks Attribute

@@ -53214,10 +65385,14 @@

text:use-index-marks Attribute Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + text:use-index-marks="<boolean>"   +

text:use-index-source-styles Attribute

@@ -53237,10 +65412,14 @@

text:use-index-source-sty Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + text:use-index-source-styles="<boolean>"   +

text:use-keys-as-entries Attribute

@@ -53259,10 +65438,14 @@

text:use-keys-as-entries Attr Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + text:use-keys-as-entries="<boolean>"   +

text:use-math-objects Attribute

@@ -53281,10 +65464,14 @@

text:use-math-objects Attribute< Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + text:use-math-objects="<boolean>"   +

text:use-objects Attribute

@@ -53303,10 +65490,14 @@

text:use-objects Attribute

Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + text:use-objects="<boolean>"   +

text:use-other-objects Attribute

@@ -53325,10 +65516,14 @@

text:use-other-objects Attribut Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + text:use-other-objects="<boolean>"   +

text:use-outline-level Attribute

@@ -53347,10 +65542,14 @@

text:use-outline-level Attribut Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + text:use-outline-level="<boolean>"   +

text:use-soft-page-breaks Attribute (new in ODF 1.1)

@@ -53369,10 +65568,14 @@

text:use-soft-page-breaks At Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + text:use-soft-page-breaks="<boolean>"   +

text:use-spreadsheet-objects Attribute

@@ -53391,10 +65594,14 @@

text:use-spreadsheet-obje Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + text:use-spreadsheet-objects="<boolean>"   +

text:use-tables Attribute

@@ -53413,10 +65620,14 @@

text:use-tables Attribute

Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + text:use-tables="<boolean>"   +

text:value Attribute

@@ -53430,7 +65641,7 @@

text:value Attribute

Datatypes - nonNegativeInteger  + nonNegativeInteger    @@ -53438,6 +65649,10 @@

text:value Attribute

  + + RNG Relations + text:value="<nonNegativeInteger>"   +

text:visited-style-name Attribute

@@ -53451,7 +65666,7 @@

text:visited-style-name Attrib Datatypes - NCName  + NCName    @@ -53459,6 +65674,10 @@

text:visited-style-name Attrib   + + RNG Relations + text:visited-style-name="(<NCName>)?"   +

text:volume Attribute

@@ -53472,7 +65691,7 @@

text:volume Attribute

Datatypes - string  + string    @@ -53480,6 +65699,10 @@

text:volume Attribute

  + + RNG Relations + CHOICE_NAME_CLASS="<string>"   +

text:year Attribute

@@ -53493,7 +65716,7 @@

text:year Attribute

Datatypes - string  + string    @@ -53501,6 +65724,10 @@

text:year Attribute

  + + RNG Relations + CHOICE_NAME_CLASS="<string>"   +

xforms:bind Attribute

@@ -53534,7 +65761,7 @@

xforms:bind Attribute

Datatypes - string  + string    @@ -53542,6 +65769,10 @@

xforms:bind Attribute

  + + RNG Relations + xforms:bind="<string>"   +

xhtml:about Attribute (new in ODF 1.2)

@@ -53560,8 +65791,8 @@

xhtml:about Attribute (new in ODF Datatypes - anyURI  - string  + anyURI  + string    @@ -53569,6 +65800,10 @@

xhtml:about Attribute (new in ODF   + + RNG Relations + xhtml:about="<anyURI> | string]"   +

xhtml:content Attribute (new in ODF 1.2)

@@ -53587,7 +65822,7 @@

xhtml:content Attribute (new in Datatypes - string  + string    @@ -53595,6 +65830,10 @@

xhtml:content Attribute (new in   + + RNG Relations + xhtml:content="<string>"   +

xhtml:datatype Attribute (new in ODF 1.2)

@@ -53613,7 +65852,7 @@

xhtml:datatype Attribute (new Datatypes - string  + string    @@ -53621,6 +65860,10 @@

xhtml:datatype Attribute (new   + + RNG Relations + xhtml:datatype="string]"   +

xhtml:property Attribute (new in ODF 1.2)

@@ -53639,7 +65882,7 @@

xhtml:property Attribute (new Datatypes - string  + string    @@ -53647,6 +65890,12 @@

xhtml:property Attribute (new   + + RNG Relations + xhtml:property=" +START_list(string])+ +END_list"   +

xlink:actuate[1] Attribute

@@ -53678,9 +65927,13 @@

xlink:actuate[1] Attribute

Values - "onRequest"  + "onRequest"    + + RNG Relations + xlink:actuate="onRequest"   +

xlink:actuate[2] Attribute

@@ -53709,9 +65962,13 @@

xlink:actuate[2] Attribute

Values - "onLoad"  + "onLoad"    + + RNG Relations + xlink:actuate="onLoad"   +

xlink:href Attribute

@@ -53760,7 +66017,7 @@

xlink:href Attribute

Datatypes - anyURI  + anyURI    @@ -53768,6 +66025,10 @@

xlink:href Attribute

  + + RNG Relations + xlink:href="<anyIRI>"   +

xlink:show[1] Attribute

@@ -53793,10 +66054,14 @@

xlink:show[1] Attribute

Values - "new"  - "replace"  + "new"  + "replace"    + + RNG Relations + xlink:show="new | replace"   +

xlink:show[2] Attribute

@@ -53805,8 +66070,17 @@

xlink:show[2] Attribute

Parent Elements - db:component  - db:connection-resource  + draw:applet  + draw:fill-image  + draw:floating-frame  + draw:image  + draw:object  + draw:object-ole  + draw:plugin  + presentation:event-listener  + style:background-image  + text:list-level-style-image  + text:section-source    @@ -53817,9 +66091,13 @@

xlink:show[2] Attribute

Values - "none"  + "embed"    + + RNG Relations + xlink:show="embed"   +

xlink:show[3] Attribute

@@ -53828,17 +66106,8 @@

xlink:show[3] Attribute

Parent Elements - draw:applet  - draw:fill-image  - draw:floating-frame  - draw:image  - draw:object  - draw:object-ole  - draw:plugin  - presentation:event-listener  - style:background-image  - text:list-level-style-image  - text:section-source  + db:component  + db:connection-resource    @@ -53849,9 +66118,13 @@

xlink:show[3] Attribute

Values - "embed"  + "none"    + + RNG Relations + xlink:show="none"   +

xlink:show[4] Attribute

@@ -53871,9 +66144,13 @@

xlink:show[4] Attribute

Values - "replace"  + "replace"    + + RNG Relations + xlink:show="replace"   +

xlink:title Attribute (new in ODF 1.2)

@@ -53887,7 +66164,7 @@

xlink:title Attribute (new in ODF Datatypes - string  + string    @@ -53895,6 +66172,10 @@

xlink:title Attribute (new in ODF   + + RNG Relations + xlink:title="<string>"   +

xlink:type Attribute

@@ -53943,9 +66224,13 @@

xlink:type Attribute

Values - "simple"  + "simple"    + + RNG Relations + xlink:type="simple"   +

xml:id Attribute (new in ODF 1.2)

@@ -54045,7 +66330,7 @@

xml:id Attribute (new in ODF 1.2)

Datatypes - ID  + ID    @@ -54053,6 +66338,10 @@

xml:id Attribute (new in ODF 1.2)

  + + RNG Relations + xml:id="<ID>"   +
diff --git a/generator/schema2template/src/test/resources/test-reference/odf/generation/odf-reference/odf-schema-1.3/OdfReference.html b/generator/schema2template/src/test/resources/test-reference/odf/generation/odf-reference/odf-schema-1.3/OdfReference.html index 9b65e04510..a2a1d8967a 100644 --- a/generator/schema2template/src/test/resources/test-reference/odf/generation/odf-reference/odf-schema-1.3/OdfReference.html +++ b/generator/schema2template/src/test/resources/test-reference/odf/generation/odf-reference/odf-schema-1.3/OdfReference.html @@ -79,6 +79,37 @@

anim:animate Element

  + + Child Relations + <anim:animate (smil:targetElement="<IDREF>" )? + (anim:sub-item="<string>" )? + smil:attributeName="<string>" (smil:values="<string>" )? + (anim:formula="<string>" )? + (smil:to="<string>" )? + (smil:from="<string>" )? + (smil:by="<string>" )? + (smil:calcMode="discrete | linear | paced | spline" )? + (smil:keyTimes="<string>" )? + (smil:keySplines="<string>" )? + + ( + ( (smil:begin="<string>" )? + (smil:end="<string>" )? + (smil:dur="<string>" )? + + ( (smil:repeatDur="<string>" )? + (smil:repeatCount="decimal] | indefinite" )? + ) (smil:restart="never | always | whenNotActive | default" )? + (smil:restartDefault="never | always | whenNotActive | inherit" )? + (smil:fill="remove | freeze | hold | auto | default | transition" )? + (smil:fillDefault="remove | freeze | hold | transition | auto | inherit" )? + ) (smil:accelerate="decimal]" )? + (smil:decelerate="decimal]" )? + (smil:autoReverse="<boolean>" )? + ) (smil:accumulate="none | sum" )? + (smil:additive="replace | sum" )? + >  +
@@ -131,6 +162,39 @@

anim:animateColor Element

  + + Child Relations + <anim:animateColor (smil:targetElement="<IDREF>" )? + (anim:sub-item="<string>" )? + smil:attributeName="<string>" (smil:accumulate="none | sum" )? + (smil:additive="replace | sum" )? + (smil:values="<string>" )? + (anim:formula="<string>" )? + (smil:to="<string>" )? + (smil:from="<string>" )? + (smil:by="<string>" )? + (smil:calcMode="discrete | linear | paced | spline" )? + (smil:keyTimes="<string>" )? + (smil:keySplines="<string>" )? + (anim:color-interpolation="rgb | hsl" )? + (anim:color-interpolation-direction="clockwise | counter-clockwise" )? + + ( + ( (smil:begin="<string>" )? + (smil:end="<string>" )? + (smil:dur="<string>" )? + + ( (smil:repeatDur="<string>" )? + (smil:repeatCount="decimal] | indefinite" )? + ) (smil:restart="never | always | whenNotActive | default" )? + (smil:restartDefault="never | always | whenNotActive | inherit" )? + (smil:fill="remove | freeze | hold | auto | default | transition" )? + (smil:fillDefault="remove | freeze | hold | transition | auto | inherit" )? + ) (smil:accelerate="decimal]" )? + (smil:decelerate="decimal]" )? + (smil:autoReverse="<boolean>" )? + )>  +
@@ -183,6 +247,39 @@

anim:animateMotion Element

  + + Child Relations + <anim:animateMotion (svg:path="<string>" )? + (svg:origin="<string>" )? + (smil:calcMode="discrete | linear | paced | spline" )? + (smil:targetElement="<IDREF>" )? + (anim:sub-item="<string>" )? + smil:attributeName="<string>" (smil:accumulate="none | sum" )? + (smil:additive="replace | sum" )? + (smil:values="<string>" )? + (anim:formula="<string>" )? + (smil:to="<string>" )? + (smil:from="<string>" )? + (smil:by="<string>" )? + + ( + ( (smil:begin="<string>" )? + (smil:end="<string>" )? + (smil:dur="<string>" )? + + ( (smil:repeatDur="<string>" )? + (smil:repeatCount="decimal] | indefinite" )? + ) (smil:restart="never | always | whenNotActive | default" )? + (smil:restartDefault="never | always | whenNotActive | inherit" )? + (smil:fill="remove | freeze | hold | auto | default | transition" )? + (smil:fillDefault="remove | freeze | hold | transition | auto | inherit" )? + ) (smil:accelerate="decimal]" )? + (smil:decelerate="decimal]" )? + (smil:autoReverse="<boolean>" )? + ) (smil:keyTimes="<string>" )? + (smil:keySplines="<string>" )? + >  +
@@ -231,6 +328,34 @@

anim:animateTransform Element<   + + Child Relations + <anim:animateTransform (smil:targetElement="<IDREF>" )? + (anim:sub-item="<string>" )? + smil:attributeName="<string>" (smil:accumulate="none | sum" )? + (smil:additive="replace | sum" )? + (smil:values="<string>" )? + (anim:formula="<string>" )? + (smil:to="<string>" )? + (smil:from="<string>" )? + (smil:by="<string>" )? + svg:type="translate | scale | rotate | skewX | skewY" + ( + ( (smil:begin="<string>" )? + (smil:end="<string>" )? + (smil:dur="<string>" )? + + ( (smil:repeatDur="<string>" )? + (smil:repeatCount="decimal] | indefinite" )? + ) (smil:restart="never | always | whenNotActive | default" )? + (smil:restartDefault="never | always | whenNotActive | inherit" )? + (smil:fill="remove | freeze | hold | auto | default | transition" )? + (smil:fillDefault="remove | freeze | hold | transition | auto | inherit" )? + ) (smil:accelerate="decimal]" )? + (smil:decelerate="decimal]" )? + (smil:autoReverse="<boolean>" )? + )>  +
@@ -275,6 +400,31 @@

anim:audio Element

  + + Child Relations + <anim:audio (presentation:node-type="default | on-click | with-previous | after-previous | timing-root | main-sequence | interactive-sequence" )? + (presentation:preset-id="<string>" )? + (presentation:preset-sub-type="<string>" )? + (presentation:preset-class="custom | entrance | exit | emphasis | motion-path | ole-action | media-call" )? + (presentation:master-element="<IDREF>" )? + (presentation:group-id="<string>" )? + (xml:id="<ID>" (anim:id="<NCName>" )? + )? + (xlink:href="<anyIRI>" )? + (anim:audio-level="<double>" )? + + ( (smil:begin="<string>" )? + (smil:end="<string>" )? + (smil:dur="<string>" )? + + ( (smil:repeatDur="<string>" )? + (smil:repeatCount="decimal] | indefinite" )? + ) (smil:restart="never | always | whenNotActive | default" )? + (smil:restartDefault="never | always | whenNotActive | inherit" )? + (smil:fill="remove | freeze | hold | auto | default | transition" )? + (smil:fillDefault="remove | freeze | hold | transition | auto | inherit" )? + )>  +
@@ -314,6 +464,22 @@

anim:command Element

<anim:param>*    + + Child Relations + <anim:command (presentation:node-type="default | on-click | with-previous | after-previous | timing-root | main-sequence | interactive-sequence" )? + (presentation:preset-id="<string>" )? + (presentation:preset-sub-type="<string>" )? + (presentation:preset-class="custom | entrance | exit | emphasis | motion-path | ole-action | media-call" )? + (presentation:master-element="<IDREF>" )? + (presentation:group-id="<string>" )? + (xml:id="<ID>" (anim:id="<NCName>" )? + )? + anim:command="<string>" (smil:begin="<string>" )? + (smil:end="<string>" )? + (smil:targetElement="<IDREF>" )? + (anim:sub-item="<string>" )? + (<anim:param ... >)* >  +
@@ -375,6 +541,38 @@

anim:iterate Element

<anim:transitionFilter>*    + + Child Relations + <anim:iterate (presentation:node-type="default | on-click | with-previous | after-previous | timing-root | main-sequence | interactive-sequence" )? + (presentation:preset-id="<string>" )? + (presentation:preset-sub-type="<string>" )? + (presentation:preset-class="custom | entrance | exit | emphasis | motion-path | ole-action | media-call" )? + (presentation:master-element="<IDREF>" )? + (presentation:group-id="<string>" )? + (xml:id="<ID>" (anim:id="<NCName>" )? + )? + (smil:targetElement="<IDREF>" )? + (anim:sub-item="<string>" )? + (anim:iterate-type="<string>" )? + (anim:iterate-interval="<duration>" )? + + ( + ( (smil:begin="<string>" )? + (smil:end="<string>" )? + (smil:dur="<string>" )? + + ( (smil:repeatDur="<string>" )? + (smil:repeatCount="decimal] | indefinite" )? + ) (smil:restart="never | always | whenNotActive | default" )? + (smil:restartDefault="never | always | whenNotActive | inherit" )? + (smil:fill="remove | freeze | hold | auto | default | transition" )? + (smil:fillDefault="remove | freeze | hold | transition | auto | inherit" )? + ) (smil:accelerate="decimal]" )? + (smil:decelerate="decimal]" )? + (smil:autoReverse="<boolean>" )? + ) (smil:endsync="first | last | all | media | <IDREF>" )? + (<anim:animate ... > | <anim:set ... > | <anim:animateMotion ... > | <anim:animateColor ... > | <anim:animateTransform ... > | <anim:transitionFilter ... > | <anim:par ... > | <anim:seq ... > | <anim:iterate ... > | <anim:audio ... > | <anim:command ... >)* >  +
@@ -432,6 +630,34 @@

anim:par Element

<anim:transitionFilter>*    + + Child Relations + <anim:par (presentation:node-type="default | on-click | with-previous | after-previous | timing-root | main-sequence | interactive-sequence" )? + (presentation:preset-id="<string>" )? + (presentation:preset-sub-type="<string>" )? + (presentation:preset-class="custom | entrance | exit | emphasis | motion-path | ole-action | media-call" )? + (presentation:master-element="<IDREF>" )? + (presentation:group-id="<string>" )? + (xml:id="<ID>" (anim:id="<NCName>" )? + )? + + ( + ( (smil:begin="<string>" )? + (smil:end="<string>" )? + (smil:dur="<string>" )? + + ( (smil:repeatDur="<string>" )? + (smil:repeatCount="decimal] | indefinite" )? + ) (smil:restart="never | always | whenNotActive | default" )? + (smil:restartDefault="never | always | whenNotActive | inherit" )? + (smil:fill="remove | freeze | hold | auto | default | transition" )? + (smil:fillDefault="remove | freeze | hold | transition | auto | inherit" )? + ) (smil:accelerate="decimal]" )? + (smil:decelerate="decimal]" )? + (smil:autoReverse="<boolean>" )? + ) (smil:endsync="first | last | all | media | <IDREF>" )? + (<anim:animate ... > | <anim:set ... > | <anim:animateMotion ... > | <anim:animateColor ... > | <anim:animateTransform ... > | <anim:transitionFilter ... > | <anim:par ... > | <anim:seq ... > | <anim:iterate ... > | <anim:audio ... > | <anim:command ... >)* >  +
@@ -455,6 +681,10 @@

anim:param Element

  + + Child Relations + <anim:param anim:name="<string>" anim:value="<string>" >  +
@@ -512,6 +742,34 @@

anim:seq Element

<anim:transitionFilter>*    + + Child Relations + <anim:seq (presentation:node-type="default | on-click | with-previous | after-previous | timing-root | main-sequence | interactive-sequence" )? + (presentation:preset-id="<string>" )? + (presentation:preset-sub-type="<string>" )? + (presentation:preset-class="custom | entrance | exit | emphasis | motion-path | ole-action | media-call" )? + (presentation:master-element="<IDREF>" )? + (presentation:group-id="<string>" )? + (xml:id="<ID>" (anim:id="<NCName>" )? + )? + (smil:endsync="first | last | all | media | <IDREF>" )? + + ( + ( (smil:begin="<string>" )? + (smil:end="<string>" )? + (smil:dur="<string>" )? + + ( (smil:repeatDur="<string>" )? + (smil:repeatCount="decimal] | indefinite" )? + ) (smil:restart="never | always | whenNotActive | default" )? + (smil:restartDefault="never | always | whenNotActive | inherit" )? + (smil:fill="remove | freeze | hold | auto | default | transition" )? + (smil:fillDefault="remove | freeze | hold | transition | auto | inherit" )? + ) (smil:accelerate="decimal]" )? + (smil:decelerate="decimal]" )? + (smil:autoReverse="<boolean>" )? + )(<anim:animate ... > | <anim:set ... > | <anim:animateMotion ... > | <anim:animateColor ... > | <anim:animateTransform ... > | <anim:transitionFilter ... > | <anim:par ... > | <anim:seq ... > | <anim:iterate ... > | <anim:audio ... > | <anim:command ... >)* >  +
@@ -555,6 +813,30 @@

anim:set Element

  + + Child Relations + <anim:set (smil:targetElement="<IDREF>" )? + (anim:sub-item="<string>" )? + smil:attributeName="<string>" (smil:to="<string>" )? + + ( + ( (smil:begin="<string>" )? + (smil:end="<string>" )? + (smil:dur="<string>" )? + + ( (smil:repeatDur="<string>" )? + (smil:repeatCount="decimal] | indefinite" )? + ) (smil:restart="never | always | whenNotActive | default" )? + (smil:restartDefault="never | always | whenNotActive | inherit" )? + (smil:fill="remove | freeze | hold | auto | default | transition" )? + (smil:fillDefault="remove | freeze | hold | transition | auto | inherit" )? + ) (smil:accelerate="decimal]" )? + (smil:decelerate="decimal]" )? + (smil:autoReverse="<boolean>" )? + ) (smil:accumulate="none | sum" )? + (smil:additive="replace | sum" )? + >  +
@@ -607,6 +889,39 @@

anim:transitionFilter Element<   + + Child Relations + <anim:transitionFilter (smil:targetElement="<IDREF>" )? + (anim:sub-item="<string>" )? + (smil:accumulate="none | sum" )? + (smil:additive="replace | sum" )? + (smil:values="<string>" )? + (anim:formula="<string>" )? + (smil:to="<string>" )? + (smil:from="<string>" )? + (smil:by="<string>" )? + (smil:calcMode="discrete | linear | paced | spline" )? + smil:type="<string>" (smil:subtype="<string>" )? + (smil:direction="forward | reverse" )? + (smil:fadeColor="string]" )? + (smil:mode="in | out" )? + + ( + ( (smil:begin="<string>" )? + (smil:end="<string>" )? + (smil:dur="<string>" )? + + ( (smil:repeatDur="<string>" )? + (smil:repeatCount="decimal] | indefinite" )? + ) (smil:restart="never | always | whenNotActive | default" )? + (smil:restartDefault="never | always | whenNotActive | inherit" )? + (smil:fill="remove | freeze | hold | auto | default | transition" )? + (smil:fillDefault="remove | freeze | hold | transition | auto | inherit" )? + ) (smil:accelerate="decimal]" )? + (smil:decelerate="decimal]" )? + (smil:autoReverse="<boolean>" )? + )>  +
@@ -634,6 +949,14 @@

chart:axis Element

<chart:title>    + + Child Relations + <chart:axis chart:dimension="x | y | z" (chart:name="<string>" )? + (chart:style-name="(<NCName>)?" )? + (<chart:title ... >)? + (<chart:categories ... >)? + (<chart:grid ... >)* >  +
@@ -656,6 +979,11 @@

chart:categories Element

  + + Child Relations + <chart:categories (table:cell-range-address="<string>" )? + >  +
@@ -710,6 +1038,23 @@

chart:chart Element

<table:table>    + + Child Relations + <chart:chart chart:class="QName]" + ( (svg:width="string]" )? + (svg:height="string]" )? + ) (chart:column-mapping="<string>" )? + (chart:row-mapping="<string>" )? + (chart:style-name="(<NCName>)?" )? + (xlink:type="simple" xlink:href="<anyIRI>" )? + (xml:id="<ID>" )? + (<chart:title ... >)? + (<chart:subtitle ... >)? + (<chart:footer ... >)? + (<chart:legend ... >)? + <chart:plot-area ... >(<draw:rect ... > | <draw:line ... > | <draw:polyline ... > | <draw:polygon ... > | <draw:regular-polygon ... > | <draw:path ... > | <draw:circle ... > | <draw:ellipse ... > | <draw:g ... > | <draw:page-thumbnail ... > | <draw:frame ... > | <draw:measure ... > | <draw:caption ... > | <draw:connector ... > | <draw:control ... > | <dr3d:scene ... > | <draw:custom-shape ... > | <draw:a ... >)* (<table:table ... >)? + >  +
@@ -726,7 +1071,7 @@

chart:coordinate-region Element< svg:height[1]  svg:width[2]  - svg:x[1]  + svg:x[2]  svg:y[2]    @@ -735,6 +1080,17 @@

chart:coordinate-region Element<   + + Child Relations + <chart:coordinate-region + ( + ( (svg:x="string]" )? + (svg:y="string]" )? + ) + ( (svg:width="string]" )? + (svg:height="string]" )? + ))>  +
@@ -751,7 +1107,7 @@

chart:data-label Element (new Attributes chart:style-name  - svg:x[1]  + svg:x[2]  svg:y[2]    @@ -761,6 +1117,15 @@

chart:data-label Element (new <text:p>    + + Child Relations + <chart:data-label + ( (svg:x="string]" )? + (svg:y="string]" )? + ) (chart:style-name="(<NCName>)?" )? + (<text:p ... >)? + >  +
@@ -786,6 +1151,14 @@

chart:data-point Element

<chart:data-label>    + + Child Relations + <chart:data-point (chart:repeated="<positiveInteger>" )? + (chart:style-name="(<NCName>)?" )? + (xml:id="<ID>" )? + (<chart:data-label ... >)? + >  +
@@ -808,6 +1181,11 @@

chart:domain Element

  + + Child Relations + <chart:domain (table:cell-range-address="<string>" )? + >  +
@@ -826,7 +1204,7 @@

chart:equation Element (new in O chart:display-equation  chart:display-r-square  chart:style-name  - svg:x[1]  + svg:x[2]  svg:y[2]    @@ -836,6 +1214,18 @@

chart:equation Element (new in O <text:p>    + + Child Relations + <chart:equation (chart:automatic-content="<boolean>" )? + (chart:display-r-square="<boolean>" )? + (chart:display-equation="<boolean>" )? + + ( (svg:x="string]" )? + (svg:y="string]" )? + ) (chart:style-name="(<NCName>)?" )? + (<text:p ... >)? + >  +
@@ -859,6 +1249,11 @@

chart:error-indicator Element<   + + Child Relations + <chart:error-indicator (chart:style-name="(<NCName>)?" )? + chart:dimension="x | y | z" >  +
@@ -882,6 +1277,12 @@

chart:floor Element

  + + Child Relations + <chart:floor (svg:width="string]" )? + (chart:style-name="(<NCName>)?" )? + >  +
@@ -897,7 +1298,7 @@

chart:footer Element

Attributes chart:style-name  - svg:x[1]  + svg:x[2]  svg:y[2]  table:cell-range    @@ -908,6 +1309,16 @@

chart:footer Element

<text:p>    + + Child Relations + <chart:footer (table:cell-range="<string>" )? + + ( (svg:x="string]" )? + (svg:y="string]" )? + ) (chart:style-name="(<NCName>)?" )? + (<text:p ... >)? + >  +
@@ -931,6 +1342,12 @@

chart:grid Element

  + + Child Relations + <chart:grid (chart:class="major | minor" )? + (chart:style-name="(<NCName>)?" )? + >  +
@@ -953,6 +1370,10 @@

chart:label-separator Element& <text:p>    + + Child Relations + <chart:label-separator <text:p ... >>  +
@@ -976,7 +1397,7 @@

chart:legend Element

style:legend-expansion-aspect-ratio  svg:height[1]  svg:width[2]  - svg:x[1]  + svg:x[2]  svg:y[2]    @@ -986,6 +1407,23 @@

chart:legend Element

<text:p>    + + Child Relations + <chart:legend ( + (chart:legend-position="start | end | top | bottom" (chart:legend-align="start | center | end" )? + ) | chart:legend-position="top-start | bottom-start | top-end | bottom-end" )? + + ( (svg:x="string]" )? + (svg:y="string]" )? + ) (style:legend-expansion="wide | high | balanced" | + (style:legend-expansion="custom" style:legend-expansion-aspect-ratio="<double>" + ( (svg:width="string]" )? + (svg:height="string]" )? + )))? + (chart:style-name="(<NCName>)?" )? + (<text:p ... >)? + >  +
@@ -1008,6 +1446,11 @@

chart:mean-value Element

  + + Child Relations + <chart:mean-value (chart:style-name="(<NCName>)?" )? + >  +
@@ -1027,7 +1470,7 @@

chart:plot-area Element

dr3d:ambient-color  dr3d:distance  dr3d:focal-length  - dr3d:lighting-mode[1]  + dr3d:lighting-mode[2]  dr3d:projection  dr3d:shade-mode  dr3d:shadow-slant  @@ -1037,7 +1480,7 @@

chart:plot-area Element

dr3d:vup  svg:height[1]  svg:width[2]  - svg:x[1]  + svg:x[2]  svg:y[2]  table:cell-range-address[2]  xml:id  @@ -1057,6 +1500,37 @@

chart:plot-area Element

<dr3d:light>*    + + Child Relations + <chart:plot-area + ( (svg:x="string]" )? + (svg:y="string]" )? + ) + ( (svg:width="string]" )? + (svg:height="string]" )? + ) (chart:style-name="(<NCName>)?" )? + (table:cell-range-address="<string>" )? + (chart:data-source-has-labels="none | row | column | both" )? + (dr3d:vrp="string]" )? + (dr3d:vpn="string]" )? + (dr3d:vup="string]" )? + (dr3d:projection="parallel | perspective" )? + (dr3d:distance="string]" )? + (dr3d:focal-length="string]" )? + (dr3d:shadow-slant="<string>" )? + (dr3d:shade-mode="flat | phong | gouraud | draft" )? + (dr3d:ambient-color="string]" )? + (dr3d:lighting-mode="<boolean>" )? + (dr3d:transform="<string>" )? + (xml:id="<ID>" )? + (<chart:coordinate-region ... >)? + (<dr3d:light ... >)* (<chart:axis ... >)* (<chart:series ... >)* (<chart:stock-gain-marker ... >)? + (<chart:stock-loss-marker ... >)? + (<chart:stock-range-line ... >)? + (<chart:wall ... >)? + (<chart:floor ... >)? + >  +
@@ -1080,6 +1554,12 @@

chart:regression-curve Element<chart:equation>    + + Child Relations + <chart:regression-curve (chart:style-name="(<NCName>)?" )? + (<chart:equation ... >)? + >  +
@@ -1113,6 +1593,18 @@

chart:series Element

<chart:regression-curve>*    + + Child Relations + <chart:series (chart:values-cell-range-address="<string>" )? + (chart:label-cell-address="<string>" )? + (chart:class="QName]" )? + (chart:attached-axis="<string>" )? + (chart:style-name="(<NCName>)?" )? + (xml:id="<ID>" )? + (<chart:domain ... >)* (<chart:mean-value ... >)? + (<chart:regression-curve ... >)* (<chart:error-indicator ... >)* (<chart:data-point ... >)* (<chart:data-label ... >)? + >  +
@@ -1135,6 +1627,11 @@

chart:stock-gain-marker Element<   + + Child Relations + <chart:stock-gain-marker (chart:style-name="(<NCName>)?" )? + >  +
@@ -1157,6 +1654,11 @@

chart:stock-loss-marker Element<   + + Child Relations + <chart:stock-loss-marker (chart:style-name="(<NCName>)?" )? + >  +
@@ -1179,6 +1681,11 @@

chart:stock-range-line Element   + + Child Relations + <chart:stock-range-line (chart:style-name="(<NCName>)?" )? + >  +
@@ -1194,7 +1701,7 @@

chart:subtitle Element

Attributes chart:style-name  - svg:x[1]  + svg:x[2]  svg:y[2]  table:cell-range    @@ -1205,6 +1712,16 @@

chart:subtitle Element

<text:p>    + + Child Relations + <chart:subtitle (table:cell-range="<string>" )? + + ( (svg:x="string]" )? + (svg:y="string]" )? + ) (chart:style-name="(<NCName>)?" )? + (<text:p ... >)? + >  +
@@ -1227,6 +1744,10 @@

chart:symbol-image Element (   + + Child Relations + <chart:symbol-image xlink:href="<anyIRI>" >  +
@@ -1243,7 +1764,7 @@

chart:title Element

Attributes chart:style-name  - svg:x[1]  + svg:x[2]  svg:y[2]  table:cell-range    @@ -1254,6 +1775,16 @@

chart:title Element

<text:p>    + + Child Relations + <chart:title (table:cell-range="<string>" )? + + ( (svg:x="string]" )? + (svg:y="string]" )? + ) (chart:style-name="(<NCName>)?" )? + (<text:p ... >)? + >  +
@@ -1277,6 +1808,12 @@

chart:wall Element

  + + Child Relations + <chart:wall (svg:width="string]" )? + (chart:style-name="(<NCName>)?" )? + >  +
@@ -1302,6 +1839,10 @@

config:config-item Element

  + + Child Relations + <config:config-item config:name="<string>" config:type="boolean | short | int | long | double | string | datetime | base64Binary" TEXT>  +
@@ -1329,6 +1870,11 @@

config:config-item-map-entr <config:config-item-set>*    + + Child Relations + <config:config-item-map-entry (config:name="<string>" )? + (<config:config-item ... > | <config:config-item-set ... > | <config:config-item-map-named ... > | <config:config-item-map-indexed ... >)+ >  +
@@ -1353,6 +1899,10 @@

config:config-item-map-in <config:config-item-map-entry>*    + + Child Relations + <config:config-item-map-indexed config:name="<string>" (<config:config-item-map-entry ... >)+ >  +
@@ -1377,6 +1927,10 @@

config:config-item-map-name <config:config-item-map-entry>*    + + Child Relations + <config:config-item-map-named config:name="<string>" (<config:config-item-map-entry ... >)+ >  +
@@ -1405,6 +1959,10 @@

config:config-item-set Element<config:config-item-set>*    + + Child Relations + <config:config-item-set config:name="<string>" (<config:config-item ... > | <config:config-item-set ... > | <config:config-item-map-named ... > | <config:config-item-map-indexed ... >)+ >  +
@@ -1437,6 +1995,21 @@

db:application-connec <db:table-type-filter>    + + Child Relations + <db:application-connection-settings (db:is-table-name-length-limited="<boolean>" )? + (db:enable-sql92-check="<boolean>" )? + (db:append-table-alias-name="<boolean>" )? + (db:ignore-driver-privileges="<boolean>" )? + (db:boolean-comparison-mode="equal-integer | is-boolean | equal-boolean | equal-use-only-zero" )? + (db:use-catalog="<boolean>" )? + (db:max-row-count="<integer>" )? + (db:suppress-version-columns="<boolean>" )? + (<db:table-filter ... >)? + (<db:table-type-filter ... >)? + (<db:data-source-settings ... >)? + >  +
@@ -1460,6 +2033,12 @@

db:auto-increment Element (ne   + + Child Relations + <db:auto-increment (db:additional-column-statement="<string>" )? + (db:row-retrieving-statement="<string>" )? + >  +
@@ -1483,6 +2062,11 @@

db:character-set Element (new   + + Child Relations + <db:character-set (db:encoding="string]" )? + >  +
@@ -1511,9 +2095,9 @@

db:column Element (new in ODF 1.2) office:value  office:value-type[1]  office:value-type[2]  - office:value-type[3]  office:value-type[4]  office:value-type[5]  + office:value-type[6]  office:value-type[7]  office:value-type[8]    @@ -1523,6 +2107,25 @@

db:column Element (new in ODF 1.2)   + + Child Relations + <db:column (db:visible="<boolean>" )? + (db:style-name="(<NCName>)?" )? + (db:default-cell-style-name="(<NCName>)?" )? + db:name="<string>" (db:title="<string>" )? + (db:description="<string>" )? + ( + (office:value-type="float" office:value="<double>" ) | + (office:value-type="percentage" office:value="<double>" ) | + (office:value-type="currency" office:value="<double>" (office:currency="<string>" )? + ) | + (office:value-type="date" office:date-value="<date> | <dateTime>" ) | + (office:value-type="time" office:time-value="<duration>" ) | + (office:value-type="boolean" office:boolean-value="<boolean>" ) | + (office:value-type="string" (office:string-value="<string>" )? + ))? + >  +
@@ -1553,9 +2156,9 @@

db:column-definition Element&nb office:value  office:value-type[1]  office:value-type[2]  - office:value-type[3]  office:value-type[4]  office:value-type[5]  + office:value-type[6]  office:value-type[7]  office:value-type[8]    @@ -1565,6 +2168,27 @@

db:column-definition Element&nb   + + Child Relations + <db:column-definition db:name="<string>" (db:data-type="bit | boolean | tinyint | smallint | integer | bigint | float | real | double | numeric | decimal | char | varchar | longvarchar | date | time | timestmp | binary | varbinary | longvarbinary | sqlnull | other | object | distinct | struct | array | blob | clob | ref" )? + (db:type-name="<string>" )? + (db:precision="<positiveInteger>" )? + (db:scale="<positiveInteger>" )? + (db:is-nullable="no-nulls | nullable" )? + (db:is-empty-allowed="<boolean>" )? + (db:is-autoincrement="<boolean>" )? + ( + (office:value-type="float" office:value="<double>" ) | + (office:value-type="percentage" office:value="<double>" ) | + (office:value-type="currency" office:value="<double>" (office:currency="<string>" )? + ) | + (office:value-type="date" office:date-value="<date> | <dateTime>" ) | + (office:value-type="time" office:time-value="<duration>" ) | + (office:value-type="boolean" office:boolean-value="<boolean>" ) | + (office:value-type="string" (office:string-value="<string>" )? + ))? + >  +
@@ -1587,6 +2211,10 @@

db:column-definitions Element& <db:column-definition>*    + + Child Relations + <db:column-definitions EMPTY(<db:column-definition ... >)+ >  +
@@ -1610,6 +2238,10 @@

db:columns Element (new in ODF 1.2) <db:column>*    + + Child Relations + <db:columns EMPTY(<db:column ... >)+ >  +
@@ -1643,6 +2275,17 @@

db:component Element (new in ODF 1 <office:document>    + + Child Relations + <db:component (xlink:type="simple" xlink:href="<anyIRI>" (xlink:show="none" )? + (xlink:actuate="onRequest" )? + )? + (db:as-template="<boolean>" )? + db:name="<string>" (db:title="<string>" )? + (db:description="<string>" )? + (<office:document ... > | <math:math ... >)? + >  +
@@ -1671,6 +2314,12 @@

db:component-collection Element< <db:component-collection>*    + + Child Relations + <db:component-collection EMPTYdb:name="<string>" (db:title="<string>" )? + (db:description="<string>" )? + (<db:component ... > | <db:component-collection ... >)* >  +
@@ -1695,6 +2344,11 @@

db:connection-data Element ( <db:login>    + + Child Relations + <db:connection-data EMPTY<db:database-description ... > | <db:connection-resource ... > (<db:login ... >)? + >  +
@@ -1720,6 +2374,13 @@

db:connection-resource Element   + + Child Relations + <db:connection-resource + (xlink:type="simple" xlink:href="<anyIRI>" (xlink:show="none" )? + (xlink:actuate="onRequest" )? + )>  +
@@ -1744,6 +2405,12 @@

db:data-source Element (new in O <db:driver-settings>    + + Child Relations + <db:data-source EMPTY<db:connection-data ... > (<db:driver-settings ... >)? + (<db:application-connection-settings ... >)? + >  +
@@ -1769,6 +2436,11 @@

db:data-source-setting Element<db:data-source-setting-value>*    + + Child Relations + <db:data-source-setting (db:data-source-setting-is-list="<boolean>" )? + db:data-source-setting-name="<string>" db:data-source-setting-type="boolean | short | int | long | double | string" (<db:data-source-setting-value ... >)+ >  +
@@ -1790,6 +2462,10 @@

db:data-source-setting-valu   + + Child Relations + <db:data-source-setting-value EMPTY<string>>  +
@@ -1812,6 +2488,10 @@

db:data-source-settings Element< <db:data-source-setting>*    + + Child Relations + <db:data-source-settings EMPTY(<db:data-source-setting ... >)+ >  +
@@ -1835,6 +2515,10 @@

db:database-description Element< <db:server-database>    + + Child Relations + <db:database-description EMPTY<db:file-based-database ... > | <db:server-database ... >>  +
@@ -1861,6 +2545,14 @@

db:delimiter Element (new in ODF 1   + + Child Relations + <db:delimiter (db:field="<string>" )? + (db:string="<string>" )? + (db:decimal="<string>" )? + (db:thousand="<string>" )? + >  +
@@ -1891,6 +2583,19 @@

db:driver-settings Element ( <db:table-settings>    + + Child Relations + <db:driver-settings (db:show-deleted="<boolean>" )? + (db:system-driver-settings="<string>" )? + (db:base-dn="<string>" )? + (db:is-first-row-header-line="<boolean>" )? + (db:parameter-name-substitution="<boolean>" )? + (<db:auto-increment ... >)? + (<db:delimiter ... >)? + (<db:character-set ... >)? + (<db:table-settings ... >)? + >  +
@@ -1916,6 +2621,11 @@

db:file-based-database Element   + + Child Relations + <db:file-based-database xlink:type="simple" xlink:href="<anyIRI>" db:media-type="<string>" (db:extension="<string>" )? + >  +
@@ -1940,6 +2650,11 @@

db:filter-statement Element    + + Child Relations + <db:filter-statement db:command="<string>" (db:apply-command="<boolean>" )? + >  +
@@ -1963,6 +2678,10 @@

db:forms Element (new in ODF 1.2)

<db:component-collection>*    + + Child Relations + <db:forms EMPTY(<db:component ... > | <db:component-collection ... >)* >  +
@@ -1989,6 +2708,13 @@

db:index Element (new in ODF 1.2)

<db:index-columns>*    + + Child Relations + <db:index db:name="<string>" (db:catalog-name="<string>" )? + (db:is-unique="<boolean>" )? + (db:is-clustered="<boolean>" )? + (<db:index-columns ... >)+ >  +
@@ -2012,6 +2738,11 @@

db:index-column Element (new in   + + Child Relations + <db:index-column db:name="<string>" (db:is-ascending="<boolean>" )? + >  +
@@ -2034,6 +2765,10 @@

db:index-columns Element (new <db:index-column>*    + + Child Relations + <db:index-columns (<db:index-column ... >)+ >  +
@@ -2056,6 +2791,10 @@

db:indices Element (new in ODF 1.2) <db:index>*    + + Child Relations + <db:indices EMPTY(<db:index ... >)+ >  +
@@ -2073,7 +2812,7 @@

db:key Element (new in ODF 1.2)

db:delete-rule  db:name  db:referenced-table-name  - db:type[3]  + db:type[2]  db:update-rule    @@ -2083,6 +2822,14 @@

db:key Element (new in ODF 1.2)

<db:key-columns>*    + + Child Relations + <db:key (db:name="<string>" )? + db:type="primary | unique | foreign" (db:referenced-table-name="<string>" )? + (db:update-rule="cascade | restrict | set-null | no-action | set-default" )? + (db:delete-rule="cascade | restrict | set-null | no-action | set-default" )? + (<db:key-columns ... >)+ >  +
@@ -2106,6 +2853,12 @@

db:key-column Element (new in ODF   + + Child Relations + <db:key-column (db:name="<string>" )? + (db:related-column-name="<string>" )? + >  +
@@ -2128,6 +2881,10 @@

db:key-columns Element (new in O <db:key-column>*    + + Child Relations + <db:key-columns EMPTY(<db:key-column ... >)+ >  +
@@ -2150,6 +2907,10 @@

db:keys Element (new in ODF 1.2)

<db:key>*    + + Child Relations + <db:keys EMPTY(<db:key ... >)+ >  +
@@ -2175,6 +2936,13 @@

db:login Element (new in ODF 1.2)

  + + Child Relations + <db:login (db:user-name="<string>" | db:use-system-user="<boolean>" )? + (db:is-password-required="<boolean>" )? + (db:login-timeout="<positiveInteger>" )? + >  +
@@ -2199,6 +2967,11 @@

db:order-statement Element (   + + Child Relations + <db:order-statement db:command="<string>" (db:apply-command="<boolean>" )? + >  +
@@ -2222,6 +2995,10 @@

db:queries Element (new in ODF 1.2) <db:query-collection>*    + + Child Relations + <db:queries EMPTY(<db:query ... > | <db:query-collection ... >)* >  +
@@ -2255,6 +3032,19 @@

db:query Element (new in ODF 1.2)

<db:update-table>    + + Child Relations + <db:query db:command="<string>" (db:escape-processing="<boolean>" )? + db:name="<string>" (db:title="<string>" )? + (db:description="<string>" )? + (db:style-name="(<NCName>)?" )? + (db:default-row-style-name="(<NCName>)?" )? + (<db:order-statement ... >)? + (<db:filter-statement ... >)? + (<db:columns ... >)? + (<db:update-table ... >)? + >  +
@@ -2282,6 +3072,12 @@

db:query-collection Element  <db:query-collection>*    + + Child Relations + <db:query-collection EMPTYdb:name="<string>" (db:title="<string>" )? + (db:description="<string>" )? + (<db:query ... > | <db:query-collection ... >)* >  +
@@ -2305,6 +3101,10 @@

db:reports Element (new in ODF 1.2) <db:component-collection>*    + + Child Relations + <db:reports EMPTY(<db:component ... > | <db:component-collection ... >)* >  +
@@ -2327,6 +3127,10 @@

db:schema-definition Element&nb <db:table-definitions>    + + Child Relations + <db:schema-definition EMPTY<db:table-definitions ... >>  +
@@ -2345,7 +3149,7 @@

db:server-database Element ( db:hostname  db:local-socket  db:port  - db:type[2]  + db:type[3]    @@ -2353,6 +3157,14 @@

db:server-database Element (   + + Child Relations + <db:server-database db:type="QName]" + (db:hostname="<string>" (db:port="<positiveInteger>" )? + ) | (db:local-socket="<string>" )? + (db:database-name="<string>" )? + >  +
@@ -2381,6 +3193,15 @@

db:table-definition Element  <db:keys>    + + Child Relations + <db:table-definition db:name="<string>" (db:catalog-name="<string>" )? + (db:schema-name="<string>" )? + (db:type="<string>" )? + <db:column-definitions ... > (<db:keys ... >)? + (<db:indices ... >)? + >  +
@@ -2403,6 +3224,10 @@

db:table-definitions Element&nb <db:table-definition>*    + + Child Relations + <db:table-definitions EMPTY(<db:table-definition ... >)* >  +
@@ -2425,6 +3250,10 @@

db:table-exclude-filter Element< <db:table-filter-pattern>*    + + Child Relations + <db:table-exclude-filter EMPTY(<db:table-filter-pattern ... >)+ >  +
@@ -2448,6 +3277,12 @@

db:table-filter Element (new in <db:table-include-filter>    + + Child Relations + <db:table-filter EMPTY (<db:table-include-filter ... >)? + (<db:table-exclude-filter ... >)? + >  +
@@ -2470,6 +3305,10 @@

db:table-filter-pattern Element<   + + Child Relations + <db:table-filter-pattern EMPTY<string>>  +
@@ -2492,6 +3331,10 @@

db:table-include-filter Element< <db:table-filter-pattern>*    + + Child Relations + <db:table-include-filter EMPTY(<db:table-filter-pattern ... >)+ >  +
@@ -2523,6 +3366,19 @@

db:table-representation Element< <db:order-statement>    + + Child Relations + <db:table-representation EMPTYdb:name="<string>" (db:catalog-name="<string>" )? + (db:schema-name="<string>" )? + (db:title="<string>" )? + (db:description="<string>" )? + (db:style-name="(<NCName>)?" )? + (db:default-row-style-name="(<NCName>)?" )? + (<db:order-statement ... >)? + (<db:filter-statement ... >)? + (<db:columns ... >)? + >  +
@@ -2545,6 +3401,10 @@

db:table-representations Elemen <db:table-representation>*    + + Child Relations + <db:table-representations EMPTY(<db:table-representation ... >)* >  +
@@ -2570,6 +3430,15 @@

db:table-setting Element (new <db:delimiter>    + + Child Relations + <db:table-setting + ( (db:is-first-row-header-line="<boolean>" )? + (db:show-deleted="<boolean>" )? + ) (<db:delimiter ... >)? + (<db:character-set ... >)? + >  +
@@ -2592,6 +3461,10 @@

db:table-settings Element (ne <db:table-setting>*    + + Child Relations + <db:table-settings (<db:table-setting ... >)* >  +
@@ -2613,6 +3486,10 @@

db:table-type Element (new in ODF   + + Child Relations + <db:table-type EMPTY<string>>  +
@@ -2635,6 +3512,10 @@

db:table-type-filter Element&nb <db:table-type>*    + + Child Relations + <db:table-type-filter EMPTY(<db:table-type ... >)* >  +
@@ -2659,6 +3540,12 @@

db:update-table Element (new in   + + Child Relations + <db:update-table db:name="<string>" (db:catalog-name="<string>" )? + (db:schema-name="<string>" )? + >  +
@@ -2682,6 +3569,10 @@

dc:creator Element

  + + Child Relations + <dc:creator <string>>  +
@@ -2705,6 +3596,10 @@

dc:date Element

  + + Child Relations + <dc:date <dateTime>>  +
@@ -2726,6 +3621,10 @@

dc:description Element (new in O   + + Child Relations + <dc:description <string>>  +
@@ -2747,6 +3646,10 @@

dc:language Element (new in ODF 1.2   + + Child Relations + <dc:language <language>>  +
@@ -2768,6 +3671,10 @@

dc:subject Element (new in ODF 1.2)   + + Child Relations + <dc:subject <string>>  +
@@ -2789,6 +3696,10 @@

dc:title Element (new in ODF 1.2)

  + + Child Relations + <dc:title <string>>  +
@@ -2821,6 +3732,28 @@

dr3d:cube Element

  + + Child Relations + <dr3d:cube + ( (dr3d:min-edge="string]" )? + (dr3d:max-edge="string]" )? + ) (draw:z-index="<nonNegativeInteger>" )? + (xml:id="<ID>" (draw:id="<NCName>" )? + )? + (draw:layer="<string>" )? + + ( (draw:style-name="(<NCName>)?" )? + (draw:class-names=" +START_list(<NCName>)* +END_list" )? + ) | + ( (presentation:style-name="(<NCName>)?" )? + (presentation:class-names=" +START_list(<NCName>)* +END_list" )? + ) (dr3d:transform="<string>" )? + >  +
@@ -2853,6 +3786,27 @@

dr3d:extrude Element

  + + Child Relations + <dr3d:extrude svg:d="<string>" svg:viewBox=" +START_list<integer><integer><integer><integer> +END_list" (xml:id="<ID>" (draw:id="<NCName>" )? + )? + (draw:z-index="<nonNegativeInteger>" )? + (draw:layer="<string>" )? + + ( (draw:style-name="(<NCName>)?" )? + (draw:class-names=" +START_list(<NCName>)* +END_list" )? + ) | + ( (presentation:style-name="(<NCName>)?" )? + (presentation:class-names=" +START_list(<NCName>)* +END_list" )? + ) (dr3d:transform="<string>" )? + >  +
@@ -2879,6 +3833,13 @@

dr3d:light Element

  + + Child Relations + <dr3d:light (dr3d:diffuse-color="string]" )? + dr3d:direction="string]" (dr3d:enabled="<boolean>" )? + (dr3d:specular="<boolean>" )? + >  +
@@ -2911,6 +3872,27 @@

dr3d:rotate Element

  + + Child Relations + <dr3d:rotate svg:viewBox=" +START_list<integer><integer><integer><integer> +END_list" svg:d="<string>" (draw:z-index="<nonNegativeInteger>" )? + (xml:id="<ID>" (draw:id="<NCName>" )? + )? + (draw:layer="<string>" )? + + ( (draw:style-name="(<NCName>)?" )? + (draw:class-names=" +START_list(<NCName>)* +END_list" )? + ) | + ( (presentation:style-name="(<NCName>)?" )? + (presentation:class-names=" +START_list(<NCName>)* +END_list" )? + ) (dr3d:transform="<string>" )? + >  +
@@ -2952,7 +3934,7 @@

dr3d:scene Element

dr3d:ambient-color  dr3d:distance  dr3d:focal-length  - dr3d:lighting-mode[1]  + dr3d:lighting-mode[2]  dr3d:projection  dr3d:shade-mode  dr3d:shadow-slant  @@ -2970,7 +3952,7 @@

dr3d:scene Element

presentation:style-name  svg:height[1]  svg:width[2]  - svg:x[1]  + svg:x[2]  svg:y[2]  table:end-cell-address  table:end-x  @@ -2995,6 +3977,50 @@

dr3d:scene Element

<svg:title>    + + Child Relations + <dr3d:scene (dr3d:vrp="string]" )? + (dr3d:vpn="string]" )? + (dr3d:vup="string]" )? + (dr3d:projection="parallel | perspective" )? + (dr3d:distance="string]" )? + (dr3d:focal-length="string]" )? + (dr3d:shadow-slant="<string>" )? + (dr3d:shade-mode="flat | phong | gouraud | draft" )? + (dr3d:ambient-color="string]" )? + (dr3d:lighting-mode="<boolean>" )? + + ( (svg:x="string]" )? + (svg:y="string]" )? + ) + ( (svg:width="string]" )? + (svg:height="string]" )? + ) + ( (draw:style-name="(<NCName>)?" )? + (draw:class-names=" +START_list(<NCName>)* +END_list" )? + ) | + ( (presentation:style-name="(<NCName>)?" )? + (presentation:class-names=" +START_list(<NCName>)* +END_list" )? + ) (draw:z-index="<nonNegativeInteger>" )? + (xml:id="<ID>" (draw:id="<NCName>" )? + )? + (draw:layer="<string>" )? + (table:end-cell-address="string]" )? + (table:end-x="string]" )? + (table:end-y="string]" )? + (table:table-background="<boolean>" )? + (text:anchor-type="page | frame | paragraph | char | as-char" )? + (text:anchor-page-number="<positiveInteger>" )? + (dr3d:transform="<string>" )? + (draw:caption-id="<IDREF>" )? + (<svg:title ... >)? + (<svg:desc ... >)? + (<dr3d:light ... >)* (<dr3d:scene ... > | <dr3d:extrude ... > | <dr3d:sphere ... > | <dr3d:rotate ... > | <dr3d:cube ... >)* (<draw:glue-point ... >)* >  +
@@ -3027,6 +4053,27 @@

dr3d:sphere Element

  + + Child Relations + <dr3d:sphere (dr3d:center="string]" )? + (dr3d:size="string]" )? + (draw:z-index="<nonNegativeInteger>" )? + (xml:id="<ID>" (draw:id="<NCName>" )? + )? + (draw:layer="<string>" )? + + ( (draw:style-name="(<NCName>)?" )? + (draw:class-names=" +START_list(<NCName>)* +END_list" )? + ) | + ( (presentation:style-name="(<NCName>)?" )? + (presentation:class-names=" +START_list(<NCName>)* +END_list" )? + ) (dr3d:transform="<string>" )? + >  +
@@ -3096,6 +4143,17 @@

draw:a Element

<draw:regular-polygon>    + + Child Relations + <draw:a xlink:type="simple" xlink:href="<anyIRI>" (xlink:actuate="onRequest" )? + (office:target-frame-name="_self | _blank | _parent | _top | <string>" )? + (xlink:show="new | replace" )? + (office:name="<string>" )? + (office:title="<string>" )? + (office:server-map="<boolean>" )? + (xml:id="<ID>" )? + <draw:rect ... > | <draw:line ... > | <draw:polyline ... > | <draw:polygon ... > | <draw:regular-polygon ... > | <draw:path ... > | <draw:circle ... > | <draw:ellipse ... > | <draw:g ... > | <draw:page-thumbnail ... > | <draw:frame ... > | <draw:measure ... > | <draw:caption ... > | <draw:connector ... > | <draw:control ... > | <dr3d:scene ... > | <draw:custom-shape ... >>  +
@@ -3127,6 +4185,19 @@

draw:applet Element

<draw:param>*    + + Child Relations + <draw:applet (draw:code="<string>" )? + (draw:object="<string>" )? + (draw:archive="<string>" )? + (draw:may-script="<boolean>" )? + (xml:id="<ID>" )? + ( + (xlink:type="simple" xlink:href="<anyIRI>" (xlink:show="embed" )? + (xlink:actuate="onLoad" )? + ))? + (<draw:param ... >)* >  +
@@ -3145,8 +4216,8 @@

draw:area-circle Element

office:name  office:target-frame-name  svg:cx[2]  - svg:cy[2]  - svg:r[2]  + svg:cy[1]  + svg:r[1]  xlink:href  xlink:show[1]  xlink:type  @@ -3160,6 +4231,18 @@

draw:area-circle Element

<svg:title>    + + Child Relations + <draw:area-circle (xlink:type="simple" xlink:href="<anyIRI>" (office:target-frame-name="_self | _blank | _parent | _top | <string>" )? + (xlink:show="new | replace" )? + )? + (office:name="<string>" )? + (draw:nohref="nohref" )? + svg:cx="string]" svg:cy="string]" svg:r="string]" (<svg:title ... >)? + (<svg:desc ... >)? + (<office:event-listeners ... >)? + >  +
@@ -3181,7 +4264,7 @@

draw:area-polygon Element

svg:height[1]  svg:viewBox  svg:width[2]  - svg:x[1]  + svg:x[2]  svg:y[2]  xlink:href  xlink:show[1]  @@ -3196,6 +4279,20 @@

draw:area-polygon Element

<svg:title>    + + Child Relations + <draw:area-polygon (xlink:type="simple" xlink:href="<anyIRI>" (office:target-frame-name="_self | _blank | _parent | _top | <string>" )? + (xlink:show="new | replace" )? + )? + (office:name="<string>" )? + (draw:nohref="nohref" )? + svg:x="string]" svg:y="string]" svg:width="string]" svg:height="string]" svg:viewBox=" +START_list<integer><integer><integer><integer> +END_list" draw:points="string]" (<svg:title ... >)? + (<svg:desc ... >)? + (<office:event-listeners ... >)? + >  +
@@ -3215,7 +4312,7 @@

draw:area-rectangle Element

office:target-frame-name  svg:height[1]  svg:width[2]  - svg:x[1]  + svg:x[2]  svg:y[2]  xlink:href  xlink:show[1]  @@ -3230,6 +4327,18 @@

draw:area-rectangle Element

<svg:title>    + + Child Relations + <draw:area-rectangle (xlink:type="simple" xlink:href="<anyIRI>" (office:target-frame-name="_self | _blank | _parent | _top | <string>" )? + (xlink:show="new | replace" )? + )? + (office:name="<string>" )? + (draw:nohref="nohref" )? + svg:x="string]" svg:y="string]" svg:width="string]" svg:height="string]" (<svg:title ... >)? + (<svg:desc ... >)? + (<office:event-listeners ... >)? + >  +
@@ -3283,7 +4392,7 @@

draw:caption Element

presentation:style-name  svg:height[1]  svg:width[2]  - svg:x[1]  + svg:x[2]  svg:y[2]  table:end-cell-address  table:end-x  @@ -3305,6 +4414,47 @@

draw:caption Element

<text:p>*    + + Child Relations + <draw:caption (draw:caption-point-x="string]" draw:caption-point-y="string]" )? + (draw:corner-radius="string]" )? + + ( (svg:x="string]" )? + (svg:y="string]" )? + ) + ( (svg:width="string]" )? + (svg:height="string]" )? + ) + ( + ( (draw:z-index="<nonNegativeInteger>" )? + (xml:id="<ID>" (draw:id="<NCName>" )? + )? + (draw:layer="<string>" )? + + ( (draw:style-name="(<NCName>)?" )? + (draw:class-names=" +START_list(<NCName>)* +END_list" )? + ) | + ( (presentation:style-name="(<NCName>)?" )? + (presentation:class-names=" +START_list(<NCName>)* +END_list" )? + ) (draw:transform="<string>" )? + (draw:name="<string>" )? + (table:end-cell-address="string]" )? + (table:end-x="string]" )? + (table:end-y="string]" )? + (table:table-background="<boolean>" )? + (text:anchor-type="page | frame | paragraph | char | as-char" )? + (text:anchor-page-number="<positiveInteger>" )? + ) (draw:text-style-name="(<NCName>)?" )? + ) (draw:caption-id="<IDREF>" )? + (<svg:title ... >)? + (<svg:desc ... >)? + (<office:event-listeners ... >)? + (<draw:glue-point ... >)* (<text:p ... > | <text:list ... >)* >  +
@@ -3357,11 +4507,11 @@

draw:circle Element

presentation:class-names  presentation:style-name  svg:cx[2]  - svg:cy[2]  + svg:cy[1]  svg:height[1]  - svg:r[2]  + svg:r[1]  svg:width[2]  - svg:x[1]  + svg:x[2]  svg:y[2]  table:end-cell-address  table:end-x  @@ -3383,6 +4533,51 @@

draw:circle Element

<text:p>*    + + Child Relations + <draw:circle + (svg:r="string]" + (svg:cx="string]" svg:cy="string]" )) | + ( + ( (svg:x="string]" )? + (svg:y="string]" )? + ) + ( (svg:width="string]" )? + (svg:height="string]" )? + )) (draw:kind="full | section | cut | arc" )? + (draw:start-angle="<string>" )? + (draw:end-angle="<string>" )? + + ( + ( (draw:z-index="<nonNegativeInteger>" )? + (xml:id="<ID>" (draw:id="<NCName>" )? + )? + (draw:layer="<string>" )? + + ( (draw:style-name="(<NCName>)?" )? + (draw:class-names=" +START_list(<NCName>)* +END_list" )? + ) | + ( (presentation:style-name="(<NCName>)?" )? + (presentation:class-names=" +START_list(<NCName>)* +END_list" )? + ) (draw:transform="<string>" )? + (draw:name="<string>" )? + (table:end-cell-address="string]" )? + (table:end-x="string]" )? + (table:end-y="string]" )? + (table:table-background="<boolean>" )? + (text:anchor-type="page | frame | paragraph | char | as-char" )? + (text:anchor-page-number="<positiveInteger>" )? + ) (draw:text-style-name="(<NCName>)?" )? + ) (draw:caption-id="<IDREF>" )? + (<svg:title ... >)? + (<svg:desc ... >)? + (<office:event-listeners ... >)? + (<draw:glue-point ... >)* (<text:p ... > | <text:list ... >)* >  +
@@ -3463,6 +4658,52 @@

draw:connector Element

<text:p>*    + + Child Relations + <draw:connector (draw:type="standard | lines | line | curve" )? + (svg:x1="string]" svg:y1="string]" )? + (draw:start-shape="<IDREF>" )? + (draw:start-glue-point="<nonNegativeInteger>" )? + (svg:x2="string]" svg:y2="string]" )? + (draw:end-shape="<IDREF>" )? + (draw:end-glue-point="<nonNegativeInteger>" )? + (draw:line-skew=" +START_liststring](string](string])?)? +END_list" )? + (svg:d="<string>" )? + + ( + ( (draw:z-index="<nonNegativeInteger>" )? + (xml:id="<ID>" (draw:id="<NCName>" )? + )? + (draw:layer="<string>" )? + + ( (draw:style-name="(<NCName>)?" )? + (draw:class-names=" +START_list(<NCName>)* +END_list" )? + ) | + ( (presentation:style-name="(<NCName>)?" )? + (presentation:class-names=" +START_list(<NCName>)* +END_list" )? + ) (draw:transform="<string>" )? + (draw:name="<string>" )? + (table:end-cell-address="string]" )? + (table:end-x="string]" )? + (table:end-y="string]" )? + (table:table-background="<boolean>" )? + (text:anchor-type="page | frame | paragraph | char | as-char" )? + (text:anchor-page-number="<positiveInteger>" )? + ) (draw:text-style-name="(<NCName>)?" )? + ) (draw:caption-id="<IDREF>" )? + svg:viewBox=" +START_list<integer><integer><integer><integer> +END_list" (<svg:title ... >)? + (<svg:desc ... >)? + (<office:event-listeners ... >)? + (<draw:glue-point ... >)* (<text:p ... > | <text:list ... >)* >  +
@@ -3489,6 +4730,15 @@

draw:contour-path Element

  + + Child Relations + <draw:contour-path draw:recreate-on-edit="<boolean>" + ( (svg:width="string]" )? + (svg:height="string]" )? + )svg:viewBox=" +START_list<integer><integer><integer><integer> +END_list" svg:d="<string>" >  +
@@ -3515,6 +4765,15 @@

draw:contour-polygon Element   + + Child Relations + <draw:contour-polygon draw:recreate-on-edit="<boolean>" + ( (svg:width="string]" )? + (svg:height="string]" )? + )svg:viewBox=" +START_list<integer><integer><integer><integer> +END_list" draw:points="string]" >  +
@@ -3566,7 +4825,7 @@

draw:control Element

presentation:style-name  svg:height[1]  svg:width[2]  - svg:x[1]  + svg:x[2]  svg:y[2]  table:end-cell-address  table:end-x  @@ -3585,6 +4844,44 @@

draw:control Element

<svg:title>    + + Child Relations + <draw:control draw:control="<IDREF>" + ( (svg:x="string]" )? + (svg:y="string]" )? + ) + ( (svg:width="string]" )? + (svg:height="string]" )? + ) + ( + ( (draw:z-index="<nonNegativeInteger>" )? + (xml:id="<ID>" (draw:id="<NCName>" )? + )? + (draw:layer="<string>" )? + + ( (draw:style-name="(<NCName>)?" )? + (draw:class-names=" +START_list(<NCName>)* +END_list" )? + ) | + ( (presentation:style-name="(<NCName>)?" )? + (presentation:class-names=" +START_list(<NCName>)* +END_list" )? + ) (draw:transform="<string>" )? + (draw:name="<string>" )? + (table:end-cell-address="string]" )? + (table:end-x="string]" )? + (table:end-y="string]" )? + (table:table-background="<boolean>" )? + (text:anchor-type="page | frame | paragraph | char | as-char" )? + (text:anchor-page-number="<positiveInteger>" )? + ) (draw:text-style-name="(<NCName>)?" )? + ) (draw:caption-id="<IDREF>" )? + (<svg:title ... >)? + (<svg:desc ... >)? + (<draw:glue-point ... >)* >  +
@@ -3637,7 +4934,7 @@

draw:custom-shape Element

presentation:style-name  svg:height[1]  svg:width[2]  - svg:x[1]  + svg:x[2]  svg:y[2]  table:end-cell-address  table:end-x  @@ -3660,6 +4957,48 @@

draw:custom-shape Element

<text:p>*    + + Child Relations + <draw:custom-shape (draw:engine="QName]" )? + (draw:data="<string>" )? + + ( (svg:x="string]" )? + (svg:y="string]" )? + ) + ( (svg:width="string]" )? + (svg:height="string]" )? + ) + ( + ( (draw:z-index="<nonNegativeInteger>" )? + (xml:id="<ID>" (draw:id="<NCName>" )? + )? + (draw:layer="<string>" )? + + ( (draw:style-name="(<NCName>)?" )? + (draw:class-names=" +START_list(<NCName>)* +END_list" )? + ) | + ( (presentation:style-name="(<NCName>)?" )? + (presentation:class-names=" +START_list(<NCName>)* +END_list" )? + ) (draw:transform="<string>" )? + (draw:name="<string>" )? + (table:end-cell-address="string]" )? + (table:end-x="string]" )? + (table:end-y="string]" )? + (table:table-background="<boolean>" )? + (text:anchor-type="page | frame | paragraph | char | as-char" )? + (text:anchor-page-number="<positiveInteger>" )? + ) (draw:text-style-name="(<NCName>)?" )? + ) (draw:caption-id="<IDREF>" )? + (<svg:title ... >)? + (<svg:desc ... >)? + (<office:event-listeners ... >)? + (<draw:glue-point ... >)* (<text:p ... > | <text:list ... >)* (<draw:enhanced-geometry ... >)? + >  +
@@ -3712,12 +5051,12 @@

draw:ellipse Element

presentation:class-names  presentation:style-name  svg:cx[2]  - svg:cy[2]  + svg:cy[1]  svg:height[1]  svg:rx[1]  - svg:ry[2]  + svg:ry[1]  svg:width[2]  - svg:x[1]  + svg:x[2]  svg:y[2]  table:end-cell-address  table:end-x  @@ -3739,6 +5078,52 @@

draw:ellipse Element

<text:p>*    + + Child Relations + <draw:ellipse + ( + (svg:rx="string]" svg:ry="string]" ) + (svg:cx="string]" svg:cy="string]" )) | + ( + ( (svg:x="string]" )? + (svg:y="string]" )? + ) + ( (svg:width="string]" )? + (svg:height="string]" )? + )) (draw:kind="full | section | cut | arc" )? + (draw:start-angle="<string>" )? + (draw:end-angle="<string>" )? + + ( + ( (draw:z-index="<nonNegativeInteger>" )? + (xml:id="<ID>" (draw:id="<NCName>" )? + )? + (draw:layer="<string>" )? + + ( (draw:style-name="(<NCName>)?" )? + (draw:class-names=" +START_list(<NCName>)* +END_list" )? + ) | + ( (presentation:style-name="(<NCName>)?" )? + (presentation:class-names=" +START_list(<NCName>)* +END_list" )? + ) (draw:transform="<string>" )? + (draw:name="<string>" )? + (table:end-cell-address="string]" )? + (table:end-x="string]" )? + (table:end-y="string]" )? + (table:table-background="<boolean>" )? + (text:anchor-type="page | frame | paragraph | char | as-char" )? + (text:anchor-page-number="<positiveInteger>" )? + ) (draw:text-style-name="(<NCName>)?" )? + ) (draw:caption-id="<IDREF>" )? + (<svg:title ... >)? + (<svg:desc ... >)? + (<office:event-listeners ... >)? + (<draw:glue-point ... >)* (<text:p ... > | <text:list ... >)* >  +
@@ -3805,6 +5190,63 @@

draw:enhanced-geometry Element<draw:handle>*    + + Child Relations + <draw:enhanced-geometry (draw:type="non-primitive | <string>" )? + (svg:viewBox=" +START_list<integer><integer><integer><integer> +END_list" )? + (draw:mirror-vertical="<boolean>" )? + (draw:mirror-horizontal="<boolean>" )? + (draw:text-rotate-angle="<string>" )? + (draw:extrusion-allowed="<boolean>" )? + (draw:text-path-allowed="<boolean>" )? + (draw:concentric-gradient-fill-allowed="<boolean>" )? + (draw:extrusion="<boolean>" )? + (draw:extrusion-brightness="string]" )? + (draw:extrusion-depth=" +START_liststring]<double> +END_list" )? + (draw:extrusion-diffusion="string]" )? + (draw:extrusion-number-of-line-segments="<integer>" )? + (draw:extrusion-light-face="<boolean>" )? + (draw:extrusion-first-light-harsh="<boolean>" )? + (draw:extrusion-second-light-harsh="<boolean>" )? + (draw:extrusion-first-light-level="string]" )? + (draw:extrusion-second-light-level="string]" )? + (draw:extrusion-first-light-direction="string]" )? + (draw:extrusion-second-light-direction="string]" )? + (draw:extrusion-metal="<boolean>" )? + (dr3d:shade-mode="flat | phong | gouraud | draft" )? + (draw:extrusion-rotation-angle=" +START_list<string><string> +END_list" )? + (draw:extrusion-rotation-center="string]" )? + (draw:extrusion-shininess="string]" )? + (draw:extrusion-skew=" +START_list<double><string> +END_list" )? + (draw:extrusion-specularity="string]" )? + (dr3d:projection="parallel | perspective" )? + (draw:extrusion-viewpoint="string]" )? + (draw:extrusion-origin=" +START_listdouble]double] +END_list" )? + (draw:extrusion-color="<boolean>" )? + (draw:enhanced-path="<string>" )? + (draw:path-stretchpoint-x="<double>" )? + (draw:path-stretchpoint-y="<double>" )? + (draw:text-areas="<string>" )? + (draw:glue-points="<string>" )? + (draw:glue-point-type="none | segments | rectangle" )? + (draw:glue-point-leaving-directions="<string>" )? + (draw:text-path="<boolean>" )? + (draw:text-path-mode="normal | path | shape" )? + (draw:text-path-scale="path | shape" )? + (draw:text-path-same-letter-heights="<boolean>" )? + (draw:modifiers="<string>" )? + (<draw:equation ... >)* (<draw:handle ... >)* >  +
@@ -3828,6 +5270,12 @@

draw:equation Element

  + + Child Relations + <draw:equation (draw:name="<string>" )? + (draw:formula="<string>" )? + >  +
@@ -3858,6 +5306,16 @@

draw:fill-image Element

<office:binary-data>    + + Child Relations + <draw:fill-image draw:name="<NCName>" (draw:display-name="<string>" )? + (svg:width="string]" )? + (svg:height="string]" )? + + (xlink:type="simple" xlink:href="<anyIRI>" (xlink:show="embed" )? + (xlink:actuate="onLoad" )? + ) | <office:binary-data ... >>  +
@@ -3885,6 +5343,15 @@

draw:floating-frame Element

  + + Child Relations + <draw:floating-frame (draw:frame-name="<string>" )? + (xml:id="<ID>" )? + + (xlink:type="simple" xlink:href="<anyIRI>" (xlink:show="embed" )? + (xlink:actuate="onLoad" )? + )>  +
@@ -3939,10 +5406,10 @@

draw:frame Element

presentation:style-name  presentation:user-transformed  style:rel-height  - style:rel-width[3]  + style:rel-width[1]  svg:height[1]  svg:width[2]  - svg:x[1]  + svg:x[2]  svg:y[2]  table:end-cell-address  table:end-x  @@ -3973,6 +5440,54 @@

draw:frame Element

<table:table>*    + + Child Relations + <draw:frame + ( + ( (draw:z-index="<nonNegativeInteger>" )? + (xml:id="<ID>" (draw:id="<NCName>" )? + )? + (draw:layer="<string>" )? + + ( (draw:style-name="(<NCName>)?" )? + (draw:class-names=" +START_list(<NCName>)* +END_list" )? + ) | + ( (presentation:style-name="(<NCName>)?" )? + (presentation:class-names=" +START_list(<NCName>)* +END_list" )? + ) (draw:transform="<string>" )? + (draw:name="<string>" )? + (table:end-cell-address="string]" )? + (table:end-x="string]" )? + (table:end-y="string]" )? + (table:table-background="<boolean>" )? + (text:anchor-type="page | frame | paragraph | char | as-char" )? + (text:anchor-page-number="<positiveInteger>" )? + ) (draw:text-style-name="(<NCName>)?" )? + ) + ( (svg:x="string]" )? + (svg:y="string]" )? + ) + ( + ( (svg:width="string]" )? + (svg:height="string]" )? + ) (style:rel-width="string] | scale | scale-min" )? + (style:rel-height="string] | scale | scale-min" )? + ) (draw:caption-id="<IDREF>" )? + (presentation:class="title | outline | subtitle | text | graphic | object | chart | table | orgchart | page | notes | handout | header | footer | date-time | page-number" )? + (presentation:placeholder="<boolean>" )? + (presentation:user-transformed="<boolean>" )? + (draw:copy-of="<string>" )? + (<draw:text-box ... > | <draw:image ... > | <draw:object ... > | <draw:object-ole ... > | <draw:applet ... > | <draw:floating-frame ... > | <draw:plugin ... > | <table:table ... >)* (<office:event-listeners ... >)? + (<draw:glue-point ... >)* (<draw:image-map ... >)? + (<svg:title ... >)? + (<svg:desc ... >)? + (<draw:contour-polygon ... > | <draw:contour-path ... >)? + >  +
@@ -4055,6 +5570,35 @@

draw:g Element

<svg:title>    + + Child Relations + <draw:g (svg:y="string]" )? + (draw:z-index="<nonNegativeInteger>" )? + (draw:name="<string>" )? + (xml:id="<ID>" (draw:id="<NCName>" )? + )? + + ( (draw:style-name="(<NCName>)?" )? + (draw:class-names=" +START_list(<NCName>)* +END_list" )? + ) | + ( (presentation:style-name="(<NCName>)?" )? + (presentation:class-names=" +START_list(<NCName>)* +END_list" )? + ) (table:end-cell-address="string]" )? + (table:end-x="string]" )? + (table:end-y="string]" )? + (table:table-background="<boolean>" )? + (text:anchor-type="page | frame | paragraph | char | as-char" )? + (text:anchor-page-number="<positiveInteger>" )? + (draw:caption-id="<IDREF>" )? + (<svg:title ... >)? + (<svg:desc ... >)? + (<office:event-listeners ... >)? + (<draw:glue-point ... >)* (<draw:rect ... > | <draw:line ... > | <draw:polyline ... > | <draw:polygon ... > | <draw:regular-polygon ... > | <draw:path ... > | <draw:circle ... > | <draw:ellipse ... > | <draw:g ... > | <draw:page-thumbnail ... > | <draw:frame ... > | <draw:measure ... > | <draw:caption ... > | <draw:connector ... > | <draw:control ... > | <dr3d:scene ... > | <draw:custom-shape ... > | <draw:a ... >)* >  +
@@ -4087,7 +5631,7 @@

draw:glue-point Element

draw:align  draw:escape-direction  draw:id[2]  - svg:x[2]  + svg:x[1]  svg:y[1]    @@ -4096,6 +5640,11 @@

draw:glue-point Element

  + + Child Relations + <draw:glue-point draw:id="<nonNegativeInteger>" svg:x="string] | string]" svg:y="string] | string]" (draw:align="top-left | top | top-right | left | center | right | bottom-left | bottom-right" )? + draw:escape-direction="auto | left | right | up | down | horizontal | vertical" >  +
@@ -4128,6 +5677,20 @@

draw:gradient Element

  + + Child Relations + <draw:gradient (draw:name="<NCName>" )? + (draw:display-name="<string>" )? + draw:style="linear | axial | radial | ellipsoid | square | rectangular" (draw:cx="string]" )? + (draw:cy="string]" )? + (draw:angle="<string>" )? + (draw:border="string]" )? + (draw:start-color="string]" )? + (draw:end-color="string]" )? + (draw:start-intensity="string]" )? + (draw:end-intensity="string]" )? + >  +
@@ -4160,6 +5723,20 @@

draw:handle Element

  + + Child Relations + <draw:handle (draw:handle-mirror-vertical="<boolean>" )? + (draw:handle-mirror-horizontal="<boolean>" )? + (draw:handle-switched="<boolean>" )? + draw:handle-position="<string>" (draw:handle-range-x-minimum="<string>" )? + (draw:handle-range-x-maximum="<string>" )? + (draw:handle-range-y-minimum="<string>" )? + (draw:handle-range-y-maximum="<string>" )? + (draw:handle-polar="<string>" )? + (draw:handle-radius-range-minimum="<string>" )? + (draw:handle-radius-range-maximum="<string>" )? + >  +
@@ -4179,7 +5756,7 @@

draw:hatch Element

draw:distance[1]  draw:name[1]  draw:rotation  - draw:style[1]  + draw:style[3]    @@ -4187,6 +5764,14 @@

draw:hatch Element

  + + Child Relations + <draw:hatch draw:name="<NCName>" (draw:display-name="<string>" )? + draw:style="single | double | triple" (draw:color="string]" )? + (draw:distance="string]" )? + (draw:rotation="<string>" )? + >  +
@@ -4218,6 +5803,16 @@

draw:image Element

<text:p>*    + + Child Relations + <draw:image (draw:filter-name="<string>" )? + (draw:mime-type="<string>" )? + (xml:id="<ID>" )? + + (xlink:type="simple" xlink:href="<anyIRI>" (xlink:show="embed" )? + (xlink:actuate="onLoad" )? + ) | <office:binary-data ... >(<text:p ... > | <text:list ... >)* >  +
@@ -4242,6 +5837,10 @@

draw:image-map Element

<draw:area-rectangle>*    + + Child Relations + <draw:image-map (<draw:area-rectangle ... > | <draw:area-circle ... > | <draw:area-polygon ... >)* >  +
@@ -4268,6 +5867,14 @@

draw:layer Element

<svg:title>    + + Child Relations + <draw:layer draw:name="<string>" (draw:protected="<boolean>" )? + (draw:display="always | screen | printer | none" )? + (<svg:title ... >)? + (<svg:desc ... >)? + >  +
@@ -4292,6 +5899,10 @@

draw:layer-set Element

<draw:layer>*    + + Child Relations + <draw:layer-set (<draw:layer ... >)* >  +
@@ -4364,6 +5975,39 @@

draw:line Element

<text:p>*    + + Child Relations + <draw:line svg:x1="string]" svg:y1="string]" svg:x2="string]" svg:y2="string]" + ( + ( (draw:z-index="<nonNegativeInteger>" )? + (xml:id="<ID>" (draw:id="<NCName>" )? + )? + (draw:layer="<string>" )? + + ( (draw:style-name="(<NCName>)?" )? + (draw:class-names=" +START_list(<NCName>)* +END_list" )? + ) | + ( (presentation:style-name="(<NCName>)?" )? + (presentation:class-names=" +START_list(<NCName>)* +END_list" )? + ) (draw:transform="<string>" )? + (draw:name="<string>" )? + (table:end-cell-address="string]" )? + (table:end-x="string]" )? + (table:end-y="string]" )? + (table:table-background="<boolean>" )? + (text:anchor-type="page | frame | paragraph | char | as-char" )? + (text:anchor-page-number="<positiveInteger>" )? + ) (draw:text-style-name="(<NCName>)?" )? + ) (draw:caption-id="<IDREF>" )? + (<svg:title ... >)? + (<svg:desc ... >)? + (<office:event-listeners ... >)? + (<draw:glue-point ... >)* (<text:p ... > | <text:list ... >)* >  +
@@ -4389,6 +6033,13 @@

draw:marker Element

  + + Child Relations + <draw:marker draw:name="<NCName>" (draw:display-name="<string>" )? + svg:viewBox=" +START_list<integer><integer><integer><integer> +END_list" svg:d="<string>" >  +
@@ -4461,6 +6112,39 @@

draw:measure Element

<text:p>*    + + Child Relations + <draw:measure svg:x1="string]" svg:y1="string]" svg:x2="string]" svg:y2="string]" + ( + ( (draw:z-index="<nonNegativeInteger>" )? + (xml:id="<ID>" (draw:id="<NCName>" )? + )? + (draw:layer="<string>" )? + + ( (draw:style-name="(<NCName>)?" )? + (draw:class-names=" +START_list(<NCName>)* +END_list" )? + ) | + ( (presentation:style-name="(<NCName>)?" )? + (presentation:class-names=" +START_list(<NCName>)* +END_list" )? + ) (draw:transform="<string>" )? + (draw:name="<string>" )? + (table:end-cell-address="string]" )? + (table:end-x="string]" )? + (table:end-y="string]" )? + (table:table-background="<boolean>" )? + (text:anchor-type="page | frame | paragraph | char | as-char" )? + (text:anchor-page-number="<positiveInteger>" )? + ) (draw:text-style-name="(<NCName>)?" )? + ) (draw:caption-id="<IDREF>" )? + (<svg:title ... >)? + (<svg:desc ... >)? + (<office:event-listeners ... >)? + (<draw:glue-point ... >)* (<text:p ... > | <text:list ... >)* >  +
@@ -4490,6 +6174,15 @@

draw:object Element

<office:document>    + + Child Relations + <draw:object (draw:notify-on-update-of-ranges="<string> | <string>" )? + (xml:id="<ID>" )? + + (xlink:type="simple" xlink:href="<anyIRI>" (xlink:show="embed" )? + (xlink:actuate="onLoad" )? + ) | <office:document ... > | <math:math ... >>  +
@@ -4518,6 +6211,15 @@

draw:object-ole Element

<office:binary-data>    + + Child Relations + <draw:object-ole (draw:class-id="<string>" )? + (xml:id="<ID>" )? + + (xlink:type="simple" xlink:href="<anyIRI>" (xlink:show="embed" )? + (xlink:actuate="onLoad" )? + ) | <office:binary-data ... >>  +
@@ -4548,6 +6250,19 @@

draw:opacity Element

  + + Child Relations + <draw:opacity (draw:name="<NCName>" )? + (draw:display-name="<string>" )? + draw:style="linear | axial | radial | ellipsoid | square | rectangular" (draw:cx="string]" )? + (draw:cy="string]" )? + (draw:angle="<string>" )? + (draw:border="string]" )? + + ( (draw:start="string]" )? + (draw:end="string]" )? + )>  +
@@ -4615,6 +6330,26 @@

draw:page Element

<svg:title>    + + Child Relations + <draw:page (presentation:use-header-name="<string>" )? + (presentation:use-footer-name="<string>" )? + (presentation:use-date-time-name="<string>" )? + (draw:name="<string>" )? + (draw:style-name="(<NCName>)?" )? + draw:master-page-name="(<NCName>)?" (presentation:presentation-page-layout-name="(<NCName>)?" )? + (xml:id="<ID>" (draw:id="<NCName>" )? + )? + (draw:nav-order="<IDREFS>" )? + (<svg:title ... >)? + (<svg:desc ... >)? + (<draw:layer-set ... >)? + ( (<office:forms ... >)? + )? + (<draw:rect ... > | <draw:line ... > | <draw:polyline ... > | <draw:polygon ... > | <draw:regular-polygon ... > | <draw:path ... > | <draw:circle ... > | <draw:ellipse ... > | <draw:g ... > | <draw:page-thumbnail ... > | <draw:frame ... > | <draw:measure ... > | <draw:caption ... > | <draw:connector ... > | <draw:control ... > | <dr3d:scene ... > | <draw:custom-shape ... > | <draw:a ... >)* (<presentation:animations ... > | <anim:animate ... > | <anim:set ... > | <anim:animateMotion ... > | <anim:animateColor ... > | <anim:animateTransform ... > | <anim:transitionFilter ... > | <anim:par ... > | <anim:seq ... > | <anim:iterate ... > | <anim:audio ... > | <anim:command ... >)? + (<presentation:notes ... >)? + >  +
@@ -4668,7 +6403,7 @@

draw:page-thumbnail Element

presentation:user-transformed  svg:height[1]  svg:width[2]  - svg:x[1]  + svg:x[2]  svg:y[2]  table:end-cell-address  table:end-x  @@ -4686,6 +6421,46 @@

draw:page-thumbnail Element

<svg:title>    + + Child Relations + <draw:page-thumbnail (draw:page-number="<positiveInteger>" )? + + ( (svg:x="string]" )? + (svg:y="string]" )? + ) + ( (svg:width="string]" )? + (svg:height="string]" )? + ) (presentation:class="title | outline | subtitle | text | graphic | object | chart | table | orgchart | page | notes | handout | header | footer | date-time | page-number" )? + (presentation:placeholder="<boolean>" )? + (presentation:user-transformed="<boolean>" )? + + ( (draw:z-index="<nonNegativeInteger>" )? + (xml:id="<ID>" (draw:id="<NCName>" )? + )? + (draw:layer="<string>" )? + + ( (draw:style-name="(<NCName>)?" )? + (draw:class-names=" +START_list(<NCName>)* +END_list" )? + ) | + ( (presentation:style-name="(<NCName>)?" )? + (presentation:class-names=" +START_list(<NCName>)* +END_list" )? + ) (draw:transform="<string>" )? + (draw:name="<string>" )? + (table:end-cell-address="string]" )? + (table:end-x="string]" )? + (table:end-y="string]" )? + (table:table-background="<boolean>" )? + (text:anchor-type="page | frame | paragraph | char | as-char" )? + (text:anchor-page-number="<positiveInteger>" )? + ) (draw:caption-id="<IDREF>" )? + (<svg:title ... >)? + (<svg:desc ... >)? + >  +
@@ -4710,6 +6485,12 @@

draw:param Element

  + + Child Relations + <draw:param (draw:name="<string>" )? + (draw:value="<string>" )? + >  +
@@ -4762,7 +6543,7 @@

draw:path Element

svg:height[1]  svg:viewBox  svg:width[2]  - svg:x[1]  + svg:x[2]  svg:y[2]  table:end-cell-address  table:end-x  @@ -4784,6 +6565,47 @@

draw:path Element

<text:p>*    + + Child Relations + <draw:path svg:d="<string>" + ( (svg:x="string]" )? + (svg:y="string]" )? + ) + ( (svg:width="string]" )? + (svg:height="string]" )? + )svg:viewBox=" +START_list<integer><integer><integer><integer> +END_list" + ( + ( (draw:z-index="<nonNegativeInteger>" )? + (xml:id="<ID>" (draw:id="<NCName>" )? + )? + (draw:layer="<string>" )? + + ( (draw:style-name="(<NCName>)?" )? + (draw:class-names=" +START_list(<NCName>)* +END_list" )? + ) | + ( (presentation:style-name="(<NCName>)?" )? + (presentation:class-names=" +START_list(<NCName>)* +END_list" )? + ) (draw:transform="<string>" )? + (draw:name="<string>" )? + (table:end-cell-address="string]" )? + (table:end-x="string]" )? + (table:end-y="string]" )? + (table:table-background="<boolean>" )? + (text:anchor-type="page | frame | paragraph | char | as-char" )? + (text:anchor-page-number="<positiveInteger>" )? + ) (draw:text-style-name="(<NCName>)?" )? + ) (draw:caption-id="<IDREF>" )? + (<svg:title ... >)? + (<svg:desc ... >)? + (<office:event-listeners ... >)? + (<draw:glue-point ... >)* (<text:p ... > | <text:list ... >)* >  +
@@ -4812,6 +6634,15 @@

draw:plugin Element

<draw:param>*    + + Child Relations + <draw:plugin (draw:mime-type="<string>" )? + (xml:id="<ID>" )? + + (xlink:type="simple" xlink:href="<anyIRI>" (xlink:show="embed" )? + (xlink:actuate="onLoad" )? + )(<draw:param ... >)* >  +
@@ -4864,7 +6695,7 @@

draw:polygon Element

svg:height[1]  svg:viewBox  svg:width[2]  - svg:x[1]  + svg:x[2]  svg:y[2]  table:end-cell-address  table:end-x  @@ -4886,6 +6717,47 @@

draw:polygon Element

<text:p>*    + + Child Relations + <draw:polygon draw:points="string]" + ( (svg:x="string]" )? + (svg:y="string]" )? + ) + ( (svg:width="string]" )? + (svg:height="string]" )? + )svg:viewBox=" +START_list<integer><integer><integer><integer> +END_list" + ( + ( (draw:z-index="<nonNegativeInteger>" )? + (xml:id="<ID>" (draw:id="<NCName>" )? + )? + (draw:layer="<string>" )? + + ( (draw:style-name="(<NCName>)?" )? + (draw:class-names=" +START_list(<NCName>)* +END_list" )? + ) | + ( (presentation:style-name="(<NCName>)?" )? + (presentation:class-names=" +START_list(<NCName>)* +END_list" )? + ) (draw:transform="<string>" )? + (draw:name="<string>" )? + (table:end-cell-address="string]" )? + (table:end-x="string]" )? + (table:end-y="string]" )? + (table:table-background="<boolean>" )? + (text:anchor-type="page | frame | paragraph | char | as-char" )? + (text:anchor-page-number="<positiveInteger>" )? + ) (draw:text-style-name="(<NCName>)?" )? + ) (draw:caption-id="<IDREF>" )? + (<svg:title ... >)? + (<svg:desc ... >)? + (<office:event-listeners ... >)? + (<draw:glue-point ... >)* (<text:p ... > | <text:list ... >)* >  +
@@ -4938,7 +6810,7 @@

draw:polyline Element

svg:height[1]  svg:viewBox  svg:width[2]  - svg:x[1]  + svg:x[2]  svg:y[2]  table:end-cell-address  table:end-x  @@ -4960,6 +6832,47 @@

draw:polyline Element

<text:p>*    + + Child Relations + <draw:polyline draw:points="string]" + ( (svg:x="string]" )? + (svg:y="string]" )? + ) + ( (svg:width="string]" )? + (svg:height="string]" )? + )svg:viewBox=" +START_list<integer><integer><integer><integer> +END_list" + ( + ( (draw:z-index="<nonNegativeInteger>" )? + (xml:id="<ID>" (draw:id="<NCName>" )? + )? + (draw:layer="<string>" )? + + ( (draw:style-name="(<NCName>)?" )? + (draw:class-names=" +START_list(<NCName>)* +END_list" )? + ) | + ( (presentation:style-name="(<NCName>)?" )? + (presentation:class-names=" +START_list(<NCName>)* +END_list" )? + ) (draw:transform="<string>" )? + (draw:name="<string>" )? + (table:end-cell-address="string]" )? + (table:end-x="string]" )? + (table:end-y="string]" )? + (table:table-background="<boolean>" )? + (text:anchor-type="page | frame | paragraph | char | as-char" )? + (text:anchor-page-number="<positiveInteger>" )? + ) (draw:text-style-name="(<NCName>)?" )? + ) (draw:caption-id="<IDREF>" )? + (<svg:title ... >)? + (<svg:desc ... >)? + (<office:event-listeners ... >)? + (<draw:glue-point ... >)* (<text:p ... > | <text:list ... >)* >  +
@@ -5011,9 +6924,9 @@

draw:rect Element

presentation:style-name  svg:height[1]  svg:rx[2]  - svg:ry[1]  + svg:ry[2]  svg:width[2]  - svg:x[1]  + svg:x[2]  svg:y[2]  table:end-cell-address  table:end-x  @@ -5035,6 +6948,48 @@

draw:rect Element

<text:p>*    + + Child Relations + <draw:rect draw:corner-radius="string]" | EMPTY | + ( (svg:rx="string]" )? + (svg:ry="string]" )? + ) + ( (svg:x="string]" )? + (svg:y="string]" )? + ) + ( (svg:width="string]" )? + (svg:height="string]" )? + ) + ( + ( (draw:z-index="<nonNegativeInteger>" )? + (xml:id="<ID>" (draw:id="<NCName>" )? + )? + (draw:layer="<string>" )? + + ( (draw:style-name="(<NCName>)?" )? + (draw:class-names=" +START_list(<NCName>)* +END_list" )? + ) | + ( (presentation:style-name="(<NCName>)?" )? + (presentation:class-names=" +START_list(<NCName>)* +END_list" )? + ) (draw:transform="<string>" )? + (draw:name="<string>" )? + (table:end-cell-address="string]" )? + (table:end-x="string]" )? + (table:end-y="string]" )? + (table:table-background="<boolean>" )? + (text:anchor-type="page | frame | paragraph | char | as-char" )? + (text:anchor-page-number="<positiveInteger>" )? + ) (draw:text-style-name="(<NCName>)?" )? + ) (draw:caption-id="<IDREF>" )? + (<svg:title ... >)? + (<svg:desc ... >)? + (<office:event-listeners ... >)? + (<draw:glue-point ... >)* (<text:p ... > | <text:list ... >)* >  +
@@ -5089,7 +7044,7 @@

draw:regular-polygon Elementpresentation:style-name  svg:height[1]  svg:width[2]  - svg:x[1]  + svg:x[2]  svg:y[2]  table:end-cell-address  table:end-x  @@ -5111,6 +7066,46 @@

draw:regular-polygon Element<text:p>*    + + Child Relations + <draw:regular-polygon draw:concave="false" | + (draw:concave="true" draw:sharpness="string]" )draw:corners="<positiveInteger>" + ( (svg:x="string]" )? + (svg:y="string]" )? + ) + ( (svg:width="string]" )? + (svg:height="string]" )? + ) + ( + ( (draw:z-index="<nonNegativeInteger>" )? + (xml:id="<ID>" (draw:id="<NCName>" )? + )? + (draw:layer="<string>" )? + + ( (draw:style-name="(<NCName>)?" )? + (draw:class-names=" +START_list(<NCName>)* +END_list" )? + ) | + ( (presentation:style-name="(<NCName>)?" )? + (presentation:class-names=" +START_list(<NCName>)* +END_list" )? + ) (draw:transform="<string>" )? + (draw:name="<string>" )? + (table:end-cell-address="string]" )? + (table:end-x="string]" )? + (table:end-y="string]" )? + (table:table-background="<boolean>" )? + (text:anchor-type="page | frame | paragraph | char | as-char" )? + (text:anchor-page-number="<positiveInteger>" )? + ) (draw:text-style-name="(<NCName>)?" )? + ) (draw:caption-id="<IDREF>" )? + (<svg:title ... >)? + (<svg:desc ... >)? + (<office:event-listeners ... >)? + (<draw:glue-point ... >)* (<text:p ... > | <text:list ... >)* >  +
@@ -5132,7 +7127,7 @@

draw:stroke-dash Element

draw:dots2  draw:dots2-length  draw:name[1]  - draw:style[3]  + draw:style[1]    @@ -5140,6 +7135,17 @@

draw:stroke-dash Element

  + + Child Relations + <draw:stroke-dash draw:name="<NCName>" (draw:display-name="<string>" )? + (draw:style="rect | round" )? + (draw:dots1="<integer>" )? + (draw:dots1-length="string] | string]" )? + (draw:dots2="<integer>" )? + (draw:dots2-length="string] | string]" )? + (draw:distance="string] | string]" )? + >  +
@@ -5160,7 +7166,7 @@

draw:text-box Element

fo:max-width  fo:min-height[1]  fo:min-width  - text:id[1]  + text:id[2]  xml:id    @@ -5204,6 +7210,18 @@

draw:text-box Element

<text:user-index>*    + + Child Relations + <draw:text-box (draw:chain-next-name="<string>" )? + (draw:corner-radius="string]" )? + (fo:min-height="string] | string]" )? + (fo:min-width="string] | string]" )? + (fo:max-height="string] | string]" )? + (fo:max-width="string] | string]" )? + (xml:id="<ID>" (text:id="<NCName>" )? + )? + (<text:h ... > | <text:p ... > | <text:list ... > | <text:numbered-paragraph ... > | <table:table ... > | <text:section ... > | <text:soft-page-break ... > | <text:table-of-content ... > | <text:illustration-index ... > | <text:table-index ... > | <text:object-index ... > | <text:user-index ... > | <text:alphabetical-index ... > | <text:bibliography ... > | <draw:rect ... > | <draw:line ... > | <draw:polyline ... > | <draw:polygon ... > | <draw:regular-polygon ... > | <draw:path ... > | <draw:circle ... > | <draw:ellipse ... > | <draw:g ... > | <draw:page-thumbnail ... > | <draw:frame ... > | <draw:measure ... > | <draw:caption ... > | <draw:connector ... > | <draw:control ... > | <dr3d:scene ... > | <draw:custom-shape ... > | <draw:a ... > | <text:change ... > | <text:change-start ... > | <text:change-end ... >)* >  +
@@ -5237,7 +7255,7 @@

form:button Element

form:tab-stop  form:title  form:toggle  - form:value[1]  + form:value[3]  form:xforms-submission  office:target-frame  xforms:bind  @@ -5252,6 +7270,38 @@

form:button Element

<office:event-listeners>    + + Child Relations + <form:button + ( (form:name="<string>" )? + (form:control-implementation="QName]" )? + + (xml:id="<ID>" (form:id="<NCName>" )? + ) (xforms:bind="<string>" )? + ) (form:button-type="submit | reset | push | url" )? + (form:disabled="<boolean>" )? + (form:label="<string>" )? + (form:image-data="<anyIRI>" )? + (form:printable="<boolean>" )? + (form:tab-index="<nonNegativeInteger>" )? + (form:tab-stop="<boolean>" )? + (office:target-frame="_self | _blank | _parent | _top | <string>" )? + (xlink:href="<anyIRI>" )? + (form:title="<string>" )? + (form:value="<string>" )? + form:image-position="center" | EMPTY | + (form:image-position="start | end | top | bottom" (form:image-align="start | center | end" )? + ) (form:repeat="<boolean>" )? + (form:delay-for-repeat="<duration>" )? + (form:default-button="<boolean>" )? + (form:toggle="<boolean>" )? + (form:focus-on-click="<boolean>" )? + (form:xforms-submission="<string>" )? + + ( (<form:properties ... >)? + (<office:event-listeners ... >)? + )>  +
@@ -5284,7 +7334,7 @@

form:checkbox Element

form:tab-index  form:tab-stop  form:title  - form:value[1]  + form:value[3]  form:visual-effect  xforms:bind  xml:id  @@ -5297,6 +7347,34 @@

form:checkbox Element

<office:event-listeners>    + + Child Relations + <form:checkbox + ( (form:name="<string>" )? + (form:control-implementation="QName]" )? + + (xml:id="<ID>" (form:id="<NCName>" )? + ) (xforms:bind="<string>" )? + ) (form:disabled="<boolean>" )? + (form:label="<string>" )? + (form:printable="<boolean>" )? + (form:tab-index="<nonNegativeInteger>" )? + (form:tab-stop="<boolean>" )? + (form:title="<string>" )? + (form:value="<string>" )? + (form:data-field="<string>" )? + (form:visual-effect="flat | 3d" )? + form:image-position="center" | EMPTY | + (form:image-position="start | end | top | bottom" (form:image-align="start | center | end" )? + ) (form:linked-cell="string] | <string>" )? + (form:current-state="unchecked | checked | unknown" )? + (form:is-tristate="<boolean>" )? + (form:state="unchecked | checked | unknown" )? + + ( (<form:properties ... >)? + (<office:event-listeners ... >)? + )>  +
@@ -5331,6 +7409,15 @@

form:column Element

<form:time>*    + + Child Relations + <form:column + ( (form:name="<string>" )? + (form:control-implementation="QName]" )? + (form:label="<string>" )? + (form:text-style-name="(<NCName>)?" )? + )(<form:text ... > | <form:textarea ... > | <form:formatted-text ... > | <form:number ... > | <form:date ... > | <form:time ... > | <form:combobox ... > | <form:listbox ... > | <form:checkbox ... >)+ >  +
@@ -5349,7 +7436,7 @@

form:combobox Element

form:auto-complete  form:control-implementation  form:convert-empty-to-null  - form:current-value[3]  + form:current-value[2]  form:data-field  form:disabled  form:dropdown  @@ -5366,7 +7453,7 @@

form:combobox Element

form:tab-index  form:tab-stop  form:title  - form:value[1]  + form:value[3]  xforms:bind  xml:id    @@ -5379,6 +7466,37 @@

form:combobox Element

<office:event-listeners>    + + Child Relations + <form:combobox + ( (form:name="<string>" )? + (form:control-implementation="QName]" )? + + (xml:id="<ID>" (form:id="<NCName>" )? + ) (xforms:bind="<string>" )? + ) (form:current-value="<string>" )? + (form:disabled="<boolean>" )? + (form:dropdown="<boolean>" )? + (form:max-length="<nonNegativeInteger>" )? + (form:printable="<boolean>" )? + (form:readonly="<boolean>" )? + (form:size="<nonNegativeInteger>" )? + (form:tab-index="<nonNegativeInteger>" )? + (form:tab-stop="<boolean>" )? + (form:title="<string>" )? + (form:value="<string>" )? + (form:convert-empty-to-null="<boolean>" )? + (form:data-field="<string>" )? + (form:list-source="<string>" )? + (form:list-source-type="table | query | sql | sql-pass-through | value-list | table-fields" )? + (form:linked-cell="string] | <string>" )? + (form:source-cell-range="string] | string] | string] | <string>" )? + (form:auto-complete="<boolean>" )? + + ( (<form:properties ... >)? + (<office:event-listeners ... >)? + )(<form:item ... >)* >  +
@@ -5406,6 +7524,10 @@

form:connection-resource Elemen   + + Child Relations + <form:connection-resource xlink:href="<anyIRI>" >  +
@@ -5423,14 +7545,14 @@

form:date Element

form:control-implementation  form:convert-empty-to-null  - form:current-value[1]  + form:current-value[3]  form:data-field  form:delay-for-repeat  form:disabled  form:id  form:linked-cell  form:max-length  - form:max-value[5]  + form:max-value[4]  form:min-value[2]  form:name  form:printable  @@ -5440,7 +7562,7 @@

form:date Element

form:tab-index  form:tab-stop  form:title  - form:value[2]  + form:value[4]  xforms:bind  xml:id    @@ -5452,6 +7574,37 @@

form:date Element

<office:event-listeners>    + + Child Relations + <form:date (form:value="<date>" )? + (form:current-value="<date>" )? + (form:min-value="<date>" )? + (form:max-value="<date>" )? + + ( + ( (form:name="<string>" )? + (form:control-implementation="QName]" )? + + (xml:id="<ID>" (form:id="<NCName>" )? + ) (xforms:bind="<string>" )? + ) (form:disabled="<boolean>" )? + (form:max-length="<nonNegativeInteger>" )? + (form:printable="<boolean>" )? + (form:readonly="<boolean>" )? + (form:tab-index="<nonNegativeInteger>" )? + (form:tab-stop="<boolean>" )? + (form:title="<string>" )? + (form:convert-empty-to-null="<boolean>" )? + (form:data-field="<string>" )? + ) + ( (<form:properties ... >)? + (<office:event-listeners ... >)? + ) (form:linked-cell="string] | <string>" )? + (form:spin-button="<boolean>" )? + (form:repeat="<boolean>" )? + (form:delay-for-repeat="<duration>" )? + >  +
@@ -5467,7 +7620,7 @@

form:file Element

Attributes form:control-implementation  - form:current-value[3]  + form:current-value[2]  form:disabled  form:id  form:linked-cell  @@ -5478,7 +7631,7 @@

form:file Element

form:tab-index  form:tab-stop  form:title  - form:value[1]  + form:value[3]  xforms:bind  xml:id    @@ -5490,6 +7643,30 @@

form:file Element

<office:event-listeners>    + + Child Relations + <form:file + ( + ( (form:name="<string>" )? + (form:control-implementation="QName]" )? + + (xml:id="<ID>" (form:id="<NCName>" )? + ) (xforms:bind="<string>" )? + ) (form:current-value="<string>" )? + (form:disabled="<boolean>" )? + (form:max-length="<nonNegativeInteger>" )? + (form:printable="<boolean>" )? + (form:readonly="<boolean>" )? + (form:tab-index="<nonNegativeInteger>" )? + (form:tab-stop="<boolean>" )? + (form:title="<string>" )? + (form:value="<string>" )? + (form:linked-cell="string] | <string>" )? + ) + ( (<form:properties ... >)? + (<office:event-listeners ... >)? + )>  +
@@ -5524,6 +7701,25 @@

form:fixed-text Element

<office:event-listeners>    + + Child Relations + <form:fixed-text + ( (form:name="<string>" )? + (form:control-implementation="QName]" )? + + (xml:id="<ID>" (form:id="<NCName>" )? + ) (xforms:bind="<string>" )? + ) (form:for="<string>" )? + (form:disabled="<boolean>" )? + (form:label="<string>" )? + (form:printable="<boolean>" )? + (form:title="<string>" )? + (form:multi-line="<boolean>" )? + + ( (<form:properties ... >)? + (<office:event-listeners ... >)? + )>  +
@@ -5594,6 +7790,35 @@

form:form Element

<office:event-listeners>    + + Child Relations + <form:form (form:name="<string>" )? + (form:control-implementation="QName]" )? + (xlink:type="simple" xlink:href="<anyIRI>" (xlink:actuate="onRequest" )? + )? + (office:target-frame="_self | _blank | _parent | _top | <string>" )? + (form:method="get | post | <string>" )? + (form:enctype="<string>" )? + (form:allow-deletes="<boolean>" )? + (form:allow-inserts="<boolean>" )? + (form:allow-updates="<boolean>" )? + (form:apply-filter="<boolean>" )? + (form:command-type="table | query | command" )? + (form:command="<string>" )? + (form:datasource="<anyIRI> | <string>" )? + (form:master-fields="<string>" )? + (form:detail-fields="<string>" )? + (form:escape-processing="<boolean>" )? + (form:filter="<string>" )? + (form:ignore-result="<boolean>" )? + (form:navigation-mode="none | current | parent" )? + (form:order="<string>" )? + (form:tab-cycle="records | current | page" )? + (<form:properties ... >)? + (<office:event-listeners ... >)? + (<form:text ... > | <form:textarea ... > | <form:formatted-text ... > | <form:number ... > | <form:date ... > | <form:time ... > | <form:combobox ... > | <form:listbox ... > | <form:checkbox ... > | <form:password ... > | <form:file ... > | <form:fixed-text ... > | <form:button ... > | <form:image ... > | <form:radio ... > | <form:frame ... > | <form:image-frame ... > | <form:hidden ... > | <form:grid ... > | <form:value-range ... > | <form:generic-control ... > | <form:form ... >)* (<form:connection-resource ... >)? + >  +
@@ -5611,15 +7836,15 @@

form:formatted-text Element

form:control-implementation  form:convert-empty-to-null  - form:current-value[3]  + form:current-value[2]  form:data-field  form:delay-for-repeat  form:disabled  form:id  form:linked-cell  form:max-length  - form:max-value[3]  - form:min-value[5]  + form:max-value[5]  + form:min-value[1]  form:name  form:printable  form:readonly  @@ -5629,7 +7854,7 @@

form:formatted-text Element

form:tab-stop  form:title  form:validation  - form:value[1]  + form:value[3]  xforms:bind  xml:id    @@ -5641,6 +7866,37 @@

form:formatted-text Element

<office:event-listeners>    + + Child Relations + <form:formatted-text + ( (form:name="<string>" )? + (form:control-implementation="QName]" )? + + (xml:id="<ID>" (form:id="<NCName>" )? + ) (xforms:bind="<string>" )? + ) (form:current-value="<string>" )? + (form:disabled="<boolean>" )? + (form:max-length="<nonNegativeInteger>" )? + (form:printable="<boolean>" )? + (form:readonly="<boolean>" )? + (form:tab-index="<nonNegativeInteger>" )? + (form:tab-stop="<boolean>" )? + (form:title="<string>" )? + (form:value="<string>" )? + (form:convert-empty-to-null="<boolean>" )? + (form:data-field="<string>" )? + (form:linked-cell="string] | <string>" )? + (form:spin-button="<boolean>" )? + (form:repeat="<boolean>" )? + (form:delay-for-repeat="<duration>" )? + (form:max-value="<string>" )? + (form:min-value="<string>" )? + (form:validation="<boolean>" )? + + ( (<form:properties ... >)? + (<office:event-listeners ... >)? + )>  +
@@ -5674,6 +7930,25 @@

form:frame Element

<office:event-listeners>    + + Child Relations + <form:frame + ( + ( (form:name="<string>" )? + (form:control-implementation="QName]" )? + + (xml:id="<ID>" (form:id="<NCName>" )? + ) (xforms:bind="<string>" )? + ) (form:disabled="<boolean>" )? + (form:for="<string>" )? + (form:label="<string>" )? + (form:printable="<boolean>" )? + (form:title="<string>" )? + ) + ( (<form:properties ... >)? + (<office:event-listeners ... >)? + )>  +
@@ -5702,6 +7977,19 @@

form:generic-control Element<office:event-listeners>    + + Child Relations + <form:generic-control + ( (form:name="<string>" )? + (form:control-implementation="QName]" )? + + (xml:id="<ID>" (form:id="<NCName>" )? + ) (xforms:bind="<string>" )? + ) + ( (<form:properties ... >)? + (<office:event-listeners ... >)? + )>  +
@@ -5736,6 +8024,25 @@

form:grid Element

<office:event-listeners>    + + Child Relations + <form:grid + ( + ( (form:name="<string>" )? + (form:control-implementation="QName]" )? + + (xml:id="<ID>" (form:id="<NCName>" )? + ) (xforms:bind="<string>" )? + ) (form:disabled="<boolean>" )? + (form:printable="<boolean>" )? + (form:tab-index="<nonNegativeInteger>" )? + (form:tab-stop="<boolean>" )? + (form:title="<string>" )? + ) + ( (<form:properties ... >)? + (<office:event-listeners ... >)? + )(<form:column ... >)* >  +
@@ -5753,7 +8060,7 @@

form:hidden Element

form:control-implementation  form:id  form:name  - form:value[1]  + form:value[3]  xforms:bind  xml:id    @@ -5765,6 +8072,21 @@

form:hidden Element

<office:event-listeners>    + + Child Relations + <form:hidden + ( + ( (form:name="<string>" )? + (form:control-implementation="QName]" )? + + (xml:id="<ID>" (form:id="<NCName>" )? + ) (xforms:bind="<string>" )? + ) (form:value="<string>" )? + ) + ( (<form:properties ... >)? + (<office:event-listeners ... >)? + )>  +
@@ -5789,7 +8111,7 @@

form:image Element

form:tab-index  form:tab-stop  form:title  - form:value[1]  + form:value[3]  office:target-frame  xforms:bind  xlink:href  @@ -5803,6 +8125,30 @@

form:image Element

<office:event-listeners>    + + Child Relations + <form:image + ( + ( (form:name="<string>" )? + (form:control-implementation="QName]" )? + + (xml:id="<ID>" (form:id="<NCName>" )? + ) (xforms:bind="<string>" )? + ) (form:button-type="submit | reset | push | url" )? + (form:disabled="<boolean>" )? + (form:image-data="<anyIRI>" )? + (form:printable="<boolean>" )? + (form:tab-index="<nonNegativeInteger>" )? + (form:tab-stop="<boolean>" )? + (office:target-frame="_self | _blank | _parent | _top | <string>" )? + (xlink:href="<anyIRI>" )? + (form:title="<string>" )? + (form:value="<string>" )? + ) + ( (<form:properties ... >)? + (<office:event-listeners ... >)? + )>  +
@@ -5837,6 +8183,26 @@

form:image-frame Element

<office:event-listeners>    + + Child Relations + <form:image-frame + ( + ( (form:name="<string>" )? + (form:control-implementation="QName]" )? + + (xml:id="<ID>" (form:id="<NCName>" )? + ) (xforms:bind="<string>" )? + ) (form:disabled="<boolean>" )? + (form:image-data="<anyIRI>" )? + (form:printable="<boolean>" )? + (form:readonly="<boolean>" )? + (form:title="<string>" )? + (form:data-field="<string>" )? + ) + ( (<form:properties ... >)? + (<office:event-listeners ... >)? + )>  +
@@ -5860,6 +8226,11 @@

form:item Element

  + + Child Relations + <form:item (form:label="<string>" )? + TEXT>  +
@@ -5897,6 +8268,17 @@

form:list-property Element

<form:list-value[7]>*    + + Child Relations + <form:list-property form:property-name="<string>" + (office:value-type="float" (<form:list-value ... >)* ) | + (office:value-type="percentage" (<form:list-value ... >)* ) | + (office:value-type="currency" (<form:list-value ... >)* ) | + (office:value-type="date" (<form:list-value ... >)* ) | + (office:value-type="time" (<form:list-value ... >)* ) | + (office:value-type="boolean" (<form:list-value ... >)* ) | + (office:value-type="string" (<form:list-value ... >)* ) | office:value-type="void" >  +
@@ -5912,7 +8294,7 @@

form:list-value[1] Element

Attributes - office:boolean-value  + office:string-value    @@ -5920,6 +8302,10 @@

form:list-value[1] Element

  + + Child Relations + <form:list-value office:string-value="<string>" >  +
@@ -5935,7 +8321,7 @@

form:list-value[2] Element

Attributes - office:time-value  + office:date-value    @@ -5943,6 +8329,10 @@

form:list-value[2] Element

  + + Child Relations + <form:list-value office:date-value="<date> | <dateTime>" >  +
@@ -5958,7 +8348,7 @@

form:list-value[3] Element

Attributes - office:string-value  + office:boolean-value    @@ -5966,6 +8356,10 @@

form:list-value[3] Element

  + + Child Relations + <form:list-value office:boolean-value="<boolean>" >  +
@@ -5981,7 +8375,7 @@

form:list-value[4] Element

Attributes - office:value  + office:time-value    @@ -5989,6 +8383,10 @@

form:list-value[4] Element

  + + Child Relations + <form:list-value office:time-value="<duration>" >  +
@@ -6012,6 +8410,10 @@

form:list-value[5] Element

  + + Child Relations + <form:list-value office:value="<double>" >  +
@@ -6027,7 +8429,6 @@

form:list-value[6] Element

Attributes - office:currency  office:value    @@ -6036,6 +8437,10 @@

form:list-value[6] Element

  + + Child Relations + <form:list-value office:value="<double>" >  +
@@ -6051,7 +8456,8 @@

form:list-value[7] Element

Attributes - office:date-value  + office:currency  + office:value    @@ -6059,6 +8465,11 @@

form:list-value[7] Element

  + + Child Relations + <form:list-value office:value="<double>" (office:currency="<string>" )? + >  +
@@ -6105,6 +8516,35 @@

form:listbox Element

<office:event-listeners>    + + Child Relations + <form:listbox + ( (form:name="<string>" )? + (form:control-implementation="QName]" )? + + (xml:id="<ID>" (form:id="<NCName>" )? + ) (xforms:bind="<string>" )? + ) (form:disabled="<boolean>" )? + (form:dropdown="<boolean>" )? + (form:printable="<boolean>" )? + (form:size="<nonNegativeInteger>" )? + (form:tab-index="<nonNegativeInteger>" )? + (form:tab-stop="<boolean>" )? + (form:title="<string>" )? + (form:bound-column="<string>" )? + (form:data-field="<string>" )? + (form:list-source="<string>" )? + (form:list-source-type="table | query | sql | sql-pass-through | value-list | table-fields" )? + (form:linked-cell="string] | <string>" )? + (form:list-linkage-type="selection | selection-indices" )? + (form:source-cell-range="string] | string] | string] | <string>" )? + (form:multiple="<boolean>" )? + (form:xforms-list-source="<string>" )? + + ( (<form:properties ... >)? + (<office:event-listeners ... >)? + )(<form:option ... >)* >  +
@@ -6122,15 +8562,15 @@

form:number Element

form:control-implementation  form:convert-empty-to-null  - form:current-value[4]  + form:current-value[1]  form:data-field  form:delay-for-repeat  form:disabled  form:id  form:linked-cell  form:max-length  - form:max-value[4]  - form:min-value[1]  + form:max-value[1]  + form:min-value[5]  form:name  form:printable  form:readonly  @@ -6139,7 +8579,7 @@

form:number Element

form:tab-index  form:tab-stop  form:title  - form:value[4]  + form:value[2]  xforms:bind  xml:id    @@ -6151,6 +8591,37 @@

form:number Element

<office:event-listeners>    + + Child Relations + <form:number (form:value="<double>" )? + (form:current-value="<double>" )? + (form:min-value="<double>" )? + (form:max-value="<double>" )? + + ( + ( (form:name="<string>" )? + (form:control-implementation="QName]" )? + + (xml:id="<ID>" (form:id="<NCName>" )? + ) (xforms:bind="<string>" )? + ) (form:disabled="<boolean>" )? + (form:max-length="<nonNegativeInteger>" )? + (form:printable="<boolean>" )? + (form:readonly="<boolean>" )? + (form:tab-index="<nonNegativeInteger>" )? + (form:tab-stop="<boolean>" )? + (form:title="<string>" )? + (form:convert-empty-to-null="<boolean>" )? + (form:data-field="<string>" )? + ) + ( (<form:properties ... >)? + (<office:event-listeners ... >)? + ) (form:linked-cell="string] | <string>" )? + (form:spin-button="<boolean>" )? + (form:repeat="<boolean>" )? + (form:delay-for-repeat="<duration>" )? + >  +
@@ -6169,7 +8640,7 @@

form:option Element

form:current-selected  form:label  form:selected  - form:value[1]  + form:value[3]    @@ -6177,6 +8648,15 @@

form:option Element

  + + Child Relations + <form:option + ( (form:current-selected="<boolean>" )? + (form:selected="<boolean>" )? + (form:label="<string>" )? + (form:value="<string>" )? + )TEXT>  +
@@ -6203,7 +8683,7 @@

form:password Element

form:tab-index  form:tab-stop  form:title  - form:value[1]  + form:value[3]  xforms:bind  xml:id    @@ -6215,6 +8695,29 @@

form:password Element

<office:event-listeners>    + + Child Relations + <form:password + ( (form:name="<string>" )? + (form:control-implementation="QName]" )? + + (xml:id="<ID>" (form:id="<NCName>" )? + ) (xforms:bind="<string>" )? + ) (form:disabled="<boolean>" )? + (form:max-length="<nonNegativeInteger>" )? + (form:printable="<boolean>" )? + (form:tab-index="<nonNegativeInteger>" )? + (form:tab-stop="<boolean>" )? + (form:title="<string>" )? + (form:value="<string>" )? + (form:convert-empty-to-null="<boolean>" )? + (form:linked-cell="string] | <string>" )? + (form:echo-char="string]" )? + + ( (<form:properties ... >)? + (<office:event-listeners ... >)? + )>  +
@@ -6259,6 +8762,10 @@

form:properties Element

<form:property>*    + + Child Relations + <form:properties (<form:property ... > | <form:list-property ... >)+ >  +
@@ -6295,6 +8802,19 @@

form:property Element

  + + Child Relations + <form:property form:property-name="<string>" + (office:value-type="float" office:value="<double>" ) | + (office:value-type="percentage" office:value="<double>" ) | + (office:value-type="currency" office:value="<double>" (office:currency="<string>" )? + ) | + (office:value-type="date" office:date-value="<date> | <dateTime>" ) | + (office:value-type="time" office:time-value="<duration>" ) | + (office:value-type="boolean" office:boolean-value="<boolean>" ) | + (office:value-type="string" (office:string-value="<string>" )? + ) | office:value-type="void" >  +
@@ -6325,7 +8845,7 @@

form:radio Element

form:tab-index  form:tab-stop  form:title  - form:value[1]  + form:value[3]  form:visual-effect  xforms:bind  xml:id  @@ -6338,6 +8858,34 @@

form:radio Element

<office:event-listeners>    + + Child Relations + <form:radio + ( + ( (form:name="<string>" )? + (form:control-implementation="QName]" )? + + (xml:id="<ID>" (form:id="<NCName>" )? + ) (xforms:bind="<string>" )? + ) (form:current-selected="<boolean>" )? + (form:disabled="<boolean>" )? + (form:label="<string>" )? + (form:printable="<boolean>" )? + (form:selected="<boolean>" )? + (form:tab-index="<nonNegativeInteger>" )? + (form:tab-stop="<boolean>" )? + (form:title="<string>" )? + (form:value="<string>" )? + (form:data-field="<string>" )? + (form:visual-effect="flat | 3d" )? + form:image-position="center" | EMPTY | + (form:image-position="start | end | top | bottom" (form:image-align="start | center | end" )? + ) (form:linked-cell="string] | <string>" )? + ) + ( (<form:properties ... >)? + (<office:event-listeners ... >)? + )>  +
@@ -6355,7 +8903,7 @@

form:text Element

form:control-implementation  form:convert-empty-to-null  - form:current-value[3]  + form:current-value[2]  form:data-field  form:disabled  form:id  @@ -6367,7 +8915,7 @@

form:text Element

form:tab-index  form:tab-stop  form:title  - form:value[1]  + form:value[3]  xforms:bind  xml:id    @@ -6379,6 +8927,32 @@

form:text Element

<office:event-listeners>    + + Child Relations + <form:text + ( + ( (form:name="<string>" )? + (form:control-implementation="QName]" )? + + (xml:id="<ID>" (form:id="<NCName>" )? + ) (xforms:bind="<string>" )? + ) (form:current-value="<string>" )? + (form:disabled="<boolean>" )? + (form:max-length="<nonNegativeInteger>" )? + (form:printable="<boolean>" )? + (form:readonly="<boolean>" )? + (form:tab-index="<nonNegativeInteger>" )? + (form:tab-stop="<boolean>" )? + (form:title="<string>" )? + (form:value="<string>" )? + (form:convert-empty-to-null="<boolean>" )? + (form:data-field="<string>" )? + (form:linked-cell="string] | <string>" )? + ) + ( (<form:properties ... >)? + (<office:event-listeners ... >)? + )>  +
@@ -6396,7 +8970,7 @@

form:textarea Element

form:control-implementation  form:convert-empty-to-null  - form:current-value[3]  + form:current-value[2]  form:data-field  form:disabled  form:id  @@ -6408,7 +8982,7 @@

form:textarea Element

form:tab-index  form:tab-stop  form:title  - form:value[1]  + form:value[3]  xforms:bind  xml:id    @@ -6421,6 +8995,32 @@

form:textarea Element

<text:p>*    + + Child Relations + <form:textarea + ( + ( (form:name="<string>" )? + (form:control-implementation="QName]" )? + + (xml:id="<ID>" (form:id="<NCName>" )? + ) (xforms:bind="<string>" )? + ) (form:current-value="<string>" )? + (form:disabled="<boolean>" )? + (form:max-length="<nonNegativeInteger>" )? + (form:printable="<boolean>" )? + (form:readonly="<boolean>" )? + (form:tab-index="<nonNegativeInteger>" )? + (form:tab-stop="<boolean>" )? + (form:title="<string>" )? + (form:value="<string>" )? + (form:convert-empty-to-null="<boolean>" )? + (form:data-field="<string>" )? + (form:linked-cell="string] | <string>" )? + ) + ( (<form:properties ... >)? + (<office:event-listeners ... >)? + )(<text:p ... >)* >  +
@@ -6438,15 +9038,15 @@

form:time Element

form:control-implementation  form:convert-empty-to-null  - form:current-value[2]  + form:current-value[4]  form:data-field  form:delay-for-repeat  form:disabled  form:id  form:linked-cell  form:max-length  - form:max-value[1]  - form:min-value[4]  + form:max-value[2]  + form:min-value[3]  form:name  form:printable  form:readonly  @@ -6455,7 +9055,7 @@

form:time Element

form:tab-index  form:tab-stop  form:title  - form:value[3]  + form:value[1]  xforms:bind  xml:id    @@ -6467,6 +9067,37 @@

form:time Element

<office:event-listeners>    + + Child Relations + <form:time (form:value="<time>" )? + (form:current-value="<time>" )? + (form:min-value="<time>" )? + (form:max-value="<time>" )? + + ( + ( (form:name="<string>" )? + (form:control-implementation="QName]" )? + + (xml:id="<ID>" (form:id="<NCName>" )? + ) (xforms:bind="<string>" )? + ) (form:disabled="<boolean>" )? + (form:max-length="<nonNegativeInteger>" )? + (form:printable="<boolean>" )? + (form:readonly="<boolean>" )? + (form:tab-index="<nonNegativeInteger>" )? + (form:tab-stop="<boolean>" )? + (form:title="<string>" )? + (form:convert-empty-to-null="<boolean>" )? + (form:data-field="<string>" )? + ) + ( (<form:properties ... >)? + (<office:event-listeners ... >)? + ) (form:linked-cell="string] | <string>" )? + (form:spin-button="<boolean>" )? + (form:repeat="<boolean>" )? + (form:delay-for-repeat="<duration>" )? + >  +
@@ -6486,8 +9117,8 @@

form:value-range Element

form:disabled  form:id  form:linked-cell  - form:max-value[2]  - form:min-value[3]  + form:max-value[3]  + form:min-value[4]  form:name  form:orientation  form:page-step-size  @@ -6497,7 +9128,7 @@

form:value-range Element

form:tab-index  form:tab-stop  form:title  - form:value[1]  + form:value[3]  xforms:bind  xml:id    @@ -6509,6 +9140,33 @@

form:value-range Element

<office:event-listeners>    + + Child Relations + <form:value-range + ( (form:name="<string>" )? + (form:control-implementation="QName]" )? + + (xml:id="<ID>" (form:id="<NCName>" )? + ) (xforms:bind="<string>" )? + ) (form:disabled="<boolean>" )? + (form:printable="<boolean>" )? + (form:tab-index="<nonNegativeInteger>" )? + (form:tab-stop="<boolean>" )? + (form:title="<string>" )? + (form:value="<string>" )? + (form:linked-cell="string] | <string>" )? + (form:repeat="<boolean>" )? + (form:delay-for-repeat="<duration>" )? + (form:max-value="<integer>" )? + (form:min-value="<integer>" )? + (form:step-size="<positiveInteger>" )? + (form:page-step-size="<positiveInteger>" )? + (form:orientation="horizontal | vertical" )? + + ( (<form:properties ... >)? + (<office:event-listeners ... >)? + )>  +
@@ -6534,6 +9192,10 @@

math:math Element

[any org.w3c.dom.Element]    + + Child Relations + <math:math (*:*="TEXT" | TEXT | <*:* ... >)+ >  +
@@ -6560,6 +9222,14 @@

meta:auto-reload Element (new   + + Child Relations + <meta:auto-reload (xlink:type="simple" xlink:href="<anyIRI>" (xlink:show="replace" )? + (xlink:actuate="onLoad" )? + )? + (meta:delay="<duration>" )? + >  +
@@ -6581,6 +9251,10 @@

meta:creation-date Element (   + + Child Relations + <meta:creation-date <dateTime>>  +
@@ -6603,6 +9277,10 @@

meta:creator-initials Element&   + + Child Relations + <meta:creator-initials TEXT>  +
@@ -6624,6 +9302,10 @@

meta:date-string Element

  + + Child Relations + <meta:date-string <string>>  +
@@ -6660,6 +9342,25 @@

meta:document-statistic Element<   + + Child Relations + <meta:document-statistic (meta:page-count="<nonNegativeInteger>" )? + (meta:table-count="<nonNegativeInteger>" )? + (meta:draw-count="<nonNegativeInteger>" )? + (meta:image-count="<nonNegativeInteger>" )? + (meta:ole-object-count="<nonNegativeInteger>" )? + (meta:object-count="<nonNegativeInteger>" )? + (meta:paragraph-count="<nonNegativeInteger>" )? + (meta:word-count="<nonNegativeInteger>" )? + (meta:character-count="<nonNegativeInteger>" )? + (meta:frame-count="<nonNegativeInteger>" )? + (meta:sentence-count="<nonNegativeInteger>" )? + (meta:syllable-count="<nonNegativeInteger>" )? + (meta:non-whitespace-character-count="<nonNegativeInteger>" )? + (meta:row-count="<nonNegativeInteger>" )? + (meta:cell-count="<nonNegativeInteger>" )? + >  +
@@ -6681,6 +9382,10 @@

meta:editing-cycles Element    + + Child Relations + <meta:editing-cycles <nonNegativeInteger>>  +
@@ -6702,6 +9407,10 @@

meta:editing-duration Element&   + + Child Relations + <meta:editing-duration <duration>>  +
@@ -6723,6 +9432,10 @@

meta:generator Element (new in O   + + Child Relations + <meta:generator <string>>  +
@@ -6746,6 +9459,12 @@

meta:hyperlink-behaviour Elemen   + + Child Relations + <meta:hyperlink-behaviour (office:target-frame-name="_self | _blank | _parent | _top | <string>" )? + (xlink:show="new | replace" )? + >  +
@@ -6767,6 +9486,10 @@

meta:initial-creator Element&nb   + + Child Relations + <meta:initial-creator <string>>  +
@@ -6788,6 +9511,10 @@

meta:keyword Element (new in ODF 1   + + Child Relations + <meta:keyword <string>>  +
@@ -6809,6 +9536,10 @@

meta:print-date Element (new in   + + Child Relations + <meta:print-date <dateTime>>  +
@@ -6830,6 +9561,10 @@

meta:printed-by Element (new in   + + Child Relations + <meta:printed-by <string>>  +
@@ -6856,6 +9591,13 @@

meta:template Element (new in ODF   + + Child Relations + <meta:template xlink:type="simple" xlink:href="<anyIRI>" (xlink:actuate="onRequest" )? + (xlink:title="<string>" )? + (meta:date="<dateTime>" )? + >  +
@@ -6884,6 +9626,15 @@

meta:user-defined Element (ne   + + Child Relations + <meta:user-defined meta:name="<string>" + (meta:value-type="float" <double>) | + (meta:value-type="date" <date> | <dateTime>) | + (meta:value-type="time" <duration>) | + (meta:value-type="boolean" <boolean>) | + (meta:value-type="string" <string>) | TEXT>  +
@@ -6906,6 +9657,10 @@

number:am-pm Element

  + + Child Relations + <number:am-pm EMPTY>  +
@@ -6927,6 +9682,10 @@

number:boolean Element

  + + Child Relations + <number:boolean EMPTY>  +
@@ -6965,6 +9724,25 @@

number:boolean-style Element<style:text-properties>    + + Child Relations + <number:boolean-style style:name="<NCName>" (style:display-name="<string>" )? + (number:language="token]" )? + (number:country="token]" )? + (number:script="token]" )? + (number:rfc-language-tag="<language>" )? + (number:title="<string>" )? + (style:volatile="<boolean>" )? + (number:transliteration-format="<string>" )? + (number:transliteration-language="token]" )? + (number:transliteration-country="token]" )? + (number:transliteration-style="short | medium | long" )? + (<style:text-properties ... >)? + (<number:text ... >)? + (<number:boolean ... > (<number:text ... >)? + )? + (<style:map ... >)* >  +
@@ -7006,6 +9784,57 @@

number:currency-style Element< <style:text-properties>    + + Child Relations + <number:currency-style style:name="<NCName>" (style:display-name="<string>" )? + (number:language="token]" )? + (number:country="token]" )? + (number:script="token]" )? + (number:rfc-language-tag="<language>" )? + (number:title="<string>" )? + (style:volatile="<boolean>" )? + (number:transliteration-format="<string>" )? + (number:transliteration-language="token]" )? + (number:transliteration-country="token]" )? + (number:transliteration-style="short | medium | long" )? + (number:automatic-order="<boolean>" )? + (<style:text-properties ... >)? + ( + ( (<number:text ... >)? + (<number:fill-character ... > (<number:text ... >)? + )? + ))? + ( + ( + (<number:number ... > ( + ( (<number:text ... >)? + (<number:fill-character ... > (<number:text ... >)? + )? + ))? + ) ( + (<number:currency-symbol ... > ( + ( (<number:text ... >)? + (<number:fill-character ... > (<number:text ... >)? + )? + ))? + ))? + ) | + ( + (<number:currency-symbol ... > ( + ( (<number:text ... >)? + (<number:fill-character ... > (<number:text ... >)? + )? + ))? + ) ( + (<number:number ... > ( + ( (<number:text ... >)? + (<number:fill-character ... > (<number:text ... >)? + )? + ))? + ))? + ))? + (<style:map ... >)* >  +
@@ -7032,6 +9861,15 @@

number:currency-symbol Element   + + Child Relations + <number:currency-symbol + ( (number:language="token]" )? + (number:country="token]" )? + (number:script="token]" )? + (number:rfc-language-tag="<language>" )? + )TEXT>  +
@@ -7083,6 +9921,34 @@

number:date-style Element

<style:text-properties>    + + Child Relations + <number:date-style style:name="<NCName>" (style:display-name="<string>" )? + (number:language="token]" )? + (number:country="token]" )? + (number:script="token]" )? + (number:rfc-language-tag="<language>" )? + (number:title="<string>" )? + (style:volatile="<boolean>" )? + (number:transliteration-format="<string>" )? + (number:transliteration-language="token]" )? + (number:transliteration-country="token]" )? + (number:transliteration-style="short | medium | long" )? + (number:automatic-order="<boolean>" )? + (number:format-source="fixed | language" )? + (<style:text-properties ... >)? + ( + ( (<number:text ... >)? + (<number:fill-character ... > (<number:text ... >)? + )? + ))? + (<number:day ... > | <number:month ... > | <number:year ... > | <number:era ... > | <number:day-of-week ... > | <number:week-of-year ... > | <number:quarter ... > | <number:hours ... > | <number:am-pm ... > | <number:minutes ... > | <number:seconds ... > ( + ( (<number:text ... >)? + (<number:fill-character ... > (<number:text ... >)? + )? + ))? + )+ (<style:map ... >)* >  +
@@ -7106,6 +9972,12 @@

number:day Element

  + + Child Relations + <number:day (number:style="short | long" )? + (number:calendar="gregorian | gengou | ROC | hanja_yoil | hanja | hijri | jewish | buddhist | <string>" )? + >  +
@@ -7129,6 +10001,12 @@

number:day-of-week Element

  + + Child Relations + <number:day-of-week (number:style="short | long" )? + (number:calendar="gregorian | gengou | ROC | hanja_yoil | hanja | hijri | jewish | buddhist | <string>" )? + >  +
@@ -7152,6 +10030,10 @@

number:embedded-text Element   + + Child Relations + <number:embedded-text number:position="<integer>" TEXT>  +
@@ -7175,6 +10057,12 @@

number:era Element

  + + Child Relations + <number:era (number:style="short | long" )? + (number:calendar="gregorian | gengou | ROC | hanja_yoil | hanja | hijri | jewish | buddhist | <string>" )? + >  +
@@ -7202,6 +10090,10 @@

number:fill-character Element&   + + Child Relations + <number:fill-character TEXT>  +
@@ -7229,6 +10121,16 @@

number:fraction Element

  + + Child Relations + <number:fraction (number:min-numerator-digits="<integer>" )? + (number:min-denominator-digits="<integer>" )? + (number:denominator-value="<integer>" )? + (number:max-denominator-value="<positiveInteger>" )? + (number:min-integer-digits="<integer>" )? + (number:grouping="<boolean>" )? + >  +
@@ -7252,6 +10154,11 @@

number:hours Element

  + + Child Relations + <number:hours (number:style="short | long" )? + >  +
@@ -7275,6 +10182,11 @@

number:minutes Element

  + + Child Relations + <number:minutes (number:style="short | long" )? + >  +
@@ -7300,6 +10212,14 @@

number:month Element

  + + Child Relations + <number:month (number:textual="<boolean>" )? + (number:possessive-form="<boolean>" )? + (number:style="short | long" )? + (number:calendar="gregorian | gengou | ROC | hanja_yoil | hanja | hijri | jewish | buddhist | <string>" )? + >  +
@@ -7330,6 +10250,17 @@

number:number Element

<number:embedded-text>*    + + Child Relations + <number:number (number:decimal-replacement="<string>" )? + (number:display-factor="<double>" )? + + ( (number:decimal-places="<integer>" )? + (number:min-decimal-places="<integer>" )? + ) (number:min-integer-digits="<integer>" )? + (number:grouping="<boolean>" )? + (<number:embedded-text ... >)* >  +
@@ -7371,6 +10302,33 @@

number:number-style Element

<style:text-properties>    + + Child Relations + <number:number-style style:name="<NCName>" (style:display-name="<string>" )? + (number:language="token]" )? + (number:country="token]" )? + (number:script="token]" )? + (number:rfc-language-tag="<language>" )? + (number:title="<string>" )? + (style:volatile="<boolean>" )? + (number:transliteration-format="<string>" )? + (number:transliteration-language="token]" )? + (number:transliteration-country="token]" )? + (number:transliteration-style="short | medium | long" )? + (<style:text-properties ... >)? + ( + ( (<number:text ... >)? + (<number:fill-character ... > (<number:text ... >)? + )? + ))? + (<number:number ... > | <number:scientific-number ... > | <number:fraction ... > ( + ( (<number:text ... >)? + (<number:fill-character ... > (<number:text ... >)? + )? + ))? + )? + (<style:map ... >)* >  +
@@ -7410,6 +10368,34 @@

number:percentage-style Element< <style:text-properties>    + + Child Relations + <number:percentage-style style:name="<NCName>" (style:display-name="<string>" )? + (number:language="token]" )? + (number:country="token]" )? + (number:script="token]" )? + (number:rfc-language-tag="<language>" )? + (number:title="<string>" )? + (style:volatile="<boolean>" )? + (number:transliteration-format="<string>" )? + (number:transliteration-language="token]" )? + (number:transliteration-country="token]" )? + (number:transliteration-style="short | medium | long" )? + (<style:text-properties ... >)? + ( + ( (<number:text ... >)? + (<number:fill-character ... > (<number:text ... >)? + )? + ))? + ( + (<number:number ... > ( + ( (<number:text ... >)? + (<number:fill-character ... > (<number:text ... >)? + )? + ))? + ))? + (<style:map ... >)* >  +
@@ -7433,6 +10419,12 @@

number:quarter Element

  + + Child Relations + <number:quarter (number:style="short | long" )? + (number:calendar="gregorian | gengou | ROC | hanja_yoil | hanja | hijri | jewish | buddhist | <string>" )? + >  +
@@ -7461,6 +10453,18 @@

number:scientific-number Elemen   + + Child Relations + <number:scientific-number (number:min-exponent-digits="<integer>" )? + (number:exponent-interval="<positiveInteger>" )? + (number:forced-exponent-sign="<boolean>" )? + + ( (number:decimal-places="<integer>" )? + (number:min-decimal-places="<integer>" )? + ) (number:min-integer-digits="<integer>" )? + (number:grouping="<boolean>" )? + >  +
@@ -7485,6 +10489,12 @@

number:seconds Element

  + + Child Relations + <number:seconds (number:style="short | long" )? + (number:decimal-places="<integer>" )? + >  +
@@ -7513,6 +10523,10 @@

number:text Element

  + + Child Relations + <number:text TEXT>  +
@@ -7534,6 +10548,10 @@

number:text-content Element

  + + Child Relations + <number:text-content EMPTY>  +
@@ -7573,6 +10591,32 @@

number:text-style Element

<style:text-properties>    + + Child Relations + <number:text-style style:name="<NCName>" (style:display-name="<string>" )? + (number:language="token]" )? + (number:country="token]" )? + (number:script="token]" )? + (number:rfc-language-tag="<language>" )? + (number:title="<string>" )? + (style:volatile="<boolean>" )? + (number:transliteration-format="<string>" )? + (number:transliteration-language="token]" )? + (number:transliteration-country="token]" )? + (number:transliteration-style="short | medium | long" )? + (<style:text-properties ... >)? + ( + ( (<number:text ... >)? + (<number:fill-character ... > (<number:text ... >)? + )? + ))? + (<number:text-content ... > ( + ( (<number:text ... >)? + (<number:fill-character ... > (<number:text ... >)? + )? + ))? + )* (<style:map ... >)* >  +
@@ -7617,6 +10661,34 @@

number:time-style Element

<style:text-properties>    + + Child Relations + <number:time-style (number:truncate-on-overflow="<boolean>" )? + style:name="<NCName>" (style:display-name="<string>" )? + (number:language="token]" )? + (number:country="token]" )? + (number:script="token]" )? + (number:rfc-language-tag="<language>" )? + (number:title="<string>" )? + (style:volatile="<boolean>" )? + (number:transliteration-format="<string>" )? + (number:transliteration-language="token]" )? + (number:transliteration-country="token]" )? + (number:transliteration-style="short | medium | long" )? + (number:format-source="fixed | language" )? + (<style:text-properties ... >)? + ( + ( (<number:text ... >)? + (<number:fill-character ... > (<number:text ... >)? + )? + ))? + (<number:hours ... > | <number:am-pm ... > | <number:minutes ... > | <number:seconds ... > ( + ( (<number:text ... >)? + (<number:fill-character ... > (<number:text ... >)? + )? + ))? + )+ (<style:map ... >)* >  +
@@ -7639,6 +10711,11 @@

number:week-of-year Element

  + + Child Relations + <number:week-of-year (number:calendar="gregorian | gengou | ROC | hanja_yoil | hanja | hijri | jewish | buddhist | <string>" )? + >  +
@@ -7662,6 +10739,12 @@

number:year Element

  + + Child Relations + <number:year (number:style="short | long" )? + (number:calendar="gregorian | gengou | ROC | hanja_yoil | hanja | hijri | jewish | buddhist | <string>" )? + >  +
@@ -7701,7 +10784,7 @@

office:annotation Element

presentation:style-name  svg:height[1]  svg:width[2]  - svg:x[1]  + svg:x[2]  svg:y[2]  table:end-cell-address  table:end-x  @@ -7723,6 +10806,49 @@

office:annotation Element

<text:p>*    + + Child Relations + <office:annotation (office:display="<boolean>" )? + (office:name="<string>" )? + (draw:caption-point-x="string]" draw:caption-point-y="string]" )? + (draw:corner-radius="string]" )? + + ( (svg:x="string]" )? + (svg:y="string]" )? + ) + ( (svg:width="string]" )? + (svg:height="string]" )? + ) + ( + ( (draw:z-index="<nonNegativeInteger>" )? + (xml:id="<ID>" (draw:id="<NCName>" )? + )? + (draw:layer="<string>" )? + + ( (draw:style-name="(<NCName>)?" )? + (draw:class-names=" +START_list(<NCName>)* +END_list" )? + ) | + ( (presentation:style-name="(<NCName>)?" )? + (presentation:class-names=" +START_list(<NCName>)* +END_list" )? + ) (draw:transform="<string>" )? + (draw:name="<string>" )? + (table:end-cell-address="string]" )? + (table:end-x="string]" )? + (table:end-y="string]" )? + (table:table-background="<boolean>" )? + (text:anchor-type="page | frame | paragraph | char | as-char" )? + (text:anchor-page-number="<positiveInteger>" )? + ) (draw:text-style-name="(<NCName>)?" )? + ) (<dc:creator ... >)? + (<dc:date ... >)? + (<meta:date-string ... >)? + (<meta:creator-initials ... >)? + (<text:p ... > | <text:list ... >)* >  +
@@ -7751,6 +10877,10 @@

office:annotation-end Element&   + + Child Relations + <office:annotation-end office:name="<string>" >  +
@@ -7784,6 +10914,10 @@

office:automatic-styles Element< <text:list-style>*    + + Child Relations + <office:automatic-styles (<style:style ... >)* (<text:list-style ... >)* (<number:number-style ... >)* (<number:currency-style ... >)* (<number:percentage-style ... >)* (<number:date-style ... >)* (<number:time-style ... >)* (<number:boolean-style ... >)* (<number:text-style ... >)* (<style:page-layout ... >)* >  +
@@ -7809,6 +10943,10 @@

office:binary-data Element

  + + Child Relations + <office:binary-data <base64Binary>>  +
@@ -7838,6 +10976,10 @@

office:body Element

<office:text>    + + Child Relations + <office:body <office:text ... > | <office:drawing ... > | <office:presentation ... > | <office:spreadsheet ... > | <office:chart ... > | <office:image ... > | <office:database ... >>  +
@@ -7868,6 +11010,10 @@

office:change-info Element

<text:p>*    + + Child Relations + <office:change-info <dc:creator ... ><dc:date ... >(<text:p ... >)* >  +
@@ -7903,6 +11049,27 @@

office:chart Element

<text:variable-decls>    + + Child Relations + <office:chart EMPTY + ( + ( (<text:variable-decls ... >)? + (<text:sequence-decls ... >)? + (<text:user-field-decls ... >)? + (<text:dde-connection-decls ... >)? + (<text:alphabetical-index-auto-mark-file ... >)? + ) + ( (<table:calculation-settings ... >)? + (<table:content-validations ... >)? + (<table:label-ranges ... >)? + ))<chart:chart ... > + ( (<table:named-expressions ... >)? + (<table:database-ranges ... >)? + (<table:data-pilot-tables ... >)? + (<table:consolidation ... >)? + (<table:dde-links ... >)? + )>  +
@@ -7930,6 +11097,15 @@

office:database Element (new in <db:table-representations>    + + Child Relations + <office:database <db:data-source ... > (<db:forms ... >)? + (<db:reports ... >)? + (<db:queries ... >)? + (<db:table-representations ... >)? + (<db:schema-definition ... >)? + >  +
@@ -7959,6 +11135,13 @@

office:dde-source Element

  + + Child Relations + <office:dde-source (office:name="<string>" )? + (office:conversion-mode="into-default-style-data-style | into-english-number | keep-text" )? + office:dde-application="<string>" office:dde-topic="<string>" office:dde-item="<string>" (office:automatic-update="<boolean>" )? + >  +
@@ -7992,6 +11175,20 @@

office:document Element

<office:styles>    + + Child Relations + <office:document office:mimetype="<string>" office:version="1.3" (grddl:transformation=" +START_list(<anyIRI>)* +END_list" )? + (<office:meta ... >)? + (<office:settings ... >)? + (<office:scripts ... >)? + (<office:font-face-decls ... >)? + (<office:styles ... >)? + (<office:automatic-styles ... >)? + (<office:master-styles ... >)? + <office:body ... >>  +
@@ -8018,6 +11215,16 @@

office:document-content Element< <office:scripts>    + + Child Relations + <office:document-content office:version="1.3" (grddl:transformation=" +START_list(<anyIRI>)* +END_list" )? + (<office:scripts ... >)? + (<office:font-face-decls ... >)? + (<office:automatic-styles ... >)? + <office:body ... >>  +
@@ -8041,6 +11248,14 @@

office:document-meta Element<office:meta>    + + Child Relations + <office:document-meta office:version="1.3" (grddl:transformation=" +START_list(<anyIRI>)* +END_list" )? + (<office:meta ... >)? + >  +
@@ -8064,6 +11279,14 @@

office:document-settings Elemen <office:settings>    + + Child Relations + <office:document-settings office:version="1.3" (grddl:transformation=" +START_list(<anyIRI>)* +END_list" )? + (<office:settings ... >)? + >  +
@@ -8090,6 +11313,17 @@

office:document-styles Element<office:styles>    + + Child Relations + <office:document-styles office:version="1.3" (grddl:transformation=" +START_list(<anyIRI>)* +END_list" )? + (<office:font-face-decls ... >)? + (<office:styles ... >)? + (<office:automatic-styles ... >)? + (<office:master-styles ... >)? + >  +
@@ -8125,6 +11359,27 @@

office:drawing Element

<text:variable-decls>    + + Child Relations + <office:drawing EMPTY + ( + ( (<text:variable-decls ... >)? + (<text:sequence-decls ... >)? + (<text:user-field-decls ... >)? + (<text:dde-connection-decls ... >)? + (<text:alphabetical-index-auto-mark-file ... >)? + ) + ( (<table:calculation-settings ... >)? + (<table:content-validations ... >)? + (<table:label-ranges ... >)? + ))(<draw:page ... >)* + ( (<table:named-expressions ... >)? + (<table:database-ranges ... >)? + (<table:data-pilot-tables ... >)? + (<table:consolidation ... >)? + (<table:dde-links ... >)? + )>  +
@@ -8190,6 +11445,10 @@

office:event-listeners Element<script:event-listener>*    + + Child Relations + <office:event-listeners (<script:event-listener ... > | <presentation:event-listener ... >)* >  +
@@ -8214,6 +11473,10 @@

office:font-face-decls Element<style:font-face>*    + + Child Relations + <office:font-face-decls (<style:font-face ... >)* >  +
@@ -8243,6 +11506,12 @@

office:forms Element

<xforms:model>*    + + Child Relations + <office:forms (form:automatic-focus="<boolean>" )? + (form:apply-design-mode="<boolean>" )? + (<form:form ... > | <xforms:model ... >)* >  +
@@ -8265,6 +11534,10 @@

office:image Element

<draw:frame>    + + Child Relations + <office:image EMPTYEMPTY<draw:frame ... >EMPTY>  +
@@ -8290,6 +11563,12 @@

office:master-styles Element<style:master-page>*    + + Child Relations + <office:master-styles (<style:master-page ... >)* (<style:handout-master ... >)? + (<draw:layer-set ... >)? + >  +
@@ -8331,6 +11610,10 @@

office:meta Element

<meta:user-defined>*    + + Child Relations + <office:meta (<meta:generator ... > | <dc:title ... > | <dc:description ... > | <dc:subject ... > | <meta:keyword ... > | <meta:initial-creator ... > | <dc:creator ... > | <meta:printed-by ... > | <meta:creation-date ... > | <dc:date ... > | <meta:print-date ... > | <meta:template ... > | <meta:auto-reload ... > | <meta:hyperlink-behaviour ... > | <dc:language ... > | <meta:editing-cycles ... > | <meta:editing-duration ... > | <meta:document-statistic ... > | <meta:user-defined ... >)* >  +
@@ -8370,6 +11653,29 @@

office:presentation Element

<text:variable-decls>    + + Child Relations + <office:presentation EMPTY + ( + ( (<text:variable-decls ... >)? + (<text:sequence-decls ... >)? + (<text:user-field-decls ... >)? + (<text:dde-connection-decls ... >)? + (<text:alphabetical-index-auto-mark-file ... >)? + ) + ( (<table:calculation-settings ... >)? + (<table:content-validations ... >)? + (<table:label-ranges ... >)? + )(<presentation:header-decl ... > | <presentation:footer-decl ... > | <presentation:date-time-decl ... >)* )(<draw:page ... >)* + ( (<presentation:settings ... >)? + + ( (<table:named-expressions ... >)? + (<table:database-ranges ... >)? + (<table:data-pilot-tables ... >)? + (<table:consolidation ... >)? + (<table:dde-links ... >)? + ))>  +
@@ -8393,6 +11699,10 @@

office:script Element

[any org.w3c.dom.Element]    + + Child Relations + <office:script script:language="<string>" (<*:* ... >)* >  +
@@ -8417,6 +11727,11 @@

office:scripts Element

<office:script>*    + + Child Relations + <office:scripts (<office:script ... >)* (<office:event-listeners ... >)? + >  +
@@ -8440,6 +11755,10 @@

office:settings Element

<config:config-item-set>*    + + Child Relations + <office:settings (<config:config-item-set ... >)+ >  +
@@ -8479,6 +11798,32 @@

office:spreadsheet Element

<text:variable-decls>    + + Child Relations + <office:spreadsheet + ( (table:structure-protected="<boolean>" )? + (table:protection-key="<string>" )? + (table:protection-key-digest-algorithm="<anyIRI>" )? + ) + ( (<table:tracked-changes ... >)? + + ( (<text:variable-decls ... >)? + (<text:sequence-decls ... >)? + (<text:user-field-decls ... >)? + (<text:dde-connection-decls ... >)? + (<text:alphabetical-index-auto-mark-file ... >)? + ) + ( (<table:calculation-settings ... >)? + (<table:content-validations ... >)? + (<table:label-ranges ... >)? + ))(<table:table ... >)* + ( (<table:named-expressions ... >)? + (<table:database-ranges ... >)? + (<table:data-pilot-tables ... >)? + (<table:consolidation ... >)? + (<table:dde-links ... >)? + )>  +
@@ -8526,6 +11871,14 @@

office:styles Element

<text:outline-style>    + + Child Relations + <office:styles (<style:style ... >)* (<text:list-style ... >)* (<number:number-style ... >)* (<number:currency-style ... >)* (<number:percentage-style ... >)* (<number:date-style ... >)* (<number:time-style ... >)* (<number:boolean-style ... >)* (<number:text-style ... >)* (<style:default-style ... >)* (<style:default-page-layout ... >)? + (<text:outline-style ... >)? + (<text:notes-configuration ... >)* (<text:bibliography-configuration ... >)? + (<text:linenumbering-configuration ... >)? + (<draw:gradient ... >)* (<svg:linearGradient ... >)* (<svg:radialGradient ... >)* (<draw:hatch ... >)* (<draw:fill-image ... >)* (<draw:marker ... >)* (<draw:stroke-dash ... >)* (<draw:opacity ... >)* (<style:presentation-page-layout ... >)* (<table:table-template ... >)* >  +
@@ -8600,6 +11953,32 @@

office:text Element

<text:variable-decls>    + + Child Relations + <office:text (text:global="<boolean>" )? + (text:use-soft-page-breaks="<boolean>" )? + + ( (<office:forms ... >)? + (<text:tracked-changes ... >)? + + ( (<text:variable-decls ... >)? + (<text:sequence-decls ... >)? + (<text:user-field-decls ... >)? + (<text:dde-connection-decls ... >)? + (<text:alphabetical-index-auto-mark-file ... >)? + ) + ( (<table:calculation-settings ... >)? + (<table:content-validations ... >)? + (<table:label-ranges ... >)? + ))(<text:h ... > | <text:p ... > | <text:list ... > | <text:numbered-paragraph ... > | <table:table ... > | <text:section ... > | <text:soft-page-break ... > | <text:table-of-content ... > | <text:illustration-index ... > | <text:table-index ... > | <text:object-index ... > | <text:user-index ... > | <text:alphabetical-index ... > | <text:bibliography ... > | <draw:rect ... > | <draw:line ... > | <draw:polyline ... > | <draw:polygon ... > | <draw:regular-polygon ... > | <draw:path ... > | <draw:circle ... > | <draw:ellipse ... > | <draw:g ... > | <draw:page-thumbnail ... > | <draw:frame ... > | <draw:measure ... > | <draw:caption ... > | <draw:connector ... > | <draw:control ... > | <dr3d:scene ... > | <draw:custom-shape ... > | <draw:a ... > | <text:change ... > | <text:change-start ... > | <text:change-end ... >)+ | EMPTY | + (<text:page-sequence ... >(<draw:rect ... > | <draw:line ... > | <draw:polyline ... > | <draw:polygon ... > | <draw:regular-polygon ... > | <draw:path ... > | <draw:circle ... > | <draw:ellipse ... > | <draw:g ... > | <draw:page-thumbnail ... > | <draw:frame ... > | <draw:measure ... > | <draw:caption ... > | <draw:connector ... > | <draw:control ... > | <dr3d:scene ... > | <draw:custom-shape ... > | <draw:a ... >)* ) + ( (<table:named-expressions ... >)? + (<table:database-ranges ... >)? + (<table:data-pilot-tables ... >)? + (<table:consolidation ... >)? + (<table:dde-links ... >)? + )>  +
@@ -8627,6 +12006,10 @@

presentation:animation-grou <presentation:show-text>*    + + Child Relations + <presentation:animation-group (<presentation:show-shape ... > | <presentation:show-text ... > | <presentation:hide-shape ... > | <presentation:hide-text ... > | <presentation:dim ... > | <presentation:play ... >)* >  +
@@ -8655,6 +12038,10 @@

presentation:animations Element< <presentation:show-text>*    + + Child Relations + <presentation:animations (<presentation:show-shape ... > | <presentation:show-text ... > | <presentation:hide-shape ... > | <presentation:hide-text ... > | <presentation:dim ... > | <presentation:play ... > | <presentation:animation-group ... >)* >  +
@@ -8682,6 +12069,10 @@

presentation:date-time Element   + + Child Relations + <presentation:date-time EMPTY>  +
@@ -8707,6 +12098,11 @@

presentation:date-time-decl   + + Child Relations + <presentation:date-time-decl presentation:name="<string>" presentation:source="fixed | current-date" (style:data-style-name="(<NCName>)?" )? + TEXT>  +
@@ -8732,6 +12128,11 @@

presentation:dim Element

<presentation:sound>    + + Child Relations + <presentation:dim draw:shape-id="<IDREF>" draw:color="string]" (<presentation:sound ... >)? + >  +
@@ -8765,6 +12166,19 @@

presentation:event-listener <presentation:sound>    + + Child Relations + <presentation:event-listener script:event-name="<string>" presentation:action="none | previous-page | next-page | first-page | last-page | hide | stop | execute | show | verb | fade-out | sound | last-visited-page" (presentation:effect="none | fade | move | stripes | open | close | dissolve | wavyline | random | lines | laser | appear | hide | move-short | checkerboard | rotate | stretch" )? + (presentation:direction="none | from-left | from-top | from-right | from-bottom | from-center | from-upper-left | from-upper-right | from-lower-left | from-lower-right | to-left | to-top | to-right | to-bottom | to-upper-left | to-upper-right | to-lower-right | to-lower-left | path | spiral-inward-left | spiral-inward-right | spiral-outward-left | spiral-outward-right | vertical | horizontal | to-center | clockwise | counter-clockwise" )? + (presentation:speed="slow | medium | fast" )? + (presentation:start-scale="string]" )? + (xlink:type="simple" xlink:href="<anyIRI>" (xlink:show="embed" )? + (xlink:actuate="onRequest" )? + )? + (presentation:verb="<nonNegativeInteger>" )? + (<presentation:sound ... >)? + >  +
@@ -8792,6 +12206,10 @@

presentation:footer Element

  + + Child Relations + <presentation:footer EMPTY>  +
@@ -8815,6 +12233,10 @@

presentation:footer-decl Elemen   + + Child Relations + <presentation:footer-decl presentation:name="<string>" TEXT>  +
@@ -8842,6 +12264,10 @@

presentation:header Element

  + + Child Relations + <presentation:header EMPTY>  +
@@ -8865,6 +12291,10 @@

presentation:header-decl Elemen   + + Child Relations + <presentation:header-decl presentation:name="<string>" TEXT>  +
@@ -8895,6 +12325,17 @@

presentation:hide-shape Element< <presentation:sound>    + + Child Relations + <presentation:hide-shape draw:shape-id="<IDREF>" (presentation:effect="none | fade | move | stripes | open | close | dissolve | wavyline | random | lines | laser | appear | hide | move-short | checkerboard | rotate | stretch" )? + (presentation:direction="none | from-left | from-top | from-right | from-bottom | from-center | from-upper-left | from-upper-right | from-lower-left | from-lower-right | to-left | to-top | to-right | to-bottom | to-upper-left | to-upper-right | to-lower-right | to-lower-left | path | spiral-inward-left | spiral-inward-right | spiral-outward-left | spiral-outward-right | vertical | horizontal | to-center | clockwise | counter-clockwise" )? + (presentation:speed="slow | medium | fast" )? + (presentation:delay="<duration>" )? + (presentation:start-scale="string]" )? + (presentation:path-id="<string>" )? + (<presentation:sound ... >)? + >  +
@@ -8925,6 +12366,17 @@

presentation:hide-text Element<presentation:sound>    + + Child Relations + <presentation:hide-text draw:shape-id="<IDREF>" (presentation:effect="none | fade | move | stripes | open | close | dissolve | wavyline | random | lines | laser | appear | hide | move-short | checkerboard | rotate | stretch" )? + (presentation:direction="none | from-left | from-top | from-right | from-bottom | from-center | from-upper-left | from-upper-right | from-lower-left | from-lower-right | to-left | to-top | to-right | to-bottom | to-upper-left | to-upper-right | to-lower-right | to-lower-left | path | spiral-inward-left | spiral-inward-right | spiral-outward-left | spiral-outward-right | vertical | horizontal | to-center | clockwise | counter-clockwise" )? + (presentation:speed="slow | medium | fast" )? + (presentation:delay="<duration>" )? + (presentation:start-scale="string]" )? + (presentation:path-id="<string>" )? + (<presentation:sound ... >)? + >  +
@@ -8971,6 +12423,16 @@

presentation:notes Element

<office:forms>    + + Child Relations + <presentation:notes (presentation:use-header-name="<string>" )? + (presentation:use-footer-name="<string>" )? + (presentation:use-date-time-name="<string>" )? + (style:page-layout-name="(<NCName>)?" )? + (draw:style-name="(<NCName>)?" )? + (<office:forms ... >)? + (<draw:rect ... > | <draw:line ... > | <draw:polyline ... > | <draw:polygon ... > | <draw:regular-polygon ... > | <draw:path ... > | <draw:circle ... > | <draw:ellipse ... > | <draw:g ... > | <draw:page-thumbnail ... > | <draw:frame ... > | <draw:measure ... > | <draw:caption ... > | <draw:connector ... > | <draw:control ... > | <dr3d:scene ... > | <draw:custom-shape ... > | <draw:a ... >)* >  +
@@ -8988,7 +12450,7 @@

presentation:placeholder Elemen presentation:object  svg:height[2]  svg:width[1]  - svg:x[2]  + svg:x[1]  svg:y[1]    @@ -8997,6 +12459,10 @@

presentation:placeholder Elemen   + + Child Relations + <presentation:placeholder presentation:object="title | outline | subtitle | text | graphic | object | chart | table | orgchart | page | notes | handout | header | footer | date-time | page-number" svg:x="string] | string]" svg:y="string] | string]" svg:width="string] | string]" svg:height="string] | string]" >  +
@@ -9021,6 +12487,12 @@

presentation:play Element

  + + Child Relations + <presentation:play + (draw:shape-id="<IDREF>" (presentation:speed="slow | medium | fast" )? + )>  +
@@ -9057,6 +12529,24 @@

presentation:settings Element< <presentation:show>*    + + Child Relations + <presentation:settings (presentation:start-page="<string>" )? + (presentation:show="<string>" )? + (presentation:full-screen="<boolean>" )? + (presentation:endless="<boolean>" )? + (presentation:pause="<duration>" )? + (presentation:show-logo="<boolean>" )? + (presentation:force-manual="<boolean>" )? + (presentation:mouse-visible="<boolean>" )? + (presentation:mouse-as-pen="<boolean>" )? + (presentation:start-with-navigator="<boolean>" )? + (presentation:animations="enabled | disabled" )? + (presentation:transition-on-click="enabled | disabled" )? + (presentation:stay-on-top="<boolean>" )? + (presentation:show-end-of-presentation-slide="<boolean>" )? + (<presentation:show ... >)* >  +
@@ -9080,6 +12570,10 @@

presentation:show Element

  + + Child Relations + <presentation:show presentation:name="<string>" presentation:pages="<string>" >  +
@@ -9110,6 +12604,17 @@

presentation:show-shape Element< <presentation:sound>    + + Child Relations + <presentation:show-shape draw:shape-id="<IDREF>" (presentation:effect="none | fade | move | stripes | open | close | dissolve | wavyline | random | lines | laser | appear | hide | move-short | checkerboard | rotate | stretch" )? + (presentation:direction="none | from-left | from-top | from-right | from-bottom | from-center | from-upper-left | from-upper-right | from-lower-left | from-lower-right | to-left | to-top | to-right | to-bottom | to-upper-left | to-upper-right | to-lower-right | to-lower-left | path | spiral-inward-left | spiral-inward-right | spiral-outward-left | spiral-outward-right | vertical | horizontal | to-center | clockwise | counter-clockwise" )? + (presentation:speed="slow | medium | fast" )? + (presentation:delay="<duration>" )? + (presentation:start-scale="string]" )? + (presentation:path-id="<string>" )? + (<presentation:sound ... >)? + >  +
@@ -9140,6 +12645,17 @@

presentation:show-text Element<presentation:sound>    + + Child Relations + <presentation:show-text draw:shape-id="<IDREF>" (presentation:effect="none | fade | move | stripes | open | close | dissolve | wavyline | random | lines | laser | appear | hide | move-short | checkerboard | rotate | stretch" )? + (presentation:direction="none | from-left | from-top | from-right | from-bottom | from-center | from-upper-left | from-upper-right | from-lower-left | from-lower-right | to-left | to-top | to-right | to-bottom | to-upper-left | to-upper-right | to-lower-right | to-lower-left | path | spiral-inward-left | spiral-inward-right | spiral-outward-left | spiral-outward-right | vertical | horizontal | to-center | clockwise | counter-clockwise" )? + (presentation:speed="slow | medium | fast" )? + (presentation:delay="<duration>" )? + (presentation:start-scale="string]" )? + (presentation:path-id="<string>" )? + (<presentation:sound ... >)? + >  +
@@ -9173,6 +12689,14 @@

presentation:sound Element

  + + Child Relations + <presentation:sound (presentation:play-full="<boolean>" )? + (xml:id="<ID>" )? + xlink:type="simple" xlink:href="<anyIRI>" (xlink:actuate="onRequest" )? + (xlink:show="new | replace" )? + >  +
@@ -9200,6 +12724,12 @@

script:event-listener Element<   + + Child Relations + <script:event-listener script:event-name="<string>" script:language="<string>" script:macro-name="<string>" | + (xlink:type="simple" xlink:href="<anyIRI>" (xlink:actuate="onRequest" )? + )>  +
@@ -9237,6 +12767,22 @@

style:background-image Element<office:binary-data>    + + Child Relations + <style:background-image (style:repeat="no-repeat | repeat | stretch" )? + (style:position="left | center | right | top | bottom | +START_listleft | center | righttop | center | bottom +END_list | +START_listtop | center | bottomleft | center | right +END_list" )? + (style:filter-name="<string>" )? + (draw:opacity="string]" )? + ( + (xlink:type="simple" xlink:href="<anyIRI>" (xlink:show="embed" )? + (xlink:actuate="onLoad" )? + ) | <office:binary-data ... >)? + >  +
@@ -9339,6 +12885,88 @@

style:chart-properties Element<chart:symbol-image>    + + Child Relations + <style:chart-properties + ( (chart:scale-text="<boolean>" )? + (chart:three-dimensional="<boolean>" )? + (chart:deep="<boolean>" )? + (chart:right-angled-axes="<boolean>" )? + (chart:symbol-type="none" | chart:symbol-type="automatic" | + (chart:symbol-type="named-symbol" chart:symbol-name="square | diamond | arrow-down | arrow-up | arrow-right | arrow-left | bow-tie | hourglass | circle | star | x | plus | asterisk | horizontal-bar | vertical-bar" ) | + (chart:symbol-type="image" <chart:symbol-image ... >))? + (chart:symbol-width="string]" )? + (chart:symbol-height="string]" )? + (chart:sort-by-x-values="<boolean>" )? + (chart:vertical="<boolean>" )? + (chart:connect-bars="<boolean>" )? + (chart:gap-width="<integer>" )? + (chart:overlap="<integer>" )? + (chart:group-bars-per-axis="<boolean>" )? + (chart:japanese-candle-stick="<boolean>" )? + (chart:interpolation="none | cubic-spline | b-spline | step-start | step-end | step-center-x | step-center-y" )? + (chart:spline-order="<positiveInteger>" )? + (chart:spline-resolution="<positiveInteger>" )? + (chart:pie-offset="<nonNegativeInteger>" )? + (chart:angle-offset="<string>" )? + (chart:hole-size="string]" )? + (chart:lines="<boolean>" )? + (chart:solid-type="cuboid | cylinder | cone | pyramid" )? + (chart:stacked="<boolean>" )? + (chart:percentage="<boolean>" )? + (chart:treat-empty-cells="use-zero | leave-gap | ignore" )? + (chart:link-data-style-to-source="<boolean>" )? + (chart:logarithmic="<boolean>" )? + (chart:maximum="<double>" )? + (chart:minimum="<double>" )? + (chart:origin="<double>" )? + (chart:interval-major="<double>" )? + (chart:interval-minor-divisor="<positiveInteger>" )? + (chart:tick-marks-major-inner="<boolean>" )? + (chart:tick-marks-major-outer="<boolean>" )? + (chart:tick-marks-minor-inner="<boolean>" )? + (chart:tick-marks-minor-outer="<boolean>" )? + (chart:reverse-direction="<boolean>" )? + (chart:display-label="<boolean>" )? + (chart:text-overlap="<boolean>" )? + (text:line-break="<boolean>" )? + (chart:label-arrangement="side-by-side | stagger-even | stagger-odd" )? + (style:direction="ltr | ttb" )? + (style:rotation-angle="<string>" )? + (chart:data-label-number="none | value | percentage | value-and-percentage" )? + (chart:data-label-text="<boolean>" )? + (chart:data-label-symbol="<boolean>" )? + (<chart:label-separator ... >)? + (chart:label-position="avoid-overlap | center | top | top-right | right | bottom-right | bottom | bottom-left | left | top-left | inside | outside | near-origin" )? + (chart:label-position-negative="avoid-overlap | center | top | top-right | right | bottom-right | bottom | bottom-left | left | top-left | inside | outside | near-origin" )? + (chart:visible="<boolean>" )? + (chart:auto-position="<boolean>" )? + (chart:auto-size="<boolean>" )? + (chart:mean-value="<boolean>" )? + (chart:error-category="none | variance | standard-deviation | percentage | error-margin | constant | standard-error | cell-range" )? + (chart:error-percentage="<double>" )? + (chart:error-margin="<double>" )? + (chart:error-lower-limit="<double>" )? + (chart:error-upper-limit="<double>" )? + (chart:error-upper-indicator="<boolean>" )? + (chart:error-lower-indicator="<boolean>" )? + (chart:error-lower-range="<string>" )? + (chart:error-upper-range="<string>" )? + (chart:series-source="columns | rows" )? + (chart:regression-type="none | linear | logarithmic | moving-average | exponential | power | polynomial" )? + (chart:regression-max-degree="<positiveInteger>" )? + (chart:regression-force-intercept="<boolean>" )? + (chart:regression-intercept-value="<double>" )? + (chart:regression-name="<string>" )? + (chart:regression-period="<positiveInteger>" )? + (chart:regression-moving-type="prior | central | averaged-abscissa" )? + (chart:axis-position="start | end | <double>" )? + (chart:axis-label-position="near-axis | near-axis-other-side | outside-start | outside-end" )? + (chart:tick-mark-position="at-labels | at-axis | at-labels-and-axis" )? + (chart:include-hidden-cells="<boolean>" )? + (chart:data-label-series="<boolean>" )? + EMPTY)>  +
@@ -9357,7 +12985,7 @@

style:column Element (new in ODF 1 fo:space-after  fo:space-before  fo:start-indent  - style:rel-width[2]  + style:rel-width[3]    @@ -9365,6 +12993,14 @@

style:column Element (new in ODF 1   + + Child Relations + <style:column style:rel-width="string]" (fo:start-indent="string]" )? + (fo:end-indent="string]" )? + (fo:space-before="string]" )? + (fo:space-after="string]" )? + >  +
@@ -9391,6 +13027,14 @@

style:column-sep Element (new   + + Child Relations + <style:column-sep (style:style="none | solid | dotted | dashed | dot-dashed" )? + style:width="string]" (style:height="string]" )? + (style:vertical-align="top | middle | bottom" )? + (style:color="string]" )? + >  +
@@ -9418,6 +13062,12 @@

style:columns Element (new in ODF <style:column-sep>    + + Child Relations + <style:columns fo:column-count="<positiveInteger>" (fo:column-gap="string]" )? + (<style:column-sep ... >)? + (<style:column ... >)* >  +
@@ -9442,6 +13092,14 @@

style:default-page-layout Elem <style:page-layout-properties>    + + Child Relations + <style:default-page-layout + ( (<style:page-layout-properties ... >)? + (<style:header-style ... >)? + (<style:footer-style ... >)? + )>  +
@@ -9485,6 +13143,40 @@

style:default-style Element

<style:text-properties>    + + Child Relations + <style:default-style + (style:family="text" (<style:text-properties ... >)? + ) | + (style:family="paragraph" (<style:paragraph-properties ... >)? + (<style:text-properties ... >)? + ) | + (style:family="section" (<style:section-properties ... >)? + ) | + (style:family="ruby" (<style:ruby-properties ... >)? + ) | + (style:family="table" (<style:table-properties ... >)? + ) | + (style:family="table-column" (<style:table-column-properties ... >)? + ) | + (style:family="table-row" (<style:table-row-properties ... >)? + ) | + (style:family="table-cell" (<style:table-cell-properties ... >)? + (<style:paragraph-properties ... >)? + (<style:text-properties ... >)? + ) | + (style:family="graphic | presentation" (<style:graphic-properties ... >)? + (<style:paragraph-properties ... >)? + (<style:text-properties ... >)? + ) | + (style:family="drawing-page" (<style:drawing-page-properties ... >)? + ) | + (style:family="chart" (<style:chart-properties ... >)? + (<style:graphic-properties ... >)? + (<style:paragraph-properties ... >)? + (<style:text-properties ... >)? + )>  +
@@ -9542,6 +13234,48 @@

style:drawing-page-propert <presentation:sound>    + + Child Relations + <style:drawing-page-properties + ( (draw:fill="none | solid | bitmap | gradient | hatch" )? + (draw:fill-color="string]" )? + (draw:secondary-fill-color="string]" )? + (draw:fill-gradient-name="(<NCName>)?" )? + (draw:gradient-step-count="<nonNegativeInteger>" )? + (draw:fill-hatch-name="(<NCName>)?" )? + (draw:fill-hatch-solid="<boolean>" )? + (draw:fill-image-name="(<NCName>)?" )? + (style:repeat="no-repeat | repeat | stretch" )? + (draw:fill-image-width="string] | string]" )? + (draw:fill-image-height="string] | string]" )? + (draw:fill-image-ref-point-x="string]" )? + (draw:fill-image-ref-point-y="string]" )? + (draw:fill-image-ref-point="top-left | top | top-right | left | center | right | bottom-left | bottom | bottom-right" )? + (draw:tile-repeat-offset=" +START_liststring]horizontal | vertical +END_list" )? + (draw:opacity="string]" )? + (draw:opacity-name="(<NCName>)?" )? + (svg:fill-rule="nonzero | evenodd" )? + (presentation:transition-type="manual | automatic | semi-automatic" )? + (presentation:transition-style="none | fade-from-left | fade-from-top | fade-from-right | fade-from-bottom | fade-from-upperleft | fade-from-upperright | fade-from-lowerleft | fade-from-lowerright | move-from-left | move-from-top | move-from-right | move-from-bottom | move-from-upperleft | move-from-upperright | move-from-lowerleft | move-from-lowerright | uncover-to-left | uncover-to-top | uncover-to-right | uncover-to-bottom | uncover-to-upperleft | uncover-to-upperright | uncover-to-lowerleft | uncover-to-lowerright | fade-to-center | fade-from-center | vertical-stripes | horizontal-stripes | clockwise | counterclockwise | open-vertical | open-horizontal | close-vertical | close-horizontal | wavyline-from-left | wavyline-from-top | wavyline-from-right | wavyline-from-bottom | spiralin-left | spiralin-right | spiralout-left | spiralout-right | roll-from-top | roll-from-left | roll-from-right | roll-from-bottom | stretch-from-left | stretch-from-top | stretch-from-right | stretch-from-bottom | vertical-lines | horizontal-lines | dissolve | random | vertical-checkerboard | horizontal-checkerboard | interlocking-horizontal-left | interlocking-horizontal-right | interlocking-vertical-top | interlocking-vertical-bottom | fly-away | open | close | melt" )? + (presentation:transition-speed="slow | medium | fast" )? + (smil:type="<string>" )? + (smil:subtype="<string>" )? + (smil:direction="forward | reverse" )? + (smil:fadeColor="string]" )? + (presentation:duration="<duration>" )? + (presentation:visibility="visible | hidden" )? + (draw:background-size="full | border" )? + (presentation:background-objects-visible="<boolean>" )? + (presentation:background-visible="<boolean>" )? + (presentation:display-header="<boolean>" )? + (presentation:display-footer="<boolean>" )? + (presentation:display-page-number="<boolean>" )? + (presentation:display-date-time="<boolean>" )? + (<presentation:sound ... >)? + )>  +
@@ -9567,6 +13301,14 @@

style:drop-cap Element (new in O   + + Child Relations + <style:drop-cap (style:length="word | <positiveInteger>" )? + (style:lines="<positiveInteger>" )? + (style:distance="string]" )? + (style:style-name="(<NCName>)?" )? + >  +
@@ -9628,6 +13370,49 @@

style:font-face Element

<svg:font-face-src>    + + Child Relations + <style:font-face (svg:font-family="<string>" )? + (svg:font-style="normal | italic | oblique" )? + (svg:font-variant="normal | small-caps" )? + (svg:font-weight="normal | bold | 100 | 200 | 300 | 400 | 500 | 600 | 700 | 800 | 900" )? + (svg:font-stretch="normal | ultra-condensed | extra-condensed | condensed | semi-condensed | semi-expanded | expanded | extra-expanded | ultra-expanded" )? + (svg:font-size="string]" )? + (svg:unicode-range="<string>" )? + (svg:units-per-em="<integer>" )? + (svg:panose-1="<string>" )? + (svg:stemv="<integer>" )? + (svg:stemh="<integer>" )? + (svg:slope="<integer>" )? + (svg:cap-height="<integer>" )? + (svg:x-height="<integer>" )? + (svg:accent-height="<integer>" )? + (svg:ascent="<integer>" )? + (svg:descent="<integer>" )? + (svg:widths="<string>" )? + (svg:bbox="<string>" )? + (svg:ideographic="<integer>" )? + (svg:alphabetic="<integer>" )? + (svg:mathematical="<integer>" )? + (svg:hanging="<integer>" )? + (svg:v-ideographic="<integer>" )? + (svg:v-alphabetic="<integer>" )? + (svg:v-mathematical="<integer>" )? + (svg:v-hanging="<integer>" )? + (svg:underline-position="<integer>" )? + (svg:underline-thickness="<integer>" )? + (svg:strikethrough-position="<integer>" )? + (svg:strikethrough-thickness="<integer>" )? + (svg:overline-position="<integer>" )? + (svg:overline-thickness="<integer>" )? + style:name="<string>" (style:font-adornments="<string>" )? + (style:font-family-generic="roman | swiss | modern | decorative | script | system" )? + (style:font-pitch="fixed | variable" )? + (style:font-charset="string]" )? + (<svg:font-face-src ... >)? + (<svg:definition-src ... >)? + >  +
@@ -9675,6 +13460,23 @@

style:footer Element

<text:variable-decls>    + + Child Relations + <style:footer (style:display="<boolean>" )? + + ( (<text:tracked-changes ... >)? + + ( (<text:variable-decls ... >)? + (<text:sequence-decls ... >)? + (<text:user-field-decls ... >)? + (<text:dde-connection-decls ... >)? + (<text:alphabetical-index-auto-mark-file ... >)? + )(<text:h ... > | <text:p ... > | <text:list ... > | <table:table ... > | <text:section ... > | <text:table-of-content ... > | <text:illustration-index ... > | <text:table-index ... > | <text:object-index ... > | <text:user-index ... > | <text:alphabetical-index ... > | <text:bibliography ... > | <text:index-title ... > | <text:change ... > | <text:change-start ... > | <text:change-end ... >)* ) | + ( (<style:region-left ... >)? + (<style:region-center ... >)? + (<style:region-right ... >)? + )>  +
@@ -9722,6 +13524,23 @@

style:footer-first Element ( <text:variable-decls>    + + Child Relations + <style:footer-first (style:display="<boolean>" )? + + ( (<text:tracked-changes ... >)? + + ( (<text:variable-decls ... >)? + (<text:sequence-decls ... >)? + (<text:user-field-decls ... >)? + (<text:dde-connection-decls ... >)? + (<text:alphabetical-index-auto-mark-file ... >)? + )(<text:h ... > | <text:p ... > | <text:list ... > | <table:table ... > | <text:section ... > | <text:table-of-content ... > | <text:illustration-index ... > | <text:table-index ... > | <text:object-index ... > | <text:user-index ... > | <text:alphabetical-index ... > | <text:bibliography ... > | <text:index-title ... > | <text:change ... > | <text:change-start ... > | <text:change-end ... >)* ) | + ( (<style:region-left ... >)? + (<style:region-center ... >)? + (<style:region-right ... >)? + )>  +
@@ -9769,6 +13588,23 @@

style:footer-left Element

<text:variable-decls>    + + Child Relations + <style:footer-left (style:display="<boolean>" )? + + ( (<text:tracked-changes ... >)? + + ( (<text:variable-decls ... >)? + (<text:sequence-decls ... >)? + (<text:user-field-decls ... >)? + (<text:dde-connection-decls ... >)? + (<text:alphabetical-index-auto-mark-file ... >)? + )(<text:h ... > | <text:p ... > | <text:list ... > | <table:table ... > | <text:section ... > | <text:table-of-content ... > | <text:illustration-index ... > | <text:table-index ... > | <text:object-index ... > | <text:user-index ... > | <text:alphabetical-index ... > | <text:bibliography ... > | <text:index-title ... > | <text:change ... > | <text:change-start ... > | <text:change-end ... >)* ) | + ( (<style:region-left ... >)? + (<style:region-center ... >)? + (<style:region-right ... >)? + )>  +
@@ -9792,6 +13628,11 @@

style:footer-style Element

<style:header-footer-properties>    + + Child Relations + <style:footer-style (<style:header-footer-properties ... >)? + >  +
@@ -9811,7 +13652,7 @@

style:footnote-sep Element ( style:distance-after-sep  style:distance-before-sep  style:line-style  - style:rel-width[1]  + style:rel-width[2]  style:width[1]    @@ -9820,6 +13661,18 @@

style:footnote-sep Element (   + + Child Relations + <style:footnote-sep + ( (style:width="string]" )? + (style:rel-width="string]" )? + (style:color="string]" )? + (style:line-style="none | solid | dotted | dash | long-dash | dot-dash | dot-dot-dash | wave" )? + (style:adjustment="left | center | right" )? + (style:distance-before-sep="string]" )? + (style:distance-after-sep="string]" )? + )>  +
@@ -9847,7 +13700,7 @@

style:graphic-properties Elemen dr3d:emissive-color  dr3d:end-angle  dr3d:horizontal-segments  - dr3d:lighting-mode[2]  + dr3d:lighting-mode[1]  dr3d:normals-direction  dr3d:normals-kind  dr3d:shadow  @@ -9950,7 +13803,7 @@

style:graphic-properties Elemen fo:clip  fo:margin  fo:margin-bottom  - fo:margin-left[2]  + fo:margin-left[1]  fo:margin-right  fo:margin-top  fo:max-height  @@ -9977,9 +13830,9 @@

style:graphic-properties Elemen style:number-wrapped-paragraphs  style:overflow-behavior  style:print-content  - style:protect[1]  + style:protect[2]  style:rel-height  - style:rel-width[3]  + style:rel-width[1]  style:repeat  style:run-through  style:shadow  @@ -9998,7 +13851,7 @@

style:graphic-properties Elemen svg:stroke-opacity  svg:stroke-width  svg:width[2]  - svg:x[1]  + svg:x[2]  svg:y[2]  text:anchor-page-number  text:anchor-type  @@ -10019,6 +13872,216 @@

style:graphic-properties Elemen <text:list-style>    + + Child Relations + <style:graphic-properties + ( (draw:stroke="none | dash | solid" )? + (draw:stroke-dash="(<NCName>)?" )? + (draw:stroke-dash-names=" +START_list(<NCName>)* +END_list" )? + (svg:stroke-width="string]" )? + (svg:stroke-color="string]" )? + (draw:marker-start="(<NCName>)?" )? + (draw:marker-end="(<NCName>)?" )? + (draw:marker-start-width="string]" )? + (draw:marker-end-width="string]" )? + (draw:marker-start-center="<boolean>" )? + (draw:marker-end-center="<boolean>" )? + (svg:stroke-opacity="double] | string]" )? + (draw:stroke-linejoin="miter | round | bevel | middle | none" )? + (svg:stroke-linecap="butt | square | round" )? + (draw:symbol-color="string]" )? + (text:animation="none | scroll | alternate | slide" )? + (text:animation-direction="left | right | up | down" )? + (text:animation-start-inside="<boolean>" )? + (text:animation-stop-inside="<boolean>" )? + (text:animation-repeat="<nonNegativeInteger>" )? + (text:animation-delay="<duration>" )? + (text:animation-steps="string]" )? + (draw:auto-grow-width="<boolean>" )? + (draw:auto-grow-height="<boolean>" )? + (draw:fit-to-size="<boolean>" )? + (draw:fit-to-contour="<boolean>" )? + (draw:textarea-vertical-align="top | middle | bottom | justify" )? + (draw:textarea-horizontal-align="left | center | right | justify" )? + (fo:wrap-option="no-wrap | wrap" )? + (style:shrink-to-fit="<boolean>" )? + (draw:color-mode="greyscale | mono | watermark | standard" )? + (draw:color-inversion="<boolean>" )? + (draw:luminance="string]" )? + (draw:contrast="string]" )? + (draw:gamma="string]" )? + (draw:red="string]" )? + (draw:green="string]" )? + (draw:blue="string]" )? + (draw:image-opacity="string]" )? + (draw:shadow="visible | hidden" )? + (draw:shadow-offset-x="string]" )? + (draw:shadow-offset-y="string]" )? + (draw:shadow-color="string]" )? + (draw:shadow-opacity="string]" )? + (draw:start-line-spacing-horizontal="string]" )? + (draw:start-line-spacing-vertical="string]" )? + (draw:end-line-spacing-horizontal="string]" )? + (draw:end-line-spacing-vertical="string]" )? + (draw:line-distance="string]" )? + (draw:guide-overhang="string]" )? + (draw:guide-distance="string]" )? + (draw:start-guide="string]" )? + (draw:end-guide="string]" )? + (draw:placing="below | above" )? + (draw:parallel="<boolean>" )? + (draw:measure-align="automatic | left-outside | inside | right-outside" )? + (draw:measure-vertical-align="automatic | above | below | center" )? + (draw:unit="automatic | mm | cm | m | km | pt | pc | inch | ft | mi" )? + (draw:show-unit="<boolean>" )? + (draw:decimal-places="<nonNegativeInteger>" )? + (draw:caption-type="straight-line | angled-line | angled-connector-line" )? + (draw:caption-angle-type="fixed | free" )? + (draw:caption-angle="<string>" )? + (draw:caption-gap="string]" )? + (draw:caption-escape-direction="horizontal | vertical | auto" )? + (draw:caption-escape="string] | string]" )? + (draw:caption-line-length="string]" )? + (draw:caption-fit-line-length="<boolean>" )? + (dr3d:horizontal-segments="<nonNegativeInteger>" )? + (dr3d:vertical-segments="<nonNegativeInteger>" )? + (dr3d:edge-rounding="string]" )? + (dr3d:edge-rounding-mode="correct | attractive" )? + (dr3d:back-scale="string]" )? + (dr3d:depth="string]" )? + (dr3d:backface-culling="enabled | disabled" )? + (dr3d:end-angle="<string>" )? + (dr3d:close-front="<boolean>" )? + (dr3d:close-back="<boolean>" )? + (dr3d:lighting-mode="standard | double-sided" )? + (dr3d:normals-kind="object | flat | sphere" )? + (dr3d:normals-direction="normal | inverse" )? + (dr3d:texture-generation-mode-x="object | parallel | sphere" )? + (dr3d:texture-generation-mode-y="object | parallel | sphere" )? + (dr3d:texture-kind="luminance | intensity | color" )? + (dr3d:texture-filter="enabled | disabled" )? + (dr3d:texture-mode="replace | modulate | blend" )? + (dr3d:ambient-color="string]" )? + (dr3d:emissive-color="string]" )? + (dr3d:specular-color="string]" )? + (dr3d:diffuse-color="string]" )? + (dr3d:shininess="string]" )? + (dr3d:shadow="visible | hidden" )? + + ( + ( (svg:width="string]" )? + (svg:height="string]" )? + ) (style:rel-width="string] | scale | scale-min" )? + (style:rel-height="string] | scale | scale-min" )? + ) (fo:min-width="string] | string]" )? + (fo:min-height="string] | string]" )? + (fo:max-height="string] | string]" )? + (fo:max-width="string] | string]" )? + + ( (fo:margin-left="string] | string]" )? + (fo:margin-right="string] | string]" )? + ) + ( (fo:margin-top="string] | string]" )? + (fo:margin-bottom="string] | string]" )? + ) (fo:margin="string] | string]" )? + (style:print-content="<boolean>" )? + (style:protect="none | +START_list(content | position | size)+ +END_list" )? + (style:horizontal-pos="left | center | right | from-left | inside | outside | from-inside" )? + (svg:x="string]" )? + (style:horizontal-rel="page | page-content | page-start-margin | page-end-margin | frame | frame-content | frame-start-margin | frame-end-margin | paragraph | paragraph-content | paragraph-start-margin | paragraph-end-margin | char" )? + + ( (style:vertical-pos="top | middle | bottom | from-top | below" )? + (svg:y="string]" )? + ) (style:vertical-rel="page | page-content | frame | frame-content | paragraph | paragraph-content | char | line | baseline | text" )? + (text:anchor-type="page | frame | paragraph | char | as-char" )? + (text:anchor-page-number="<positiveInteger>" )? + + ( (fo:border="<string>" )? + (fo:border-top="<string>" )? + (fo:border-bottom="<string>" )? + (fo:border-left="<string>" )? + (fo:border-right="<string>" )? + ) + ( (style:border-line-width=" +START_liststring]string]string] +END_list" )? + (style:border-line-width-top=" +START_liststring]string]string] +END_list" )? + (style:border-line-width-bottom=" +START_liststring]string]string] +END_list" )? + (style:border-line-width-left=" +START_liststring]string]string] +END_list" )? + (style:border-line-width-right=" +START_liststring]string]string] +END_list" )? + ) + ( (fo:padding="string]" )? + (fo:padding-top="string]" )? + (fo:padding-bottom="string]" )? + (fo:padding-left="string]" )? + (fo:padding-right="string]" )? + ) (style:shadow="none | <string>" )? + (fo:background-color="transparent | string]" )? + (style:background-transparency="string]" )? + (style:editable="<boolean>" )? + (style:wrap="none | left | right | parallel | dynamic | run-through | biggest" )? + (style:wrap-dynamic-threshold="string]" )? + (style:number-wrapped-paragraphs="no-limit | <positiveInteger>" )? + (style:wrap-contour="<boolean>" )? + (style:wrap-contour-mode="full | outside" )? + (style:run-through="foreground | background" )? + (style:flow-with-text="<boolean>" )? + (style:overflow-behavior="clip | auto-create-new-frame" )? + (style:mirror="none | vertical | horizontal | horizontal-on-odd | horizontal-on-even | +START_listverticalhorizontal | horizontal-on-odd | horizontal-on-even +END_list | +START_listhorizontal | horizontal-on-odd | horizontal-on-evenvertical +END_list" )? + (fo:clip="auto | string]" )? + (draw:wrap-influence-on-position="iterative | once-concurrent | once-successive" )? + (style:writing-mode="lr-tb | rl-tb | tb-rl | tb-lr | lr | rl | tb | page" )? + (draw:frame-display-scrollbar="<boolean>" )? + (draw:frame-display-border="<boolean>" )? + (draw:frame-margin-horizontal="string]" )? + (draw:frame-margin-vertical="string]" )? + (draw:visible-area-left="string]" )? + (draw:visible-area-top="string]" )? + (draw:visible-area-width="string]" )? + (draw:visible-area-height="string]" )? + (draw:draw-aspect="content | thumbnail | icon | print-view" )? + (draw:ole-draw-aspect="<nonNegativeInteger>" )? + (draw:fill="none | solid | bitmap | gradient | hatch" )? + (draw:fill-color="string]" )? + (draw:secondary-fill-color="string]" )? + (draw:fill-gradient-name="(<NCName>)?" )? + (draw:gradient-step-count="<nonNegativeInteger>" )? + (draw:fill-hatch-name="(<NCName>)?" )? + (draw:fill-hatch-solid="<boolean>" )? + (draw:fill-image-name="(<NCName>)?" )? + (style:repeat="no-repeat | repeat | stretch" )? + (draw:fill-image-width="string] | string]" )? + (draw:fill-image-height="string] | string]" )? + (draw:fill-image-ref-point-x="string]" )? + (draw:fill-image-ref-point-y="string]" )? + (draw:fill-image-ref-point="top-left | top | top-right | left | center | right | bottom-left | bottom | bottom-right" )? + (draw:tile-repeat-offset=" +START_liststring]horizontal | vertical +END_list" )? + (draw:opacity="string]" )? + (draw:opacity-name="(<NCName>)?" )? + (svg:fill-rule="nonzero | evenodd" )? + (<text:list-style ... >)? + (<style:background-image ... >)? + (<style:columns ... >)? + )>  +
@@ -10064,6 +14127,15 @@

style:handout-master Element<draw:regular-polygon>*    + + Child Relations + <style:handout-master (presentation:use-header-name="<string>" )? + (presentation:use-footer-name="<string>" )? + (presentation:use-date-time-name="<string>" )? + (presentation:presentation-page-layout-name="(<NCName>)?" )? + style:page-layout-name="(<NCName>)?" (draw:style-name="(<NCName>)?" )? + (<draw:rect ... > | <draw:line ... > | <draw:polyline ... > | <draw:polygon ... > | <draw:regular-polygon ... > | <draw:path ... > | <draw:circle ... > | <draw:ellipse ... > | <draw:g ... > | <draw:page-thumbnail ... > | <draw:frame ... > | <draw:measure ... > | <draw:caption ... > | <draw:connector ... > | <draw:control ... > | <dr3d:scene ... > | <draw:custom-shape ... > | <draw:a ... >)* >  +
@@ -10111,6 +14183,23 @@

style:header Element

<text:variable-decls>    + + Child Relations + <style:header (style:display="<boolean>" )? + + ( (<text:tracked-changes ... >)? + + ( (<text:variable-decls ... >)? + (<text:sequence-decls ... >)? + (<text:user-field-decls ... >)? + (<text:dde-connection-decls ... >)? + (<text:alphabetical-index-auto-mark-file ... >)? + )(<text:h ... > | <text:p ... > | <text:list ... > | <table:table ... > | <text:section ... > | <text:table-of-content ... > | <text:illustration-index ... > | <text:table-index ... > | <text:object-index ... > | <text:user-index ... > | <text:alphabetical-index ... > | <text:bibliography ... > | <text:index-title ... > | <text:change ... > | <text:change-start ... > | <text:change-end ... >)* ) | + ( (<style:region-left ... >)? + (<style:region-center ... >)? + (<style:region-right ... >)? + )>  +
@@ -10158,6 +14247,23 @@

style:header-first Element ( <text:variable-decls>    + + Child Relations + <style:header-first (style:display="<boolean>" )? + + ( (<text:tracked-changes ... >)? + + ( (<text:variable-decls ... >)? + (<text:sequence-decls ... >)? + (<text:user-field-decls ... >)? + (<text:dde-connection-decls ... >)? + (<text:alphabetical-index-auto-mark-file ... >)? + )(<text:h ... > | <text:p ... > | <text:list ... > | <table:table ... > | <text:section ... > | <text:table-of-content ... > | <text:illustration-index ... > | <text:table-index ... > | <text:object-index ... > | <text:user-index ... > | <text:alphabetical-index ... > | <text:bibliography ... > | <text:index-title ... > | <text:change ... > | <text:change-start ... > | <text:change-end ... >)* ) | + ( (<style:region-left ... >)? + (<style:region-center ... >)? + (<style:region-right ... >)? + )>  +
@@ -10181,7 +14287,7 @@

style:header-footer-prope fo:border-top  fo:margin  fo:margin-bottom  - fo:margin-left[2]  + fo:margin-left[1]  fo:margin-right  fo:margin-top  fo:min-height[2]  @@ -10206,6 +14312,52 @@

style:header-footer-prope <style:background-image>    + + Child Relations + <style:header-footer-properties + ( (svg:height="string]" )? + (fo:min-height="string]" )? + + ( (fo:margin-left="string] | string]" )? + (fo:margin-right="string] | string]" )? + ) + ( (fo:margin-top="string] | string]" )? + (fo:margin-bottom="string] | string]" )? + ) (fo:margin="string] | string]" )? + + ( (fo:border="<string>" )? + (fo:border-top="<string>" )? + (fo:border-bottom="<string>" )? + (fo:border-left="<string>" )? + (fo:border-right="<string>" )? + ) + ( (style:border-line-width=" +START_liststring]string]string] +END_list" )? + (style:border-line-width-top=" +START_liststring]string]string] +END_list" )? + (style:border-line-width-bottom=" +START_liststring]string]string] +END_list" )? + (style:border-line-width-left=" +START_liststring]string]string] +END_list" )? + (style:border-line-width-right=" +START_liststring]string]string] +END_list" )? + ) + ( (fo:padding="string]" )? + (fo:padding-top="string]" )? + (fo:padding-bottom="string]" )? + (fo:padding-left="string]" )? + (fo:padding-right="string]" )? + ) (fo:background-color="transparent | string]" )? + (style:shadow="none | <string>" )? + (style:dynamic-spacing="<boolean>" )? + (<style:background-image ... >)? + )>  +
@@ -10253,6 +14405,23 @@

style:header-left Element

<text:variable-decls>    + + Child Relations + <style:header-left (style:display="<boolean>" )? + + ( (<text:tracked-changes ... >)? + + ( (<text:variable-decls ... >)? + (<text:sequence-decls ... >)? + (<text:user-field-decls ... >)? + (<text:dde-connection-decls ... >)? + (<text:alphabetical-index-auto-mark-file ... >)? + )(<text:h ... > | <text:p ... > | <text:list ... > | <table:table ... > | <text:section ... > | <text:table-of-content ... > | <text:illustration-index ... > | <text:table-index ... > | <text:object-index ... > | <text:user-index ... > | <text:alphabetical-index ... > | <text:bibliography ... > | <text:index-title ... > | <text:change ... > | <text:change-start ... > | <text:change-end ... >)* ) | + ( (<style:region-left ... >)? + (<style:region-center ... >)? + (<style:region-right ... >)? + )>  +
@@ -10276,6 +14445,11 @@

style:header-style Element

<style:header-footer-properties>    + + Child Relations + <style:header-style (<style:header-footer-properties ... >)? + >  +
@@ -10290,7 +14464,7 @@

style:list-level-label- Attributes - fo:margin-left[1]  + fo:margin-left[2]  fo:text-indent[2]  text:label-followed-by  text:list-tab-stop-position  @@ -10301,6 +14475,13 @@

style:list-level-label-   + + Child Relations + <style:list-level-label-alignment text:label-followed-by="listtab | space | nothing" (text:list-tab-stop-position="string]" )? + (fo:text-indent="string]" )? + (fo:margin-left="string]" )? + >  +
@@ -10337,6 +14518,24 @@

style:list-level-properties <style:list-level-label-alignment>    + + Child Relations + <style:list-level-properties + ( (fo:text-align="start | end | left | right | center | justify" )? + (text:space-before="string]" )? + (text:min-label-width="string]" )? + (text:min-label-distance="string]" )? + (style:font-name="<string>" )? + (fo:width="string]" )? + (fo:height="string]" )? + (style:vertical-rel="page | page-content | frame | frame-content | paragraph | paragraph-content | char | line | baseline | text" )? + + ( (style:vertical-pos="top | middle | bottom | from-top | below" )? + (svg:y="string]" )? + ) (text:list-level-position-and-space-mode="label-width-and-position | label-alignment" )? + (<style:list-level-label-alignment ... >)? + )>  +
@@ -10368,6 +14567,11 @@

style:map Element

  + + Child Relations + <style:map style:condition="<string>" style:apply-style-name="(<NCName>)?" (style:base-cell-address="string]" )? + >  +
@@ -10432,6 +14636,24 @@

style:master-page Element

<style:header-left>    + + Child Relations + <style:master-page style:name="<NCName>" (style:display-name="<string>" )? + style:page-layout-name="(<NCName>)?" (draw:style-name="(<NCName>)?" )? + (style:next-style-name="(<NCName>)?" )? + (<style:header ... > (<style:header-left ... >)? + (<style:header-first ... >)? + )? + (<style:footer ... > (<style:footer-left ... >)? + (<style:footer-first ... >)? + )? + (<draw:layer-set ... >)? + ( (<office:forms ... >)? + )? + (<draw:rect ... > | <draw:line ... > | <draw:polyline ... > | <draw:polygon ... > | <draw:regular-polygon ... > | <draw:path ... > | <draw:circle ... > | <draw:ellipse ... > | <draw:g ... > | <draw:page-thumbnail ... > | <draw:frame ... > | <draw:measure ... > | <draw:caption ... > | <draw:connector ... > | <draw:control ... > | <dr3d:scene ... > | <draw:custom-shape ... > | <draw:a ... >)* (<anim:animate ... > | <anim:set ... > | <anim:animateMotion ... > | <anim:animateColor ... > | <anim:animateTransform ... > | <anim:transitionFilter ... > | <anim:par ... > | <anim:seq ... > | <anim:iterate ... > | <anim:audio ... > | <anim:command ... >)? + (<presentation:notes ... >)? + >  +
@@ -10458,6 +14680,15 @@

style:page-layout Element

<style:page-layout-properties>    + + Child Relations + <style:page-layout style:name="<NCName>" (style:page-usage="all | left | right | mirrored" )? + + ( (<style:page-layout-properties ... >)? + (<style:header-style ... >)? + (<style:footer-style ... >)? + )>  +
@@ -10481,7 +14712,7 @@

style:page-layout-propertie fo:border-top  fo:margin  fo:margin-bottom  - fo:margin-left[2]  + fo:margin-left[1]  fo:margin-right  fo:margin-top  fo:padding  @@ -10536,6 +14767,85 @@

style:page-layout-propertie <style:footnote-sep>    + + Child Relations + <style:page-layout-properties + ( (fo:page-width="string]" )? + (fo:page-height="string]" )? + ( (style:num-format="(1 | i | I | <string>)?" | + (style:num-format="a | A" (style:num-letter-sync="<boolean>" )? + ))? + )? + + ( (style:num-prefix="<string>" )? + (style:num-suffix="<string>" )? + ) (style:paper-tray-name="default | <string>" )? + (style:print-orientation="portrait | landscape" )? + + ( (fo:margin-left="string] | string]" )? + (fo:margin-right="string] | string]" )? + ) + ( (fo:margin-top="string] | string]" )? + (fo:margin-bottom="string] | string]" )? + ) (fo:margin="string] | string]" )? + + ( (fo:border="<string>" )? + (fo:border-top="<string>" )? + (fo:border-bottom="<string>" )? + (fo:border-left="<string>" )? + (fo:border-right="<string>" )? + ) + ( (style:border-line-width=" +START_liststring]string]string] +END_list" )? + (style:border-line-width-top=" +START_liststring]string]string] +END_list" )? + (style:border-line-width-bottom=" +START_liststring]string]string] +END_list" )? + (style:border-line-width-left=" +START_liststring]string]string] +END_list" )? + (style:border-line-width-right=" +START_liststring]string]string] +END_list" )? + ) + ( (fo:padding="string]" )? + (fo:padding-top="string]" )? + (fo:padding-bottom="string]" )? + (fo:padding-left="string]" )? + (fo:padding-right="string]" )? + ) (style:shadow="none | <string>" )? + (fo:background-color="transparent | string]" )? + (style:register-truth-ref-style-name="(<NCName>)?" )? + (style:print=" +START_list(headers | grid | annotations | objects | charts | drawings | formulas | zero-values)* +END_list" )? + (style:print-page-order="ttb | ltr" )? + (style:first-page-number="<positiveInteger> | continue" )? + style:scale-to="string]" | EMPTY | style:scale-to-pages="<positiveInteger>" | + ( (style:scale-to-X="<positiveInteger>" )? + (style:scale-to-Y="<positiveInteger>" )? + ) (style:table-centering="horizontal | vertical | both | none" )? + (style:footnote-max-height="string]" )? + (style:writing-mode="lr-tb | rl-tb | tb-rl | tb-lr | lr | rl | tb | page" )? + (style:layout-grid-mode="none | line | both" )? + (style:layout-grid-standard-mode="<boolean>" )? + (style:layout-grid-base-height="string]" )? + (style:layout-grid-ruby-height="string]" )? + (style:layout-grid-lines="<positiveInteger>" )? + (style:layout-grid-base-width="string]" )? + (style:layout-grid-color="string]" )? + (style:layout-grid-ruby-below="<boolean>" )? + (style:layout-grid-print="<boolean>" )? + (style:layout-grid-display="<boolean>" )? + (style:layout-grid-snap-to="<boolean>" )? + (<style:background-image ... >)? + (<style:columns ... >)? + (<style:footnote-sep ... >)? + )>  +
@@ -10566,7 +14876,7 @@

style:paragraph-properties El fo:line-height  fo:margin  fo:margin-bottom  - fo:margin-left[2]  + fo:margin-left[1]  fo:margin-right  fo:margin-top  fo:orphans  @@ -10615,6 +14925,84 @@

style:paragraph-properties El <style:tab-stops>    + + Child Relations + <style:paragraph-properties + ( (style:contextual-spacing="<boolean>" )? + (fo:line-height="normal | string] | string]" )? + (style:line-height-at-least="string]" )? + (style:line-spacing="string]" )? + (style:font-independent-line-spacing="<boolean>" )? + (fo:text-align="start | end | left | right | center | justify" )? + (fo:text-align-last="start | center | justify" )? + (style:justify-single-word="<boolean>" )? + (fo:keep-together="auto | always" )? + (fo:widows="<nonNegativeInteger>" )? + (fo:orphans="<nonNegativeInteger>" )? + (style:tab-stop-distance="string]" )? + (fo:hyphenation-keep="auto | page" )? + (fo:hyphenation-ladder-count="no-limit | <positiveInteger>" )? + (style:register-true="<boolean>" )? + + ( (fo:margin-left="string] | string]" )? + (fo:margin-right="string] | string]" )? + ) (fo:text-indent="string] | string]" )? + (style:auto-text-indent="<boolean>" )? + + ( (fo:margin-top="string] | string]" )? + (fo:margin-bottom="string] | string]" )? + ) (fo:margin="string] | string]" )? + + ( (fo:break-before="auto | column | page" )? + (fo:break-after="auto | column | page" )? + ) (fo:background-color="transparent | string]" )? + + ( (fo:border="<string>" )? + (fo:border-top="<string>" )? + (fo:border-bottom="<string>" )? + (fo:border-left="<string>" )? + (fo:border-right="<string>" )? + ) + ( (style:border-line-width=" +START_liststring]string]string] +END_list" )? + (style:border-line-width-top=" +START_liststring]string]string] +END_list" )? + (style:border-line-width-bottom=" +START_liststring]string]string] +END_list" )? + (style:border-line-width-left=" +START_liststring]string]string] +END_list" )? + (style:border-line-width-right=" +START_liststring]string]string] +END_list" )? + ) (style:join-border="<boolean>" )? + + ( (fo:padding="string]" )? + (fo:padding-top="string]" )? + (fo:padding-bottom="string]" )? + (fo:padding-left="string]" )? + (fo:padding-right="string]" )? + ) (style:shadow="none | <string>" )? + (fo:keep-with-next="auto | always" )? + (text:number-lines="<boolean>" )? + (text:line-number="<nonNegativeInteger>" )? + (style:text-autospace="none | ideograph-alpha" )? + (style:punctuation-wrap="simple | hanging" )? + (style:line-break="normal | strict" )? + (style:vertical-align="top | middle | bottom | auto | baseline" )? + (style:writing-mode="lr-tb | rl-tb | tb-rl | tb-lr | lr | rl | tb | page" )? + (style:writing-mode-automatic="<boolean>" )? + (style:snap-to-layout-grid="<boolean>" )? + (style:page-number="<nonNegativeInteger> | auto" )? + (style:background-transparency="string]" )? + (<style:tab-stops ... >)? + (<style:drop-cap ... >)? + (<style:background-image ... >)? + )>  +
@@ -10639,6 +15027,11 @@

style:presentation-page-l <presentation:placeholder>*    + + Child Relations + <style:presentation-page-layout style:name="<NCName>" (style:display-name="<string>" )? + (<presentation:placeholder ... >)* >  +
@@ -10666,6 +15059,10 @@

style:region-center Element

<text:p>*    + + Child Relations + <style:region-center (<text:p ... >)* >  +
@@ -10693,6 +15090,10 @@

style:region-left Element

<text:p>*    + + Child Relations + <style:region-left (<text:p ... >)* >  +
@@ -10720,6 +15121,10 @@

style:region-right Element

<text:p>*    + + Child Relations + <style:region-right (<text:p ... >)* >  +
@@ -10744,6 +15149,13 @@

style:ruby-properties Element<   + + Child Relations + <style:ruby-properties + ( (style:ruby-position="above | below" )? + (style:ruby-align="left | center | right | distribute-letter | distribute-space" )? + EMPTY)>  +
@@ -10760,10 +15172,10 @@

style:section-properties Elemen Attributes fo:background-color  - fo:margin-left[2]  + fo:margin-left[1]  fo:margin-right  style:editable  - style:protect[2]  + style:protect[1]  style:writing-mode  text:dont-balance-text-columns    @@ -10776,6 +15188,21 @@

style:section-properties Elemen <text:notes-configuration>*    + + Child Relations + <style:section-properties + ( (fo:background-color="transparent | string]" )? + + ( (fo:margin-left="string] | string]" )? + (fo:margin-right="string] | string]" )? + ) (style:protect="<boolean>" )? + (style:editable="<boolean>" )? + (text:dont-balance-text-columns="<boolean>" )? + (style:writing-mode="lr-tb | rl-tb | tb-rl | tb-lr | lr | rl | tb | page" )? + (<style:background-image ... >)? + (<style:columns ... >)? + (<text:notes-configuration ... >)* )>  +
@@ -10833,6 +15260,51 @@

style:style Element

<style:text-properties>    + + Child Relations + <style:style style:name="<NCName>" (style:display-name="<string>" )? + (style:parent-style-name="(<NCName>)?" )? + (style:next-style-name="(<NCName>)?" )? + (style:list-level="(<positiveInteger>)?" )? + (style:list-style-name="(<NCName>)?" )? + (style:master-page-name="(<NCName>)?" )? + (style:auto-update="<boolean>" )? + (style:data-style-name="(<NCName>)?" )? + (style:percentage-data-style-name="(<NCName>)?" )? + (style:class="<string>" )? + (style:default-outline-level="(<positiveInteger>)?" )? + + (style:family="text" (<style:text-properties ... >)? + ) | + (style:family="paragraph" (<style:paragraph-properties ... >)? + (<style:text-properties ... >)? + ) | + (style:family="section" (<style:section-properties ... >)? + ) | + (style:family="ruby" (<style:ruby-properties ... >)? + ) | + (style:family="table" (<style:table-properties ... >)? + ) | + (style:family="table-column" (<style:table-column-properties ... >)? + ) | + (style:family="table-row" (<style:table-row-properties ... >)? + ) | + (style:family="table-cell" (<style:table-cell-properties ... >)? + (<style:paragraph-properties ... >)? + (<style:text-properties ... >)? + ) | + (style:family="graphic | presentation" (<style:graphic-properties ... >)? + (<style:paragraph-properties ... >)? + (<style:text-properties ... >)? + ) | + (style:family="drawing-page" (<style:drawing-page-properties ... >)? + ) | + (style:family="chart" (<style:chart-properties ... >)? + (<style:graphic-properties ... >)? + (<style:paragraph-properties ... >)? + (<style:text-properties ... >)? + )(<style:map ... >)* >  +
@@ -10855,8 +15327,8 @@

style:tab-stop Element (new in O style:leader-type  style:leader-width  style:position[1]  - style:type[1]  - style:type[4]  + style:type[2]  + style:type[3]    @@ -10864,6 +15336,17 @@

style:tab-stop Element (new in O   + + Child Relations + <style:tab-stop style:position="string]" style:type="left | center | right" | EMPTY | + (style:type="char" style:char="string]" ) (style:leader-type="none | single | double" )? + (style:leader-style="none | solid | dotted | dash | long-dash | dot-dash | dot-dot-dash | wave" )? + (style:leader-width="auto | normal | bold | thin | medium | thick | <positiveInteger> | string] | string]" )? + (style:leader-color="font-color | string]" )? + (style:leader-text="string]" )? + (style:leader-text-style="(<NCName>)?" )? + >  +
@@ -10886,6 +15369,10 @@

style:tab-stops Element (new in <style:tab-stop>*    + + Child Relations + <style:tab-stops (<style:tab-stop ... >)* >  +
@@ -10943,6 +15430,65 @@

style:table-cell-properties <style:background-image>    + + Child Relations + <style:table-cell-properties + ( (style:vertical-align="top | middle | bottom | automatic" )? + (style:text-align-source="fix | value-type" )? + (style:direction="ltr | ttb" )? + (style:glyph-orientation-vertical="auto | 0 | 0deg | 0rad | 0grad" )? + (style:writing-mode="lr-tb | rl-tb | tb-rl | tb-lr | lr | rl | tb | page" )? + (style:shadow="none | <string>" )? + (fo:background-color="transparent | string]" )? + + ( (fo:border="<string>" )? + (fo:border-top="<string>" )? + (fo:border-bottom="<string>" )? + (fo:border-left="<string>" )? + (fo:border-right="<string>" )? + ) (style:diagonal-tl-br="<string>" )? + (style:diagonal-tl-br-widths=" +START_liststring]string]string] +END_list" )? + (style:diagonal-bl-tr="<string>" )? + (style:diagonal-bl-tr-widths=" +START_liststring]string]string] +END_list" )? + + ( (style:border-line-width=" +START_liststring]string]string] +END_list" )? + (style:border-line-width-top=" +START_liststring]string]string] +END_list" )? + (style:border-line-width-bottom=" +START_liststring]string]string] +END_list" )? + (style:border-line-width-left=" +START_liststring]string]string] +END_list" )? + (style:border-line-width-right=" +START_liststring]string]string] +END_list" )? + ) + ( (fo:padding="string]" )? + (fo:padding-top="string]" )? + (fo:padding-bottom="string]" )? + (fo:padding-left="string]" )? + (fo:padding-right="string]" )? + ) (fo:wrap-option="no-wrap | wrap" )? + (style:rotation-angle="<string>" )? + (style:rotation-align="none | bottom | top | center" )? + (style:cell-protect="none | hidden-and-protected | +START_list(protected | formula-hidden)+ +END_list" )? + (style:print-content="<boolean>" )? + (style:decimal-places="<nonNegativeInteger>" )? + (style:repeat-content="<boolean>" )? + (style:shrink-to-fit="<boolean>" )? + (<style:background-image ... >)? + )>  +
@@ -10970,6 +15516,17 @@

style:table-column-propert   + + Child Relations + <style:table-column-properties + ( (style:column-width="string]" )? + (style:rel-column-width="string]" )? + (style:use-optimal-column-width="<boolean>" )? + + ( (fo:break-before="auto | column | page" )? + (fo:break-after="auto | column | page" )? + )EMPTY)>  +
@@ -10991,12 +15548,12 @@

style:table-properties Elementfo:keep-with-next  fo:margin  fo:margin-bottom  - fo:margin-left[2]  + fo:margin-left[1]  fo:margin-right  fo:margin-top  style:may-break-between-rows  style:page-number  - style:rel-width[1]  + style:rel-width[2]  style:shadow  style:width[2]  style:writing-mode  @@ -11012,6 +15569,34 @@

style:table-properties Element<style:background-image>    + + Child Relations + <style:table-properties + ( (style:width="string]" )? + (style:rel-width="string]" )? + (table:align="left | center | right | margins" )? + + ( (fo:margin-left="string] | string]" )? + (fo:margin-right="string] | string]" )? + ) + ( (fo:margin-top="string] | string]" )? + (fo:margin-bottom="string] | string]" )? + ) (fo:margin="string] | string]" )? + (style:page-number="<nonNegativeInteger> | auto" )? + + ( (fo:break-before="auto | column | page" )? + (fo:break-after="auto | column | page" )? + ) (fo:background-color="transparent | string]" )? + (style:shadow="none | <string>" )? + (fo:keep-with-next="auto | always" )? + (style:may-break-between-rows="<boolean>" )? + (table:border-model="collapsing | separating" )? + (style:writing-mode="lr-tb | rl-tb | tb-rl | tb-lr | lr | rl | tb | page" )? + (table:display="<boolean>" )? + (table:tab-color="string]" )? + (<style:background-image ... >)? + )>  +
@@ -11042,6 +15627,20 @@

style:table-row-properties El <style:background-image>    + + Child Relations + <style:table-row-properties + ( (style:row-height="string]" )? + (style:min-row-height="string]" )? + (style:use-optimal-row-height="<boolean>" )? + (fo:background-color="transparent | string]" )? + + ( (fo:break-before="auto | column | page" )? + (fo:break-after="auto | column | page" )? + ) (fo:keep-together="auto | always" )? + (<style:background-image ... >)? + )>  +
@@ -11149,10 +15748,10 @@

style:text-properties Element< style:text-underline-type  style:text-underline-width  style:use-window-font-color  - text:condition[1]  + text:condition[2]  text:display[1]  + text:display[2]  text:display[5]  - text:display[10]    @@ -11160,6 +15759,99 @@

style:text-properties Element<   + + Child Relations + <style:text-properties + ( (fo:font-variant="normal | small-caps" )? + (fo:text-transform="none | lowercase | uppercase | capitalize" )? + (fo:color="string]" )? + (style:use-window-font-color="<boolean>" )? + (style:text-outline="<boolean>" )? + (style:text-line-through-type="none | single | double" )? + (style:text-line-through-style="none | solid | dotted | dash | long-dash | dot-dash | dot-dot-dash | wave" )? + (style:text-line-through-width="auto | normal | bold | thin | medium | thick | <positiveInteger> | string] | string]" )? + (style:text-line-through-color="font-color | string]" )? + (style:text-line-through-text="<string>" )? + (style:text-line-through-text-style="(<NCName>)?" )? + (style:text-position=" +START_liststring] | super | sub(string])? +END_list" )? + (style:font-name="<string>" )? + (style:font-name-asian="<string>" )? + (style:font-name-complex="<string>" )? + (fo:font-family="<string>" )? + (style:font-family-asian="<string>" )? + (style:font-family-complex="<string>" )? + (style:font-family-generic="roman | swiss | modern | decorative | script | system" )? + (style:font-family-generic-asian="roman | swiss | modern | decorative | script | system" )? + (style:font-family-generic-complex="roman | swiss | modern | decorative | script | system" )? + (style:font-style-name="<string>" )? + (style:font-style-name-asian="<string>" )? + (style:font-style-name-complex="<string>" )? + (style:font-pitch="fixed | variable" )? + (style:font-pitch-asian="fixed | variable" )? + (style:font-pitch-complex="fixed | variable" )? + (style:font-charset="string]" )? + (style:font-charset-asian="string]" )? + (style:font-charset-complex="string]" )? + (fo:font-size="string] | string]" )? + (style:font-size-asian="string] | string]" )? + (style:font-size-complex="string] | string]" )? + (style:font-size-rel="string]" )? + (style:font-size-rel-asian="string]" )? + (style:font-size-rel-complex="string]" )? + (style:script-type="latin | asian | complex | ignore" )? + (fo:letter-spacing="string] | normal" )? + (fo:language="token]" )? + (style:language-asian="token]" )? + (style:language-complex="token]" )? + (fo:country="token]" )? + (style:country-asian="token]" )? + (style:country-complex="token]" )? + (fo:script="token]" )? + (style:script-asian="token]" )? + (style:script-complex="token]" )? + (style:rfc-language-tag="<language>" )? + (style:rfc-language-tag-asian="<language>" )? + (style:rfc-language-tag-complex="<language>" )? + (fo:font-style="normal | italic | oblique" )? + (style:font-style-asian="normal | italic | oblique" )? + (style:font-style-complex="normal | italic | oblique" )? + (style:font-relief="none | embossed | engraved" )? + (fo:text-shadow="none | <string>" )? + (style:text-underline-type="none | single | double" )? + (style:text-underline-style="none | solid | dotted | dash | long-dash | dot-dash | dot-dot-dash | wave" )? + (style:text-underline-width="auto | normal | bold | thin | medium | thick | <positiveInteger> | string] | string]" )? + (style:text-underline-color="font-color | string]" )? + (style:text-overline-type="none | single | double" )? + (style:text-overline-style="none | solid | dotted | dash | long-dash | dot-dash | dot-dot-dash | wave" )? + (style:text-overline-width="auto | normal | bold | thin | medium | thick | <positiveInteger> | string] | string]" )? + (style:text-overline-color="font-color | string]" )? + (style:text-overline-mode="continuous | skip-white-space" )? + (fo:font-weight="normal | bold | 100 | 200 | 300 | 400 | 500 | 600 | 700 | 800 | 900" )? + (style:font-weight-asian="normal | bold | 100 | 200 | 300 | 400 | 500 | 600 | 700 | 800 | 900" )? + (style:font-weight-complex="normal | bold | 100 | 200 | 300 | 400 | 500 | 600 | 700 | 800 | 900" )? + (style:text-underline-mode="continuous | skip-white-space" )? + (style:text-line-through-mode="continuous | skip-white-space" )? + (style:letter-kerning="<boolean>" )? + (style:text-blinking="<boolean>" )? + (fo:background-color="transparent | string]" )? + (style:text-combine="none | letters | lines" )? + (style:text-combine-start-char="string]" )? + (style:text-combine-end-char="string]" )? + (style:text-emphasize="none | +START_listnone | accent | dot | circle | discabove | below +END_list" )? + (style:text-scale="string]" )? + (style:text-rotation-angle="<string>" )? + (style:text-rotation-scale="fixed | line-height" )? + (fo:hyphenate="<boolean>" )? + (fo:hyphenation-remain-char-count="<positiveInteger>" )? + (fo:hyphenation-push-char-count="<positiveInteger>" )? + (text:display="true" | text:display="none" | + (text:display="condition" text:condition="none" ))? + EMPTY)>  +
@@ -11184,6 +15876,12 @@

svg:definition-src Element

  + + Child Relations + <svg:definition-src + (xlink:type="simple" xlink:href="<anyIRI>" (xlink:actuate="onRequest" )? + )>  +
@@ -11227,6 +15925,10 @@

svg:desc Element

  + + Child Relations + <svg:desc TEXT>  +
@@ -11249,6 +15951,11 @@

svg:font-face-format Element   + + Child Relations + <svg:font-face-format (svg:string="<string>" )? + >  +
@@ -11271,6 +15978,11 @@

svg:font-face-name Element

  + + Child Relations + <svg:font-face-name (svg:name="<string>" )? + >  +
@@ -11294,6 +16006,10 @@

svg:font-face-src Element

<svg:font-face-uri>*    + + Child Relations + <svg:font-face-src (<svg:font-face-uri ... > | <svg:font-face-name ... >)+ >  +
@@ -11319,6 +16035,12 @@

svg:font-face-uri Element

<svg:font-face-format>*    + + Child Relations + <svg:font-face-uri + (xlink:type="simple" xlink:href="<anyIRI>" (xlink:actuate="onRequest" )? + )(<svg:font-face-format ... >)* >  +
@@ -11350,6 +16072,18 @@

svg:linearGradient Element

<svg:stop>*    + + Child Relations + <svg:linearGradient (svg:gradientUnits="objectBoundingBox" )? + (svg:gradientTransform="<string>" )? + (svg:spreadMethod="pad | reflect | repeat" )? + draw:name="<NCName>" (draw:display-name="<string>" )? + (svg:x1="string] | string]" )? + (svg:y1="string] | string]" )? + (svg:x2="string] | string]" )? + (svg:y2="string] | string]" )? + (<svg:stop ... >)* >  +
@@ -11367,12 +16101,12 @@

svg:radialGradient Element

draw:display-name  draw:name[1]  svg:cx[1]  - svg:cy[1]  + svg:cy[2]  svg:fx  svg:fy  svg:gradientTransform  svg:gradientUnits  - svg:r[1]  + svg:r[2]  svg:spreadMethod    @@ -11382,6 +16116,19 @@

svg:radialGradient Element

<svg:stop>*    + + Child Relations + <svg:radialGradient (svg:gradientUnits="objectBoundingBox" )? + (svg:gradientTransform="<string>" )? + (svg:spreadMethod="pad | reflect | repeat" )? + draw:name="<NCName>" (draw:display-name="<string>" )? + (svg:cx="string] | string]" )? + (svg:cy="string] | string]" )? + (svg:r="string] | string]" )? + (svg:fx="string] | string]" )? + (svg:fy="string] | string]" )? + (<svg:stop ... >)* >  +
@@ -11407,6 +16154,12 @@

svg:stop Element

  + + Child Relations + <svg:stop svg:offset="<double> | string]" (svg:stop-color="string]" )? + (svg:stop-opacity="<double>" )? + >  +
@@ -11450,6 +16203,10 @@

svg:title Element (new in ODF 1.1)   + + Child Relations + <svg:title TEXT>  +
@@ -11472,6 +16229,10 @@

table:background Element (new   + + Child Relations + <table:background table:style-name="(<NCName>)?" >  +
@@ -11495,6 +16256,12 @@

table:body Element (new in ODF 1.2)   + + Child Relations + <table:body + (table:style-name="(<NCName>)?" (table:paragraph-style-name="(<NCName>)?" )? + )>  +
@@ -11514,7 +16281,7 @@

table:calculation-settings El Attributes table:automatic-find-labels  - table:case-sensitive[2]  + table:case-sensitive[1]  table:null-year  table:precision-as-shown  table:search-criteria-must-apply-to-whole-cell  @@ -11529,6 +16296,19 @@

table:calculation-settings El <table:null-date>    + + Child Relations + <table:calculation-settings (table:case-sensitive="<boolean>" )? + (table:precision-as-shown="<boolean>" )? + (table:search-criteria-must-apply-to-whole-cell="<boolean>" )? + (table:automatic-find-labels="<boolean>" )? + (table:use-regular-expressions="<boolean>" )? + (table:use-wildcards="<boolean>" )? + (table:null-year="<positiveInteger>" )? + (<table:null-date ... >)? + (<table:iteration ... >)? + >  +
@@ -11554,6 +16334,11 @@

table:cell-address Element

  + + Child Relations + <table:cell-address + (table:column="<integer>" table:row="<integer>" table:table="<integer>" )>  +
@@ -11583,6 +16368,14 @@

table:cell-content-change Elem <table:previous>    + + Child Relations + <table:cell-content-change table:id="<string>" (table:acceptance-state="accepted | rejected | pending" )? + (table:rejecting-change-id="<string>" )? + <table:cell-address ... ><office:change-info ... > (<table:dependencies ... >)? + (<table:deletions ... >)? + <table:previous ... >>  +
@@ -11607,6 +16400,13 @@

table:cell-content-deletion <table:change-track-table-cell>    + + Child Relations + <table:cell-content-deletion (table:id="<string>" )? + (<table:cell-address ... >)? + (<table:change-track-table-cell ... >)? + >  +
@@ -11627,7 +16427,7 @@

table:cell-range-source Element< table:last-column-spanned  table:last-row-spanned  table:name[1]  - table:refresh-delay[1]  + table:refresh-delay[2]  xlink:actuate[1]  xlink:href  xlink:type  @@ -11638,6 +16438,14 @@

table:cell-range-source Element<   + + Child Relations + <table:cell-range-source table:name="<string>" table:last-column-spanned="<positiveInteger>" table:last-row-spanned="<positiveInteger>" xlink:type="simple" xlink:href="<anyIRI>" (xlink:actuate="onRequest" )? + (table:filter-name="<string>" )? + (table:filter-options="<string>" )? + (table:refresh-delay="<duration>" )? + >  +
@@ -11660,6 +16468,11 @@

table:change-deletion Element<   + + Child Relations + <table:change-deletion (table:id="<string>" )? + >  +
@@ -11683,9 +16496,9 @@

table:change-track-table-c office:value  office:value-type[1]  office:value-type[2]  - office:value-type[3]  office:value-type[4]  office:value-type[5]  + office:value-type[6]  office:value-type[7]  office:value-type[8]  table:cell-address  @@ -11701,6 +16514,25 @@

table:change-track-table-c <text:p>*    + + Child Relations + <table:change-track-table-cell (table:cell-address="string]" )? + (table:matrix-covered="<boolean>" )? + (table:formula="<string>" )? + (table:number-matrix-columns-spanned="<positiveInteger>" )? + (table:number-matrix-rows-spanned="<positiveInteger>" )? + ( + (office:value-type="float" office:value="<double>" ) | + (office:value-type="percentage" office:value="<double>" ) | + (office:value-type="currency" office:value="<double>" (office:currency="<string>" )? + ) | + (office:value-type="date" office:date-value="<date> | <dateTime>" ) | + (office:value-type="time" office:time-value="<duration>" ) | + (office:value-type="boolean" office:boolean-value="<boolean>" ) | + (office:value-type="string" (office:string-value="<string>" )? + ))? + (<text:p ... >)* >  +
@@ -11719,7 +16551,7 @@

table:consolidation Element

Attributes - table:function[2]  + table:function[1]  table:link-to-source-data  table:source-cell-range-addresses  table:target-cell-address  @@ -11731,6 +16563,12 @@

table:consolidation Element

  + + Child Relations + <table:consolidation table:function="average | count | countnums | max | min | product | stdev | stdevp | sum | var | varp | <string>" table:source-cell-range-addresses="<string>" table:target-cell-address="string]" (table:use-labels="none | row | column | both" )? + (table:link-to-source-data="<boolean>" )? + >  +
@@ -11761,6 +16599,17 @@

table:content-validation Elemen <table:help-message>    + + Child Relations + <table:content-validation table:name="<string>" (table:condition="<string>" )? + (table:base-cell-address="string]" )? + (table:allow-empty-cell="<boolean>" )? + (table:display-list="none | unsorted | sort-ascending" )? + (<table:help-message ... >)? + (<table:error-message ... > | + (<table:error-macro ... ><office:event-listeners ... >))? + >  +
@@ -11787,6 +16636,10 @@

table:content-validations Elem <table:content-validation>*    + + Child Relations + <table:content-validations (<table:content-validation ... >)+ >  +
@@ -11809,9 +16662,9 @@

table:covered-table-cell Elemen office:value  office:value-type[1]  office:value-type[2]  - office:value-type[3]  office:value-type[4]  office:value-type[5]  + office:value-type[6]  office:value-type[7]  office:value-type[8]  table:content-validation-name  @@ -11870,6 +16723,38 @@

table:covered-table-cell Elemen <text:user-index>*    + + Child Relations + <table:covered-table-cell (table:number-columns-repeated="<positiveInteger>" )? + (table:style-name="(<NCName>)?" )? + (table:content-validation-name="<string>" )? + (table:formula="<string>" )? + ( + (office:value-type="float" office:value="<double>" ) | + (office:value-type="percentage" office:value="<double>" ) | + (office:value-type="currency" office:value="<double>" (office:currency="<string>" )? + ) | + (office:value-type="date" office:date-value="<date> | <dateTime>" ) | + (office:value-type="time" office:time-value="<duration>" ) | + (office:value-type="boolean" office:boolean-value="<boolean>" ) | + (office:value-type="string" (office:string-value="<string>" )? + ))? + (table:protect="<boolean>" )? + (table:protected="<boolean>" )? + (xml:id="<ID>" )? + ( + (xhtml:about="<anyURI> | string]" xhtml:property=" +START_list(string])+ +END_list" + ( (xhtml:datatype="string]" )? + (xhtml:content="<string>" )? + )))? + + ( (<table:cell-range-source ... >)? + (<office:annotation ... >)? + (<table:detective ... >)? + (<text:h ... > | <text:p ... > | <text:list ... > | <text:numbered-paragraph ... > | <table:table ... > | <text:section ... > | <text:soft-page-break ... > | <text:table-of-content ... > | <text:illustration-index ... > | <text:table-index ... > | <text:object-index ... > | <text:user-index ... > | <text:alphabetical-index ... > | <text:bibliography ... > | <draw:rect ... > | <draw:line ... > | <draw:polyline ... > | <draw:polygon ... > | <draw:regular-polygon ... > | <draw:path ... > | <draw:circle ... > | <draw:ellipse ... > | <draw:g ... > | <draw:page-thumbnail ... > | <draw:frame ... > | <draw:measure ... > | <draw:caption ... > | <draw:connector ... > | <draw:control ... > | <dr3d:scene ... > | <draw:custom-shape ... > | <draw:a ... > | <text:change ... > | <text:change-start ... > | <text:change-end ... >)* )>  +
@@ -11893,6 +16778,11 @@

table:cut-offs Element

<table:movement-cut-off>*    + + Child Relations + <table:cut-offs (<table:movement-cut-off ... >)+ | + (<table:insertion-cut-off ... >(<table:movement-cut-off ... >)* )>  +
@@ -11918,6 +16808,10 @@

table:data-pilot-display-i   + + Child Relations + <table:data-pilot-display-info table:enabled="<boolean>" table:data-field="<string>" table:member-count="<nonNegativeInteger>" table:display-member-mode="from-top | from-bottom" >  +
@@ -11932,9 +16826,9 @@

table:data-pilot-field Element Attributes - table:function[1]  + table:function[2]  table:is-data-layout-field  - table:orientation[1]  + table:orientation[2]  table:orientation[3]  table:selected-page  table:source-field-name  @@ -11949,6 +16843,17 @@

table:data-pilot-field Element<table:data-pilot-level>    + + Child Relations + <table:data-pilot-field table:source-field-name="<string>" table:orientation="row | column | data | hidden" | + (table:orientation="page" table:selected-page="<string>" ) (table:is-data-layout-field="<string>" )? + (table:function="auto | average | count | countnums | max | min | product | stdev | stdevp | sum | var | varp | <string>" )? + (table:used-hierarchy="<integer>" )? + (<table:data-pilot-level ... >)? + (<table:data-pilot-field-reference ... >)? + (<table:data-pilot-groups ... >)? + >  +
@@ -11975,6 +16880,11 @@

table:data-pilot-field-   + + Child Relations + <table:data-pilot-field-reference table:field-name="<string>" + (table:member-type="named" table:member-name="<string>" ) | table:member-type="previous | next" table:type="none | member-difference | member-percentage | member-percentage-difference | running-total | row-percentage | column-percentage | total-percentage | index" >  +
@@ -11998,6 +16908,10 @@

table:data-pilot-group Element<table:data-pilot-group-member>*    + + Child Relations + <table:data-pilot-group table:name="<string>" (<table:data-pilot-group-member ... >)+ >  +
@@ -12020,6 +16934,10 @@

table:data-pilot-group-mem   + + Child Relations + <table:data-pilot-group-member table:name="<string>" >  +
@@ -12049,6 +16967,14 @@

table:data-pilot-groups Element< <table:data-pilot-group>*    + + Child Relations + <table:data-pilot-groups table:source-field-name="<string>" (table:date-start="<date> | <dateTime> | auto" | table:start="<double> | auto" )? + (table:date-end="<date> | <dateTime> | auto" | table:end="<double> | auto" )? + (table:step="<double>" )? + (table:grouped-by="seconds | minutes | hours | days | months | quarters | years" )? + (<table:data-pilot-group ... >)+ >  +
@@ -12072,6 +16998,10 @@

table:data-pilot-layout-inf   + + Child Relations + <table:data-pilot-layout-info table:layout-mode="tabular-layout | outline-subtotals-top | outline-subtotals-bottom" table:add-empty-lines="<boolean>" >  +
@@ -12099,6 +17029,16 @@

table:data-pilot-level Element<table:data-pilot-subtotals>    + + Child Relations + <table:data-pilot-level (table:show-empty="<boolean>" )? + (<table:data-pilot-subtotals ... >)? + (<table:data-pilot-members ... >)? + (<table:data-pilot-display-info ... >)? + (<table:data-pilot-sort-info ... >)? + (<table:data-pilot-layout-info ... >)? + >  +
@@ -12123,6 +17063,12 @@

table:data-pilot-member Element<   + + Child Relations + <table:data-pilot-member table:name="<string>" (table:display="<boolean>" )? + (table:show-details="<boolean>" )? + >  +
@@ -12145,6 +17091,10 @@

table:data-pilot-members Elemen <table:data-pilot-member>*    + + Child Relations + <table:data-pilot-members (<table:data-pilot-member ... >)* >  +
@@ -12170,6 +17120,11 @@

table:data-pilot-sort-info El   + + Child Relations + <table:data-pilot-sort-info + (table:sort-mode="data" table:data-field="<string>" ) | table:sort-mode="none | manual | name" table:order="ascending | descending" >  +
@@ -12184,7 +17139,7 @@

table:data-pilot-subtotal Elem Attributes - table:function[1]  + table:function[2]    @@ -12192,6 +17147,10 @@

table:data-pilot-subtotal Elem   + + Child Relations + <table:data-pilot-subtotal table:function="auto | average | count | countnums | max | min | product | stdev | stdevp | sum | var | varp | <string>" >  +
@@ -12214,6 +17173,10 @@

table:data-pilot-subtotals El <table:data-pilot-subtotal>*    + + Child Relations + <table:data-pilot-subtotals (<table:data-pilot-subtotal ... >)* >  +
@@ -12250,6 +17213,18 @@

table:data-pilot-table Element<table:source-service>    + + Child Relations + <table:data-pilot-table table:name="<string>" (table:application-data="<string>" )? + (table:grand-total="none | row | column | both" )? + (table:ignore-empty-rows="<boolean>" )? + (table:identify-categories="<boolean>" )? + table:target-range-address="string] | string] | string]" (table:buttons="<string>" )? + (table:show-filter-button="<boolean>" )? + (table:drill-down-on-double-click="<boolean>" )? + (<table:database-source-sql ... > | <table:database-source-query ... > | <table:database-source-table ... > | <table:source-service ... > | <table:source-cell-range ... >)? + (<table:data-pilot-field ... >)+ >  +
@@ -12276,6 +17251,10 @@

table:data-pilot-tables Element< <table:data-pilot-table>*    + + Child Relations + <table:data-pilot-tables (<table:data-pilot-table ... >)* >  +
@@ -12297,8 +17276,8 @@

table:database-range Elementtable:name[1]  table:on-update-keep-size  table:on-update-keep-styles  - table:orientation[2]  - table:refresh-delay[2]  + table:orientation[1]  + table:refresh-delay[1]  table:target-range-address    @@ -12313,6 +17292,23 @@

table:database-range Element<table:subtotal-rules>    + + Child Relations + <table:database-range (table:name="<string>" )? + (table:is-selection="<boolean>" )? + (table:on-update-keep-styles="<boolean>" )? + (table:on-update-keep-size="<boolean>" )? + (table:has-persistent-data="<boolean>" )? + (table:orientation="column | row" )? + (table:contains-header="<boolean>" )? + (table:display-filter-buttons="<boolean>" )? + table:target-range-address="string] | string] | string]" (table:refresh-delay="<boolean>" )? + (<table:database-source-sql ... > | <table:database-source-query ... > | <table:database-source-table ... >)? + (<table:filter ... >)? + (<table:sort ... >)? + (<table:subtotal-rules ... >)? + >  +
@@ -12339,6 +17335,10 @@

table:database-ranges Element< <table:database-range>*    + + Child Relations + <table:database-ranges (<table:database-range ... >)* >  +
@@ -12363,6 +17363,10 @@

table:database-source-query   + + Child Relations + <table:database-source-query table:database-name="<string>" table:query-name="<string>" >  +
@@ -12388,6 +17392,11 @@

table:database-source-sql Elem   + + Child Relations + <table:database-source-sql table:database-name="<string>" table:sql-statement="<string>" (table:parse-sql-statement="<boolean>" )? + >  +
@@ -12412,6 +17421,10 @@

table:database-source-table   + + Child Relations + <table:database-source-table table:database-name="<string>" table:database-table-name="<string>" >  +
@@ -12435,6 +17448,10 @@

table:dde-link Element

<table:table>    + + Child Relations + <table:dde-link <office:dde-source ... ><table:table ... >>  +
@@ -12461,6 +17478,10 @@

table:dde-links Element

<table:dde-link>*    + + Child Relations + <table:dde-links (<table:dde-link ... >)+ >  +
@@ -12493,6 +17514,17 @@

table:deletion Element

<table:dependencies>    + + Child Relations + <table:deletion table:type="row | column | table" table:position="<integer>" (table:table="<integer>" )? + (table:multi-deletion-spanned="<integer>" )? + table:id="<string>" (table:acceptance-state="accepted | rejected | pending" )? + (table:rejecting-change-id="<string>" )? + <office:change-info ... > (<table:dependencies ... >)? + (<table:deletions ... >)? + (<table:cut-offs ... >)? + >  +
@@ -12519,6 +17551,10 @@

table:deletions Element

<table:change-deletion>*    + + Child Relations + <table:deletions (<table:cell-content-deletion ... > | <table:change-deletion ... >)+ >  +
@@ -12544,6 +17580,10 @@

table:dependencies Element

<table:dependency>*    + + Child Relations + <table:dependencies (<table:dependency ... >)+ >  +
@@ -12566,6 +17606,10 @@

table:dependency Element

  + + Child Relations + <table:dependency table:id="<string>" >  +
@@ -12588,6 +17632,10 @@

table:desc Element (new in ODF 1.2)   + + Child Relations + <table:desc TEXT>  +
@@ -12612,6 +17660,10 @@

table:detective Element

<table:operation>*    + + Child Relations + <table:detective (<table:highlighted-range ... >)* (<table:operation ... >)* >  +
@@ -12634,6 +17686,11 @@

table:error-macro Element

  + + Child Relations + <table:error-macro (table:execute="<boolean>" )? + >  +
@@ -12659,6 +17716,13 @@

table:error-message Element

<text:p>*    + + Child Relations + <table:error-message (table:title="<string>" )? + (table:display="<boolean>" )? + (table:message-type="stop | warning | information" )? + (<text:p ... >)* >  +
@@ -12682,6 +17746,12 @@

table:even-columns Element (   + + Child Relations + <table:even-columns + (table:style-name="(<NCName>)?" (table:paragraph-style-name="(<NCName>)?" )? + )>  +
@@ -12705,6 +17775,12 @@

table:even-rows Element (new in   + + Child Relations + <table:even-rows + (table:style-name="(<NCName>)?" (table:paragraph-style-name="(<NCName>)?" )? + )>  +
@@ -12734,6 +17810,14 @@

table:filter Element

<table:filter-or>    + + Child Relations + <table:filter (table:target-range-address="string] | string] | string]" )? + (table:condition-source="self | cell-range" )? + (table:condition-source-range-address="string] | string] | string]" )? + (table:display-duplicates="<boolean>" )? + <table:filter-condition ... > | <table:filter-and ... > | <table:filter-or ... >>  +
@@ -12758,6 +17842,10 @@

table:filter-and Element

<table:filter-or>*    + + Child Relations + <table:filter-and (<table:filter-or ... > | <table:filter-condition ... >)+ >  +
@@ -12774,11 +17862,11 @@

table:filter-condition Element Attributes - table:case-sensitive[1]  + table:case-sensitive[2]  table:data-type[2]  table:field-number  table:operator  - table:value[1]  + table:value[2]    @@ -12787,6 +17875,12 @@

table:filter-condition Element<table:filter-set-item>*    + + Child Relations + <table:filter-condition table:field-number="<nonNegativeInteger>" table:value="<string> | <double>" table:operator="<string>" (table:case-sensitive="<string>" )? + (table:data-type="text | number" )? + (<table:filter-set-item ... >)* >  +
@@ -12811,6 +17905,10 @@

table:filter-or Element

<table:filter-condition>*    + + Child Relations + <table:filter-or (<table:filter-and ... > | <table:filter-condition ... >)+ >  +
@@ -12825,7 +17923,7 @@

table:filter-set-item Element& Attributes - table:value[2]  + table:value[1]    @@ -12833,6 +17931,10 @@

table:filter-set-item Element&   + + Child Relations + <table:filter-set-item table:value="<string>" >  +
@@ -12856,6 +17958,12 @@

table:first-column Element (   + + Child Relations + <table:first-column + (table:style-name="(<NCName>)?" (table:paragraph-style-name="(<NCName>)?" )? + )>  +
@@ -12879,6 +17987,12 @@

table:first-row Element (new in   + + Child Relations + <table:first-row + (table:style-name="(<NCName>)?" (table:paragraph-style-name="(<NCName>)?" )? + )>  +
@@ -12903,6 +18017,12 @@

table:help-message Element

<text:p>*    + + Child Relations + <table:help-message (table:title="<string>" )? + (table:display="<boolean>" )? + (<text:p ... >)* >  +
@@ -12928,6 +18048,12 @@

table:highlighted-range Element<   + + Child Relations + <table:highlighted-range (table:cell-range-address="string] | string] | string]" )? + table:direction="from-another-table | to-another-table | from-same-table" (table:contains-error="<boolean>" )? + | table:marked-invalid="<boolean>" >  +
@@ -12959,6 +18085,16 @@

table:insertion Element

<table:dependencies>    + + Child Relations + <table:insertion table:type="row | column | table" table:position="<integer>" (table:count="<positiveInteger>" )? + (table:table="<integer>" )? + table:id="<string>" (table:acceptance-state="accepted | rejected | pending" )? + (table:rejecting-change-id="<string>" )? + <office:change-info ... > (<table:dependencies ... >)? + (<table:deletions ... >)? + >  +
@@ -12982,6 +18118,10 @@

table:insertion-cut-off Element<   + + Child Relations + <table:insertion-cut-off table:id="<string>" table:position="<integer>" >  +
@@ -13006,6 +18146,13 @@

table:iteration Element

  + + Child Relations + <table:iteration (table:status="enable | disable" )? + (table:steps="<positiveInteger>" )? + (table:maximum-difference="<double>" )? + >  +
@@ -13022,7 +18169,7 @@

table:label-range Element

table:data-cell-range-address  table:label-cell-range-address  - table:orientation[2]  + table:orientation[1]    @@ -13030,6 +18177,10 @@

table:label-range Element

  + + Child Relations + <table:label-range table:label-cell-range-address="string] | string] | string]" table:data-cell-range-address="string] | string] | string]" table:orientation="column | row" >  +
@@ -13056,6 +18207,10 @@

table:label-ranges Element

<table:label-range>*    + + Child Relations + <table:label-ranges (<table:label-range ... >)* >  +
@@ -13079,6 +18234,12 @@

table:last-column Element (ne   + + Child Relations + <table:last-column + (table:style-name="(<NCName>)?" (table:paragraph-style-name="(<NCName>)?" )? + )>  +
@@ -13102,6 +18263,12 @@

table:last-row Element (new in O   + + Child Relations + <table:last-row + (table:style-name="(<NCName>)?" (table:paragraph-style-name="(<NCName>)?" )? + )>  +
@@ -13131,6 +18298,14 @@

table:movement Element

<table:target-range-address>    + + Child Relations + <table:movement table:id="<string>" (table:acceptance-state="accepted | rejected | pending" )? + (table:rejecting-change-id="<string>" )? + <table:source-range-address ... ><table:target-range-address ... ><office:change-info ... > (<table:dependencies ... >)? + (<table:deletions ... >)? + >  +
@@ -13155,6 +18330,11 @@

table:movement-cut-off Element   + + Child Relations + <table:movement-cut-off table:position="<integer>" | + (table:start-position="<integer>" table:end-position="<integer>" )>  +
@@ -13179,6 +18359,12 @@

table:named-expression Element   + + Child Relations + <table:named-expression + (table:name="<string>" table:expression="<string>" (table:base-cell-address="string]" )? + )>  +
@@ -13207,6 +18393,10 @@

table:named-expressions Element< <table:named-range>*    + + Child Relations + <table:named-expressions (<table:named-range ... > | <table:named-expression ... >)* >  +
@@ -13232,6 +18422,15 @@

table:named-range Element

  + + Child Relations + <table:named-range + (table:name="<string>" table:cell-range-address="string] | string] | string]" (table:base-cell-address="string]" )? + (table:range-usable-as="none | +START_list(print-range | filter | repeat-row | repeat-column)+ +END_list" )? + )>  +
@@ -13255,6 +18454,12 @@

table:null-date Element

  + + Child Relations + <table:null-date (table:value-type="date" )? + (table:date-value="<date>" )? + >  +
@@ -13278,6 +18483,12 @@

table:odd-columns Element (ne   + + Child Relations + <table:odd-columns + (table:style-name="(<NCName>)?" (table:paragraph-style-name="(<NCName>)?" )? + )>  +
@@ -13301,6 +18512,12 @@

table:odd-rows Element (new in O   + + Child Relations + <table:odd-rows + (table:style-name="(<NCName>)?" (table:paragraph-style-name="(<NCName>)?" )? + )>  +
@@ -13324,6 +18541,10 @@

table:operation Element

  + + Child Relations + <table:operation table:name="trace-dependents | remove-dependents | trace-precedents | remove-precedents | trace-errors" table:index="<nonNegativeInteger>" >  +
@@ -13347,6 +18568,11 @@

table:previous Element

<table:change-track-table-cell>    + + Child Relations + <table:previous (table:id="<string>" )? + <table:change-track-table-cell ... >>  +
@@ -13377,6 +18603,17 @@

table:scenario Element

  + + Child Relations + <table:scenario table:scenario-ranges="<string>" table:is-active="<boolean>" (table:display-border="<boolean>" )? + (table:border-color="string]" )? + (table:copy-back="<boolean>" )? + (table:copy-styles="<boolean>" )? + (table:copy-formulas="<boolean>" )? + (table:comment="<string>" )? + (table:protected="<boolean>" )? + >  +
@@ -13416,6 +18653,10 @@

table:shapes Element

<draw:regular-polygon>*    + + Child Relations + <table:shapes (<draw:rect ... > | <draw:line ... > | <draw:polyline ... > | <draw:polygon ... > | <draw:regular-polygon ... > | <draw:path ... > | <draw:circle ... > | <draw:ellipse ... > | <draw:g ... > | <draw:page-thumbnail ... > | <draw:frame ... > | <draw:measure ... > | <draw:caption ... > | <draw:connector ... > | <draw:control ... > | <dr3d:scene ... > | <draw:custom-shape ... > | <draw:a ... >)+ >  +
@@ -13432,7 +18673,7 @@

table:sort Element

table:algorithm  table:bind-styles-to-content  - table:case-sensitive[2]  + table:case-sensitive[1]  table:country  table:embedded-number-behavior  table:language  @@ -13447,6 +18688,19 @@

table:sort Element

<table:sort-by>*    + + Child Relations + <table:sort (table:bind-styles-to-content="<boolean>" )? + (table:target-range-address="string] | string] | string]" )? + (table:case-sensitive="<boolean>" )? + (table:language="token]" )? + (table:country="token]" )? + (table:script="token]" )? + (table:rfc-language-tag="<language>" )? + (table:algorithm="<string>" )? + (table:embedded-number-behavior="alpha-numeric | integer | double" )? + (<table:sort-by ... >)+ >  +
@@ -13471,6 +18725,12 @@

table:sort-by Element

  + + Child Relations + <table:sort-by table:field-number="<nonNegativeInteger>" (table:data-type="text | number | automatic | <string>" )? + (table:order="ascending | descending" )? + >  +
@@ -13494,6 +18754,12 @@

table:sort-groups Element

  + + Child Relations + <table:sort-groups (table:data-type="text | number | automatic | <string>" )? + (table:order="ascending | descending" )? + >  +
@@ -13518,6 +18784,13 @@

table:source-cell-range Element< <table:filter>    + + Child Relations + <table:source-cell-range table:cell-range-address="string] | string] | string]" | + (table:name="<string>" (table:cell-range-address="string] | string] | string]" )? + ) (<table:filter ... >)? + >  +
@@ -13548,6 +18821,12 @@

table:source-range-address El   + + Child Relations + <table:source-range-address + (table:column="<integer>" table:row="<integer>" table:table="<integer>" ) | + (table:start-column="<integer>" table:start-row="<integer>" table:start-table="<integer>" table:end-column="<integer>" table:end-row="<integer>" table:end-table="<integer>" )>  +
@@ -13574,6 +18853,12 @@

table:source-service Element   + + Child Relations + <table:source-service table:name="<string>" table:source-name="<string>" table:object-name="<string>" (table:user-name="<string>" )? + (table:password="<string>" )? + >  +
@@ -13589,7 +18874,7 @@

table:subtotal-field ElementAttributes table:field-number  - table:function[2]  + table:function[1]    @@ -13597,6 +18882,10 @@

table:subtotal-field Element   + + Child Relations + <table:subtotal-field table:field-number="<nonNegativeInteger>" table:function="average | count | countnums | max | min | product | stdev | stdevp | sum | var | varp | <string>" >  +
@@ -13620,6 +18909,10 @@

table:subtotal-rule Element

<table:subtotal-field>*    + + Child Relations + <table:subtotal-rule table:group-by-field-number="<nonNegativeInteger>" (<table:subtotal-field ... >)* >  +
@@ -13635,7 +18928,7 @@

table:subtotal-rules ElementAttributes table:bind-styles-to-content  - table:case-sensitive[2]  + table:case-sensitive[1]  table:page-breaks-on-group-change    @@ -13646,6 +18939,14 @@

table:subtotal-rules Element<table:subtotal-rule>*    + + Child Relations + <table:subtotal-rules (table:bind-styles-to-content="<boolean>" )? + (table:case-sensitive="<boolean>" )? + (table:page-breaks-on-group-change="<boolean>" )? + (<table:sort-groups ... >)? + (<table:subtotal-rule ... >)* >  +
@@ -13718,6 +19019,48 @@

table:table Element

<text:soft-page-break>*    + + Child Relations + <table:table (table:name="<string>" )? + (table:style-name="(<NCName>)?" )? + (table:template-name="<string>" )? + (table:use-first-row-styles="<boolean>" )? + (table:use-last-row-styles="<boolean>" )? + (table:use-first-column-styles="<boolean>" )? + (table:use-last-column-styles="<boolean>" )? + (table:use-banding-rows-styles="<boolean>" )? + (table:use-banding-columns-styles="<boolean>" )? + (table:protected="<boolean>" )? + (table:protection-key="<string>" )? + (table:protection-key-digest-algorithm="<anyIRI>" )? + (table:print="<boolean>" )? + (table:print-ranges="<string>" )? + (xml:id="<ID>" )? + (table:is-sub-table="<boolean>" )? + (<table:title ... >)? + (<table:desc ... >)? + (<table:table-source ... >)? + (<office:dde-source ... >)? + (<table:scenario ... >)? + ( (<office:forms ... >)? + )? + (<table:shapes ... >)? + (<table:table-column-group ... > | + (<table:table-columns ... > | (<table:table-column ... >)+ (<table:table-header-columns ... > (<table:table-columns ... > | (<table:table-column ... >)+ )? + )? + ) | + (<table:table-header-columns ... > (<table:table-columns ... > | (<table:table-column ... >)+ )? + ))+ (<table:table-row-group ... > | + (<table:table-rows ... > | ( (<text:soft-page-break ... >)? + <table:table-row ... >)+ (<table:table-header-rows ... > (<table:table-rows ... > | ( (<text:soft-page-break ... >)? + <table:table-row ... >)+ )? + )? + ) | + (<table:table-header-rows ... > (<table:table-rows ... > | ( (<text:soft-page-break ... >)? + <table:table-row ... >)+ )? + ))+ (<table:named-expressions ... >)? + >  +
@@ -13740,9 +19083,9 @@

table:table-cell Element

office:value  office:value-type[1]  office:value-type[2]  - office:value-type[3]  office:value-type[4]  office:value-type[5]  + office:value-type[6]  office:value-type[7]  office:value-type[8]  table:content-validation-name  @@ -13805,6 +19148,42 @@

table:table-cell Element

<text:user-index>*    + + Child Relations + <table:table-cell (table:number-columns-repeated="<positiveInteger>" )? + (table:style-name="(<NCName>)?" )? + (table:content-validation-name="<string>" )? + (table:formula="<string>" )? + ( + (office:value-type="float" office:value="<double>" ) | + (office:value-type="percentage" office:value="<double>" ) | + (office:value-type="currency" office:value="<double>" (office:currency="<string>" )? + ) | + (office:value-type="date" office:date-value="<date> | <dateTime>" ) | + (office:value-type="time" office:time-value="<duration>" ) | + (office:value-type="boolean" office:boolean-value="<boolean>" ) | + (office:value-type="string" (office:string-value="<string>" )? + ))? + (table:protect="<boolean>" )? + (table:protected="<boolean>" )? + (xml:id="<ID>" )? + ( + (xhtml:about="<anyURI> | string]" xhtml:property=" +START_list(string])+ +END_list" + ( (xhtml:datatype="string]" )? + (xhtml:content="<string>" )? + )))? + (table:number-columns-spanned="<positiveInteger>" )? + (table:number-rows-spanned="<positiveInteger>" )? + (table:number-matrix-columns-spanned="<positiveInteger>" )? + (table:number-matrix-rows-spanned="<positiveInteger>" )? + + ( (<table:cell-range-source ... >)? + (<office:annotation ... >)? + (<table:detective ... >)? + (<text:h ... > | <text:p ... > | <text:list ... > | <text:numbered-paragraph ... > | <table:table ... > | <text:section ... > | <text:soft-page-break ... > | <text:table-of-content ... > | <text:illustration-index ... > | <text:table-index ... > | <text:object-index ... > | <text:user-index ... > | <text:alphabetical-index ... > | <text:bibliography ... > | <draw:rect ... > | <draw:line ... > | <draw:polyline ... > | <draw:polygon ... > | <draw:regular-polygon ... > | <draw:path ... > | <draw:circle ... > | <draw:ellipse ... > | <draw:g ... > | <draw:page-thumbnail ... > | <draw:frame ... > | <draw:measure ... > | <draw:caption ... > | <draw:connector ... > | <draw:control ... > | <dr3d:scene ... > | <draw:custom-shape ... > | <draw:a ... > | <text:change ... > | <text:change-start ... > | <text:change-end ... >)* )>  +
@@ -13834,6 +19213,15 @@

table:table-column Element

  + + Child Relations + <table:table-column (table:number-columns-repeated="<positiveInteger>" )? + (table:style-name="(<NCName>)?" )? + (table:visibility="visible | collapse | filter" )? + (table:default-cell-style-name="(<NCName>)?" )? + (xml:id="<ID>" )? + >  +
@@ -13861,6 +19249,16 @@

table:table-column-group Elemen <table:table-header-columns>*    + + Child Relations + <table:table-column-group (table:display="<boolean>" )? + (<table:table-column-group ... > | + (<table:table-columns ... > | (<table:table-column ... >)+ (<table:table-header-columns ... > (<table:table-columns ... > | (<table:table-column ... >)+ )? + )? + ) | + (<table:table-header-columns ... > (<table:table-columns ... > | (<table:table-column ... >)+ )? + ))+ >  +
@@ -13884,6 +19282,10 @@

table:table-columns Element

<table:table-column>*    + + Child Relations + <table:table-columns (<table:table-column ... >)+ >  +
@@ -13907,6 +19309,10 @@

table:table-header-columns El <table:table-column>*    + + Child Relations + <table:table-header-columns (<table:table-column ... >)+ >  +
@@ -13931,6 +19337,11 @@

table:table-header-rows Element< <text:soft-page-break>*    + + Child Relations + <table:table-header-rows ( (<text:soft-page-break ... >)? + <table:table-row ... >)+ >  +
@@ -13962,6 +19373,15 @@

table:table-row Element

<table:table-cell>*    + + Child Relations + <table:table-row (table:number-rows-repeated="<positiveInteger>" )? + (table:style-name="(<NCName>)?" )? + (table:default-cell-style-name="(<NCName>)?" )? + (table:visibility="visible | collapse | filter" )? + (xml:id="<ID>" )? + (<table:table-cell ... > | <table:covered-table-cell ... >)+ >  +
@@ -13990,6 +19410,19 @@

table:table-row-group Element< <text:soft-page-break>*    + + Child Relations + <table:table-row-group (table:display="<boolean>" )? + (<table:table-row-group ... > | + (<table:table-rows ... > | ( (<text:soft-page-break ... >)? + <table:table-row ... >)+ (<table:table-header-rows ... > (<table:table-rows ... > | ( (<text:soft-page-break ... >)? + <table:table-row ... >)+ )? + )? + ) | + (<table:table-header-rows ... > (<table:table-rows ... > | ( (<text:soft-page-break ... >)? + <table:table-row ... >)+ )? + ))+ >  +
@@ -14014,6 +19447,11 @@

table:table-rows Element

<text:soft-page-break>*    + + Child Relations + <table:table-rows ( (<text:soft-page-break ... >)? + <table:table-row ... >)+ >  +
@@ -14031,7 +19469,7 @@

table:table-source Element

table:filter-name  table:filter-options  table:mode  - table:refresh-delay[1]  + table:refresh-delay[2]  table:table-name  xlink:actuate[1]  xlink:href  @@ -14043,6 +19481,16 @@

table:table-source Element

  + + Child Relations + <table:table-source (table:mode="copy-all | copy-results-only" )? + (table:table-name="<string>" )? + xlink:type="simple" xlink:href="<anyIRI>" (xlink:actuate="onRequest" )? + (table:filter-name="<string>" )? + (table:filter-options="<string>" )? + (table:refresh-delay="<duration>" )? + >  +
@@ -14079,6 +19527,19 @@

table:table-template Element&nb <table:odd-rows>    + + Child Relations + <table:table-template table:name="<string>" table:first-row-start-column="row | column" table:first-row-end-column="row | column" table:last-row-start-column="row | column" table:last-row-end-column="row | column" (<table:first-row ... >)? + (<table:last-row ... >)? + (<table:first-column ... >)? + (<table:last-column ... >)? + <table:body ... > (<table:even-rows ... >)? + (<table:odd-rows ... >)? + (<table:even-columns ... >)? + (<table:odd-columns ... >)? + (<table:background ... >)? + >  +
@@ -14109,6 +19570,12 @@

table:target-range-address El   + + Child Relations + <table:target-range-address + (table:column="<integer>" table:row="<integer>" table:table="<integer>" ) | + (table:start-column="<integer>" table:start-row="<integer>" table:start-table="<integer>" table:end-column="<integer>" table:end-row="<integer>" table:end-table="<integer>" )>  +
@@ -14131,6 +19598,10 @@

table:title Element (new in ODF 1.2   + + Child Relations + <table:title TEXT>  +
@@ -14157,6 +19628,11 @@

table:tracked-changes Element< <table:movement>*    + + Child Relations + <table:tracked-changes (table:track-changes="<boolean>" )? + (<table:cell-content-change ... > | <table:insertion ... > | <table:deletion ... > | <table:movement ... >)* >  +
@@ -14322,6 +19798,18 @@

text:a Element

<text:word-count>*    + + Child Relations + <text:a (office:name="<string>" )? + (office:title="<string>" )? + xlink:type="simple" xlink:href="<anyIRI>" (xlink:actuate="onRequest" )? + (office:target-frame-name="_self | _blank | _parent | _top | <string>" )? + (xlink:show="new | replace" )? + (text:style-name="(<NCName>)?" )? + (text:visited-style-name="(<NCName>)?" )? + (<office:event-listeners ... >)? + (TEXT | <text:s ... > | <text:tab ... > | <text:line-break ... > | <text:soft-page-break ... > | <text:span ... > | <text:meta ... > | <text:bookmark ... > | <text:bookmark-start ... > | <text:bookmark-end ... > | <text:reference-mark ... > | <text:reference-mark-start ... > | <text:reference-mark-end ... > | <text:note ... > | <text:ruby ... > | <office:annotation ... > | <office:annotation-end ... > | <text:change ... > | <text:change-start ... > | <text:change-end ... > | <draw:rect ... > | <draw:line ... > | <draw:polyline ... > | <draw:polygon ... > | <draw:regular-polygon ... > | <draw:path ... > | <draw:circle ... > | <draw:ellipse ... > | <draw:g ... > | <draw:page-thumbnail ... > | <draw:frame ... > | <draw:measure ... > | <draw:caption ... > | <draw:connector ... > | <draw:control ... > | <dr3d:scene ... > | <draw:custom-shape ... > | <draw:a ... > | <text:date ... > | <text:time ... > | <text:page-number ... > | <text:page-continuation ... > | <text:sender-firstname ... > | <text:sender-lastname ... > | <text:sender-initials ... > | <text:sender-title ... > | <text:sender-position ... > | <text:sender-email ... > | <text:sender-phone-private ... > | <text:sender-fax ... > | <text:sender-company ... > | <text:sender-phone-work ... > | <text:sender-street ... > | <text:sender-city ... > | <text:sender-postal-code ... > | <text:sender-country ... > | <text:sender-state-or-province ... > | <text:author-name ... > | <text:author-initials ... > | <text:chapter ... > | <text:file-name ... > | <text:template-name ... > | <text:sheet-name ... > | <text:variable-set ... > | <text:variable-get ... > | <text:variable-input ... > | <text:user-field-get ... > | <text:user-field-input ... > | <text:sequence ... > | <text:expression ... > | <text:text-input ... > | <text:drop-down ... > | <text:initial-creator ... > | <text:creation-date ... > | <text:creation-time ... > | <text:description ... > | <text:user-defined ... > | <text:print-time ... > | <text:print-date ... > | <text:printed-by ... > | <text:title ... > | <text:subject ... > | <text:keywords ... > | <text:editing-cycles ... > | <text:editing-duration ... > | <text:modification-time ... > | <text:modification-date ... > | <text:creator ... > | <CHOICE_NAME_CLASS ... > | <text:database-display ... > | <text:database-next ... > | <text:database-row-select ... > | <text:database-row-number ... > | <text:database-name ... > | <text:page-variable-set ... > | <text:page-variable-get ... > | <text:placeholder ... > | <text:conditional-text ... > | <text:hidden-text ... > | <CHOICE_NAME_CLASS ... > | <text:note-ref ... > | <text:sequence-ref ... > | <text:script ... > | <text:execute-macro ... > | <text:hidden-paragraph ... > | <text:dde-connection ... > | <text:measure ... > | <text:table-formula ... > | <text:meta-field ... > | <text:toc-mark-start ... > | <text:toc-mark-end ... > | <text:toc-mark ... > | <text:user-index-mark-start ... > | <text:user-index-mark-end ... > | <text:user-index-mark ... > | <text:alphabetical-index-mark-start ... > | <text:alphabetical-index-mark-end ... > | <text:alphabetical-index-mark ... > | <text:bibliography-mark ... > | <presentation:header ... > | <presentation:footer ... > | <presentation:date-time ... >)+ >  +
@@ -14365,6 +19853,15 @@

text:alphabetical-index Element< <text:index-body>    + + Child Relations + <text:alphabetical-index (text:style-name="(<NCName>)?" )? + text:name="<string>" (text:protected="<boolean>" )? + (text:protection-key="<string>" )? + (text:protection-key-digest-algorithm="<anyIRI>" )? + (xml:id="<ID>" )? + <text:alphabetical-index-source ... ><text:index-body ... >>  +
@@ -14398,6 +19895,10 @@

text:alphabetical   + + Child Relations + <text:alphabetical-index-auto-mark-file xlink:type="simple" xlink:href="<anyIRI>" >  +
@@ -14412,7 +19913,7 @@

text:alphabetical Attributes - text:outline-level[2]  + text:outline-level[3]  text:style-name    @@ -14426,6 +19927,10 @@

text:alphabetical <text:index-entry-text>*    + + Child Relations + <text:alphabetical-index-entry-template text:outline-level="1 | 2 | 3 | separator" text:style-name="(<NCName>)?" (<text:index-entry-chapter ... > | <text:index-entry-page-number ... > | <text:index-entry-text ... > | <text:index-entry-span ... > | <text:index-entry-tab-stop ... >)* >  +
@@ -14460,6 +19965,16 @@

text:alphabetical-index-mar   + + Child Relations + <text:alphabetical-index-mark text:string-value="<string>" (text:key1="<string>" )? + (text:key2="<string>" )? + (text:string-value-phonetic="<string>" )? + (text:key1-phonetic="<string>" )? + (text:key2-phonetic="<string>" )? + (text:main-entry="<boolean>" )? + >  +
@@ -14480,7 +19995,7 @@

text:alphabetical-index Attributes - text:id[2]  + text:id[1]    @@ -14488,6 +20003,10 @@

text:alphabetical-index   + + Child Relations + <text:alphabetical-index-mark-end text:id="<string>" >  +
@@ -14508,7 +20027,7 @@

text:alphabetical-ind Attributes - text:id[2]  + text:id[1]  text:key1  text:key1-phonetic  text:key2  @@ -14522,6 +20041,16 @@

text:alphabetical-ind   + + Child Relations + <text:alphabetical-index-mark-start text:id="<string>" (text:key1="<string>" )? + (text:key2="<string>" )? + (text:string-value-phonetic="<string>" )? + (text:key1-phonetic="<string>" )? + (text:key2-phonetic="<string>" )? + (text:main-entry="<boolean>" )? + >  +
@@ -14561,6 +20090,27 @@

text:alphabetical-index-s <text:index-title-template>    + + Child Relations + <text:alphabetical-index-source (text:index-scope="document | chapter" )? + (text:relative-tab-stop-position="<boolean>" )? + (text:ignore-case="<boolean>" )? + (text:main-entry-style-name="(<NCName>)?" )? + (text:alphabetical-separators="<boolean>" )? + (text:combine-entries="<boolean>" )? + (text:combine-entries-with-dash="<boolean>" )? + (text:combine-entries-with-pp="<boolean>" )? + (text:use-keys-as-entries="<boolean>" )? + (text:capitalize-entries="<boolean>" )? + (text:comma-separated="<boolean>" )? + (fo:language="token]" )? + (fo:country="token]" )? + (fo:script="token]" )? + (style:rfc-language-tag="<language>" )? + (text:sort-algorithm="<string>" )? + (<text:index-title-template ... >)? + (<text:alphabetical-index-entry-template ... >)* >  +
@@ -14590,6 +20140,11 @@

text:author-initials Element   + + Child Relations + <text:author-initials (text:fixed="<boolean>" )? + TEXT>  +
@@ -14619,6 +20174,11 @@

text:author-name Element

  + + Child Relations + <text:author-name (text:fixed="<boolean>" )? + TEXT>  +
@@ -14662,6 +20222,15 @@

text:bibliography Element

<text:index-body>    + + Child Relations + <text:bibliography (text:style-name="(<NCName>)?" )? + text:name="<string>" (text:protected="<boolean>" )? + (text:protection-key="<string>" )? + (text:protection-key-digest-algorithm="<anyIRI>" )? + (xml:id="<ID>" )? + <text:bibliography-source ... ><text:index-body ... >>  +
@@ -14693,6 +20262,19 @@

text:bibliography-config <text:sort-key>*    + + Child Relations + <text:bibliography-configuration (text:prefix="<string>" )? + (text:suffix="<string>" )? + (text:numbered-entries="<boolean>" )? + (text:sort-by-position="<boolean>" )? + (fo:language="token]" )? + (fo:country="token]" )? + (fo:script="token]" )? + (style:rfc-language-tag="<language>" )? + (text:sort-algorithm="<string>" )? + (<text:sort-key ... >)* >  +
@@ -14719,6 +20301,10 @@

text:bibliography-entry <text:index-entry-tab-stop>*    + + Child Relations + <text:bibliography-entry-template text:bibliography-type="article | book | booklet | conference | custom1 | custom2 | custom3 | custom4 | custom5 | email | inbook | incollection | inproceedings | journal | manual | mastersthesis | misc | phdthesis | proceedings | techreport | unpublished | www" text:style-name="(<NCName>)?" (<text:index-entry-span ... > | <text:index-entry-tab-stop ... > | <text:index-entry-bibliography ... >)* >  +
@@ -14779,6 +20365,10 @@

text:bibliography-mark Element   + + Child Relations + <text:bibliography-mark text:bibliography-type="article | book | booklet | conference | custom1 | custom2 | custom3 | custom4 | custom5 | email | inbook | incollection | inproceedings | journal | manual | mastersthesis | misc | phdthesis | proceedings | techreport | unpublished | www" (CHOICE_NAME_CLASS="<string>" )* TEXT>  +
@@ -14802,6 +20392,11 @@

text:bibliography-source Elemen <text:index-title-template>    + + Child Relations + <text:bibliography-source (<text:index-title-template ... >)? + (<text:bibliography-entry-template ... >)* >  +
@@ -14831,6 +20426,11 @@

text:bookmark Element

  + + Child Relations + <text:bookmark text:name="<string>" (xml:id="<ID>" )? + >  +
@@ -14859,6 +20459,10 @@

text:bookmark-end Element

  + + Child Relations + <text:bookmark-end text:name="<string>" >  +
@@ -14881,7 +20485,7 @@

text:bookmark-ref Element

Attributes text:ref-name  - text:reference-format[3]  + text:reference-format[2]    @@ -14889,6 +20493,12 @@

text:bookmark-ref Element

  + + Child Relations + <CHOICE_NAME_CLASS TEXT (text:ref-name="<string>" )? + (text:reference-format="page | chapter | direction | text | number-no-superior | number-all-superior | number" )? + >  +
@@ -14922,6 +20532,18 @@

text:bookmark-start Element

  + + Child Relations + <text:bookmark-start text:name="<string>" (xml:id="<ID>" )? + ( + (xhtml:about="<anyURI> | string]" xhtml:property=" +START_list(string])+ +END_list" + ( (xhtml:datatype="string]" )? + (xhtml:content="<string>" )? + )))? + >  +
@@ -14965,6 +20587,10 @@

text:change Element

  + + Child Relations + <text:change text:change-id="<IDREF>" >  +
@@ -15008,6 +20634,10 @@

text:change-end Element

  + + Child Relations + <text:change-end text:change-id="<IDREF>" >  +
@@ -15051,6 +20681,10 @@

text:change-start Element

  + + Child Relations + <text:change-start text:change-id="<IDREF>" >  +
@@ -15065,7 +20699,7 @@

text:changed-region Element

Attributes - text:id[1]  + text:id[2]  xml:id    @@ -15077,6 +20711,12 @@

text:changed-region Element

<text:insertion>    + + Child Relations + <text:changed-region + (xml:id="<ID>" (text:id="<NCName>" )? + )<text:insertion ... > | <text:deletion ... > | <text:format-change ... >>  +
@@ -15098,8 +20738,8 @@

text:chapter Element

Attributes - text:display[4]  - text:outline-level[3]  + text:display[9]  + text:outline-level[1]    @@ -15107,6 +20747,10 @@

text:chapter Element

  + + Child Relations + <text:chapter text:display="name | number | number-and-name | plain-number-and-name | plain-number" text:outline-level="<nonNegativeInteger>" TEXT>  +
@@ -15138,6 +20782,14 @@

text:character-count Element   + + Child Relations + <CHOICE_NAME_CLASS ( (style:num-format="(1 | i | I | <string>)?" | + (style:num-format="a | A" (style:num-letter-sync="<boolean>" )? + ))? + )? + TEXT>  +
@@ -15159,7 +20811,7 @@

text:conditional-text Element< Attributes - text:condition[2]  + text:condition[1]  text:current-value  text:string-value-if-false  text:string-value-if-true  @@ -15170,6 +20822,11 @@

text:conditional-text Element<   + + Child Relations + <text:conditional-text text:condition="<string>" text:string-value-if-true="<string>" text:string-value-if-false="<string>" (text:current-value="<boolean>" )? + TEXT>  +
@@ -15201,6 +20858,13 @@

text:creation-date Element

  + + Child Relations + <text:creation-date (text:fixed="<boolean>" )? + (style:data-style-name="(<NCName>)?" )? + (text:date-value="<date> | <dateTime>" )? + TEXT>  +
@@ -15224,7 +20888,7 @@

text:creation-time Element

style:data-style-name  text:fixed  - text:time-value[2]  + text:time-value[1]    @@ -15232,6 +20896,13 @@

text:creation-time Element

  + + Child Relations + <text:creation-time (text:fixed="<boolean>" )? + (style:data-style-name="(<NCName>)?" )? + (text:time-value="<time> | <dateTime>" )? + TEXT>  +
@@ -15261,6 +20932,11 @@

text:creator Element

  + + Child Relations + <text:creator (text:fixed="<boolean>" )? + TEXT>  +
@@ -15295,6 +20971,13 @@

text:database-display Element< <form:connection-resource>    + + Child Relations + <text:database-display + (text:table-name="<string>" (text:table-type="table | query | command" )? + text:database-name="<string>" | EMPTY | <form:connection-resource ... >) (style:data-style-name="(<NCName>)?" )? + text:column-name="<string>" TEXT>  +
@@ -15327,6 +21010,12 @@

text:database-name Element

<form:connection-resource>    + + Child Relations + <text:database-name + (text:table-name="<string>" (text:table-type="table | query | command" )? + text:database-name="<string>" | EMPTY | <form:connection-resource ... >)TEXT>  +
@@ -15347,7 +21036,7 @@

text:database-next Element

Attributes - text:condition[2]  + text:condition[1]  text:database-name  text:table-name  text:table-type  @@ -15359,6 +21048,13 @@

text:database-next Element

<form:connection-resource>    + + Child Relations + <text:database-next + (text:table-name="<string>" (text:table-type="table | query | command" )? + text:database-name="<string>" | EMPTY | <form:connection-resource ... >) (text:condition="<string>" )? + >  +
@@ -15386,7 +21082,7 @@

text:database-row-number Elemen text:database-name  text:table-name  text:table-type  - text:value[1]  + text:value[2]    @@ -15395,6 +21091,17 @@

text:database-row-number Elemen <form:connection-resource>    + + Child Relations + <text:database-row-number + (text:table-name="<string>" (text:table-type="table | query | command" )? + text:database-name="<string>" | EMPTY | <form:connection-resource ... >) ( (style:num-format="(1 | i | I | <string>)?" | + (style:num-format="a | A" (style:num-letter-sync="<boolean>" )? + ))? + )? + (text:value="<nonNegativeInteger>" )? + TEXT>  +
@@ -15415,7 +21122,7 @@

text:database-row-select Elemen Attributes - text:condition[2]  + text:condition[1]  text:database-name  text:row-number  text:table-name  @@ -15428,6 +21135,14 @@

text:database-row-select Elemen <form:connection-resource>    + + Child Relations + <text:database-row-select + (text:table-name="<string>" (text:table-type="table | query | command" )? + text:database-name="<string>" | EMPTY | <form:connection-resource ... >) (text:condition="<string>" )? + (text:row-number="<nonNegativeInteger>" )? + >  +
@@ -15460,6 +21175,14 @@

text:date Element

  + + Child Relations + <text:date (text:fixed="<boolean>" )? + (style:data-style-name="(<NCName>)?" )? + (text:date-value="<date> | <dateTime>" )? + (text:date-adjust="<duration>" )? + TEXT>  +
@@ -15489,6 +21212,10 @@

text:dde-connection Element

  + + Child Relations + <text:dde-connection text:connection-name="<string>" TEXT>  +
@@ -15515,6 +21242,11 @@

text:dde-connection-decl Elemen   + + Child Relations + <text:dde-connection-decl office:name="<string>" office:dde-application="<string>" office:dde-topic="<string>" office:dde-item="<string>" (office:automatic-update="<boolean>" )? + >  +
@@ -15547,6 +21279,10 @@

text:dde-connection-decls Elem <text:dde-connection-decl>*    + + Child Relations + <text:dde-connection-decls (<text:dde-connection-decl ... >)* >  +
@@ -15604,6 +21340,10 @@

text:deletion Element

<text:user-index>*    + + Child Relations + <text:deletion <office:change-info ... >(<text:h ... > | <text:p ... > | <text:list ... > | <text:numbered-paragraph ... > | <table:table ... > | <text:section ... > | <text:soft-page-break ... > | <text:table-of-content ... > | <text:illustration-index ... > | <text:table-index ... > | <text:object-index ... > | <text:user-index ... > | <text:alphabetical-index ... > | <text:bibliography ... > | <draw:rect ... > | <draw:line ... > | <draw:polyline ... > | <draw:polygon ... > | <draw:regular-polygon ... > | <draw:path ... > | <draw:circle ... > | <draw:ellipse ... > | <draw:g ... > | <draw:page-thumbnail ... > | <draw:frame ... > | <draw:measure ... > | <draw:caption ... > | <draw:connector ... > | <draw:control ... > | <dr3d:scene ... > | <draw:custom-shape ... > | <draw:a ... > | <text:change ... > | <text:change-start ... > | <text:change-end ... >)* >  +
@@ -15633,6 +21373,11 @@

text:description Element

  + + Child Relations + <text:description (text:fixed="<boolean>" )? + TEXT>  +
@@ -15663,6 +21408,10 @@

text:drop-down Element (new in O <text:label>*    + + Child Relations + <text:drop-down text:name="<string>" (<text:label ... >)* TEXT>  +
@@ -15692,6 +21441,11 @@

text:editing-cycles Element

  + + Child Relations + <text:editing-cycles (text:fixed="<boolean>" )? + TEXT>  +
@@ -15723,6 +21477,13 @@

text:editing-duration Element<   + + Child Relations + <text:editing-duration (text:fixed="<boolean>" )? + (style:data-style-name="(<NCName>)?" )? + (text:duration="<duration>" )? + TEXT>  +
@@ -15753,6 +21514,12 @@

text:execute-macro Element

<office:event-listeners>    + + Child Relations + <text:execute-macro (text:name="<string>" )? + (<office:event-listeners ... >)? + TEXT>  +
@@ -15782,13 +21549,13 @@

text:expression Element

office:value  office:value-type[1]  office:value-type[2]  - office:value-type[3]  office:value-type[4]  office:value-type[5]  + office:value-type[6]  office:value-type[7]  office:value-type[8]  style:data-style-name  - text:display[3]  + text:display[10]  text:formula    @@ -15797,6 +21564,23 @@

text:expression Element

  + + Child Relations + <text:expression (text:formula="<string>" )? + ( + (office:value-type="float" office:value="<double>" ) | + (office:value-type="percentage" office:value="<double>" ) | + (office:value-type="currency" office:value="<double>" (office:currency="<string>" )? + ) | + (office:value-type="date" office:date-value="<date> | <dateTime>" ) | + (office:value-type="time" office:time-value="<duration>" ) | + (office:value-type="boolean" office:boolean-value="<boolean>" ) | + (office:value-type="string" (office:string-value="<string>" )? + ))? + (text:display="value | formula" )? + (style:data-style-name="(<NCName>)?" )? + TEXT>  +
@@ -15818,7 +21602,7 @@

text:file-name Element

Attributes - text:display[7]  + text:display[6]  text:fixed    @@ -15827,6 +21611,12 @@

text:file-name Element

  + + Child Relations + <text:file-name (text:display="full | path | name | name-and-extension" )? + (text:fixed="<boolean>" )? + TEXT>  +
@@ -15849,6 +21639,10 @@

text:format-change Element

<office:change-info>    + + Child Relations + <text:format-change <office:change-info ... >>  +
@@ -15883,11 +21677,11 @@

text:h Element

text:class-names  text:cond-style-name  - text:id[1]  + text:id[2]  text:is-list-header  - text:outline-level[1]  + text:outline-level[2]  text:restart-numbering  - text:start-value[1]  + text:start-value[2]  text:style-name  xhtml:about  xhtml:content  @@ -16031,6 +21825,28 @@

text:h Element

<text:word-count>*    + + Child Relations + <text:h text:outline-level="<positiveInteger>" (text:restart-numbering="<boolean>" )? + (text:start-value="<nonNegativeInteger>" )? + (text:is-list-header="<boolean>" )? + (text:style-name="(<NCName>)?" )? + (text:class-names=" +START_list(<NCName>)* +END_list" )? + (text:cond-style-name="(<NCName>)?" )? + (xml:id="<ID>" (text:id="<NCName>" )? + )? + ( + (xhtml:about="<anyURI> | string]" xhtml:property=" +START_list(string])+ +END_list" + ( (xhtml:datatype="string]" )? + (xhtml:content="<string>" )? + )))? + (<text:number ... >)? + (TEXT | <text:s ... > | <text:tab ... > | <text:line-break ... > | <text:soft-page-break ... > | <text:span ... > | <text:meta ... > | <text:bookmark ... > | <text:bookmark-start ... > | <text:bookmark-end ... > | <text:reference-mark ... > | <text:reference-mark-start ... > | <text:reference-mark-end ... > | <text:note ... > | <text:ruby ... > | <office:annotation ... > | <office:annotation-end ... > | <text:change ... > | <text:change-start ... > | <text:change-end ... > | <draw:rect ... > | <draw:line ... > | <draw:polyline ... > | <draw:polygon ... > | <draw:regular-polygon ... > | <draw:path ... > | <draw:circle ... > | <draw:ellipse ... > | <draw:g ... > | <draw:page-thumbnail ... > | <draw:frame ... > | <draw:measure ... > | <draw:caption ... > | <draw:connector ... > | <draw:control ... > | <dr3d:scene ... > | <draw:custom-shape ... > | <draw:a ... > | <text:date ... > | <text:time ... > | <text:page-number ... > | <text:page-continuation ... > | <text:sender-firstname ... > | <text:sender-lastname ... > | <text:sender-initials ... > | <text:sender-title ... > | <text:sender-position ... > | <text:sender-email ... > | <text:sender-phone-private ... > | <text:sender-fax ... > | <text:sender-company ... > | <text:sender-phone-work ... > | <text:sender-street ... > | <text:sender-city ... > | <text:sender-postal-code ... > | <text:sender-country ... > | <text:sender-state-or-province ... > | <text:author-name ... > | <text:author-initials ... > | <text:chapter ... > | <text:file-name ... > | <text:template-name ... > | <text:sheet-name ... > | <text:variable-set ... > | <text:variable-get ... > | <text:variable-input ... > | <text:user-field-get ... > | <text:user-field-input ... > | <text:sequence ... > | <text:expression ... > | <text:text-input ... > | <text:drop-down ... > | <text:initial-creator ... > | <text:creation-date ... > | <text:creation-time ... > | <text:description ... > | <text:user-defined ... > | <text:print-time ... > | <text:print-date ... > | <text:printed-by ... > | <text:title ... > | <text:subject ... > | <text:keywords ... > | <text:editing-cycles ... > | <text:editing-duration ... > | <text:modification-time ... > | <text:modification-date ... > | <text:creator ... > | <CHOICE_NAME_CLASS ... > | <text:database-display ... > | <text:database-next ... > | <text:database-row-select ... > | <text:database-row-number ... > | <text:database-name ... > | <text:page-variable-set ... > | <text:page-variable-get ... > | <text:placeholder ... > | <text:conditional-text ... > | <text:hidden-text ... > | <CHOICE_NAME_CLASS ... > | <text:note-ref ... > | <text:sequence-ref ... > | <text:script ... > | <text:execute-macro ... > | <text:hidden-paragraph ... > | <text:dde-connection ... > | <text:measure ... > | <text:table-formula ... > | <text:meta-field ... > | <text:toc-mark-start ... > | <text:toc-mark-end ... > | <text:toc-mark ... > | <text:user-index-mark-start ... > | <text:user-index-mark-end ... > | <text:user-index-mark ... > | <text:alphabetical-index-mark-start ... > | <text:alphabetical-index-mark-end ... > | <text:alphabetical-index-mark ... > | <text:bibliography-mark ... > | <presentation:header ... > | <presentation:footer ... > | <presentation:date-time ... > | <text:a ... >)* >  +
@@ -16052,7 +21868,7 @@

text:hidden-paragraph Element< Attributes - text:condition[2]  + text:condition[1]  text:is-hidden    @@ -16061,6 +21877,11 @@

text:hidden-paragraph Element<   + + Child Relations + <text:hidden-paragraph text:condition="<string>" (text:is-hidden="<boolean>" )? + TEXT>  +
@@ -16082,7 +21903,7 @@

text:hidden-text Element

Attributes - text:condition[2]  + text:condition[1]  text:is-hidden  text:string-value    @@ -16092,6 +21913,11 @@

text:hidden-text Element

  + + Child Relations + <text:hidden-text text:condition="<string>" text:string-value="<string>" (text:is-hidden="<boolean>" )? + TEXT>  +
@@ -16135,6 +21961,15 @@

text:illustration-index Element< <text:index-body>    + + Child Relations + <text:illustration-index (text:style-name="(<NCName>)?" )? + text:name="<string>" (text:protected="<boolean>" )? + (text:protection-key="<string>" )? + (text:protection-key-digest-algorithm="<anyIRI>" )? + (xml:id="<ID>" )? + <text:illustration-index-source ... ><text:index-body ... >>  +
@@ -16164,6 +21999,11 @@

text:illustration <text:index-entry-text>*    + + Child Relations + <text:illustration-index-entry-template + (text:style-name="(<NCName>)?" (<text:index-entry-chapter ... > | <text:index-entry-page-number ... > | <text:index-entry-text ... > | <text:index-entry-span ... > | <text:index-entry-tab-stop ... > | <text:index-entry-link-start ... > | <text:index-entry-link-end ... >)* )>  +
@@ -16192,6 +22032,17 @@

text:illustration-index-s <text:index-title-template>    + + Child Relations + <text:illustration-index-source (text:index-scope="document | chapter" )? + (text:relative-tab-stop-position="<boolean>" )? + (text:use-caption="<boolean>" )? + (text:caption-sequence-name="<string>" )? + (text:caption-sequence-format="text | category-and-value | caption" )? + (<text:index-title-template ... >)? + (<text:illustration-index-entry-template ... >)? + >  +
@@ -16223,6 +22074,14 @@

text:image-count Element

  + + Child Relations + <CHOICE_NAME_CLASS ( (style:num-format="(1 | i | I | <string>)?" | + (style:num-format="a | A" (style:num-letter-sync="<boolean>" )? + ))? + )? + TEXT>  +
@@ -16286,6 +22145,10 @@

text:index-body Element

<text:user-index>*    + + Child Relations + <text:index-body (<text:h ... > | <text:p ... > | <text:list ... > | <text:numbered-paragraph ... > | <table:table ... > | <text:section ... > | <text:soft-page-break ... > | <text:table-of-content ... > | <text:illustration-index ... > | <text:table-index ... > | <text:object-index ... > | <text:user-index ... > | <text:alphabetical-index ... > | <text:bibliography ... > | <draw:rect ... > | <draw:line ... > | <draw:polyline ... > | <draw:polygon ... > | <draw:regular-polygon ... > | <draw:path ... > | <draw:circle ... > | <draw:ellipse ... > | <draw:g ... > | <draw:page-thumbnail ... > | <draw:frame ... > | <draw:measure ... > | <draw:caption ... > | <draw:connector ... > | <draw:control ... > | <dr3d:scene ... > | <draw:custom-shape ... > | <draw:a ... > | <text:change ... > | <text:change-start ... > | <text:change-end ... > | <text:index-title ... >)* >  +
@@ -16309,6 +22172,11 @@

text:index-entry-bibliogra   + + Child Relations + <text:index-entry-bibliography (text:style-name="(<NCName>)?" )? + text:bibliography-data-field="address | annote | author | bibliography-type | booktitle | chapter | custom1 | custom2 | custom3 | custom4 | custom5 | edition | editor | howpublished | identifier | institution | isbn | issn | journal | month | note | number | organizations | pages | publisher | report-type | school | series | title | url | volume | year" >  +
@@ -16328,8 +22196,8 @@

text:index-entry-chapter Elemen Attributes - text:display[4]  - text:outline-level[1]  + text:display[9]  + text:outline-level[2]  text:style-name    @@ -16338,6 +22206,13 @@

text:index-entry-chapter Elemen   + + Child Relations + <text:index-entry-chapter (text:style-name="(<NCName>)?" )? + (text:display="name | number | number-and-name | plain-number | plain-number-and-name" )? + (text:outline-level="<positiveInteger>" )? + >  +
@@ -16364,6 +22239,11 @@

text:index-entry-link-end Elem   + + Child Relations + <text:index-entry-link-end (text:style-name="(<NCName>)?" )? + >  +
@@ -16390,6 +22270,11 @@

text:index-entry-link-start   + + Child Relations + <text:index-entry-link-start (text:style-name="(<NCName>)?" )? + >  +
@@ -16417,6 +22302,11 @@

text:index-entry-page-numbe   + + Child Relations + <text:index-entry-page-number (text:style-name="(<NCName>)?" )? + >  +
@@ -16446,6 +22336,11 @@

text:index-entry-span Element<   + + Child Relations + <text:index-entry-span (text:style-name="(<NCName>)?" )? + TEXT>  +
@@ -16468,8 +22363,8 @@

text:index-entry-tab-stop Elem style:leader-char  style:position[1]  - style:type[2]  - style:type[3]  + style:type[1]  + style:type[4]  text:style-name    @@ -16478,6 +22373,13 @@

text:index-entry-tab-stop Elem   + + Child Relations + <text:index-entry-tab-stop (text:style-name="(<NCName>)?" )? + (style:leader-char="string]" )? + style:type="right" | + (style:type="left" style:position="string]" )>  +
@@ -16505,6 +22407,11 @@

text:index-entry-text Element<   + + Child Relations + <text:index-entry-text (text:style-name="(<NCName>)?" )? + >  +
@@ -16527,6 +22434,10 @@

text:index-source-style Element<   + + Child Relations + <text:index-source-style text:style-name="(<NCName>)?" >  +
@@ -16542,7 +22453,7 @@

text:index-source-styles Elemen Attributes - text:outline-level[1]  + text:outline-level[2]    @@ -16551,6 +22462,10 @@

text:index-source-styles Elemen <text:index-source-style>*    + + Child Relations + <text:index-source-styles text:outline-level="<positiveInteger>" (<text:index-source-style ... >)* >  +
@@ -16621,6 +22536,15 @@

text:index-title Element

<text:user-index>*    + + Child Relations + <text:index-title (text:style-name="(<NCName>)?" )? + text:name="<string>" (text:protected="<boolean>" )? + (text:protection-key="<string>" )? + (text:protection-key-digest-algorithm="<anyIRI>" )? + (xml:id="<ID>" )? + (<text:h ... > | <text:p ... > | <text:list ... > | <text:numbered-paragraph ... > | <table:table ... > | <text:section ... > | <text:soft-page-break ... > | <text:table-of-content ... > | <text:illustration-index ... > | <text:table-index ... > | <text:object-index ... > | <text:user-index ... > | <text:alphabetical-index ... > | <text:bibliography ... > | <draw:rect ... > | <draw:line ... > | <draw:polyline ... > | <draw:polygon ... > | <draw:regular-polygon ... > | <draw:path ... > | <draw:circle ... > | <draw:ellipse ... > | <draw:g ... > | <draw:page-thumbnail ... > | <draw:frame ... > | <draw:measure ... > | <draw:caption ... > | <draw:connector ... > | <draw:control ... > | <dr3d:scene ... > | <draw:custom-shape ... > | <draw:a ... > | <text:change ... > | <text:change-start ... > | <text:change-end ... > | <text:index-title ... >)* >  +
@@ -16650,6 +22574,11 @@

text:index-title-template Elem   + + Child Relations + <text:index-title-template (text:style-name="(<NCName>)?" )? + TEXT>  +
@@ -16679,6 +22608,11 @@

text:initial-creator Element   + + Child Relations + <text:initial-creator (text:fixed="<boolean>" )? + TEXT>  +
@@ -16701,6 +22635,10 @@

text:insertion Element

<office:change-info>    + + Child Relations + <text:insertion <office:change-info ... >>  +
@@ -16730,6 +22668,11 @@

text:keywords Element

  + + Child Relations + <text:keywords (text:fixed="<boolean>" )? + TEXT>  +
@@ -16745,7 +22688,7 @@

text:label Element (new in ODF 1.3) Attributes text:current-selected  - text:value[2]  + text:value[1]    @@ -16753,6 +22696,12 @@

text:label Element (new in ODF 1.3)   + + Child Relations + <text:label (text:value="<string>" )? + (text:current-selected="<boolean>" )? + >  +
@@ -16780,6 +22729,10 @@

text:line-break Element

  + + Child Relations + <text:line-break EMPTY>  +
@@ -16813,6 +22766,23 @@

text:linenumbering-conf <text:linenumbering-separator>    + + Child Relations + <text:linenumbering-configuration (text:number-lines="<boolean>" )? + ( (style:num-format="(1 | i | I | <string>)?" | + (style:num-format="a | A" (style:num-letter-sync="<boolean>" )? + ))? + )? + (text:style-name="(<NCName>)?" )? + (text:increment="<nonNegativeInteger>" )? + (text:number-position="left | right | inner | outer" )? + (text:offset="string]" )? + (text:count-empty-lines="<boolean>" )? + (text:count-in-text-boxes="<boolean>" )? + (text:restart-on-page="<boolean>" )? + (<text:linenumbering-separator ... >)? + >  +
@@ -16836,6 +22806,11 @@

text:linenumbering-separato   + + Child Relations + <text:linenumbering-separator (text:increment="<nonNegativeInteger>" )? + TEXT>  +
@@ -16893,6 +22868,15 @@

text:list Element

<text:list-item>*    + + Child Relations + <text:list (text:style-name="(<NCName>)?" )? + (text:continue-numbering="<boolean>" )? + (text:continue-list="<IDREF>" )? + (xml:id="<ID>" )? + (<text:list-header ... >)? + (<text:list-item ... >)* >  +
@@ -16920,6 +22904,13 @@

text:list-header Element

<text:soft-page-break>*    + + Child Relations + <text:list-header (xml:id="<ID>" )? + + ( (<text:number ... >)? + (<text:p ... > | <text:h ... > | <text:list ... > | <text:soft-page-break ... >)* )>  +
@@ -16934,7 +22925,7 @@

text:list-item Element

Attributes - text:start-value[1]  + text:start-value[2]  text:style-override  xml:id    @@ -16949,6 +22940,15 @@

text:list-item Element

<text:soft-page-break>*    + + Child Relations + <text:list-item (text:start-value="<nonNegativeInteger>" )? + (text:style-override="(<NCName>)?" )? + (xml:id="<ID>" )? + + ( (<text:number ... >)? + (<text:p ... > | <text:h ... > | <text:list ... > | <text:soft-page-break ... >)* )>  +
@@ -16978,6 +22978,17 @@

text:list-level-style-bulle <style:text-properties>    + + Child Relations + <text:list-level-style-bullet text:level="<positiveInteger>" (text:style-name="(<NCName>)?" )? + text:bullet-char="string]" + ( (style:num-prefix="<string>" )? + (style:num-suffix="<string>" )? + ) (text:bullet-relative-size="string]" )? + (<style:list-level-properties ... >)? + (<style:text-properties ... >)? + >  +
@@ -17006,6 +23017,14 @@

text:list-level-style-image <style:list-level-properties>    + + Child Relations + <text:list-level-style-image text:level="<positiveInteger>" + (xlink:type="simple" xlink:href="<anyIRI>" (xlink:show="embed" )? + (xlink:actuate="onLoad" )? + ) | <office:binary-data ... > (<style:list-level-properties ... >)? + >  +
@@ -17027,7 +23046,7 @@

text:list-level-style-numbe style:num-suffix  text:display-levels  text:level  - text:start-value[2]  + text:start-value[1]  text:style-name    @@ -17038,6 +23057,21 @@

text:list-level-style-numbe <style:text-properties>    + + Child Relations + <text:list-level-style-number text:level="<positiveInteger>" (text:style-name="(<NCName>)?" )? + (style:num-format="(1 | i | I | <string>)?" | + (style:num-format="a | A" (style:num-letter-sync="<boolean>" )? + ))? + + ( (style:num-prefix="<string>" )? + (style:num-suffix="<string>" )? + ) (text:display-levels="<positiveInteger>" )? + (text:start-value="<positiveInteger>" )? + (<style:list-level-properties ... >)? + (<style:text-properties ... >)? + >  +
@@ -17067,6 +23101,12 @@

text:list-style Element

<text:list-level-style-number>*    + + Child Relations + <text:list-style style:name="<NCName>" (style:display-name="<string>" )? + (text:consecutive-numbering="<boolean>" )? + (<text:list-level-style-number ... > | <text:list-level-style-bullet ... > | <text:list-level-style-image ... >)* >  +
@@ -17096,6 +23136,10 @@

text:measure Element

  + + Child Relations + <text:measure text:kind="value | unit | gap" TEXT>  +
@@ -17258,6 +23302,18 @@

text:meta Element (new in ODF 1.2) <text:word-count>*    + + Child Relations + <text:meta ( + (xhtml:about="<anyURI> | string]" xhtml:property=" +START_list(string])+ +END_list" + ( (xhtml:datatype="string]" )? + (xhtml:content="<string>" )? + )))? + (xml:id="<ID>" )? + (TEXT | <text:s ... > | <text:tab ... > | <text:line-break ... > | <text:soft-page-break ... > | <text:span ... > | <text:meta ... > | <text:bookmark ... > | <text:bookmark-start ... > | <text:bookmark-end ... > | <text:reference-mark ... > | <text:reference-mark-start ... > | <text:reference-mark-end ... > | <text:note ... > | <text:ruby ... > | <office:annotation ... > | <office:annotation-end ... > | <text:change ... > | <text:change-start ... > | <text:change-end ... > | <draw:rect ... > | <draw:line ... > | <draw:polyline ... > | <draw:polygon ... > | <draw:regular-polygon ... > | <draw:path ... > | <draw:circle ... > | <draw:ellipse ... > | <draw:g ... > | <draw:page-thumbnail ... > | <draw:frame ... > | <draw:measure ... > | <draw:caption ... > | <draw:connector ... > | <draw:control ... > | <dr3d:scene ... > | <draw:custom-shape ... > | <draw:a ... > | <text:date ... > | <text:time ... > | <text:page-number ... > | <text:page-continuation ... > | <text:sender-firstname ... > | <text:sender-lastname ... > | <text:sender-initials ... > | <text:sender-title ... > | <text:sender-position ... > | <text:sender-email ... > | <text:sender-phone-private ... > | <text:sender-fax ... > | <text:sender-company ... > | <text:sender-phone-work ... > | <text:sender-street ... > | <text:sender-city ... > | <text:sender-postal-code ... > | <text:sender-country ... > | <text:sender-state-or-province ... > | <text:author-name ... > | <text:author-initials ... > | <text:chapter ... > | <text:file-name ... > | <text:template-name ... > | <text:sheet-name ... > | <text:variable-set ... > | <text:variable-get ... > | <text:variable-input ... > | <text:user-field-get ... > | <text:user-field-input ... > | <text:sequence ... > | <text:expression ... > | <text:text-input ... > | <text:drop-down ... > | <text:initial-creator ... > | <text:creation-date ... > | <text:creation-time ... > | <text:description ... > | <text:user-defined ... > | <text:print-time ... > | <text:print-date ... > | <text:printed-by ... > | <text:title ... > | <text:subject ... > | <text:keywords ... > | <text:editing-cycles ... > | <text:editing-duration ... > | <text:modification-time ... > | <text:modification-date ... > | <text:creator ... > | <CHOICE_NAME_CLASS ... > | <text:database-display ... > | <text:database-next ... > | <text:database-row-select ... > | <text:database-row-number ... > | <text:database-name ... > | <text:page-variable-set ... > | <text:page-variable-get ... > | <text:placeholder ... > | <text:conditional-text ... > | <text:hidden-text ... > | <CHOICE_NAME_CLASS ... > | <text:note-ref ... > | <text:sequence-ref ... > | <text:script ... > | <text:execute-macro ... > | <text:hidden-paragraph ... > | <text:dde-connection ... > | <text:measure ... > | <text:table-formula ... > | <text:meta-field ... > | <text:toc-mark-start ... > | <text:toc-mark-end ... > | <text:toc-mark ... > | <text:user-index-mark-start ... > | <text:user-index-mark-end ... > | <text:user-index-mark ... > | <text:alphabetical-index-mark-start ... > | <text:alphabetical-index-mark-end ... > | <text:alphabetical-index-mark ... > | <text:bibliography-mark ... > | <presentation:header ... > | <presentation:footer ... > | <presentation:date-time ... > | <text:a ... >)* >  +
@@ -17417,6 +23473,11 @@

text:meta-field Element (new in <text:word-count>*    + + Child Relations + <text:meta-field xml:id="<ID>" (style:data-style-name="(<NCName>)?" )? + (TEXT | <text:s ... > | <text:tab ... > | <text:line-break ... > | <text:soft-page-break ... > | <text:span ... > | <text:meta ... > | <text:bookmark ... > | <text:bookmark-start ... > | <text:bookmark-end ... > | <text:reference-mark ... > | <text:reference-mark-start ... > | <text:reference-mark-end ... > | <text:note ... > | <text:ruby ... > | <office:annotation ... > | <office:annotation-end ... > | <text:change ... > | <text:change-start ... > | <text:change-end ... > | <draw:rect ... > | <draw:line ... > | <draw:polyline ... > | <draw:polygon ... > | <draw:regular-polygon ... > | <draw:path ... > | <draw:circle ... > | <draw:ellipse ... > | <draw:g ... > | <draw:page-thumbnail ... > | <draw:frame ... > | <draw:measure ... > | <draw:caption ... > | <draw:connector ... > | <draw:control ... > | <dr3d:scene ... > | <draw:custom-shape ... > | <draw:a ... > | <text:date ... > | <text:time ... > | <text:page-number ... > | <text:page-continuation ... > | <text:sender-firstname ... > | <text:sender-lastname ... > | <text:sender-initials ... > | <text:sender-title ... > | <text:sender-position ... > | <text:sender-email ... > | <text:sender-phone-private ... > | <text:sender-fax ... > | <text:sender-company ... > | <text:sender-phone-work ... > | <text:sender-street ... > | <text:sender-city ... > | <text:sender-postal-code ... > | <text:sender-country ... > | <text:sender-state-or-province ... > | <text:author-name ... > | <text:author-initials ... > | <text:chapter ... > | <text:file-name ... > | <text:template-name ... > | <text:sheet-name ... > | <text:variable-set ... > | <text:variable-get ... > | <text:variable-input ... > | <text:user-field-get ... > | <text:user-field-input ... > | <text:sequence ... > | <text:expression ... > | <text:text-input ... > | <text:drop-down ... > | <text:initial-creator ... > | <text:creation-date ... > | <text:creation-time ... > | <text:description ... > | <text:user-defined ... > | <text:print-time ... > | <text:print-date ... > | <text:printed-by ... > | <text:title ... > | <text:subject ... > | <text:keywords ... > | <text:editing-cycles ... > | <text:editing-duration ... > | <text:modification-time ... > | <text:modification-date ... > | <text:creator ... > | <CHOICE_NAME_CLASS ... > | <text:database-display ... > | <text:database-next ... > | <text:database-row-select ... > | <text:database-row-number ... > | <text:database-name ... > | <text:page-variable-set ... > | <text:page-variable-get ... > | <text:placeholder ... > | <text:conditional-text ... > | <text:hidden-text ... > | <CHOICE_NAME_CLASS ... > | <text:note-ref ... > | <text:sequence-ref ... > | <text:script ... > | <text:execute-macro ... > | <text:hidden-paragraph ... > | <text:dde-connection ... > | <text:measure ... > | <text:table-formula ... > | <text:meta-field ... > | <text:toc-mark-start ... > | <text:toc-mark-end ... > | <text:toc-mark ... > | <text:user-index-mark-start ... > | <text:user-index-mark-end ... > | <text:user-index-mark ... > | <text:alphabetical-index-mark-start ... > | <text:alphabetical-index-mark-end ... > | <text:alphabetical-index-mark ... > | <text:bibliography-mark ... > | <presentation:header ... > | <presentation:footer ... > | <presentation:date-time ... > | <text:a ... >)* >  +
@@ -17448,6 +23509,13 @@

text:modification-date Element   + + Child Relations + <text:modification-date (text:fixed="<boolean>" )? + (style:data-style-name="(<NCName>)?" )? + (text:date-value="<date>" )? + TEXT>  +
@@ -17471,7 +23539,7 @@

text:modification-time Element style:data-style-name  text:fixed  - text:time-value[1]  + text:time-value[2]    @@ -17479,6 +23547,13 @@

text:modification-time Element   + + Child Relations + <text:modification-time (text:fixed="<boolean>" )? + (style:data-style-name="(<NCName>)?" )? + (text:time-value="<time>" )? + TEXT>  +
@@ -17499,7 +23574,7 @@

text:note Element

Attributes - text:id[2]  + text:id[1]  text:note-class    @@ -17510,6 +23585,11 @@

text:note Element

<text:note-citation>    + + Child Relations + <text:note text:note-class="footnote | endnote" (text:id="<string>" )? + <text:note-citation ... ><text:note-body ... >>  +
@@ -17566,6 +23646,10 @@

text:note-body Element

<text:user-index>*    + + Child Relations + <text:note-body (<text:h ... > | <text:p ... > | <text:list ... > | <text:numbered-paragraph ... > | <table:table ... > | <text:section ... > | <text:soft-page-break ... > | <text:table-of-content ... > | <text:illustration-index ... > | <text:table-index ... > | <text:object-index ... > | <text:user-index ... > | <text:alphabetical-index ... > | <text:bibliography ... > | <draw:rect ... > | <draw:line ... > | <draw:polyline ... > | <draw:polygon ... > | <draw:regular-polygon ... > | <draw:path ... > | <draw:circle ... > | <draw:ellipse ... > | <draw:g ... > | <draw:page-thumbnail ... > | <draw:frame ... > | <draw:measure ... > | <draw:caption ... > | <draw:connector ... > | <draw:control ... > | <dr3d:scene ... > | <draw:custom-shape ... > | <draw:a ... > | <text:change ... > | <text:change-start ... > | <text:change-end ... >)* >  +
@@ -17589,6 +23673,11 @@

text:note-citation Element

  + + Child Relations + <text:note-citation (text:label="<string>" )? + TEXT>  +
@@ -17611,6 +23700,10 @@

text:note-continu   + + Child Relations + <text:note-continuation-notice-backward TEXT>  +
@@ -17633,6 +23726,10 @@

text:note-continua   + + Child Relations + <text:note-continuation-notice-forward TEXT>  +
@@ -17656,7 +23753,7 @@

text:note-ref Element

text:note-class  text:ref-name  - text:reference-format[2]  + text:reference-format[1]    @@ -17664,6 +23761,12 @@

text:note-ref Element

  + + Child Relations + <text:note-ref TEXT (text:ref-name="<string>" )? + (text:reference-format="page | chapter | direction | text" )? + text:note-class="footnote | endnote" >  +
@@ -17691,7 +23794,7 @@

text:notes-configuration Elemen text:master-page-name  text:note-class  text:start-numbering-at  - text:start-value[1]  + text:start-value[2]    @@ -17701,6 +23804,26 @@

text:notes-configuration Elemen <text:note-continuation-notice-forward>    + + Child Relations + <text:notes-configuration text:note-class="footnote | endnote" (text:citation-style-name="(<NCName>)?" )? + (text:citation-body-style-name="(<NCName>)?" )? + (text:default-style-name="(<NCName>)?" )? + (text:master-page-name="(<NCName>)?" )? + (text:start-value="<nonNegativeInteger>" )? + + ( (style:num-prefix="<string>" )? + (style:num-suffix="<string>" )? + ) ( (style:num-format="(1 | i | I | <string>)?" | + (style:num-format="a | A" (style:num-letter-sync="<boolean>" )? + ))? + )? + (text:start-numbering-at="document | chapter | page" )? + (text:footnotes-position="text | page | section | document" )? + (<text:note-continuation-notice-forward ... >)? + (<text:note-continuation-notice-backward ... >)? + >  +
@@ -17725,6 +23848,10 @@

text:number Element

  + + Child Relations + <text:number <string>>  +
@@ -17750,7 +23877,7 @@

text:numbered-paragraph Element< text:continue-numbering  text:level  text:list-id  - text:start-value[1]  + text:start-value[2]  text:style-name  xml:id    @@ -17763,6 +23890,14 @@

text:numbered-paragraph Element< <text:p>    + + Child Relations + <text:numbered-paragraph text:list-id="<NCName>" (text:level="<positiveInteger>" )? + (text:style-name="(<NCName>)?" text:continue-numbering="<boolean>" text:start-value="<nonNegativeInteger>" )? + (xml:id="<ID>" )? + (<text:number ... >)? + <text:p ... > | <text:h ... >>  +
@@ -17794,6 +23929,14 @@

text:object-count Element

  + + Child Relations + <CHOICE_NAME_CLASS ( (style:num-format="(1 | i | I | <string>)?" | + (style:num-format="a | A" (style:num-letter-sync="<boolean>" )? + ))? + )? + TEXT>  +
@@ -17837,6 +23980,15 @@

text:object-index Element

<text:object-index-source>    + + Child Relations + <text:object-index (text:style-name="(<NCName>)?" )? + text:name="<string>" (text:protected="<boolean>" )? + (text:protection-key="<string>" )? + (text:protection-key-digest-algorithm="<anyIRI>" )? + (xml:id="<ID>" )? + <text:object-index-source ... ><text:index-body ... >>  +
@@ -17866,6 +24018,11 @@

text:object-index-entry <text:index-entry-text>*    + + Child Relations + <text:object-index-entry-template + (text:style-name="(<NCName>)?" (<text:index-entry-chapter ... > | <text:index-entry-page-number ... > | <text:index-entry-text ... > | <text:index-entry-span ... > | <text:index-entry-tab-stop ... > | <text:index-entry-link-start ... > | <text:index-entry-link-end ... >)* )>  +
@@ -17896,6 +24053,19 @@

text:object-index-source Elemen <text:object-index-entry-template>    + + Child Relations + <text:object-index-source (text:index-scope="document | chapter" )? + (text:relative-tab-stop-position="<boolean>" )? + (text:use-spreadsheet-objects="<boolean>" )? + (text:use-math-objects="<boolean>" )? + (text:use-draw-objects="<boolean>" )? + (text:use-chart-objects="<boolean>" )? + (text:use-other-objects="<boolean>" )? + (<text:index-title-template ... >)? + (<text:object-index-entry-template ... >)? + >  +
@@ -17917,7 +24087,7 @@

text:outline-level-style Elemen style:num-suffix  text:display-levels  text:level  - text:start-value[2]  + text:start-value[1]  text:style-name    @@ -17928,6 +24098,21 @@

text:outline-level-style Elemen <style:text-properties>    + + Child Relations + <text:outline-level-style text:level="<positiveInteger>" (text:style-name="(<NCName>)?" )? + (style:num-format="(1 | i | I | <string>)?" | + (style:num-format="a | A" (style:num-letter-sync="<boolean>" )? + ))? + + ( (style:num-prefix="<string>" )? + (style:num-suffix="<string>" )? + ) (text:display-levels="<positiveInteger>" )? + (text:start-value="<positiveInteger>" )? + (<style:list-level-properties ... >)? + (<style:text-properties ... >)? + >  +
@@ -17951,6 +24136,10 @@

text:outline-style Element

<text:outline-level-style>*    + + Child Relations + <text:outline-style style:name="<NCName>" (<text:outline-level-style ... >)+ >  +
@@ -18014,7 +24203,7 @@

text:p Element

text:class-names  text:cond-style-name  - text:id[1]  + text:id[2]  text:style-name  xhtml:about  xhtml:content  @@ -18157,6 +24346,24 @@

text:p Element

<text:word-count>*    + + Child Relations + <text:p (text:style-name="(<NCName>)?" )? + (text:class-names=" +START_list(<NCName>)* +END_list" )? + (text:cond-style-name="(<NCName>)?" )? + (xml:id="<ID>" (text:id="<NCName>" )? + )? + ( + (xhtml:about="<anyURI> | string]" xhtml:property=" +START_list(string])+ +END_list" + ( (xhtml:datatype="string]" )? + (xhtml:content="<string>" )? + )))? + (TEXT | <text:s ... > | <text:tab ... > | <text:line-break ... > | <text:soft-page-break ... > | <text:span ... > | <text:meta ... > | <text:bookmark ... > | <text:bookmark-start ... > | <text:bookmark-end ... > | <text:reference-mark ... > | <text:reference-mark-start ... > | <text:reference-mark-end ... > | <text:note ... > | <text:ruby ... > | <office:annotation ... > | <office:annotation-end ... > | <text:change ... > | <text:change-start ... > | <text:change-end ... > | <draw:rect ... > | <draw:line ... > | <draw:polyline ... > | <draw:polygon ... > | <draw:regular-polygon ... > | <draw:path ... > | <draw:circle ... > | <draw:ellipse ... > | <draw:g ... > | <draw:page-thumbnail ... > | <draw:frame ... > | <draw:measure ... > | <draw:caption ... > | <draw:connector ... > | <draw:control ... > | <dr3d:scene ... > | <draw:custom-shape ... > | <draw:a ... > | <text:date ... > | <text:time ... > | <text:page-number ... > | <text:page-continuation ... > | <text:sender-firstname ... > | <text:sender-lastname ... > | <text:sender-initials ... > | <text:sender-title ... > | <text:sender-position ... > | <text:sender-email ... > | <text:sender-phone-private ... > | <text:sender-fax ... > | <text:sender-company ... > | <text:sender-phone-work ... > | <text:sender-street ... > | <text:sender-city ... > | <text:sender-postal-code ... > | <text:sender-country ... > | <text:sender-state-or-province ... > | <text:author-name ... > | <text:author-initials ... > | <text:chapter ... > | <text:file-name ... > | <text:template-name ... > | <text:sheet-name ... > | <text:variable-set ... > | <text:variable-get ... > | <text:variable-input ... > | <text:user-field-get ... > | <text:user-field-input ... > | <text:sequence ... > | <text:expression ... > | <text:text-input ... > | <text:drop-down ... > | <text:initial-creator ... > | <text:creation-date ... > | <text:creation-time ... > | <text:description ... > | <text:user-defined ... > | <text:print-time ... > | <text:print-date ... > | <text:printed-by ... > | <text:title ... > | <text:subject ... > | <text:keywords ... > | <text:editing-cycles ... > | <text:editing-duration ... > | <text:modification-time ... > | <text:modification-date ... > | <text:creator ... > | <CHOICE_NAME_CLASS ... > | <text:database-display ... > | <text:database-next ... > | <text:database-row-select ... > | <text:database-row-number ... > | <text:database-name ... > | <text:page-variable-set ... > | <text:page-variable-get ... > | <text:placeholder ... > | <text:conditional-text ... > | <text:hidden-text ... > | <CHOICE_NAME_CLASS ... > | <text:note-ref ... > | <text:sequence-ref ... > | <text:script ... > | <text:execute-macro ... > | <text:hidden-paragraph ... > | <text:dde-connection ... > | <text:measure ... > | <text:table-formula ... > | <text:meta-field ... > | <text:toc-mark-start ... > | <text:toc-mark-end ... > | <text:toc-mark ... > | <text:user-index-mark-start ... > | <text:user-index-mark-end ... > | <text:user-index-mark ... > | <text:alphabetical-index-mark-start ... > | <text:alphabetical-index-mark-end ... > | <text:alphabetical-index-mark ... > | <text:bibliography-mark ... > | <presentation:header ... > | <presentation:footer ... > | <presentation:date-time ... > | <text:a ... >)* >  +
@@ -18179,6 +24386,10 @@

text:page Element

  + + Child Relations + <text:page text:master-page-name="(<NCName>)?" >  +
@@ -18200,7 +24411,7 @@

text:page-continuation Element Attributes - text:select-page[2]  + text:select-page[1]  text:string-value    @@ -18209,6 +24420,11 @@

text:page-continuation Element   + + Child Relations + <text:page-continuation text:select-page="previous | next" (text:string-value="<string>" )? + TEXT>  +
@@ -18240,6 +24456,14 @@

text:page-count Element

  + + Child Relations + <CHOICE_NAME_CLASS ( (style:num-format="(1 | i | I | <string>)?" | + (style:num-format="a | A" (style:num-letter-sync="<boolean>" )? + ))? + )? + TEXT>  +
@@ -18266,7 +24490,7 @@

text:page-number Element

style:num-letter-sync  text:fixed  text:page-adjust  - text:select-page[1]  + text:select-page[2]    @@ -18274,6 +24498,17 @@

text:page-number Element

  + + Child Relations + <text:page-number ( (style:num-format="(1 | i | I | <string>)?" | + (style:num-format="a | A" (style:num-letter-sync="<boolean>" )? + ))? + )? + (text:fixed="<boolean>" )? + (text:page-adjust="<integer>" )? + (text:select-page="previous | current | next" )? + TEXT>  +
@@ -18296,6 +24531,10 @@

text:page-sequence Element

<text:page>*    + + Child Relations + <text:page-sequence (<text:page ... >)+ >  +
@@ -18327,6 +24566,14 @@

text:page-variable-get Element   + + Child Relations + <text:page-variable-get ( (style:num-format="(1 | i | I | <string>)?" | + (style:num-format="a | A" (style:num-letter-sync="<boolean>" )? + ))? + )? + TEXT>  +
@@ -18357,6 +24604,12 @@

text:page-variable-set Element   + + Child Relations + <text:page-variable-set (text:active="<boolean>" )? + (text:page-adjust="<integer>" )? + TEXT>  +
@@ -18388,6 +24641,14 @@

text:paragraph-count Element   + + Child Relations + <CHOICE_NAME_CLASS ( (style:num-format="(1 | i | I | <string>)?" | + (style:num-format="a | A" (style:num-letter-sync="<boolean>" )? + ))? + )? + TEXT>  +
@@ -18418,6 +24679,11 @@

text:placeholder Element

  + + Child Relations + <text:placeholder text:placeholder-type="text | table | text-box | image | object" (text:description="<string>" )? + TEXT>  +
@@ -18449,6 +24715,13 @@

text:print-date Element

  + + Child Relations + <text:print-date (text:fixed="<boolean>" )? + (style:data-style-name="(<NCName>)?" )? + (text:date-value="<date>" )? + TEXT>  +
@@ -18472,7 +24745,7 @@

text:print-time Element

style:data-style-name  text:fixed  - text:time-value[1]  + text:time-value[2]    @@ -18480,6 +24753,13 @@

text:print-time Element

  + + Child Relations + <text:print-time (text:fixed="<boolean>" )? + (style:data-style-name="(<NCName>)?" )? + (text:time-value="<time>" )? + TEXT>  +
@@ -18509,6 +24789,11 @@

text:printed-by Element

  + + Child Relations + <text:printed-by (text:fixed="<boolean>" )? + TEXT>  +
@@ -18537,6 +24822,10 @@

text:reference-mark Element

  + + Child Relations + <text:reference-mark text:name="<string>" >  +
@@ -18565,6 +24854,10 @@

text:reference-mark-end Element<   + + Child Relations + <text:reference-mark-end text:name="<string>" >  +
@@ -18593,6 +24886,10 @@

text:reference-mark-start Elem   + + Child Relations + <text:reference-mark-start text:name="<string>" >  +
@@ -18615,7 +24912,7 @@

text:reference-ref Element

Attributes text:ref-name  - text:reference-format[3]  + text:reference-format[2]    @@ -18623,6 +24920,12 @@

text:reference-ref Element

  + + Child Relations + <CHOICE_NAME_CLASS TEXT (text:ref-name="<string>" )? + (text:reference-format="page | chapter | direction | text | number-no-superior | number-all-superior | number" )? + >  +
@@ -18653,6 +24956,11 @@

text:ruby Element

<text:ruby-text>    + + Child Relations + <text:ruby (text:style-name="(<NCName>)?" )? + <text:ruby-base ... ><text:ruby-text ... >>  +
@@ -18804,6 +25112,10 @@

text:ruby-base Element

<text:word-count>*    + + Child Relations + <text:ruby-base (TEXT | <text:s ... > | <text:tab ... > | <text:line-break ... > | <text:soft-page-break ... > | <text:span ... > | <text:meta ... > | <text:bookmark ... > | <text:bookmark-start ... > | <text:bookmark-end ... > | <text:reference-mark ... > | <text:reference-mark-start ... > | <text:reference-mark-end ... > | <text:note ... > | <text:ruby ... > | <office:annotation ... > | <office:annotation-end ... > | <text:change ... > | <text:change-start ... > | <text:change-end ... > | <draw:rect ... > | <draw:line ... > | <draw:polyline ... > | <draw:polygon ... > | <draw:regular-polygon ... > | <draw:path ... > | <draw:circle ... > | <draw:ellipse ... > | <draw:g ... > | <draw:page-thumbnail ... > | <draw:frame ... > | <draw:measure ... > | <draw:caption ... > | <draw:connector ... > | <draw:control ... > | <dr3d:scene ... > | <draw:custom-shape ... > | <draw:a ... > | <text:date ... > | <text:time ... > | <text:page-number ... > | <text:page-continuation ... > | <text:sender-firstname ... > | <text:sender-lastname ... > | <text:sender-initials ... > | <text:sender-title ... > | <text:sender-position ... > | <text:sender-email ... > | <text:sender-phone-private ... > | <text:sender-fax ... > | <text:sender-company ... > | <text:sender-phone-work ... > | <text:sender-street ... > | <text:sender-city ... > | <text:sender-postal-code ... > | <text:sender-country ... > | <text:sender-state-or-province ... > | <text:author-name ... > | <text:author-initials ... > | <text:chapter ... > | <text:file-name ... > | <text:template-name ... > | <text:sheet-name ... > | <text:variable-set ... > | <text:variable-get ... > | <text:variable-input ... > | <text:user-field-get ... > | <text:user-field-input ... > | <text:sequence ... > | <text:expression ... > | <text:text-input ... > | <text:drop-down ... > | <text:initial-creator ... > | <text:creation-date ... > | <text:creation-time ... > | <text:description ... > | <text:user-defined ... > | <text:print-time ... > | <text:print-date ... > | <text:printed-by ... > | <text:title ... > | <text:subject ... > | <text:keywords ... > | <text:editing-cycles ... > | <text:editing-duration ... > | <text:modification-time ... > | <text:modification-date ... > | <text:creator ... > | <CHOICE_NAME_CLASS ... > | <text:database-display ... > | <text:database-next ... > | <text:database-row-select ... > | <text:database-row-number ... > | <text:database-name ... > | <text:page-variable-set ... > | <text:page-variable-get ... > | <text:placeholder ... > | <text:conditional-text ... > | <text:hidden-text ... > | <CHOICE_NAME_CLASS ... > | <text:note-ref ... > | <text:sequence-ref ... > | <text:script ... > | <text:execute-macro ... > | <text:hidden-paragraph ... > | <text:dde-connection ... > | <text:measure ... > | <text:table-formula ... > | <text:meta-field ... > | <text:toc-mark-start ... > | <text:toc-mark-end ... > | <text:toc-mark ... > | <text:user-index-mark-start ... > | <text:user-index-mark-end ... > | <text:user-index-mark ... > | <text:alphabetical-index-mark-start ... > | <text:alphabetical-index-mark-end ... > | <text:alphabetical-index-mark ... > | <text:bibliography-mark ... > | <presentation:header ... > | <presentation:footer ... > | <presentation:date-time ... > | <text:a ... >)* >  +
@@ -18827,6 +25139,11 @@

text:ruby-text Element

  + + Child Relations + <text:ruby-text (text:style-name="(<NCName>)?" )? + TEXT>  +
@@ -18855,6 +25172,11 @@

text:s Element

  + + Child Relations + <text:s (text:c="<nonNegativeInteger>" )? + >  +
@@ -18886,6 +25208,12 @@

text:script Element

  + + Child Relations + <text:script + (xlink:type="simple" xlink:href="<anyIRI>" ) | TEXT (script:language="<string>" )? + >  +
@@ -18914,9 +25242,9 @@

text:section Element

Attributes - text:condition[2]  - text:display[1]  + text:condition[1]  text:display[2]  + text:display[3]  text:name  text:protected  text:protection-key  @@ -18967,6 +25295,18 @@

text:section Element

<text:user-index>*    + + Child Relations + <text:section (text:style-name="(<NCName>)?" )? + text:name="<string>" (text:protected="<boolean>" )? + (text:protection-key="<string>" )? + (text:protection-key-digest-algorithm="<anyIRI>" )? + (xml:id="<ID>" )? + (text:display="true | none" | + (text:display="condition" text:condition="<string>" ))? + (<text:section-source ... > | <office:dde-source ... >)? + (<text:h ... > | <text:p ... > | <text:list ... > | <text:numbered-paragraph ... > | <table:table ... > | <text:section ... > | <text:soft-page-break ... > | <text:table-of-content ... > | <text:illustration-index ... > | <text:table-index ... > | <text:object-index ... > | <text:user-index ... > | <text:alphabetical-index ... > | <text:bibliography ... > | <draw:rect ... > | <draw:line ... > | <draw:polyline ... > | <draw:polygon ... > | <draw:regular-polygon ... > | <draw:path ... > | <draw:circle ... > | <draw:ellipse ... > | <draw:g ... > | <draw:page-thumbnail ... > | <draw:frame ... > | <draw:measure ... > | <draw:caption ... > | <draw:connector ... > | <draw:control ... > | <dr3d:scene ... > | <draw:custom-shape ... > | <draw:a ... > | <text:change ... > | <text:change-start ... > | <text:change-end ... >)* >  +
@@ -18993,39 +25333,18 @@

text:section-source Element

  - -
- -

text:sender-city Element

-

This element can have a text node child.

- - - - - - - - - - - + +
Parent Elements - <text:a>  - <text:h>  - <text:meta>  - <text:meta-field>  - <text:p>  - <text:ruby-base>  - <text:span>  - 
Attributes - text:fixed  - 
Child ElementsChild Relations<text:section-source (xlink:type="simple" xlink:href="<anyIRI>" (xlink:show="embed" )? + )? + (text:section-name="<string>" )? + (text:filter-name="<string>" )? + > 

-

text:sender-company Element

+

text:sender-city Element

This element can have a text node child.

@@ -19051,39 +25370,15 @@

text:sender-company Element

-
 
-
- -

text:sender-country Element

-

This element can have a text node child.

- - - - - - - - - - - + +
Parent Elements - <text:a>  - <text:h>  - <text:meta>  - <text:meta-field>  - <text:p>  - <text:ruby-base>  - <text:span>  - 
Attributes - text:fixed  - 
Child ElementsChild Relations<text:sender-city (text:fixed="<boolean>" )? + TEXT> 

-

text:sender-email Element

+

text:sender-company Element

This element can have a text node child.

@@ -19109,39 +25404,15 @@

text:sender-email Element

-
 
-
- -

text:sender-fax Element

-

This element can have a text node child.

- - - - - - - - - - - + +
Parent Elements - <text:a>  - <text:h>  - <text:meta>  - <text:meta-field>  - <text:p>  - <text:ruby-base>  - <text:span>  - 
Attributes - text:fixed  - 
Child ElementsChild Relations<text:sender-company (text:fixed="<boolean>" )? + TEXT> 

-

text:sender-firstname Element

+

text:sender-country Element

This element can have a text node child.

@@ -19167,39 +25438,15 @@

text:sender-firstname Element<

-
 
-
- -

text:sender-initials Element

-

This element can have a text node child.

- - - - - - - - - - - + +
Parent Elements - <text:a>  - <text:h>  - <text:meta>  - <text:meta-field>  - <text:p>  - <text:ruby-base>  - <text:span>  - 
Attributes - text:fixed  - 
Child ElementsChild Relations<text:sender-country (text:fixed="<boolean>" )? + TEXT> 

-

text:sender-lastname Element

+

text:sender-email Element

This element can have a text node child.

@@ -19225,39 +25472,15 @@

text:sender-lastname Element  

-
-
- -

text:sender-phone-private Element

-

This element can have a text node child.

- - - - - - - - - - - + +
Parent Elements - <text:a>  - <text:h>  - <text:meta>  - <text:meta-field>  - <text:p>  - <text:ruby-base>  - <text:span>  - 
Attributes - text:fixed  - 
Child ElementsChild Relations<text:sender-email (text:fixed="<boolean>" )? + TEXT> 

-

text:sender-phone-work Element

+

text:sender-fax Element

This element can have a text node child.

@@ -19283,39 +25506,15 @@

text:sender-phone-work Element  

-
-
- -

text:sender-position Element

-

This element can have a text node child.

- - - - - - - - - - - + +
Parent Elements - <text:a>  - <text:h>  - <text:meta>  - <text:meta-field>  - <text:p>  - <text:ruby-base>  - <text:span>  - 
Attributes - text:fixed  - 
Child ElementsChild Relations<text:sender-fax (text:fixed="<boolean>" )? + TEXT> 

-

text:sender-postal-code Element

+

text:sender-firstname Element

This element can have a text node child.

@@ -19341,39 +25540,15 @@

text:sender-postal-code Element<

-
 
-
- -

text:sender-state-or-province Element

-

This element can have a text node child.

- - - - - - - - - - - + +
Parent Elements - <text:a>  - <text:h>  - <text:meta>  - <text:meta-field>  - <text:p>  - <text:ruby-base>  - <text:span>  - 
Attributes - text:fixed  - 
Child ElementsChild Relations<text:sender-firstname (text:fixed="<boolean>" )? + TEXT> 

-

text:sender-street Element

+

text:sender-initials Element

This element can have a text node child.

@@ -19399,6 +25574,249 @@

text:sender-street Element

+ + + + +
 
Child Relations<text:sender-initials (text:fixed="<boolean>" )? + TEXT> 
+
+ +

text:sender-lastname Element

+

This element can have a text node child.

+ + + + + + + + + + + + + + + + + +
Parent Elements + <text:a>  + <text:h>  + <text:meta>  + <text:meta-field>  + <text:p>  + <text:ruby-base>  + <text:span>  + 
Attributes + text:fixed  + 
Child Elements
Child Relations<text:sender-lastname (text:fixed="<boolean>" )? + TEXT> 
+
+ +

text:sender-phone-private Element

+

This element can have a text node child.

+ + + + + + + + + + + + + + + + + +
Parent Elements + <text:a>  + <text:h>  + <text:meta>  + <text:meta-field>  + <text:p>  + <text:ruby-base>  + <text:span>  + 
Attributes + text:fixed  + 
Child Elements
Child Relations<text:sender-phone-private (text:fixed="<boolean>" )? + TEXT> 
+
+ +

text:sender-phone-work Element

+

This element can have a text node child.

+ + + + + + + + + + + + + + + + + +
Parent Elements + <text:a>  + <text:h>  + <text:meta>  + <text:meta-field>  + <text:p>  + <text:ruby-base>  + <text:span>  + 
Attributes + text:fixed  + 
Child Elements
Child Relations<text:sender-phone-work (text:fixed="<boolean>" )? + TEXT> 
+
+ +

text:sender-position Element

+

This element can have a text node child.

+ + + + + + + + + + + + + + + + + +
Parent Elements + <text:a>  + <text:h>  + <text:meta>  + <text:meta-field>  + <text:p>  + <text:ruby-base>  + <text:span>  + 
Attributes + text:fixed  + 
Child Elements
Child Relations<text:sender-position (text:fixed="<boolean>" )? + TEXT> 
+
+ +

text:sender-postal-code Element

+

This element can have a text node child.

+ + + + + + + + + + + + + + + + + +
Parent Elements + <text:a>  + <text:h>  + <text:meta>  + <text:meta-field>  + <text:p>  + <text:ruby-base>  + <text:span>  + 
Attributes + text:fixed  + 
Child Elements
Child Relations<text:sender-postal-code (text:fixed="<boolean>" )? + TEXT> 
+
+ +

text:sender-state-or-province Element

+

This element can have a text node child.

+ + + + + + + + + + + + + + + + + +
Parent Elements + <text:a>  + <text:h>  + <text:meta>  + <text:meta-field>  + <text:p>  + <text:ruby-base>  + <text:span>  + 
Attributes + text:fixed  + 
Child Elements
Child Relations<text:sender-state-or-province (text:fixed="<boolean>" )? + TEXT> 
+
+ +

text:sender-street Element

+

This element can have a text node child.

+ + + + + + + + + + + + + + + + +
Parent Elements + <text:a>  + <text:h>  + <text:meta>  + <text:meta-field>  + <text:p>  + <text:ruby-base>  + <text:span>  + 
Attributes + text:fixed  + 
Child Elements
Child Relations<text:sender-street (text:fixed="<boolean>" )? + TEXT> 

@@ -19428,6 +25846,11 @@

text:sender-title Element

  + + Child Relations + <text:sender-title (text:fixed="<boolean>" )? + TEXT>  +
@@ -19462,6 +25885,16 @@

text:sequence Element

  + + Child Relations + <text:sequence text:name="<string>" (text:formula="<string>" )? + ( (style:num-format="(1 | i | I | <string>)?" | + (style:num-format="a | A" (style:num-letter-sync="<boolean>" )? + ))? + )? + (text:ref-name="<string>" )? + TEXT>  +
@@ -19486,6 +25919,11 @@

text:sequence-decl Element

  + + Child Relations + <text:sequence-decl text:name="<string>" text:display-outline-level="<nonNegativeInteger>" (text:separation-character="string]" )? + >  +
@@ -19518,6 +25956,10 @@

text:sequence-decls Element

<text:sequence-decl>*    + + Child Relations + <text:sequence-decls (<text:sequence-decl ... >)* >  +
@@ -19540,7 +25982,7 @@

text:sequence-ref Element

Attributes text:ref-name  - text:reference-format[1]  + text:reference-format[3]    @@ -19548,6 +25990,12 @@

text:sequence-ref Element

  + + Child Relations + <text:sequence-ref TEXT (text:ref-name="<string>" )? + (text:reference-format="page | chapter | direction | text | category-and-value | caption | value" )? + >  +
@@ -19576,6 +26024,10 @@

text:sheet-name Element

  + + Child Relations + <text:sheet-name TEXT>  +
@@ -19618,6 +26070,10 @@

text:soft-page-break Element&nb   + + Child Relations + <text:soft-page-break EMPTY>  +
@@ -19641,6 +26097,12 @@

text:sort-key Element

  + + Child Relations + <text:sort-key + (text:key="address | annote | author | bibliography-type | booktitle | chapter | custom1 | custom2 | custom3 | custom4 | custom5 | edition | editor | howpublished | identifier | institution | isbn | issn | journal | month | note | number | organizations | pages | publisher | report-type | school | series | title | url | volume | year" (text:sort-ascending="<boolean>" )? + )>  +
@@ -19800,6 +26262,14 @@

text:span Element

<text:word-count>*    + + Child Relations + <text:span (text:style-name="(<NCName>)?" )? + (text:class-names=" +START_list(<NCName>)* +END_list" )? + (TEXT | <text:s ... > | <text:tab ... > | <text:line-break ... > | <text:soft-page-break ... > | <text:span ... > | <text:meta ... > | <text:bookmark ... > | <text:bookmark-start ... > | <text:bookmark-end ... > | <text:reference-mark ... > | <text:reference-mark-start ... > | <text:reference-mark-end ... > | <text:note ... > | <text:ruby ... > | <office:annotation ... > | <office:annotation-end ... > | <text:change ... > | <text:change-start ... > | <text:change-end ... > | <draw:rect ... > | <draw:line ... > | <draw:polyline ... > | <draw:polygon ... > | <draw:regular-polygon ... > | <draw:path ... > | <draw:circle ... > | <draw:ellipse ... > | <draw:g ... > | <draw:page-thumbnail ... > | <draw:frame ... > | <draw:measure ... > | <draw:caption ... > | <draw:connector ... > | <draw:control ... > | <dr3d:scene ... > | <draw:custom-shape ... > | <draw:a ... > | <text:date ... > | <text:time ... > | <text:page-number ... > | <text:page-continuation ... > | <text:sender-firstname ... > | <text:sender-lastname ... > | <text:sender-initials ... > | <text:sender-title ... > | <text:sender-position ... > | <text:sender-email ... > | <text:sender-phone-private ... > | <text:sender-fax ... > | <text:sender-company ... > | <text:sender-phone-work ... > | <text:sender-street ... > | <text:sender-city ... > | <text:sender-postal-code ... > | <text:sender-country ... > | <text:sender-state-or-province ... > | <text:author-name ... > | <text:author-initials ... > | <text:chapter ... > | <text:file-name ... > | <text:template-name ... > | <text:sheet-name ... > | <text:variable-set ... > | <text:variable-get ... > | <text:variable-input ... > | <text:user-field-get ... > | <text:user-field-input ... > | <text:sequence ... > | <text:expression ... > | <text:text-input ... > | <text:drop-down ... > | <text:initial-creator ... > | <text:creation-date ... > | <text:creation-time ... > | <text:description ... > | <text:user-defined ... > | <text:print-time ... > | <text:print-date ... > | <text:printed-by ... > | <text:title ... > | <text:subject ... > | <text:keywords ... > | <text:editing-cycles ... > | <text:editing-duration ... > | <text:modification-time ... > | <text:modification-date ... > | <text:creator ... > | <CHOICE_NAME_CLASS ... > | <text:database-display ... > | <text:database-next ... > | <text:database-row-select ... > | <text:database-row-number ... > | <text:database-name ... > | <text:page-variable-set ... > | <text:page-variable-get ... > | <text:placeholder ... > | <text:conditional-text ... > | <text:hidden-text ... > | <CHOICE_NAME_CLASS ... > | <text:note-ref ... > | <text:sequence-ref ... > | <text:script ... > | <text:execute-macro ... > | <text:hidden-paragraph ... > | <text:dde-connection ... > | <text:measure ... > | <text:table-formula ... > | <text:meta-field ... > | <text:toc-mark-start ... > | <text:toc-mark-end ... > | <text:toc-mark ... > | <text:user-index-mark-start ... > | <text:user-index-mark-end ... > | <text:user-index-mark ... > | <text:alphabetical-index-mark-start ... > | <text:alphabetical-index-mark-end ... > | <text:alphabetical-index-mark ... > | <text:bibliography-mark ... > | <presentation:header ... > | <presentation:footer ... > | <presentation:date-time ... > | <text:a ... >)* >  +
@@ -19829,6 +26299,11 @@

text:subject Element

  + + Child Relations + <text:subject (text:fixed="<boolean>" )? + TEXT>  +
@@ -19857,6 +26332,11 @@

text:tab Element

  + + Child Relations + <text:tab (text:tab-ref="<nonNegativeInteger>" )? + >  +
@@ -19888,6 +26368,14 @@

text:table-count Element

  + + Child Relations + <CHOICE_NAME_CLASS ( (style:num-format="(1 | i | I | <string>)?" | + (style:num-format="a | A" (style:num-letter-sync="<boolean>" )? + ))? + )? + TEXT>  +
@@ -19910,7 +26398,7 @@

text:table-formula Element

Attributes style:data-style-name  - text:display[3]  + text:display[10]  text:formula    @@ -19919,6 +26407,13 @@

text:table-formula Element

  + + Child Relations + <text:table-formula (text:formula="<string>" )? + (text:display="value | formula" )? + (style:data-style-name="(<NCName>)?" )? + TEXT>  +
@@ -19962,6 +26457,15 @@

text:table-index Element

<text:table-index-source>    + + Child Relations + <text:table-index (text:style-name="(<NCName>)?" )? + text:name="<string>" (text:protected="<boolean>" )? + (text:protection-key="<string>" )? + (text:protection-key-digest-algorithm="<anyIRI>" )? + (xml:id="<ID>" )? + <text:table-index-source ... ><text:index-body ... >>  +
@@ -19991,6 +26495,11 @@

text:table-index-entry-t <text:index-entry-text>*    + + Child Relations + <text:table-index-entry-template + (text:style-name="(<NCName>)?" (<text:index-entry-chapter ... > | <text:index-entry-page-number ... > | <text:index-entry-text ... > | <text:index-entry-span ... > | <text:index-entry-tab-stop ... > | <text:index-entry-link-start ... > | <text:index-entry-link-end ... >)* )>  +
@@ -20019,6 +26528,17 @@

text:table-index-source Element< <text:table-index-entry-template>    + + Child Relations + <text:table-index-source (text:index-scope="document | chapter" )? + (text:relative-tab-stop-position="<boolean>" )? + (text:use-caption="<boolean>" )? + (text:caption-sequence-name="<string>" )? + (text:caption-sequence-format="text | category-and-value | caption" )? + (<text:index-title-template ... >)? + (<text:table-index-entry-template ... >)? + >  +
@@ -20062,6 +26582,15 @@

text:table-of-content Element< <text:table-of-content-source>    + + Child Relations + <text:table-of-content (text:style-name="(<NCName>)?" )? + text:name="<string>" (text:protected="<boolean>" )? + (text:protection-key="<string>" )? + (text:protection-key-digest-algorithm="<anyIRI>" )? + (xml:id="<ID>" )? + <text:table-of-content-source ... ><text:index-body ... >>  +
@@ -20076,7 +26605,7 @@

text:table-of-conte Attributes - text:outline-level[1]  + text:outline-level[2]  text:style-name    @@ -20092,6 +26621,10 @@

text:table-of-conte <text:index-entry-text>*    + + Child Relations + <text:table-of-content-entry-template text:outline-level="<positiveInteger>" text:style-name="(<NCName>)?" (<text:index-entry-chapter ... > | <text:index-entry-page-number ... > | <text:index-entry-text ... > | <text:index-entry-span ... > | <text:index-entry-tab-stop ... > | <text:index-entry-link-start ... > | <text:index-entry-link-end ... >)* >  +
@@ -20107,7 +26640,7 @@

text:table-of-content-sourc Attributes text:index-scope  - text:outline-level[1]  + text:outline-level[2]  text:relative-tab-stop-position  text:use-index-marks  text:use-index-source-styles  @@ -20122,6 +26655,17 @@

text:table-of-content-sourc <text:table-of-content-entry-template>*    + + Child Relations + <text:table-of-content-source (text:outline-level="<positiveInteger>" )? + (text:use-outline-level="<boolean>" )? + (text:use-index-marks="<boolean>" )? + (text:use-index-source-styles="<boolean>" )? + (text:index-scope="document | chapter" )? + (text:relative-tab-stop-position="<boolean>" )? + (<text:index-title-template ... >)? + (<text:table-of-content-entry-template ... >)* (<text:index-source-styles ... >)* >  +
@@ -20143,7 +26687,7 @@

text:template-name Element

Attributes - text:display[9]  + text:display[8]    @@ -20151,6 +26695,11 @@

text:template-name Element

  + + Child Relations + <text:template-name (text:display="full | path | name | name-and-extension | area | title" )? + TEXT>  +
@@ -20180,6 +26729,11 @@

text:text-input Element

  + + Child Relations + <text:text-input (text:description="<string>" )? + TEXT>  +
@@ -20204,7 +26758,7 @@

text:time Element

style:data-style-name  text:fixed  text:time-adjust  - text:time-value[2]  + text:time-value[1]    @@ -20212,6 +26766,14 @@

text:time Element

  + + Child Relations + <text:time (text:fixed="<boolean>" )? + (style:data-style-name="(<NCName>)?" )? + (text:time-value="<time> | <dateTime>" )? + (text:time-adjust="<duration>" )? + TEXT>  +
@@ -20241,6 +26803,11 @@

text:title Element

  + + Child Relations + <text:title (text:fixed="<boolean>" )? + TEXT>  +
@@ -20261,7 +26828,7 @@

text:toc-mark Element

Attributes - text:outline-level[1]  + text:outline-level[2]  text:string-value    @@ -20270,6 +26837,11 @@

text:toc-mark Element

  + + Child Relations + <text:toc-mark text:string-value="<string>" (text:outline-level="<positiveInteger>" )? + >  +
@@ -20290,7 +26862,7 @@

text:toc-mark-end Element

Attributes - text:id[2]  + text:id[1]    @@ -20298,6 +26870,10 @@

text:toc-mark-end Element

  + + Child Relations + <text:toc-mark-end text:id="<string>" >  +
@@ -20318,8 +26894,8 @@

text:toc-mark-start Element

Attributes - text:id[2]  - text:outline-level[1]  + text:id[1]  + text:outline-level[2]    @@ -20327,6 +26903,12 @@

text:toc-mark-start Element

  + + Child Relations + <text:toc-mark-start + (text:id="<string>" (text:outline-level="<positiveInteger>" )? + )>  +
@@ -20356,6 +26938,11 @@

text:tracked-changes Element<text:changed-region>*    + + Child Relations + <text:tracked-changes (text:track-changes="<boolean>" )? + (<text:changed-region ... >)* >  +
@@ -20392,6 +26979,17 @@

text:user-defined Element

  + + Child Relations + <text:user-defined (text:fixed="<boolean>" )? + text:name="<string>" (style:data-style-name="(<NCName>)?" )? + (office:value="<double>" )? + (office:date-value="<date> | <dateTime>" )? + (office:time-value="<duration>" )? + (office:boolean-value="<boolean>" )? + (office:string-value="<string>" )? + TEXT>  +
@@ -20414,9 +27012,9 @@

text:user-field-decl Elementoffice:value  office:value-type[1]  office:value-type[2]  - office:value-type[3]  office:value-type[4]  office:value-type[5]  + office:value-type[6]  office:value-type[7]  office:value-type[8]  text:formula  @@ -20428,6 +27026,20 @@

text:user-field-decl Element   + + Child Relations + <text:user-field-decl text:name="<string>" (text:formula="<string>" )? + + (office:value-type="float" office:value="<double>" ) | + (office:value-type="percentage" office:value="<double>" ) | + (office:value-type="currency" office:value="<double>" (office:currency="<string>" )? + ) | + (office:value-type="date" office:date-value="<date> | <dateTime>" ) | + (office:value-type="time" office:time-value="<duration>" ) | + (office:value-type="boolean" office:boolean-value="<boolean>" ) | + (office:value-type="string" (office:string-value="<string>" )? + )>  +
@@ -20460,6 +27072,10 @@

text:user-field-decls Element< <text:user-field-decl>*    + + Child Relations + <text:user-field-decls (<text:user-field-decl ... >)* >  +
@@ -20482,7 +27098,7 @@

text:user-field-get Element

Attributes style:data-style-name  - text:display[6]  + text:display[4]  text:name    @@ -20491,6 +27107,12 @@

text:user-field-get Element

  + + Child Relations + <text:user-field-get text:name="<string>" (text:display="value | formula | none" )? + (style:data-style-name="(<NCName>)?" )? + TEXT>  +
@@ -20522,6 +27144,12 @@

text:user-field-input Element<   + + Child Relations + <text:user-field-input text:name="<string>" (text:description="<string>" )? + (style:data-style-name="(<NCName>)?" )? + TEXT>  +
@@ -20565,6 +27193,15 @@

text:user-index Element

<text:user-index-source>    + + Child Relations + <text:user-index (text:style-name="(<NCName>)?" )? + text:name="<string>" (text:protected="<boolean>" )? + (text:protection-key="<string>" )? + (text:protection-key-digest-algorithm="<anyIRI>" )? + (xml:id="<ID>" )? + <text:user-index-source ... ><text:index-body ... >>  +
@@ -20579,7 +27216,7 @@

text:user-index-entry-tem Attributes - text:outline-level[1]  + text:outline-level[2]  text:style-name    @@ -20595,6 +27232,10 @@

text:user-index-entry-tem <text:index-entry-text>*    + + Child Relations + <text:user-index-entry-template text:outline-level="<positiveInteger>" text:style-name="(<NCName>)?" (<text:index-entry-chapter ... > | <text:index-entry-page-number ... > | <text:index-entry-text ... > | <text:index-entry-span ... > | <text:index-entry-tab-stop ... > | <text:index-entry-link-start ... > | <text:index-entry-link-end ... >)* >  +
@@ -20616,7 +27257,7 @@

text:user-index-mark ElementAttributes text:index-name  - text:outline-level[1]  + text:outline-level[2]  text:string-value    @@ -20625,6 +27266,11 @@

text:user-index-mark Element   + + Child Relations + <text:user-index-mark text:string-value="<string>" (text:outline-level="<positiveInteger>" )? + text:index-name="<string>" >  +
@@ -20645,7 +27291,7 @@

text:user-index-mark-end Elemen Attributes - text:id[2]  + text:id[1]    @@ -20653,6 +27299,10 @@

text:user-index-mark-end Elemen   + + Child Relations + <text:user-index-mark-end text:id="<string>" >  +
@@ -20673,9 +27323,9 @@

text:user-index-mark-start El Attributes - text:id[2]  + text:id[1]  text:index-name  - text:outline-level[1]  + text:outline-level[2]    @@ -20683,6 +27333,11 @@

text:user-index-mark-start El   + + Child Relations + <text:user-index-mark-start text:id="<string>" (text:outline-level="<positiveInteger>" )? + text:index-name="<string>" >  +
@@ -20717,6 +27372,20 @@

text:user-index-source Element<text:user-index-entry-template>*    + + Child Relations + <text:user-index-source (text:index-scope="document | chapter" )? + (text:relative-tab-stop-position="<boolean>" )? + (text:use-index-marks="<boolean>" )? + (text:use-index-source-styles="<boolean>" )? + (text:use-graphics="<boolean>" )? + (text:use-tables="<boolean>" )? + (text:use-floating-frames="<boolean>" )? + (text:use-objects="<boolean>" )? + (text:copy-outline-levels="<boolean>" )? + text:index-name="<string>" (<text:index-title-template ... >)? + (<text:user-index-entry-template ... >)* (<text:index-source-styles ... >)* >  +
@@ -20740,6 +27409,10 @@

text:variable-decl Element

  + + Child Relations + <text:variable-decl text:name="<string>" office:value-type="float | time | date | percentage | currency | boolean | string" >  +
@@ -20772,6 +27445,10 @@

text:variable-decls Element

<text:variable-decl>*    + + Child Relations + <text:variable-decls (<text:variable-decl ... >)* >  +
@@ -20794,7 +27471,7 @@

text:variable-get Element

Attributes style:data-style-name  - text:display[3]  + text:display[10]  text:name    @@ -20803,6 +27480,12 @@

text:variable-get Element

  + + Child Relations + <text:variable-get text:name="<string>" (text:display="value | formula" )? + (style:data-style-name="(<NCName>)?" )? + TEXT>  +
@@ -20827,7 +27510,7 @@

text:variable-input Element

office:value-type[9]  style:data-style-name  text:description  - text:display[8]  + text:display[7]  text:name    @@ -20836,6 +27519,13 @@

text:variable-input Element

  + + Child Relations + <text:variable-input text:name="<string>" (text:description="<string>" )? + office:value-type="float | time | date | percentage | currency | boolean | string" (text:display="value | none" )? + (style:data-style-name="(<NCName>)?" )? + TEXT>  +
@@ -20865,13 +27555,13 @@

text:variable-set Element

office:value  office:value-type[1]  office:value-type[2]  - office:value-type[3]  office:value-type[4]  office:value-type[5]  + office:value-type[6]  office:value-type[7]  office:value-type[8]  style:data-style-name  - text:display[8]  + text:display[7]  text:formula  text:name    @@ -20881,6 +27571,22 @@

text:variable-set Element

  + + Child Relations + <text:variable-set text:name="<string>" (text:formula="<string>" )? + + (office:value-type="float" office:value="<double>" ) | + (office:value-type="percentage" office:value="<double>" ) | + (office:value-type="currency" office:value="<double>" (office:currency="<string>" )? + ) | + (office:value-type="date" office:date-value="<date> | <dateTime>" ) | + (office:value-type="time" office:time-value="<duration>" ) | + (office:value-type="boolean" office:boolean-value="<boolean>" ) | + (office:value-type="string" (office:string-value="<string>" )? + ) (text:display="value | none" )? + (style:data-style-name="(<NCName>)?" )? + TEXT>  +
@@ -20912,6 +27618,14 @@

text:word-count Element

  + + Child Relations + <CHOICE_NAME_CLASS ( (style:num-format="(1 | i | I | <string>)?" | + (style:num-format="a | A" (style:num-letter-sync="<boolean>" )? + ))? + )? + TEXT>  +
@@ -20935,6 +27649,11 @@

xforms:model Element

[any org.w3c.dom.Element]    + + Child Relations + <xforms:model + ((*:*="TEXT" )* (<*:* ... >)* )>  +

anim:audio-level Attribute

@@ -20948,7 +27667,7 @@

anim:audio-level Attribute

Datatypes - double  + double    @@ -20956,6 +27675,10 @@

anim:audio-level Attribute

  + + RNG Relations + anim:audio-level="<double>"   +

anim:color-interpolation Attribute

@@ -20974,10 +27697,14 @@

anim:color-interpolation Attr Values - "hsl"  - "rgb"  + "hsl"  + "rgb"    + + RNG Relations + anim:color-interpolation="rgb | hsl"   +

anim:color-interpolation-direction Attribute

@@ -20996,10 +27723,14 @@

anim:color-interpol Values - "clockwise"  - "counter-clockwise"  + "clockwise"  + "counter-clockwise"    + + RNG Relations + anim:color-interpolation-direction="clockwise | counter-clockwise"   +

anim:command Attribute

@@ -21013,7 +27744,7 @@

anim:command Attribute

Datatypes - string  + string    @@ -21021,6 +27752,10 @@

anim:command Attribute

  + + RNG Relations + anim:command="<string>"   +

anim:formula Attribute

@@ -21038,7 +27773,7 @@

anim:formula Attribute

Datatypes - string  + string    @@ -21046,6 +27781,10 @@

anim:formula Attribute

  + + RNG Relations + anim:formula="<string>"   +

anim:id Attribute

@@ -21063,7 +27802,7 @@

anim:id Attribute

Datatypes - NCName  + NCName    @@ -21071,6 +27810,10 @@

anim:id Attribute

  + + RNG Relations + anim:id="<NCName>"   +

anim:iterate-interval Attribute

@@ -21084,7 +27827,7 @@

anim:iterate-interval Attribute< Datatypes - duration  + duration    @@ -21092,6 +27835,10 @@

anim:iterate-interval Attribute<   + + RNG Relations + anim:iterate-interval="<duration>"   +

anim:iterate-type Attribute

@@ -21105,7 +27852,7 @@

anim:iterate-type Attribute

Datatypes - string  + string    @@ -21113,6 +27860,10 @@

anim:iterate-type Attribute

  + + RNG Relations + anim:iterate-type="<string>"   +

anim:name Attribute

@@ -21126,7 +27877,7 @@

anim:name Attribute

Datatypes - string  + string    @@ -21134,6 +27885,10 @@

anim:name Attribute

  + + RNG Relations + anim:name="<string>"   +

anim:sub-item Attribute

@@ -21154,7 +27909,7 @@

anim:sub-item Attribute

Datatypes - string  + string    @@ -21162,6 +27917,10 @@

anim:sub-item Attribute

  + + RNG Relations + anim:sub-item="<string>"   +

anim:value Attribute

@@ -21175,7 +27934,7 @@

anim:value Attribute

Datatypes - string  + string    @@ -21183,6 +27942,10 @@

anim:value Attribute

  + + RNG Relations + anim:value="<string>"   +

chart:angle-offset Attribute (new in ODF 1.2)

@@ -21196,7 +27959,7 @@

chart:angle-offset Attribute&nb Datatypes - string  + string    @@ -21204,6 +27967,10 @@

chart:angle-offset Attribute&nb   + + RNG Relations + chart:angle-offset="<string>"   +

chart:attached-axis Attribute

@@ -21217,7 +27984,7 @@

chart:attached-axis Attribute< Datatypes - string  + string    @@ -21225,6 +27992,10 @@

chart:attached-axis Attribute<   + + RNG Relations + chart:attached-axis="<string>"   +

chart:auto-position Attribute (new in ODF 1.2)

@@ -21243,10 +28014,14 @@

chart:auto-position Attribute& Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + chart:auto-position="<boolean>"   +

chart:auto-size Attribute (new in ODF 1.2)

@@ -21265,10 +28040,14 @@

chart:auto-size Attribute (ne Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + chart:auto-size="<boolean>"   +

chart:automatic-content Attribute (new in ODF 1.2)

@@ -21287,10 +28066,14 @@

chart:automatic-content Attrib Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + chart:automatic-content="<boolean>"   +

chart:axis-label-position Attribute (new in ODF 1.2)

@@ -21309,12 +28092,16 @@

chart:axis-label-position At Values - "near-axis"  - "near-axis-other-side"  - "outside-end"  - "outside-start"  + "near-axis"  + "near-axis-other-side"  + "outside-end"  + "outside-start"    + + RNG Relations + chart:axis-label-position="near-axis | near-axis-other-side | outside-start | outside-end"   +

chart:axis-position Attribute (new in ODF 1.2)

@@ -21328,16 +28115,20 @@

chart:axis-position Attribute& Datatypes - double  + double    Values - "end"  - "start"  + "end"  + "start"    + + RNG Relations + chart:axis-position="start | end | <double>"   +

chart:class[1] Attribute

@@ -21353,7 +28144,7 @@

chart:class[1] Attribute

Datatypes - QName  + QName    @@ -21361,6 +28152,10 @@

chart:class[1] Attribute

  + + RNG Relations + chart:class="QName]"   +

chart:class[2] Attribute

@@ -21380,10 +28175,14 @@

chart:class[2] Attribute

Values - "major"  - "minor"  + "major"  + "minor"    + + RNG Relations + chart:class="major | minor"   +

chart:column-mapping Attribute

@@ -21397,7 +28196,7 @@

chart:column-mapping Attribute Datatypes - string  + string    @@ -21405,6 +28204,10 @@

chart:column-mapping Attribute   + + RNG Relations + chart:column-mapping="<string>"   +

chart:connect-bars Attribute (new in ODF 1.2)

@@ -21423,10 +28226,14 @@

chart:connect-bars Attribute&nb Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + chart:connect-bars="<boolean>"   +

chart:data-label-number Attribute (new in ODF 1.2)

@@ -21445,12 +28252,16 @@

chart:data-label-number Attrib Values - "none"  - "percentage"  - "value"  - "value-and-percentage"  + "none"  + "percentage"  + "value"  + "value-and-percentage"    + + RNG Relations + chart:data-label-number="none | value | percentage | value-and-percentage"   +

chart:data-label-series Attribute (new in ODF 1.3)

@@ -21469,10 +28280,14 @@

chart:data-label-series Attrib Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + chart:data-label-series="<boolean>"   +

chart:data-label-symbol Attribute (new in ODF 1.2)

@@ -21491,10 +28306,14 @@

chart:data-label-symbol Attrib Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + chart:data-label-symbol="<boolean>"   +

chart:data-label-text Attribute (new in ODF 1.2)

@@ -21513,10 +28332,14 @@

chart:data-label-text Attribute< Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + chart:data-label-text="<boolean>"   +

chart:data-source-has-labels Attribute

@@ -21535,12 +28358,16 @@

chart:data-source-has-lab Values - "both"  - "column"  - "none"  - "row"  + "both"  + "column"  + "none"  + "row"    + + RNG Relations + chart:data-source-has-labels="none | row | column | both"   +

chart:deep Attribute (new in ODF 1.2)

@@ -21559,10 +28386,14 @@

chart:deep Attribute (new in ODF 1 Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + chart:deep="<boolean>"   +

chart:dimension Attribute

@@ -21582,11 +28413,15 @@

chart:dimension Attribute

Values - "x"  - "y"  - "z"  + "x"  + "y"  + "z"    + + RNG Relations + chart:dimension="x | y | z"   +

chart:display-equation Attribute (new in ODF 1.2)

@@ -21605,10 +28440,14 @@

chart:display-equation Attribut Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + chart:display-equation="<boolean>"   +

chart:display-label Attribute (new in ODF 1.2)

@@ -21627,10 +28466,14 @@

chart:display-label Attribute& Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + chart:display-label="<boolean>"   +

chart:display-r-square Attribute (new in ODF 1.2)

@@ -21649,10 +28492,14 @@

chart:display-r-square Attribut Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + chart:display-r-square="<boolean>"   +

chart:error-category Attribute (new in ODF 1.2)

@@ -21671,16 +28518,20 @@

chart:error-category Attribute Values - "cell-range"  - "constant"  - "error-margin"  - "none"  - "percentage"  - "standard-deviation"  - "standard-error"  - "variance"  + "cell-range"  + "constant"  + "error-margin"  + "none"  + "percentage"  + "standard-deviation"  + "standard-error"  + "variance"    + + RNG Relations + chart:error-category="none | variance | standard-deviation | percentage | error-margin | constant | standard-error | cell-range"   +

chart:error-lower-indicator Attribute (new in ODF 1.2)

@@ -21699,10 +28550,14 @@

chart:error-lower-indicato Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + chart:error-lower-indicator="<boolean>"   +

chart:error-lower-limit Attribute (new in ODF 1.2)

@@ -21716,7 +28571,7 @@

chart:error-lower-limit Attrib Datatypes - double  + double    @@ -21724,6 +28579,10 @@

chart:error-lower-limit Attrib   + + RNG Relations + chart:error-lower-limit="<double>"   +

chart:error-lower-range Attribute (new in ODF 1.2)

@@ -21737,7 +28596,7 @@

chart:error-lower-range Attrib Datatypes - string  + string    @@ -21745,6 +28604,10 @@

chart:error-lower-range Attrib   + + RNG Relations + chart:error-lower-range="<string>"   +

chart:error-margin Attribute (new in ODF 1.2)

@@ -21758,7 +28621,7 @@

chart:error-margin Attribute&nb Datatypes - double  + double    @@ -21766,6 +28629,10 @@

chart:error-margin Attribute&nb   + + RNG Relations + chart:error-margin="<double>"   +

chart:error-percentage Attribute (new in ODF 1.2)

@@ -21779,7 +28646,7 @@

chart:error-percentage Attribut Datatypes - double  + double    @@ -21787,6 +28654,10 @@

chart:error-percentage Attribut   + + RNG Relations + chart:error-percentage="<double>"   +

chart:error-upper-indicator Attribute (new in ODF 1.2)

@@ -21805,10 +28676,14 @@

chart:error-upper-indicato Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + chart:error-upper-indicator="<boolean>"   +

chart:error-upper-limit Attribute (new in ODF 1.2)

@@ -21822,7 +28697,7 @@

chart:error-upper-limit Attrib Datatypes - double  + double    @@ -21830,6 +28705,10 @@

chart:error-upper-limit Attrib   + + RNG Relations + chart:error-upper-limit="<double>"   +

chart:error-upper-range Attribute (new in ODF 1.2)

@@ -21843,7 +28722,7 @@

chart:error-upper-range Attrib Datatypes - string  + string    @@ -21851,6 +28730,10 @@

chart:error-upper-range Attrib   + + RNG Relations + chart:error-upper-range="<string>"   +

chart:gap-width Attribute (new in ODF 1.2)

@@ -21864,7 +28747,7 @@

chart:gap-width Attribute (ne Datatypes - integer  + integer    @@ -21872,6 +28755,10 @@

chart:gap-width Attribute (ne   + + RNG Relations + chart:gap-width="<integer>"   +

chart:group-bars-per-axis Attribute (new in ODF 1.2)

@@ -21890,10 +28777,14 @@

chart:group-bars-per-axis At Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + chart:group-bars-per-axis="<boolean>"   +

chart:hole-size Attribute (new in ODF 1.2)

@@ -21907,7 +28798,7 @@

chart:hole-size Attribute (ne Datatypes - string  + string    @@ -21915,6 +28806,10 @@

chart:hole-size Attribute (ne   + + RNG Relations + chart:hole-size="string]"   +

chart:include-hidden-cells Attribute (new in ODF 1.2)

@@ -21933,10 +28828,14 @@

chart:include-hidden-cells Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + chart:include-hidden-cells="<boolean>"   +

chart:interpolation Attribute (new in ODF 1.2)

@@ -21955,15 +28854,19 @@

chart:interpolation Attribute& Values - "b-spline"  - "cubic-spline"  - "none"  - "step-center-x"  - "step-center-y"  - "step-end"  - "step-start"  + "b-spline"  + "cubic-spline"  + "none"  + "step-center-x"  + "step-center-y"  + "step-end"  + "step-start"    + + RNG Relations + chart:interpolation="none | cubic-spline | b-spline | step-start | step-end | step-center-x | step-center-y"   +

chart:interval-major Attribute (new in ODF 1.2)

@@ -21977,7 +28880,7 @@

chart:interval-major Attribute Datatypes - double  + double    @@ -21985,6 +28888,10 @@

chart:interval-major Attribute   + + RNG Relations + chart:interval-major="<double>"   +

chart:interval-minor-divisor Attribute (new in ODF 1.2)

@@ -21998,7 +28905,7 @@

chart:interval-minor-divi Datatypes - positiveInteger  + positiveInteger    @@ -22006,6 +28913,10 @@

chart:interval-minor-divi   + + RNG Relations + chart:interval-minor-divisor="<positiveInteger>"   +

chart:japanese-candle-stick Attribute (new in ODF 1.2)

@@ -22024,10 +28935,14 @@

chart:japanese-candle-stic Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + chart:japanese-candle-stick="<boolean>"   +

chart:label-arrangement Attribute (new in ODF 1.2)

@@ -22046,11 +28961,15 @@

chart:label-arrangement Attrib Values - "side-by-side"  - "stagger-even"  - "stagger-odd"  + "side-by-side"  + "stagger-even"  + "stagger-odd"    + + RNG Relations + chart:label-arrangement="side-by-side | stagger-even | stagger-odd"   +

chart:label-cell-address Attribute

@@ -22064,7 +28983,7 @@

chart:label-cell-address Attr Datatypes - string  + string    @@ -22072,6 +28991,10 @@

chart:label-cell-address Attr   + + RNG Relations + chart:label-cell-address="<string>"   +

chart:label-position Attribute (new in ODF 1.2)

@@ -22090,21 +29013,25 @@

chart:label-position Attribute Values - "avoid-overlap"  - "bottom"  - "bottom-left"  - "bottom-right"  - "center"  - "inside"  - "left"  - "near-origin"  - "outside"  - "right"  - "top"  - "top-left"  - "top-right"  + "avoid-overlap"  + "bottom"  + "bottom-left"  + "bottom-right"  + "center"  + "inside"  + "left"  + "near-origin"  + "outside"  + "right"  + "top"  + "top-left"  + "top-right"    + + RNG Relations + chart:label-position="avoid-overlap | center | top | top-right | right | bottom-right | bottom | bottom-left | left | top-left | inside | outside | near-origin"   +

chart:label-position-negative Attribute (new in ODF 1.2)

@@ -22123,21 +29050,25 @@

chart:label-position-neg Values - "avoid-overlap"  - "bottom"  - "bottom-left"  - "bottom-right"  - "center"  - "inside"  - "left"  - "near-origin"  - "outside"  - "right"  - "top"  - "top-left"  - "top-right"  + "avoid-overlap"  + "bottom"  + "bottom-left"  + "bottom-right"  + "center"  + "inside"  + "left"  + "near-origin"  + "outside"  + "right"  + "top"  + "top-left"  + "top-right"    + + RNG Relations + chart:label-position-negative="avoid-overlap | center | top | top-right | right | bottom-right | bottom | bottom-left | left | top-left | inside | outside | near-origin"   +

chart:legend-align Attribute

@@ -22156,11 +29087,15 @@

chart:legend-align Attribute Values - "center"  - "end"  - "start"  + "center"  + "end"  + "start"    + + RNG Relations + chart:legend-align="start | center | end"   +

chart:legend-position[1] Attribute

@@ -22180,12 +29115,16 @@

chart:legend-position[1] Attribu Values - "bottom-end"  - "bottom-start"  - "top-end"  - "top-start"  + "bottom"  + "end"  + "start"  + "top"    + + RNG Relations + chart:legend-position="start | end | top | bottom"   +

chart:legend-position[2] Attribute

@@ -22205,12 +29144,16 @@

chart:legend-position[2] Attribu Values - "bottom"  - "end"  - "start"  - "top"  + "bottom-end"  + "bottom-start"  + "top-end"  + "top-start"    + + RNG Relations + chart:legend-position="top-start | bottom-start | top-end | bottom-end"   +

chart:lines Attribute (new in ODF 1.2)

@@ -22229,10 +29172,14 @@

chart:lines Attribute (new in ODF Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + chart:lines="<boolean>"   +

chart:link-data-style-to-source Attribute (new in ODF 1.2)

@@ -22251,10 +29198,14 @@

chart:link-data-style- Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + chart:link-data-style-to-source="<boolean>"   +

chart:logarithmic Attribute (new in ODF 1.2)

@@ -22273,10 +29224,14 @@

chart:logarithmic Attribute  Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + chart:logarithmic="<boolean>"   +

chart:maximum Attribute (new in ODF 1.2)

@@ -22290,7 +29245,7 @@

chart:maximum Attribute (new in Datatypes - double  + double    @@ -22298,6 +29253,10 @@

chart:maximum Attribute (new in   + + RNG Relations + chart:maximum="<double>"   +

chart:mean-value Attribute (new in ODF 1.2)

@@ -22316,10 +29275,14 @@

chart:mean-value Attribute ( Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + chart:mean-value="<boolean>"   +

chart:minimum Attribute (new in ODF 1.2)

@@ -22333,7 +29296,7 @@

chart:minimum Attribute (new in Datatypes - double  + double    @@ -22341,6 +29304,10 @@

chart:minimum Attribute (new in   + + RNG Relations + chart:minimum="<double>"   +

chart:name Attribute

@@ -22354,7 +29321,7 @@

chart:name Attribute

Datatypes - string  + string    @@ -22362,6 +29329,10 @@

chart:name Attribute

  + + RNG Relations + chart:name="<string>"   +

chart:origin Attribute (new in ODF 1.2)

@@ -22375,7 +29346,7 @@

chart:origin Attribute (new in O Datatypes - double  + double    @@ -22383,6 +29354,10 @@

chart:origin Attribute (new in O   + + RNG Relations + chart:origin="<double>"   +

chart:overlap Attribute (new in ODF 1.2)

@@ -22396,7 +29371,7 @@

chart:overlap Attribute (new in Datatypes - integer  + integer    @@ -22404,6 +29379,10 @@

chart:overlap Attribute (new in   + + RNG Relations + chart:overlap="<integer>"   +

chart:percentage Attribute (new in ODF 1.2)

@@ -22422,10 +29401,14 @@

chart:percentage Attribute ( Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + chart:percentage="<boolean>"   +

chart:pie-offset Attribute (new in ODF 1.2)

@@ -22439,7 +29422,7 @@

chart:pie-offset Attribute ( Datatypes - nonNegativeInteger  + nonNegativeInteger    @@ -22447,6 +29430,10 @@

chart:pie-offset Attribute (   + + RNG Relations + chart:pie-offset="<nonNegativeInteger>"   +

chart:regression-force-intercept Attribute (new in ODF 1.3)

@@ -22465,10 +29452,14 @@

chart:regression-forc Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + chart:regression-force-intercept="<boolean>"   +

chart:regression-intercept-value Attribute (new in ODF 1.3)

@@ -22482,7 +29473,7 @@

chart:regression-inte Datatypes - double  + double    @@ -22490,6 +29481,10 @@

chart:regression-inte   + + RNG Relations + chart:regression-intercept-value="<double>"   +

chart:regression-max-degree Attribute (new in ODF 1.3)

@@ -22503,7 +29498,7 @@

chart:regression-max-degre Datatypes - positiveInteger  + positiveInteger    @@ -22511,6 +29506,10 @@

chart:regression-max-degre   + + RNG Relations + chart:regression-max-degree="<positiveInteger>"   +

chart:regression-moving-type Attribute (new in ODF 1.3)

@@ -22529,11 +29528,15 @@

chart:regression-moving-t Values - "averaged-abscissa"  - "central"  - "prior"  + "averaged-abscissa"  + "central"  + "prior"    + + RNG Relations + chart:regression-moving-type="prior | central | averaged-abscissa"   +

chart:regression-name Attribute (new in ODF 1.3)

@@ -22547,7 +29550,7 @@

chart:regression-name Attribute< Datatypes - string  + string    @@ -22555,6 +29558,10 @@

chart:regression-name Attribute<   + + RNG Relations + chart:regression-name="<string>"   +

chart:regression-period Attribute (new in ODF 1.3)

@@ -22568,7 +29575,7 @@

chart:regression-period Attrib Datatypes - positiveInteger  + positiveInteger    @@ -22576,6 +29583,10 @@

chart:regression-period Attrib   + + RNG Relations + chart:regression-period="<positiveInteger>"   +

chart:regression-type Attribute (new in ODF 1.2)

@@ -22594,15 +29605,19 @@

chart:regression-type Attribute< Values - "exponential"  - "linear"  - "logarithmic"  - "moving-average"  - "none"  - "polynomial"  - "power"  + "exponential"  + "linear"  + "logarithmic"  + "moving-average"  + "none"  + "polynomial"  + "power"    + + RNG Relations + chart:regression-type="none | linear | logarithmic | moving-average | exponential | power | polynomial"   +

chart:repeated Attribute

@@ -22616,7 +29631,7 @@

chart:repeated Attribute

Datatypes - positiveInteger  + positiveInteger    @@ -22624,6 +29639,10 @@

chart:repeated Attribute

  + + RNG Relations + chart:repeated="<positiveInteger>"   +

chart:reverse-direction Attribute (new in ODF 1.2)

@@ -22642,10 +29661,14 @@

chart:reverse-direction Attrib Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + chart:reverse-direction="<boolean>"   +

chart:right-angled-axes Attribute (new in ODF 1.2)

@@ -22664,10 +29687,14 @@

chart:right-angled-axes Attrib Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + chart:right-angled-axes="<boolean>"   +

chart:row-mapping Attribute

@@ -22681,7 +29708,7 @@

chart:row-mapping Attribute

Datatypes - string  + string    @@ -22689,6 +29716,10 @@

chart:row-mapping Attribute

  + + RNG Relations + chart:row-mapping="<string>"   +

chart:scale-text Attribute (new in ODF 1.2)

@@ -22707,10 +29738,14 @@

chart:scale-text Attribute ( Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + chart:scale-text="<boolean>"   +

chart:series-source Attribute (new in ODF 1.2)

@@ -22729,10 +29764,14 @@

chart:series-source Attribute& Values - "columns"  - "rows"  + "columns"  + "rows"    + + RNG Relations + chart:series-source="columns | rows"   +

chart:solid-type Attribute (new in ODF 1.2)

@@ -22751,12 +29790,16 @@

chart:solid-type Attribute ( Values - "cone"  - "cuboid"  - "cylinder"  - "pyramid"  + "cone"  + "cuboid"  + "cylinder"  + "pyramid"    + + RNG Relations + chart:solid-type="cuboid | cylinder | cone | pyramid"   +

chart:sort-by-x-values Attribute (new in ODF 1.2)

@@ -22775,10 +29818,14 @@

chart:sort-by-x-values Attribut Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + chart:sort-by-x-values="<boolean>"   +

chart:spline-order Attribute (new in ODF 1.2)

@@ -22792,7 +29839,7 @@

chart:spline-order Attribute&nb Datatypes - positiveInteger  + positiveInteger    @@ -22800,6 +29847,10 @@

chart:spline-order Attribute&nb   + + RNG Relations + chart:spline-order="<positiveInteger>"   +

chart:spline-resolution Attribute (new in ODF 1.2)

@@ -22813,7 +29864,7 @@

chart:spline-resolution Attrib Datatypes - positiveInteger  + positiveInteger    @@ -22821,6 +29872,10 @@

chart:spline-resolution Attrib   + + RNG Relations + chart:spline-resolution="<positiveInteger>"   +

chart:stacked Attribute (new in ODF 1.2)

@@ -22839,10 +29894,14 @@

chart:stacked Attribute (new in Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + chart:stacked="<boolean>"   +

chart:style-name Attribute

@@ -22875,7 +29934,7 @@

chart:style-name Attribute

Datatypes - NCName  + NCName    @@ -22883,6 +29942,10 @@

chart:style-name Attribute

  + + RNG Relations + chart:style-name="(<NCName>)?"   +

chart:symbol-height Attribute (new in ODF 1.2)

@@ -22896,7 +29959,7 @@

chart:symbol-height Attribute& Datatypes - string  + string    @@ -22904,6 +29967,10 @@

chart:symbol-height Attribute&   + + RNG Relations + chart:symbol-height="string]"   +

chart:symbol-name Attribute (new in ODF 1.2)

@@ -22922,23 +29989,27 @@

chart:symbol-name Attribute  Values - "arrow-down"  - "arrow-left"  - "arrow-right"  - "arrow-up"  - "asterisk"  - "bow-tie"  - "circle"  - "diamond"  - "horizontal-bar"  - "hourglass"  - "plus"  - "square"  - "star"  - "vertical-bar"  - "x"  + "arrow-down"  + "arrow-left"  + "arrow-right"  + "arrow-up"  + "asterisk"  + "bow-tie"  + "circle"  + "diamond"  + "horizontal-bar"  + "hourglass"  + "plus"  + "square"  + "star"  + "vertical-bar"  + "x"    + + RNG Relations + chart:symbol-name="square | diamond | arrow-down | arrow-up | arrow-right | arrow-left | bow-tie | hourglass | circle | star | x | plus | asterisk | horizontal-bar | vertical-bar"   +

chart:symbol-type[1] Attribute (new in ODF 1.2)

@@ -22958,9 +30029,13 @@

chart:symbol-type[1] Attribute&n Values - "image"  + "automatic"    + + RNG Relations + chart:symbol-type="automatic"   +

chart:symbol-type[2] Attribute (new in ODF 1.2)

@@ -22980,9 +30055,13 @@

chart:symbol-type[2] Attribute&n Values - "named-symbol"  + "named-symbol"    + + RNG Relations + chart:symbol-type="named-symbol"   +

chart:symbol-type[3] Attribute (new in ODF 1.2)

@@ -23002,9 +30081,13 @@

chart:symbol-type[3] Attribute&n Values - "none"  + "image"    + + RNG Relations + chart:symbol-type="image"   +

chart:symbol-type[4] Attribute (new in ODF 1.2)

@@ -23024,9 +30107,13 @@

chart:symbol-type[4] Attribute&n Values - "automatic"  + "none"    + + RNG Relations + chart:symbol-type="none"   +

chart:symbol-width Attribute (new in ODF 1.2)

@@ -23040,7 +30127,7 @@

chart:symbol-width Attribute&nb Datatypes - string  + string    @@ -23048,6 +30135,10 @@

chart:symbol-width Attribute&nb   + + RNG Relations + chart:symbol-width="string]"   +

chart:text-overlap Attribute (new in ODF 1.2)

@@ -23066,10 +30157,14 @@

chart:text-overlap Attribute&nb Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + chart:text-overlap="<boolean>"   +

chart:three-dimensional Attribute (new in ODF 1.2)

@@ -23088,10 +30183,14 @@

chart:three-dimensional Attrib Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + chart:three-dimensional="<boolean>"   +

chart:tick-mark-position Attribute (new in ODF 1.2)

@@ -23110,11 +30209,15 @@

chart:tick-mark-position Attr Values - "at-axis"  - "at-labels"  - "at-labels-and-axis"  + "at-axis"  + "at-labels"  + "at-labels-and-axis"    + + RNG Relations + chart:tick-mark-position="at-labels | at-axis | at-labels-and-axis"   +

chart:tick-marks-major-inner Attribute (new in ODF 1.2)

@@ -23133,10 +30236,14 @@

chart:tick-marks-major-in Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + chart:tick-marks-major-inner="<boolean>"   +

chart:tick-marks-major-outer Attribute (new in ODF 1.2)

@@ -23155,10 +30262,14 @@

chart:tick-marks-major-ou Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + chart:tick-marks-major-outer="<boolean>"   +

chart:tick-marks-minor-inner Attribute (new in ODF 1.2)

@@ -23177,10 +30288,14 @@

chart:tick-marks-minor-in Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + chart:tick-marks-minor-inner="<boolean>"   +

chart:tick-marks-minor-outer Attribute (new in ODF 1.2)

@@ -23199,10 +30314,14 @@

chart:tick-marks-minor-ou Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + chart:tick-marks-minor-outer="<boolean>"   +

chart:treat-empty-cells Attribute (new in ODF 1.2)

@@ -23221,11 +30340,15 @@

chart:treat-empty-cells Attrib Values - "ignore"  - "leave-gap"  - "use-zero"  + "ignore"  + "leave-gap"  + "use-zero"    + + RNG Relations + chart:treat-empty-cells="use-zero | leave-gap | ignore"   +

chart:values-cell-range-address Attribute

@@ -23239,7 +30362,7 @@

chart:values-cell-rang Datatypes - string  + string    @@ -23247,6 +30370,10 @@

chart:values-cell-rang   + + RNG Relations + chart:values-cell-range-address="<string>"   +

chart:vertical Attribute (new in ODF 1.2)

@@ -23265,10 +30392,14 @@

chart:vertical Attribute (new Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + chart:vertical="<boolean>"   +

chart:visible Attribute (new in ODF 1.2)

@@ -23287,10 +30418,14 @@

chart:visible Attribute (new in Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + chart:visible="<boolean>"   +

config:name Attribute

@@ -23308,7 +30443,7 @@

config:name Attribute

Datatypes - string  + string    @@ -23316,6 +30451,10 @@

config:name Attribute

  + + RNG Relations + config:name="<string>"   +

config:type Attribute

@@ -23334,16 +30473,20 @@

config:type Attribute

Values - "base64Binary"  - "boolean"  - "datetime"  - "double"  - "int"  - "long"  - "short"  - "string"  + "base64Binary"  + "boolean"  + "datetime"  + "double"  + "int"  + "long"  + "short"  + "string"    + + RNG Relations + config:type="boolean | short | int | long | double | string | datetime | base64Binary"   +

db:additional-column-statement Attribute (new in ODF 1.2)

@@ -23357,7 +30500,7 @@

db:additional-column-st Datatypes - string  + string    @@ -23365,6 +30508,10 @@

db:additional-column-st   + + RNG Relations + db:additional-column-statement="<string>"   +

db:append-table-alias-name Attribute (new in ODF 1.2)

@@ -23383,10 +30530,14 @@

db:append-table-alias-name Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + db:append-table-alias-name="<boolean>"   +

db:apply-command Attribute (new in ODF 1.2)

@@ -23406,10 +30557,14 @@

db:apply-command Attribute ( Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + db:apply-command="<boolean>"   +

db:as-template Attribute (new in ODF 1.2)

@@ -23428,10 +30583,14 @@

db:as-template Attribute (new Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + db:as-template="<boolean>"   +

db:base-dn Attribute (new in ODF 1.2)

@@ -23445,7 +30604,7 @@

db:base-dn Attribute (new in ODF 1 Datatypes - string  + string    @@ -23453,6 +30612,10 @@

db:base-dn Attribute (new in ODF 1   + + RNG Relations + db:base-dn="<string>"   +

db:boolean-comparison-mode Attribute (new in ODF 1.2)

@@ -23471,12 +30634,16 @@

db:boolean-comparison-mode Values - "equal-boolean"  - "equal-integer"  - "equal-use-only-zero"  - "is-boolean"  + "equal-boolean"  + "equal-integer"  + "equal-use-only-zero"  + "is-boolean"    + + RNG Relations + db:boolean-comparison-mode="equal-integer | is-boolean | equal-boolean | equal-use-only-zero"   +

db:catalog-name Attribute (new in ODF 1.2)

@@ -23493,7 +30660,7 @@

db:catalog-name Attribute (ne Datatypes - string  + string    @@ -23501,6 +30668,10 @@

db:catalog-name Attribute (ne   + + RNG Relations + db:catalog-name="<string>"   +

db:command Attribute (new in ODF 1.2)

@@ -23516,7 +30687,7 @@

db:command Attribute (new in ODF 1 Datatypes - string  + string    @@ -23524,6 +30695,10 @@

db:command Attribute (new in ODF 1   + + RNG Relations + db:command="<string>"   +

db:data-source-setting-is-list Attribute (new in ODF 1.2)

@@ -23542,10 +30717,14 @@

db:data-source-setting- Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + db:data-source-setting-is-list="<boolean>"   +

db:data-source-setting-name Attribute (new in ODF 1.2)

@@ -23559,7 +30738,7 @@

db:data-source-setting-nam Datatypes - string  + string    @@ -23567,6 +30746,10 @@

db:data-source-setting-nam   + + RNG Relations + db:data-source-setting-name="<string>"   +

db:data-source-setting-type Attribute (new in ODF 1.2)

@@ -23585,14 +30768,18 @@

db:data-source-setting-typ Values - "boolean"  - "double"  - "int"  - "long"  - "short"  - "string"  + "boolean"  + "double"  + "int"  + "long"  + "short"  + "string"    + + RNG Relations + db:data-source-setting-type="boolean | short | int | long | double | string"   +

db:data-type Attribute (new in ODF 1.2)

@@ -23611,37 +30798,41 @@

db:data-type Attribute (new in O Values - "array"  - "bigint"  - "binary"  - "bit"  - "blob"  - "boolean"  - "char"  - "clob"  - "date"  - "decimal"  - "distinct"  - "double"  - "float"  - "integer"  - "longvarbinary"  - "longvarchar"  - "numeric"  - "object"  - "other"  - "real"  - "ref"  - "smallint"  - "sqlnull"  - "struct"  - "time"  - "timestmp"  - "tinyint"  - "varbinary"  - "varchar"  + "array"  + "bigint"  + "binary"  + "bit"  + "blob"  + "boolean"  + "char"  + "clob"  + "date"  + "decimal"  + "distinct"  + "double"  + "float"  + "integer"  + "longvarbinary"  + "longvarchar"  + "numeric"  + "object"  + "other"  + "real"  + "ref"  + "smallint"  + "sqlnull"  + "struct"  + "time"  + "timestmp"  + "tinyint"  + "varbinary"  + "varchar"    + + RNG Relations + db:data-type="bit | boolean | tinyint | smallint | integer | bigint | float | real | double | numeric | decimal | char | varchar | longvarchar | date | time | timestmp | binary | varbinary | longvarbinary | sqlnull | other | object | distinct | struct | array | blob | clob | ref"   +

db:database-name Attribute (new in ODF 1.2)

@@ -23655,7 +30846,7 @@

db:database-name Attribute ( Datatypes - string  + string    @@ -23663,6 +30854,10 @@

db:database-name Attribute (   + + RNG Relations + db:database-name="<string>"   +

db:decimal Attribute (new in ODF 1.2)

@@ -23676,7 +30871,7 @@

db:decimal Attribute (new in ODF 1 Datatypes - string  + string    @@ -23684,6 +30879,10 @@

db:decimal Attribute (new in ODF 1   + + RNG Relations + db:decimal="<string>"   +

db:default-cell-style-name Attribute (new in ODF 1.2)

@@ -23697,7 +30896,7 @@

db:default-cell-style-name Datatypes - NCName  + NCName    @@ -23705,6 +30904,10 @@

db:default-cell-style-name   + + RNG Relations + db:default-cell-style-name="(<NCName>)?"   +

db:default-row-style-name Attribute (new in ODF 1.2)

@@ -23719,7 +30922,7 @@

db:default-row-style-name At Datatypes - NCName  + NCName    @@ -23727,6 +30930,10 @@

db:default-row-style-name At   + + RNG Relations + db:default-row-style-name="(<NCName>)?"   +

db:delete-rule Attribute (new in ODF 1.2)

@@ -23745,13 +30952,17 @@

db:delete-rule Attribute (new Values - "cascade"  - "no-action"  - "restrict"  - "set-default"  - "set-null"  + "cascade"  + "no-action"  + "restrict"  + "set-default"  + "set-null"    + + RNG Relations + db:delete-rule="cascade | restrict | set-null | no-action | set-default"   +

db:description Attribute (new in ODF 1.2)

@@ -23770,7 +30981,7 @@

db:description Attribute (new Datatypes - string  + string    @@ -23778,6 +30989,10 @@

db:description Attribute (new   + + RNG Relations + db:description="<string>"   +

db:enable-sql92-check Attribute (new in ODF 1.2)

@@ -23796,10 +31011,14 @@

db:enable-sql92-check Attribute< Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + db:enable-sql92-check="<boolean>"   +

db:encoding Attribute (new in ODF 1.2)

@@ -23813,7 +31032,7 @@

db:encoding Attribute (new in ODF Datatypes - string  + string    @@ -23821,6 +31040,10 @@

db:encoding Attribute (new in ODF   + + RNG Relations + db:encoding="string]"   +

db:escape-processing Attribute (new in ODF 1.2)

@@ -23839,10 +31062,14 @@

db:escape-processing Attribute Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + db:escape-processing="<boolean>"   +

db:extension Attribute (new in ODF 1.2)

@@ -23856,7 +31083,7 @@

db:extension Attribute (new in O Datatypes - string  + string    @@ -23864,6 +31091,10 @@

db:extension Attribute (new in O   + + RNG Relations + db:extension="<string>"   +

db:field Attribute (new in ODF 1.2)

@@ -23877,7 +31108,7 @@

db:field Attribute (new in ODF 1.2) Datatypes - string  + string    @@ -23885,6 +31116,10 @@

db:field Attribute (new in ODF 1.2)   + + RNG Relations + db:field="<string>"   +

db:hostname Attribute (new in ODF 1.2)

@@ -23898,7 +31133,7 @@

db:hostname Attribute (new in ODF Datatypes - string  + string    @@ -23906,6 +31141,10 @@

db:hostname Attribute (new in ODF   + + RNG Relations + db:hostname="<string>"   +

db:ignore-driver-privileges Attribute (new in ODF 1.2)

@@ -23924,10 +31163,14 @@

db:ignore-driver-privilege Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + db:ignore-driver-privileges="<boolean>"   +

db:is-ascending Attribute (new in ODF 1.2)

@@ -23946,10 +31189,14 @@

db:is-ascending Attribute (ne Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + db:is-ascending="<boolean>"   +

db:is-autoincrement Attribute (new in ODF 1.2)

@@ -23968,10 +31215,14 @@

db:is-autoincrement Attribute& Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + db:is-autoincrement="<boolean>"   +

db:is-clustered Attribute (new in ODF 1.2)

@@ -23990,10 +31241,14 @@

db:is-clustered Attribute (ne Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + db:is-clustered="<boolean>"   +

db:is-empty-allowed Attribute (new in ODF 1.2)

@@ -24012,10 +31267,14 @@

db:is-empty-allowed Attribute& Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + db:is-empty-allowed="<boolean>"   +

db:is-first-row-header-line Attribute (new in ODF 1.2)

@@ -24035,10 +31294,14 @@

db:is-first-row-header-lin Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + db:is-first-row-header-line="<boolean>"   +

db:is-nullable Attribute (new in ODF 1.2)

@@ -24057,10 +31320,14 @@

db:is-nullable Attribute (new Values - "no-nulls"  - "nullable"  + "no-nulls"  + "nullable"    + + RNG Relations + db:is-nullable="no-nulls | nullable"   +

db:is-password-required Attribute (new in ODF 1.2)

@@ -24079,10 +31346,14 @@

db:is-password-required Attrib Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + db:is-password-required="<boolean>"   +

db:is-table-name-length-limited Attribute (new in ODF 1.2)

@@ -24101,10 +31372,14 @@

db:is-table-name-lengt Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + db:is-table-name-length-limited="<boolean>"   +

db:is-unique Attribute (new in ODF 1.2)

@@ -24123,10 +31398,14 @@

db:is-unique Attribute (new in O Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + db:is-unique="<boolean>"   +

db:local-socket Attribute (new in ODF 1.2)

@@ -24140,7 +31419,7 @@

db:local-socket Attribute (ne Datatypes - string  + string    @@ -24148,6 +31427,10 @@

db:local-socket Attribute (ne   + + RNG Relations + db:local-socket="<string>"   +

db:login-timeout Attribute (new in ODF 1.2)

@@ -24161,7 +31444,7 @@

db:login-timeout Attribute ( Datatypes - positiveInteger  + positiveInteger    @@ -24169,6 +31452,10 @@

db:login-timeout Attribute (   + + RNG Relations + db:login-timeout="<positiveInteger>"   +

db:max-row-count Attribute (new in ODF 1.2)

@@ -24182,7 +31469,7 @@

db:max-row-count Attribute ( Datatypes - integer  + integer    @@ -24190,6 +31477,10 @@

db:max-row-count Attribute (   + + RNG Relations + db:max-row-count="<integer>"   +

db:media-type Attribute (new in ODF 1.2)

@@ -24203,7 +31494,7 @@

db:media-type Attribute (new in Datatypes - string  + string    @@ -24211,6 +31502,10 @@

db:media-type Attribute (new in   + + RNG Relations + db:media-type="<string>"   +

db:name Attribute (new in ODF 1.2)

@@ -24236,7 +31531,7 @@

db:name Attribute (new in ODF 1.2) Datatypes - string  + string    @@ -24244,6 +31539,10 @@

db:name Attribute (new in ODF 1.2)   + + RNG Relations + db:name="<string>"   +

db:parameter-name-substitution Attribute (new in ODF 1.2)

@@ -24262,10 +31561,14 @@

db:parameter-name-subst Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + db:parameter-name-substitution="<boolean>"   +

db:port Attribute (new in ODF 1.2)

@@ -24279,7 +31582,7 @@

db:port Attribute (new in ODF 1.2) Datatypes - positiveInteger  + positiveInteger    @@ -24287,6 +31590,10 @@

db:port Attribute (new in ODF 1.2)   + + RNG Relations + db:port="<positiveInteger>"   +

db:precision Attribute (new in ODF 1.2)

@@ -24300,7 +31607,7 @@

db:precision Attribute (new in O Datatypes - positiveInteger  + positiveInteger    @@ -24308,6 +31615,10 @@

db:precision Attribute (new in O   + + RNG Relations + db:precision="<positiveInteger>"   +

db:referenced-table-name Attribute (new in ODF 1.2)

@@ -24321,7 +31632,7 @@

db:referenced-table-name Attr Datatypes - string  + string    @@ -24329,6 +31640,10 @@

db:referenced-table-name Attr   + + RNG Relations + db:referenced-table-name="<string>"   +

db:related-column-name Attribute (new in ODF 1.2)

@@ -24342,7 +31657,7 @@

db:related-column-name Attribut Datatypes - string  + string    @@ -24350,6 +31665,10 @@

db:related-column-name Attribut   + + RNG Relations + db:related-column-name="<string>"   +

db:row-retrieving-statement Attribute (new in ODF 1.2)

@@ -24363,7 +31682,7 @@

db:row-retrieving-statemen Datatypes - string  + string    @@ -24371,6 +31690,10 @@

db:row-retrieving-statemen   + + RNG Relations + db:row-retrieving-statement="<string>"   +

db:scale Attribute (new in ODF 1.2)

@@ -24384,7 +31707,7 @@

db:scale Attribute (new in ODF 1.2) Datatypes - positiveInteger  + positiveInteger    @@ -24392,6 +31715,10 @@

db:scale Attribute (new in ODF 1.2)   + + RNG Relations + db:scale="<positiveInteger>"   +

db:schema-name Attribute (new in ODF 1.2)

@@ -24407,7 +31734,7 @@

db:schema-name Attribute (new Datatypes - string  + string    @@ -24415,6 +31742,10 @@

db:schema-name Attribute (new   + + RNG Relations + db:schema-name="<string>"   +

db:show-deleted Attribute (new in ODF 1.2)

@@ -24434,10 +31765,14 @@

db:show-deleted Attribute (ne Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + db:show-deleted="<boolean>"   +

db:string Attribute (new in ODF 1.2)

@@ -24451,7 +31786,7 @@

db:string Attribute (new in ODF 1.2 Datatypes - string  + string    @@ -24459,6 +31794,10 @@

db:string Attribute (new in ODF 1.2   + + RNG Relations + db:string="<string>"   +

db:style-name Attribute (new in ODF 1.2)

@@ -24474,7 +31813,7 @@

db:style-name Attribute (new in Datatypes - NCName  + NCName    @@ -24482,6 +31821,10 @@

db:style-name Attribute (new in   + + RNG Relations + db:style-name="(<NCName>)?"   +

db:suppress-version-columns Attribute (new in ODF 1.2)

@@ -24500,10 +31843,14 @@

db:suppress-version-column Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + db:suppress-version-columns="<boolean>"   +

db:system-driver-settings Attribute (new in ODF 1.2)

@@ -24517,7 +31864,7 @@

db:system-driver-settings At Datatypes - string  + string    @@ -24525,6 +31872,10 @@

db:system-driver-settings At   + + RNG Relations + db:system-driver-settings="<string>"   +

db:thousand Attribute (new in ODF 1.2)

@@ -24538,7 +31889,7 @@

db:thousand Attribute (new in ODF Datatypes - string  + string    @@ -24546,6 +31897,10 @@

db:thousand Attribute (new in ODF   + + RNG Relations + db:thousand="<string>"   +

db:title Attribute (new in ODF 1.2)

@@ -24564,7 +31919,7 @@

db:title Attribute (new in ODF 1.2) Datatypes - string  + string    @@ -24572,6 +31927,10 @@

db:title Attribute (new in ODF 1.2)   + + RNG Relations + db:title="<string>"   +

db:type[1] Attribute (new in ODF 1.2)

@@ -24586,7 +31945,7 @@

db:type[1] Attribute (new in ODF 1.2) Datatypes - string  + string    @@ -24594,6 +31953,10 @@

db:type[1] Attribute (new in ODF 1.2)   + + RNG Relations + db:type="<string>"   +

db:type[2] Attribute (new in ODF 1.2)

@@ -24602,20 +31965,26 @@

db:type[2] Attribute (new in ODF 1.2) Parent Elements - db:server-database  + db:key    Datatypes - QName    Values + "foreign"  + "primary"  + "unique"    + + RNG Relations + db:type="primary | unique | foreign"   +

db:type[3] Attribute (new in ODF 1.2)

@@ -24624,22 +31993,24 @@

db:type[3] Attribute (new in ODF 1.2) Parent Elements - db:key  + db:server-database    Datatypes + QName    Values - "foreign"  - "primary"  - "unique"    + + RNG Relations + db:type="QName]"   +

db:type-name Attribute (new in ODF 1.2)

@@ -24653,7 +32024,7 @@

db:type-name Attribute (new in O Datatypes - string  + string    @@ -24661,6 +32032,10 @@

db:type-name Attribute (new in O   + + RNG Relations + db:type-name="<string>"   +

db:update-rule Attribute (new in ODF 1.2)

@@ -24679,13 +32054,17 @@

db:update-rule Attribute (new Values - "cascade"  - "no-action"  - "restrict"  - "set-default"  - "set-null"  + "cascade"  + "no-action"  + "restrict"  + "set-default"  + "set-null"    + + RNG Relations + db:update-rule="cascade | restrict | set-null | no-action | set-default"   +

db:use-catalog Attribute (new in ODF 1.2)

@@ -24704,10 +32083,14 @@

db:use-catalog Attribute (new Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + db:use-catalog="<boolean>"   +

db:use-system-user Attribute (new in ODF 1.2)

@@ -24726,10 +32109,14 @@

db:use-system-user Attribute&nb Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + db:use-system-user="<boolean>"   +

db:user-name Attribute (new in ODF 1.2)

@@ -24743,7 +32130,7 @@

db:user-name Attribute (new in O Datatypes - string  + string    @@ -24751,6 +32138,10 @@

db:user-name Attribute (new in O   + + RNG Relations + db:user-name="<string>"   +

db:visible Attribute (new in ODF 1.2)

@@ -24769,10 +32160,14 @@

db:visible Attribute (new in ODF 1 Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + db:visible="<boolean>"   +

dr3d:ambient-color Attribute

@@ -24788,7 +32183,7 @@

dr3d:ambient-color Attribute Datatypes - string  + string    @@ -24796,6 +32191,10 @@

dr3d:ambient-color Attribute   + + RNG Relations + dr3d:ambient-color="string]"   +

dr3d:back-scale Attribute (new in ODF 1.2)

@@ -24809,7 +32208,7 @@

dr3d:back-scale Attribute (ne Datatypes - string  + string    @@ -24817,6 +32216,10 @@

dr3d:back-scale Attribute (ne   + + RNG Relations + dr3d:back-scale="string]"   +

dr3d:backface-culling Attribute (new in ODF 1.2)

@@ -24835,10 +32238,14 @@

dr3d:backface-culling Attribute< Values - "disabled"  - "enabled"  + "disabled"  + "enabled"    + + RNG Relations + dr3d:backface-culling="enabled | disabled"   +

dr3d:center Attribute

@@ -24852,7 +32259,7 @@

dr3d:center Attribute

Datatypes - string  + string    @@ -24860,6 +32267,10 @@

dr3d:center Attribute

  + + RNG Relations + dr3d:center="string]"   +

dr3d:close-back Attribute (new in ODF 1.2)

@@ -24878,10 +32289,14 @@

dr3d:close-back Attribute (ne Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + dr3d:close-back="<boolean>"   +

dr3d:close-front Attribute (new in ODF 1.2)

@@ -24900,10 +32315,14 @@

dr3d:close-front Attribute ( Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + dr3d:close-front="<boolean>"   +

dr3d:depth Attribute (new in ODF 1.2)

@@ -24917,7 +32336,7 @@

dr3d:depth Attribute (new in ODF 1 Datatypes - string  + string    @@ -24925,6 +32344,10 @@

dr3d:depth Attribute (new in ODF 1   + + RNG Relations + dr3d:depth="string]"   +

dr3d:diffuse-color Attribute

@@ -24939,7 +32362,7 @@

dr3d:diffuse-color Attribute Datatypes - string  + string    @@ -24947,6 +32370,10 @@

dr3d:diffuse-color Attribute   + + RNG Relations + dr3d:diffuse-color="string]"   +

dr3d:direction Attribute

@@ -24960,7 +32387,7 @@

dr3d:direction Attribute

Datatypes - string  + string    @@ -24968,6 +32395,10 @@

dr3d:direction Attribute

  + + RNG Relations + dr3d:direction="string]"   +

dr3d:distance Attribute

@@ -24982,7 +32413,7 @@

dr3d:distance Attribute

Datatypes - string  + string    @@ -24990,6 +32421,10 @@

dr3d:distance Attribute

  + + RNG Relations + dr3d:distance="string]"   +

dr3d:edge-rounding Attribute (new in ODF 1.2)

@@ -25003,7 +32438,7 @@

dr3d:edge-rounding Attribute&nb Datatypes - string  + string    @@ -25011,6 +32446,10 @@

dr3d:edge-rounding Attribute&nb   + + RNG Relations + dr3d:edge-rounding="string]"   +

dr3d:edge-rounding-mode Attribute (new in ODF 1.2)

@@ -25029,10 +32468,14 @@

dr3d:edge-rounding-mode Attrib Values - "attractive"  - "correct"  + "attractive"  + "correct"    + + RNG Relations + dr3d:edge-rounding-mode="correct | attractive"   +

dr3d:emissive-color Attribute (new in ODF 1.2)

@@ -25046,7 +32489,7 @@

dr3d:emissive-color Attribute& Datatypes - string  + string    @@ -25054,6 +32497,10 @@

dr3d:emissive-color Attribute&   + + RNG Relations + dr3d:emissive-color="string]"   +

dr3d:enabled Attribute

@@ -25072,10 +32519,14 @@

dr3d:enabled Attribute

Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + dr3d:enabled="<boolean>"   +

dr3d:end-angle Attribute (new in ODF 1.2)

@@ -25089,7 +32540,7 @@

dr3d:end-angle Attribute (new Datatypes - string  + string    @@ -25097,6 +32548,10 @@

dr3d:end-angle Attribute (new   + + RNG Relations + dr3d:end-angle="<string>"   +

dr3d:focal-length Attribute

@@ -25111,7 +32566,7 @@

dr3d:focal-length Attribute

Datatypes - string  + string    @@ -25119,6 +32574,10 @@

dr3d:focal-length Attribute

  + + RNG Relations + dr3d:focal-length="string]"   +

dr3d:horizontal-segments Attribute (new in ODF 1.2)

@@ -25132,7 +32591,7 @@

dr3d:horizontal-segments Attr Datatypes - nonNegativeInteger  + nonNegativeInteger    @@ -25140,6 +32599,10 @@

dr3d:horizontal-segments Attr   + + RNG Relations + dr3d:horizontal-segments="<nonNegativeInteger>"   +

dr3d:lighting-mode[1] Attribute

@@ -25148,8 +32611,7 @@

dr3d:lighting-mode[1] Attribute Parent Elements - chart:plot-area  - dr3d:scene  + style:graphic-properties    @@ -25160,10 +32622,14 @@

dr3d:lighting-mode[1] Attribute Values - "false"  - "true"  + "double-sided"  + "standard"    + + RNG Relations + dr3d:lighting-mode="standard | double-sided"   +

dr3d:lighting-mode[2] Attribute

@@ -25172,7 +32638,8 @@

dr3d:lighting-mode[2] Attribute Parent Elements - style:graphic-properties  + chart:plot-area  + dr3d:scene    @@ -25183,10 +32650,14 @@

dr3d:lighting-mode[2] Attribute Values - "double-sided"  - "standard"  + "false"  + "true"    + + RNG Relations + dr3d:lighting-mode="<boolean>"   +

dr3d:max-edge Attribute

@@ -25200,7 +32671,7 @@

dr3d:max-edge Attribute

Datatypes - string  + string    @@ -25208,6 +32679,10 @@

dr3d:max-edge Attribute

  + + RNG Relations + dr3d:max-edge="string]"   +

dr3d:min-edge Attribute

@@ -25221,7 +32696,7 @@

dr3d:min-edge Attribute

Datatypes - string  + string    @@ -25229,6 +32704,10 @@

dr3d:min-edge Attribute

  + + RNG Relations + dr3d:min-edge="string]"   +

dr3d:normals-direction Attribute (new in ODF 1.2)

@@ -25247,10 +32726,14 @@

dr3d:normals-direction Attribut Values - "inverse"  - "normal"  + "inverse"  + "normal"    + + RNG Relations + dr3d:normals-direction="normal | inverse"   +

dr3d:normals-kind Attribute (new in ODF 1.2)

@@ -25269,11 +32752,15 @@

dr3d:normals-kind Attribute  Values - "flat"  - "object"  - "sphere"  + "flat"  + "object"  + "sphere"    + + RNG Relations + dr3d:normals-kind="object | flat | sphere"   +

dr3d:projection Attribute

@@ -25294,10 +32781,14 @@

dr3d:projection Attribute

Values - "parallel"  - "perspective"  + "parallel"  + "perspective"    + + RNG Relations + dr3d:projection="parallel | perspective"   +

dr3d:shade-mode Attribute

@@ -25318,12 +32809,16 @@

dr3d:shade-mode Attribute

Values - "draft"  - "flat"  - "gouraud"  - "phong"  + "draft"  + "flat"  + "gouraud"  + "phong"    + + RNG Relations + dr3d:shade-mode="flat | phong | gouraud | draft"   +

dr3d:shadow Attribute (new in ODF 1.2)

@@ -25342,10 +32837,14 @@

dr3d:shadow Attribute (new in ODF Values - "hidden"  - "visible"  + "hidden"  + "visible"    + + RNG Relations + dr3d:shadow="visible | hidden"   +

dr3d:shadow-slant Attribute

@@ -25360,7 +32859,7 @@

dr3d:shadow-slant Attribute

Datatypes - string  + string    @@ -25368,6 +32867,10 @@

dr3d:shadow-slant Attribute

  + + RNG Relations + dr3d:shadow-slant="<string>"   +

dr3d:shininess Attribute (new in ODF 1.2)

@@ -25381,7 +32884,7 @@

dr3d:shininess Attribute (new Datatypes - string  + string    @@ -25389,6 +32892,10 @@

dr3d:shininess Attribute (new   + + RNG Relations + dr3d:shininess="string]"   +

dr3d:size Attribute

@@ -25402,7 +32909,7 @@

dr3d:size Attribute

Datatypes - string  + string    @@ -25410,6 +32917,10 @@

dr3d:size Attribute

  + + RNG Relations + dr3d:size="string]"   +

dr3d:specular Attribute

@@ -25428,10 +32939,14 @@

dr3d:specular Attribute

Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + dr3d:specular="<boolean>"   +

dr3d:specular-color Attribute (new in ODF 1.2)

@@ -25445,7 +32960,7 @@

dr3d:specular-color Attribute& Datatypes - string  + string    @@ -25453,6 +32968,10 @@

dr3d:specular-color Attribute&   + + RNG Relations + dr3d:specular-color="string]"   +

dr3d:texture-filter Attribute (new in ODF 1.2)

@@ -25471,10 +32990,14 @@

dr3d:texture-filter Attribute& Values - "disabled"  - "enabled"  + "disabled"  + "enabled"    + + RNG Relations + dr3d:texture-filter="enabled | disabled"   +

dr3d:texture-generation-mode-x Attribute (new in ODF 1.2)

@@ -25493,11 +33016,15 @@

dr3d:texture-generation Values - "object"  - "parallel"  - "sphere"  + "object"  + "parallel"  + "sphere"    + + RNG Relations + dr3d:texture-generation-mode-x="object | parallel | sphere"   +

dr3d:texture-generation-mode-y Attribute (new in ODF 1.2)

@@ -25516,11 +33043,15 @@

dr3d:texture-generation Values - "object"  - "parallel"  - "sphere"  + "object"  + "parallel"  + "sphere"    + + RNG Relations + dr3d:texture-generation-mode-y="object | parallel | sphere"   +

dr3d:texture-kind Attribute (new in ODF 1.2)

@@ -25539,11 +33070,15 @@

dr3d:texture-kind Attribute  Values - "color"  - "intensity"  - "luminance"  + "color"  + "intensity"  + "luminance"    + + RNG Relations + dr3d:texture-kind="luminance | intensity | color"   +

dr3d:texture-mode Attribute (new in ODF 1.2)

@@ -25562,11 +33097,15 @@

dr3d:texture-mode Attribute  Values - "blend"  - "modulate"  - "replace"  + "blend"  + "modulate"  + "replace"    + + RNG Relations + dr3d:texture-mode="replace | modulate | blend"   +

dr3d:transform Attribute

@@ -25585,7 +33124,7 @@

dr3d:transform Attribute

Datatypes - string  + string    @@ -25593,6 +33132,10 @@

dr3d:transform Attribute

  + + RNG Relations + dr3d:transform="<string>"   +

dr3d:vertical-segments Attribute (new in ODF 1.2)

@@ -25606,7 +33149,7 @@

dr3d:vertical-segments Attribut Datatypes - nonNegativeInteger  + nonNegativeInteger    @@ -25614,6 +33157,10 @@

dr3d:vertical-segments Attribut   + + RNG Relations + dr3d:vertical-segments="<nonNegativeInteger>"   +

dr3d:vpn Attribute

@@ -25628,7 +33175,7 @@

dr3d:vpn Attribute

Datatypes - string  + string    @@ -25636,6 +33183,10 @@

dr3d:vpn Attribute

  + + RNG Relations + dr3d:vpn="string]"   +

dr3d:vrp Attribute

@@ -25650,7 +33201,7 @@

dr3d:vrp Attribute

Datatypes - string  + string    @@ -25658,6 +33209,10 @@

dr3d:vrp Attribute

  + + RNG Relations + dr3d:vrp="string]"   +

dr3d:vup Attribute

@@ -25672,7 +33227,7 @@

dr3d:vup Attribute

Datatypes - string  + string    @@ -25680,6 +33235,10 @@

dr3d:vup Attribute

  + + RNG Relations + dr3d:vup="string]"   +

draw:align Attribute

@@ -25698,16 +33257,20 @@

draw:align Attribute

Values - "bottom-left"  - "bottom-right"  - "center"  - "left"  - "right"  - "top"  - "top-left"  - "top-right"  + "bottom-left"  + "bottom-right"  + "center"  + "left"  + "right"  + "top"  + "top-left"  + "top-right"    + + RNG Relations + draw:align="top-left | top | top-right | left | center | right | bottom-left | bottom-right"   +

draw:angle Attribute

@@ -25722,7 +33285,7 @@

draw:angle Attribute

Datatypes - string  + string    @@ -25730,6 +33293,10 @@

draw:angle Attribute

  + + RNG Relations + draw:angle="<string>"   +

draw:archive Attribute

@@ -25743,7 +33310,7 @@

draw:archive Attribute

Datatypes - string  + string    @@ -25751,6 +33318,10 @@

draw:archive Attribute

  + + RNG Relations + draw:archive="<string>"   +

draw:auto-grow-height Attribute (new in ODF 1.2)

@@ -25769,10 +33340,14 @@

draw:auto-grow-height Attribute< Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + draw:auto-grow-height="<boolean>"   +

draw:auto-grow-width Attribute (new in ODF 1.2)

@@ -25791,10 +33366,14 @@

draw:auto-grow-width Attribute Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + draw:auto-grow-width="<boolean>"   +

draw:background-size Attribute (new in ODF 1.2)

@@ -25813,10 +33392,14 @@

draw:background-size Attribute Values - "border"  - "full"  + "border"  + "full"    + + RNG Relations + draw:background-size="full | border"   +

draw:blue Attribute (new in ODF 1.2)

@@ -25830,7 +33413,7 @@

draw:blue Attribute (new in ODF 1.2 Datatypes - string  + string    @@ -25838,6 +33421,10 @@

draw:blue Attribute (new in ODF 1.2   + + RNG Relations + draw:blue="string]"   +

draw:border Attribute

@@ -25852,7 +33439,7 @@

draw:border Attribute

Datatypes - string  + string    @@ -25860,6 +33447,10 @@

draw:border Attribute

  + + RNG Relations + draw:border="string]"   +

draw:caption-angle Attribute (new in ODF 1.2)

@@ -25873,7 +33464,7 @@

draw:caption-angle Attribute&nb Datatypes - string  + string    @@ -25881,6 +33472,10 @@

draw:caption-angle Attribute&nb   + + RNG Relations + draw:caption-angle="<string>"   +

draw:caption-angle-type Attribute (new in ODF 1.2)

@@ -25899,10 +33494,14 @@

draw:caption-angle-type Attrib Values - "fixed"  - "free"  + "fixed"  + "free"    + + RNG Relations + draw:caption-angle-type="fixed | free"   +

draw:caption-escape Attribute (new in ODF 1.2)

@@ -25916,8 +33515,8 @@

draw:caption-escape Attribute& Datatypes - string  - string  + string  + string    @@ -25925,6 +33524,10 @@

draw:caption-escape Attribute&   + + RNG Relations + draw:caption-escape="string] | string]"   +

draw:caption-escape-direction Attribute (new in ODF 1.2)

@@ -25943,11 +33546,15 @@

draw:caption-escape-dire Values - "auto"  - "horizontal"  - "vertical"  + "auto"  + "horizontal"  + "vertical"    + + RNG Relations + draw:caption-escape-direction="horizontal | vertical | auto"   +

draw:caption-fit-line-length Attribute (new in ODF 1.2)

@@ -25966,10 +33573,14 @@

draw:caption-fit-line-len Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + draw:caption-fit-line-length="<boolean>"   +

draw:caption-gap Attribute (new in ODF 1.2)

@@ -25983,7 +33594,7 @@

draw:caption-gap Attribute ( Datatypes - string  + string    @@ -25991,6 +33602,10 @@

draw:caption-gap Attribute (   + + RNG Relations + draw:caption-gap="string]"   +

draw:caption-id Attribute (new in ODF 1.1)

@@ -26020,7 +33635,7 @@

draw:caption-id Attribute (ne Datatypes - IDREF  + IDREF    @@ -26028,6 +33643,10 @@

draw:caption-id Attribute (ne   + + RNG Relations + draw:caption-id="<IDREF>"   +

draw:caption-line-length Attribute (new in ODF 1.2)

@@ -26041,7 +33660,7 @@

draw:caption-line-length Attr Datatypes - string  + string    @@ -26049,6 +33668,10 @@

draw:caption-line-length Attr   + + RNG Relations + draw:caption-line-length="string]"   +

draw:caption-point-x Attribute

@@ -26063,7 +33686,7 @@

draw:caption-point-x Attribute Datatypes - string  + string    @@ -26071,6 +33694,10 @@

draw:caption-point-x Attribute   + + RNG Relations + draw:caption-point-x="string]"   +

draw:caption-point-y Attribute

@@ -26085,7 +33712,7 @@

draw:caption-point-y Attribute Datatypes - string  + string    @@ -26093,6 +33720,10 @@

draw:caption-point-y Attribute   + + RNG Relations + draw:caption-point-y="string]"   +

draw:caption-type Attribute (new in ODF 1.2)

@@ -26111,11 +33742,15 @@

draw:caption-type Attribute  Values - "angled-connector-line"  - "angled-line"  - "straight-line"  + "angled-connector-line"  + "angled-line"  + "straight-line"    + + RNG Relations + draw:caption-type="straight-line | angled-line | angled-connector-line"   +

draw:chain-next-name Attribute

@@ -26129,7 +33764,7 @@

draw:chain-next-name Attribute Datatypes - string  + string    @@ -26137,6 +33772,10 @@

draw:chain-next-name Attribute   + + RNG Relations + draw:chain-next-name="<string>"   +

draw:class-id Attribute

@@ -26150,7 +33789,7 @@

draw:class-id Attribute

Datatypes - string  + string    @@ -26158,6 +33797,10 @@

draw:class-id Attribute

  + + RNG Relations + draw:class-id="<string>"   +

draw:class-names Attribute

@@ -26192,7 +33835,7 @@

draw:class-names Attribute

Datatypes - NCName  + NCName    @@ -26200,6 +33843,12 @@

draw:class-names Attribute

  + + RNG Relations + draw:class-names=" +START_list(<NCName>)* +END_list"   +

draw:code Attribute

@@ -26213,7 +33862,7 @@

draw:code Attribute

Datatypes - string  + string    @@ -26221,6 +33870,10 @@

draw:code Attribute

  + + RNG Relations + draw:code="<string>"   +

draw:color Attribute

@@ -26235,7 +33888,7 @@

draw:color Attribute

Datatypes - string  + string    @@ -26243,6 +33896,10 @@

draw:color Attribute

  + + RNG Relations + draw:color="string]"   +

draw:color-inversion Attribute (new in ODF 1.2)

@@ -26261,10 +33918,14 @@

draw:color-inversion Attribute Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + draw:color-inversion="<boolean>"   +

draw:color-mode Attribute (new in ODF 1.2)

@@ -26283,12 +33944,16 @@

draw:color-mode Attribute (ne Values - "greyscale"  - "mono"  - "standard"  - "watermark"  + "greyscale"  + "mono"  + "standard"  + "watermark"    + + RNG Relations + draw:color-mode="greyscale | mono | watermark | standard"   +

draw:concave[1] Attribute

@@ -26308,9 +33973,13 @@

draw:concave[1] Attribute

Values - "true"  + "true"    + + RNG Relations + draw:concave="true"   +

draw:concave[2] Attribute

@@ -26330,9 +33999,13 @@

draw:concave[2] Attribute

Values - "false"  + "false"    + + RNG Relations + draw:concave="false"   +

draw:concentric-gradient-fill-allowed Attribute

@@ -26351,10 +34024,14 @@

draw:concentric- Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + draw:concentric-gradient-fill-allowed="<boolean>"   +

draw:contrast Attribute (new in ODF 1.2)

@@ -26368,7 +34045,7 @@

draw:contrast Attribute (new in Datatypes - string  + string    @@ -26376,6 +34053,10 @@

draw:contrast Attribute (new in   + + RNG Relations + draw:contrast="string]"   +

draw:control Attribute

@@ -26389,7 +34070,7 @@

draw:control Attribute

Datatypes - IDREF  + IDREF    @@ -26397,6 +34078,10 @@

draw:control Attribute

  + + RNG Relations + draw:control="<IDREF>"   +

draw:copy-of Attribute

@@ -26410,7 +34095,7 @@

draw:copy-of Attribute

Datatypes - string  + string    @@ -26418,6 +34103,10 @@

draw:copy-of Attribute

  + + RNG Relations + draw:copy-of="<string>"   +

draw:corner-radius Attribute

@@ -26434,7 +34123,7 @@

draw:corner-radius Attribute Datatypes - string  + string    @@ -26442,6 +34131,10 @@

draw:corner-radius Attribute   + + RNG Relations + draw:corner-radius="string]"   +

draw:corners Attribute

@@ -26455,7 +34148,7 @@

draw:corners Attribute

Datatypes - positiveInteger  + positiveInteger    @@ -26463,6 +34156,10 @@

draw:corners Attribute

  + + RNG Relations + draw:corners="<positiveInteger>"   +

draw:cx Attribute

@@ -26477,7 +34174,7 @@

draw:cx Attribute

Datatypes - string  + string    @@ -26485,6 +34182,10 @@

draw:cx Attribute

  + + RNG Relations + draw:cx="string]"   +

draw:cy Attribute

@@ -26499,7 +34200,7 @@

draw:cy Attribute

Datatypes - string  + string    @@ -26507,6 +34208,10 @@

draw:cy Attribute

  + + RNG Relations + draw:cy="string]"   +

draw:data Attribute

@@ -26520,7 +34225,7 @@

draw:data Attribute

Datatypes - string  + string    @@ -26528,6 +34233,10 @@

draw:data Attribute

  + + RNG Relations + draw:data="<string>"   +

draw:decimal-places Attribute (new in ODF 1.2)

@@ -26541,7 +34250,7 @@

draw:decimal-places Attribute& Datatypes - nonNegativeInteger  + nonNegativeInteger    @@ -26549,6 +34258,10 @@

draw:decimal-places Attribute&   + + RNG Relations + draw:decimal-places="<nonNegativeInteger>"   +

draw:display Attribute

@@ -26567,12 +34280,16 @@

draw:display Attribute

Values - "always"  - "none"  - "printer"  - "screen"  + "always"  + "none"  + "printer"  + "screen"    + + RNG Relations + draw:display="always | screen | printer | none"   +

draw:display-name Attribute

@@ -26593,7 +34310,7 @@

draw:display-name Attribute

Datatypes - string  + string    @@ -26601,6 +34318,10 @@

draw:display-name Attribute

  + + RNG Relations + draw:display-name="<string>"   +

draw:distance[1] Attribute

@@ -26615,7 +34336,7 @@

draw:distance[1] Attribute

Datatypes - string  + string    @@ -26623,6 +34344,10 @@

draw:distance[1] Attribute

  + + RNG Relations + draw:distance="string]"   +

draw:distance[2] Attribute

@@ -26637,8 +34362,8 @@

draw:distance[2] Attribute

Datatypes - string  - string  + string  + string    @@ -26646,6 +34371,10 @@

draw:distance[2] Attribute

  + + RNG Relations + draw:distance="string] | string]"   +

draw:dots1 Attribute

@@ -26659,7 +34388,7 @@

draw:dots1 Attribute

Datatypes - integer  + integer    @@ -26667,6 +34396,10 @@

draw:dots1 Attribute

  + + RNG Relations + draw:dots1="<integer>"   +

draw:dots1-length Attribute

@@ -26680,8 +34413,8 @@

draw:dots1-length Attribute

Datatypes - string  - string  + string  + string    @@ -26689,6 +34422,10 @@

draw:dots1-length Attribute

  + + RNG Relations + draw:dots1-length="string] | string]"   +

draw:dots2 Attribute

@@ -26702,7 +34439,7 @@

draw:dots2 Attribute

Datatypes - integer  + integer    @@ -26710,6 +34447,10 @@

draw:dots2 Attribute

  + + RNG Relations + draw:dots2="<integer>"   +

draw:dots2-length Attribute

@@ -26723,8 +34464,8 @@

draw:dots2-length Attribute

Datatypes - string  - string  + string  + string    @@ -26732,6 +34473,10 @@

draw:dots2-length Attribute

  + + RNG Relations + draw:dots2-length="string] | string]"   +

draw:draw-aspect Attribute (new in ODF 1.2)

@@ -26750,12 +34495,16 @@

draw:draw-aspect Attribute ( Values - "content"  - "icon"  - "print-view"  - "thumbnail"  + "content"  + "icon"  + "print-view"  + "thumbnail"    + + RNG Relations + draw:draw-aspect="content | thumbnail | icon | print-view"   +

draw:end Attribute

@@ -26769,7 +34518,7 @@

draw:end Attribute

Datatypes - string  + string    @@ -26777,6 +34526,10 @@

draw:end Attribute

  + + RNG Relations + draw:end="string]"   +

draw:end-angle Attribute

@@ -26791,7 +34544,7 @@

draw:end-angle Attribute

Datatypes - string  + string    @@ -26799,6 +34552,10 @@

draw:end-angle Attribute

  + + RNG Relations + draw:end-angle="<string>"   +

draw:end-color Attribute

@@ -26812,7 +34569,7 @@

draw:end-color Attribute

Datatypes - string  + string    @@ -26820,6 +34577,10 @@

draw:end-color Attribute

  + + RNG Relations + draw:end-color="string]"   +

draw:end-glue-point Attribute

@@ -26833,7 +34594,7 @@

draw:end-glue-point Attribute< Datatypes - nonNegativeInteger  + nonNegativeInteger    @@ -26841,6 +34602,10 @@

draw:end-glue-point Attribute<   + + RNG Relations + draw:end-glue-point="<nonNegativeInteger>"   +

draw:end-guide Attribute (new in ODF 1.2)

@@ -26854,7 +34619,7 @@

draw:end-guide Attribute (new Datatypes - string  + string    @@ -26862,6 +34627,10 @@

draw:end-guide Attribute (new   + + RNG Relations + draw:end-guide="string]"   +

draw:end-intensity Attribute

@@ -26875,7 +34644,7 @@

draw:end-intensity Attribute Datatypes - string  + string    @@ -26883,6 +34652,10 @@

draw:end-intensity Attribute   + + RNG Relations + draw:end-intensity="string]"   +

draw:end-line-spacing-horizontal Attribute (new in ODF 1.2)

@@ -26896,7 +34669,7 @@

draw:end-line-spacing Datatypes - string  + string    @@ -26904,6 +34677,10 @@

draw:end-line-spacing   + + RNG Relations + draw:end-line-spacing-horizontal="string]"   +

draw:end-line-spacing-vertical Attribute (new in ODF 1.2)

@@ -26917,7 +34694,7 @@

draw:end-line-spacing-v Datatypes - string  + string    @@ -26925,6 +34702,10 @@

draw:end-line-spacing-v   + + RNG Relations + draw:end-line-spacing-vertical="string]"   +

draw:end-shape Attribute

@@ -26938,7 +34719,7 @@

draw:end-shape Attribute

Datatypes - IDREF  + IDREF    @@ -26946,6 +34727,10 @@

draw:end-shape Attribute

  + + RNG Relations + draw:end-shape="<IDREF>"   +

draw:engine Attribute

@@ -26959,7 +34744,7 @@

draw:engine Attribute

Datatypes - QName  + QName    @@ -26967,6 +34752,10 @@

draw:engine Attribute

  + + RNG Relations + draw:engine="QName]"   +

draw:enhanced-path Attribute

@@ -26980,7 +34769,7 @@

draw:enhanced-path Attribute Datatypes - string  + string    @@ -26988,6 +34777,10 @@

draw:enhanced-path Attribute   + + RNG Relations + draw:enhanced-path="<string>"   +

draw:escape-direction Attribute (new in ODF 1.2)

@@ -27006,15 +34799,19 @@

draw:escape-direction Attribute< Values - "auto"  - "down"  - "horizontal"  - "left"  - "right"  - "up"  - "vertical"  + "auto"  + "down"  + "horizontal"  + "left"  + "right"  + "up"  + "vertical"    + + RNG Relations + draw:escape-direction="auto | left | right | up | down | horizontal | vertical"   +

draw:extrusion Attribute

@@ -27033,10 +34830,14 @@

draw:extrusion Attribute

Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + draw:extrusion="<boolean>"   +

draw:extrusion-allowed Attribute

@@ -27055,10 +34856,14 @@

draw:extrusion-allowed Attribut Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + draw:extrusion-allowed="<boolean>"   +

draw:extrusion-brightness Attribute

@@ -27072,7 +34877,7 @@

draw:extrusion-brightness At Datatypes - string  + string    @@ -27080,6 +34885,10 @@

draw:extrusion-brightness At   + + RNG Relations + draw:extrusion-brightness="string]"   +

draw:extrusion-color Attribute

@@ -27098,10 +34907,14 @@

draw:extrusion-color Attribute Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + draw:extrusion-color="<boolean>"   +

draw:extrusion-depth Attribute

@@ -27115,8 +34928,8 @@

draw:extrusion-depth Attribute Datatypes - double  - string  + double  + string    @@ -27124,6 +34937,12 @@

draw:extrusion-depth Attribute   + + RNG Relations + draw:extrusion-depth=" +START_liststring]<double> +END_list"   +

draw:extrusion-diffusion Attribute

@@ -27137,7 +34956,7 @@

draw:extrusion-diffusion Attr Datatypes - string  + string    @@ -27145,6 +34964,10 @@

draw:extrusion-diffusion Attr   + + RNG Relations + draw:extrusion-diffusion="string]"   +

draw:extrusion-first-light-direction Attribute

@@ -27158,7 +34981,7 @@

draw:extrusion-fi Datatypes - string  + string    @@ -27166,6 +34989,10 @@

draw:extrusion-fi   + + RNG Relations + draw:extrusion-first-light-direction="string]"   +

draw:extrusion-first-light-harsh Attribute

@@ -27184,10 +35011,14 @@

draw:extrusion-first- Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + draw:extrusion-first-light-harsh="<boolean>"   +

draw:extrusion-first-light-level Attribute

@@ -27201,7 +35032,7 @@

draw:extrusion-first- Datatypes - string  + string    @@ -27209,6 +35040,10 @@

draw:extrusion-first-   + + RNG Relations + draw:extrusion-first-light-level="string]"   +

draw:extrusion-light-face Attribute

@@ -27227,10 +35062,14 @@

draw:extrusion-light-face At Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + draw:extrusion-light-face="<boolean>"   +

draw:extrusion-metal Attribute

@@ -27249,10 +35088,14 @@

draw:extrusion-metal Attribute Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + draw:extrusion-metal="<boolean>"   +

draw:extrusion-number-of-line-segments Attribute

@@ -27266,7 +35109,7 @@

draw:extrusion- Datatypes - integer  + integer    @@ -27274,6 +35117,10 @@

draw:extrusion-   + + RNG Relations + draw:extrusion-number-of-line-segments="<integer>"   +

draw:extrusion-origin Attribute

@@ -27287,7 +35134,7 @@

draw:extrusion-origin Attribute< Datatypes - double  + double    @@ -27295,6 +35142,12 @@

draw:extrusion-origin Attribute<   + + RNG Relations + draw:extrusion-origin=" +START_listdouble]double] +END_list"   +

draw:extrusion-rotation-angle Attribute

@@ -27308,7 +35161,7 @@

draw:extrusion-rotation- Datatypes - string  + string    @@ -27316,6 +35169,12 @@

draw:extrusion-rotation-   + + RNG Relations + draw:extrusion-rotation-angle=" +START_list<string><string> +END_list"   +

draw:extrusion-rotation-center Attribute

@@ -27329,7 +35188,7 @@

draw:extrusion-rotation Datatypes - string  + string    @@ -27337,6 +35196,10 @@

draw:extrusion-rotation   + + RNG Relations + draw:extrusion-rotation-center="string]"   +

draw:extrusion-second-light-direction Attribute

@@ -27350,7 +35213,7 @@

draw:extrusion-s Datatypes - string  + string    @@ -27358,6 +35221,10 @@

draw:extrusion-s   + + RNG Relations + draw:extrusion-second-light-direction="string]"   +

draw:extrusion-second-light-harsh Attribute

@@ -27376,10 +35243,14 @@

draw:extrusion-secon Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + draw:extrusion-second-light-harsh="<boolean>"   +

draw:extrusion-second-light-level Attribute

@@ -27393,7 +35264,7 @@

draw:extrusion-secon Datatypes - string  + string    @@ -27401,6 +35272,10 @@

draw:extrusion-secon   + + RNG Relations + draw:extrusion-second-light-level="string]"   +

draw:extrusion-shininess Attribute

@@ -27414,7 +35289,7 @@

draw:extrusion-shininess Attr Datatypes - string  + string    @@ -27422,6 +35297,10 @@

draw:extrusion-shininess Attr   + + RNG Relations + draw:extrusion-shininess="string]"   +

draw:extrusion-skew Attribute

@@ -27435,8 +35314,8 @@

draw:extrusion-skew Attribute< Datatypes - double  - string  + double  + string    @@ -27444,6 +35323,12 @@

draw:extrusion-skew Attribute<   + + RNG Relations + draw:extrusion-skew=" +START_list<double><string> +END_list"   +

draw:extrusion-specularity Attribute

@@ -27457,7 +35342,7 @@

draw:extrusion-specularity Datatypes - string  + string    @@ -27465,6 +35350,10 @@

draw:extrusion-specularity   + + RNG Relations + draw:extrusion-specularity="string]"   +

draw:extrusion-viewpoint Attribute

@@ -27478,7 +35367,7 @@

draw:extrusion-viewpoint Attr Datatypes - string  + string    @@ -27486,6 +35375,10 @@

draw:extrusion-viewpoint Attr   + + RNG Relations + draw:extrusion-viewpoint="string]"   +

draw:fill Attribute (new in ODF 1.2)

@@ -27505,13 +35398,17 @@

draw:fill Attribute (new in ODF 1.2 Values - "bitmap"  - "gradient"  - "hatch"  - "none"  - "solid"  + "bitmap"  + "gradient"  + "hatch"  + "none"  + "solid"    + + RNG Relations + draw:fill="none | solid | bitmap | gradient | hatch"   +

draw:fill-color Attribute (new in ODF 1.2)

@@ -27526,7 +35423,7 @@

draw:fill-color Attribute (ne Datatypes - string  + string    @@ -27534,6 +35431,10 @@

draw:fill-color Attribute (ne   + + RNG Relations + draw:fill-color="string]"   +

draw:fill-gradient-name Attribute (new in ODF 1.2)

@@ -27548,7 +35449,7 @@

draw:fill-gradient-name Attrib Datatypes - NCName  + NCName    @@ -27556,6 +35457,10 @@

draw:fill-gradient-name Attrib   + + RNG Relations + draw:fill-gradient-name="(<NCName>)?"   +

draw:fill-hatch-name Attribute (new in ODF 1.2)

@@ -27570,7 +35475,7 @@

draw:fill-hatch-name Attribute Datatypes - NCName  + NCName    @@ -27578,6 +35483,10 @@

draw:fill-hatch-name Attribute   + + RNG Relations + draw:fill-hatch-name="(<NCName>)?"   +

draw:fill-hatch-solid Attribute (new in ODF 1.2)

@@ -27597,10 +35506,14 @@

draw:fill-hatch-solid Attribute< Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + draw:fill-hatch-solid="<boolean>"   +

draw:fill-image-height Attribute (new in ODF 1.2)

@@ -27615,8 +35528,8 @@

draw:fill-image-height Attribut Datatypes - string  - string  + string  + string    @@ -27624,6 +35537,10 @@

draw:fill-image-height Attribut   + + RNG Relations + draw:fill-image-height="string] | string]"   +

draw:fill-image-name Attribute (new in ODF 1.2)

@@ -27638,7 +35555,7 @@

draw:fill-image-name Attribute Datatypes - NCName  + NCName    @@ -27646,6 +35563,10 @@

draw:fill-image-name Attribute   + + RNG Relations + draw:fill-image-name="(<NCName>)?"   +

draw:fill-image-ref-point Attribute (new in ODF 1.2)

@@ -27665,17 +35586,21 @@

draw:fill-image-ref-point At Values - "bottom"  - "bottom-left"  - "bottom-right"  - "center"  - "left"  - "right"  - "top"  - "top-left"  - "top-right"  + "bottom"  + "bottom-left"  + "bottom-right"  + "center"  + "left"  + "right"  + "top"  + "top-left"  + "top-right"    + + RNG Relations + draw:fill-image-ref-point="top-left | top | top-right | left | center | right | bottom-left | bottom | bottom-right"   +

draw:fill-image-ref-point-x Attribute (new in ODF 1.2)

@@ -27690,7 +35615,7 @@

draw:fill-image-ref-point- Datatypes - string  + string    @@ -27698,6 +35623,10 @@

draw:fill-image-ref-point-   + + RNG Relations + draw:fill-image-ref-point-x="string]"   +

draw:fill-image-ref-point-y Attribute (new in ODF 1.2)

@@ -27712,7 +35641,7 @@

draw:fill-image-ref-point- Datatypes - string  + string    @@ -27720,6 +35649,10 @@

draw:fill-image-ref-point-   + + RNG Relations + draw:fill-image-ref-point-y="string]"   +

draw:fill-image-width Attribute (new in ODF 1.2)

@@ -27734,8 +35667,8 @@

draw:fill-image-width Attribute< Datatypes - string  - string  + string  + string    @@ -27743,6 +35676,10 @@

draw:fill-image-width Attribute<   + + RNG Relations + draw:fill-image-width="string] | string]"   +

draw:filter-name Attribute

@@ -27756,7 +35693,7 @@

draw:filter-name Attribute

Datatypes - string  + string    @@ -27764,6 +35701,10 @@

draw:filter-name Attribute

  + + RNG Relations + draw:filter-name="<string>"   +

draw:fit-to-contour Attribute (new in ODF 1.2)

@@ -27782,10 +35723,14 @@

draw:fit-to-contour Attribute& Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + draw:fit-to-contour="<boolean>"   +

draw:fit-to-size Attribute (new in ODF 1.2)

@@ -27804,10 +35749,14 @@

draw:fit-to-size Attribute ( Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + draw:fit-to-size="<boolean>"   +

draw:formula Attribute

@@ -27821,7 +35770,7 @@

draw:formula Attribute

Datatypes - string  + string    @@ -27829,6 +35778,10 @@

draw:formula Attribute

  + + RNG Relations + draw:formula="<string>"   +

draw:frame-display-border Attribute (new in ODF 1.2)

@@ -27847,10 +35800,14 @@

draw:frame-display-border At Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + draw:frame-display-border="<boolean>"   +

draw:frame-display-scrollbar Attribute (new in ODF 1.2)

@@ -27869,10 +35826,14 @@

draw:frame-display-scroll Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + draw:frame-display-scrollbar="<boolean>"   +

draw:frame-margin-horizontal Attribute (new in ODF 1.2)

@@ -27886,7 +35847,7 @@

draw:frame-margin-horizon Datatypes - string  + string    @@ -27894,6 +35855,10 @@

draw:frame-margin-horizon   + + RNG Relations + draw:frame-margin-horizontal="string]"   +

draw:frame-margin-vertical Attribute (new in ODF 1.2)

@@ -27907,7 +35872,7 @@

draw:frame-margin-vertical Datatypes - string  + string    @@ -27915,6 +35880,10 @@

draw:frame-margin-vertical   + + RNG Relations + draw:frame-margin-vertical="string]"   +

draw:frame-name Attribute

@@ -27928,7 +35897,7 @@

draw:frame-name Attribute

Datatypes - string  + string    @@ -27936,6 +35905,10 @@

draw:frame-name Attribute

  + + RNG Relations + draw:frame-name="<string>"   +

draw:gamma Attribute (new in ODF 1.2)

@@ -27949,7 +35922,7 @@

draw:gamma Attribute (new in ODF 1 Datatypes - string  + string    @@ -27957,6 +35930,10 @@

draw:gamma Attribute (new in ODF 1   + + RNG Relations + draw:gamma="string]"   +

draw:glue-point-leaving-directions Attribute

@@ -27970,7 +35947,7 @@

draw:glue-point-lea Datatypes - string  + string    @@ -27978,6 +35955,10 @@

draw:glue-point-lea   + + RNG Relations + draw:glue-point-leaving-directions="<string>"   +

draw:glue-point-type Attribute

@@ -27996,11 +35977,15 @@

draw:glue-point-type Attribute Values - "none"  - "rectangle"  - "segments"  + "none"  + "rectangle"  + "segments"    + + RNG Relations + draw:glue-point-type="none | segments | rectangle"   +

draw:glue-points Attribute

@@ -28014,7 +35999,7 @@

draw:glue-points Attribute

Datatypes - string  + string    @@ -28022,6 +36007,10 @@

draw:glue-points Attribute

  + + RNG Relations + draw:glue-points="<string>"   +

draw:gradient-step-count Attribute (new in ODF 1.2)

@@ -28036,7 +36025,7 @@

draw:gradient-step-count Attr Datatypes - nonNegativeInteger  + nonNegativeInteger    @@ -28044,6 +36033,10 @@

draw:gradient-step-count Attr   + + RNG Relations + draw:gradient-step-count="<nonNegativeInteger>"   +

draw:green Attribute (new in ODF 1.2)

@@ -28057,7 +36050,7 @@

draw:green Attribute (new in ODF 1 Datatypes - string  + string    @@ -28065,6 +36058,10 @@

draw:green Attribute (new in ODF 1   + + RNG Relations + draw:green="string]"   +

draw:guide-distance Attribute (new in ODF 1.2)

@@ -28078,7 +36075,7 @@

draw:guide-distance Attribute& Datatypes - string  + string    @@ -28086,6 +36083,10 @@

draw:guide-distance Attribute&   + + RNG Relations + draw:guide-distance="string]"   +

draw:guide-overhang Attribute (new in ODF 1.2)

@@ -28099,7 +36100,7 @@

draw:guide-overhang Attribute& Datatypes - string  + string    @@ -28107,6 +36108,10 @@

draw:guide-overhang Attribute&   + + RNG Relations + draw:guide-overhang="string]"   +

draw:handle-mirror-horizontal Attribute

@@ -28125,10 +36130,14 @@

draw:handle-mirror-horiz Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + draw:handle-mirror-horizontal="<boolean>"   +

draw:handle-mirror-vertical Attribute

@@ -28147,10 +36156,14 @@

draw:handle-mirror-vertica Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + draw:handle-mirror-vertical="<boolean>"   +

draw:handle-polar Attribute

@@ -28164,7 +36177,7 @@

draw:handle-polar Attribute

Datatypes - string  + string    @@ -28172,6 +36185,10 @@

draw:handle-polar Attribute

  + + RNG Relations + draw:handle-polar="<string>"   +

draw:handle-position Attribute

@@ -28185,7 +36202,7 @@

draw:handle-position Attribute Datatypes - string  + string    @@ -28193,6 +36210,10 @@

draw:handle-position Attribute   + + RNG Relations + draw:handle-position="<string>"   +

draw:handle-radius-range-maximum Attribute

@@ -28206,7 +36227,7 @@

draw:handle-radius-ra Datatypes - string  + string    @@ -28214,6 +36235,10 @@

draw:handle-radius-ra   + + RNG Relations + draw:handle-radius-range-maximum="<string>"   +

draw:handle-radius-range-minimum Attribute

@@ -28227,7 +36252,7 @@

draw:handle-radius-ra Datatypes - string  + string    @@ -28235,6 +36260,10 @@

draw:handle-radius-ra   + + RNG Relations + draw:handle-radius-range-minimum="<string>"   +

draw:handle-range-x-maximum Attribute

@@ -28248,7 +36277,7 @@

draw:handle-range-x-maximu Datatypes - string  + string    @@ -28256,6 +36285,10 @@

draw:handle-range-x-maximu   + + RNG Relations + draw:handle-range-x-maximum="<string>"   +

draw:handle-range-x-minimum Attribute

@@ -28269,7 +36302,7 @@

draw:handle-range-x-minimu Datatypes - string  + string    @@ -28277,6 +36310,10 @@

draw:handle-range-x-minimu   + + RNG Relations + draw:handle-range-x-minimum="<string>"   +

draw:handle-range-y-maximum Attribute

@@ -28290,7 +36327,7 @@

draw:handle-range-y-maximu Datatypes - string  + string    @@ -28298,6 +36335,10 @@

draw:handle-range-y-maximu   + + RNG Relations + draw:handle-range-y-maximum="<string>"   +

draw:handle-range-y-minimum Attribute

@@ -28311,7 +36352,7 @@

draw:handle-range-y-minimu Datatypes - string  + string    @@ -28319,6 +36360,10 @@

draw:handle-range-y-minimu   + + RNG Relations + draw:handle-range-y-minimum="<string>"   +

draw:handle-switched Attribute

@@ -28337,10 +36382,14 @@

draw:handle-switched Attribute Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + draw:handle-switched="<boolean>"   +

draw:id[1] Attribute

@@ -28377,7 +36426,7 @@

draw:id[1] Attribute

Datatypes - NCName  + NCName    @@ -28385,6 +36434,10 @@

draw:id[1] Attribute

  + + RNG Relations + draw:id="<NCName>"   +

draw:id[2] Attribute

@@ -28399,7 +36452,7 @@

draw:id[2] Attribute

Datatypes - nonNegativeInteger  + nonNegativeInteger    @@ -28407,6 +36460,10 @@

draw:id[2] Attribute

  + + RNG Relations + draw:id="<nonNegativeInteger>"   +

draw:image-opacity Attribute (new in ODF 1.2)

@@ -28420,7 +36477,7 @@

draw:image-opacity Attribute&nb Datatypes - string  + string    @@ -28428,6 +36485,10 @@

draw:image-opacity Attribute&nb   + + RNG Relations + draw:image-opacity="string]"   +

draw:kind Attribute

@@ -28447,12 +36508,16 @@

draw:kind Attribute

Values - "arc"  - "cut"  - "full"  - "section"  + "arc"  + "cut"  + "full"  + "section"    + + RNG Relations + draw:kind="full | section | cut | arc"   +

draw:layer Attribute

@@ -28486,7 +36551,7 @@

draw:layer Attribute

Datatypes - string  + string    @@ -28494,6 +36559,10 @@

draw:layer Attribute

  + + RNG Relations + draw:layer="<string>"   +

draw:line-distance Attribute (new in ODF 1.2)

@@ -28507,7 +36576,7 @@

draw:line-distance Attribute&nb Datatypes - string  + string    @@ -28515,6 +36584,10 @@

draw:line-distance Attribute&nb   + + RNG Relations + draw:line-distance="string]"   +

draw:line-skew Attribute

@@ -28528,7 +36601,7 @@

draw:line-skew Attribute

Datatypes - string  + string    @@ -28536,6 +36609,12 @@

draw:line-skew Attribute

  + + RNG Relations + draw:line-skew=" +START_liststring](string](string])?)? +END_list"   +

draw:luminance Attribute (new in ODF 1.2)

@@ -28549,7 +36628,7 @@

draw:luminance Attribute (new Datatypes - string  + string    @@ -28557,6 +36636,10 @@

draw:luminance Attribute (new   + + RNG Relations + draw:luminance="string]"   +

draw:marker-end Attribute (new in ODF 1.2)

@@ -28570,7 +36653,7 @@

draw:marker-end Attribute (ne Datatypes - NCName  + NCName    @@ -28578,6 +36661,10 @@

draw:marker-end Attribute (ne   + + RNG Relations + draw:marker-end="(<NCName>)?"   +

draw:marker-end-center Attribute (new in ODF 1.2)

@@ -28596,10 +36683,14 @@

draw:marker-end-center Attribut Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + draw:marker-end-center="<boolean>"   +

draw:marker-end-width Attribute (new in ODF 1.2)

@@ -28613,7 +36704,7 @@

draw:marker-end-width Attribute< Datatypes - string  + string    @@ -28621,6 +36712,10 @@

draw:marker-end-width Attribute<   + + RNG Relations + draw:marker-end-width="string]"   +

draw:marker-start Attribute (new in ODF 1.2)

@@ -28634,7 +36729,7 @@

draw:marker-start Attribute  Datatypes - NCName  + NCName    @@ -28642,6 +36737,10 @@

draw:marker-start Attribute    + + RNG Relations + draw:marker-start="(<NCName>)?"   +

draw:marker-start-center Attribute (new in ODF 1.2)

@@ -28660,10 +36759,14 @@

draw:marker-start-center Attr Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + draw:marker-start-center="<boolean>"   +

draw:marker-start-width Attribute (new in ODF 1.2)

@@ -28677,7 +36780,7 @@

draw:marker-start-width Attrib Datatypes - string  + string    @@ -28685,6 +36788,10 @@

draw:marker-start-width Attrib   + + RNG Relations + draw:marker-start-width="string]"   +

draw:master-page-name Attribute

@@ -28698,7 +36805,7 @@

draw:master-page-name Attribute< Datatypes - NCName  + NCName    @@ -28706,6 +36813,10 @@

draw:master-page-name Attribute<   + + RNG Relations + draw:master-page-name="(<NCName>)?"   +

draw:may-script Attribute

@@ -28724,10 +36835,14 @@

draw:may-script Attribute

Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + draw:may-script="<boolean>"   +

draw:measure-align Attribute (new in ODF 1.2)

@@ -28746,12 +36861,16 @@

draw:measure-align Attribute&nb Values - "automatic"  - "inside"  - "left-outside"  - "right-outside"  + "automatic"  + "inside"  + "left-outside"  + "right-outside"    + + RNG Relations + draw:measure-align="automatic | left-outside | inside | right-outside"   +

draw:measure-vertical-align Attribute (new in ODF 1.2)

@@ -28770,12 +36889,16 @@

draw:measure-vertical-alig Values - "above"  - "automatic"  - "below"  - "center"  + "above"  + "automatic"  + "below"  + "center"    + + RNG Relations + draw:measure-vertical-align="automatic | above | below | center"   +

draw:mime-type Attribute

@@ -28790,7 +36913,7 @@

draw:mime-type Attribute

Datatypes - string  + string    @@ -28798,6 +36921,10 @@

draw:mime-type Attribute

  + + RNG Relations + draw:mime-type="<string>"   +

draw:mirror-horizontal Attribute

@@ -28816,10 +36943,14 @@

draw:mirror-horizontal Attribut Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + draw:mirror-horizontal="<boolean>"   +

draw:mirror-vertical Attribute

@@ -28838,10 +36969,14 @@

draw:mirror-vertical Attribute Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + draw:mirror-vertical="<boolean>"   +

draw:modifiers Attribute

@@ -28855,7 +36990,7 @@

draw:modifiers Attribute

Datatypes - string  + string    @@ -28863,6 +36998,10 @@

draw:modifiers Attribute

  + + RNG Relations + draw:modifiers="<string>"   +

draw:name[1] Attribute

@@ -28884,7 +37023,7 @@

draw:name[1] Attribute

Datatypes - NCName  + NCName    @@ -28892,6 +37031,10 @@

draw:name[1] Attribute

  + + RNG Relations + draw:name="<NCName>"   +

draw:name[2] Attribute

@@ -28926,7 +37069,7 @@

draw:name[2] Attribute

Datatypes - string  + string    @@ -28934,6 +37077,10 @@

draw:name[2] Attribute

  + + RNG Relations + draw:name="<string>"   +

draw:nav-order Attribute (new in ODF 1.1)

@@ -28947,7 +37094,7 @@

draw:nav-order Attribute (new Datatypes - IDREFS  + IDREFS    @@ -28955,6 +37102,10 @@

draw:nav-order Attribute (new   + + RNG Relations + draw:nav-order="<IDREFS>"   +

draw:nohref Attribute

@@ -28975,9 +37126,13 @@

draw:nohref Attribute

Values - "nohref"  + "nohref"    + + RNG Relations + draw:nohref="nohref"   +

draw:notify-on-update-of-ranges Attribute

@@ -28991,7 +37146,7 @@

draw:notify-on-update- Datatypes - string  + string    @@ -28999,6 +37154,10 @@

draw:notify-on-update-   + + RNG Relations + draw:notify-on-update-of-ranges="<string> | <string>"   +

draw:object Attribute

@@ -29012,7 +37171,7 @@

draw:object Attribute

Datatypes - string  + string    @@ -29020,6 +37179,10 @@

draw:object Attribute

  + + RNG Relations + draw:object="<string>"   +

draw:ole-draw-aspect Attribute (new in ODF 1.2)

@@ -29033,7 +37196,7 @@

draw:ole-draw-aspect Attribute Datatypes - nonNegativeInteger  + nonNegativeInteger    @@ -29041,6 +37204,10 @@

draw:ole-draw-aspect Attribute   + + RNG Relations + draw:ole-draw-aspect="<nonNegativeInteger>"   +

draw:opacity Attribute (new in ODF 1.2)

@@ -29056,7 +37223,7 @@

draw:opacity Attribute (new in O Datatypes - string  + string    @@ -29064,6 +37231,10 @@

draw:opacity Attribute (new in O   + + RNG Relations + draw:opacity="string]"   +

draw:opacity-name Attribute (new in ODF 1.2)

@@ -29078,7 +37249,7 @@

draw:opacity-name Attribute  Datatypes - NCName  + NCName    @@ -29086,6 +37257,10 @@

draw:opacity-name Attribute    + + RNG Relations + draw:opacity-name="(<NCName>)?"   +

draw:page-number Attribute

@@ -29099,7 +37274,7 @@

draw:page-number Attribute

Datatypes - positiveInteger  + positiveInteger    @@ -29107,6 +37282,10 @@

draw:page-number Attribute

  + + RNG Relations + draw:page-number="<positiveInteger>"   +

draw:parallel Attribute (new in ODF 1.2)

@@ -29125,10 +37304,14 @@

draw:parallel Attribute (new in Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + draw:parallel="<boolean>"   +

draw:path-stretchpoint-x Attribute

@@ -29142,7 +37325,7 @@

draw:path-stretchpoint-x Attr Datatypes - double  + double    @@ -29150,6 +37333,10 @@

draw:path-stretchpoint-x Attr   + + RNG Relations + draw:path-stretchpoint-x="<double>"   +

draw:path-stretchpoint-y Attribute

@@ -29163,7 +37350,7 @@

draw:path-stretchpoint-y Attr Datatypes - double  + double    @@ -29171,6 +37358,10 @@

draw:path-stretchpoint-y Attr   + + RNG Relations + draw:path-stretchpoint-y="<double>"   +

draw:placing Attribute (new in ODF 1.2)

@@ -29189,10 +37380,14 @@

draw:placing Attribute (new in O Values - "above"  - "below"  + "above"  + "below"    + + RNG Relations + draw:placing="below | above"   +

draw:points Attribute

@@ -29209,7 +37404,7 @@

draw:points Attribute

Datatypes - string  + string    @@ -29217,6 +37412,10 @@

draw:points Attribute

  + + RNG Relations + draw:points="string]"   +

draw:protected Attribute

@@ -29235,10 +37434,14 @@

draw:protected Attribute

Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + draw:protected="<boolean>"   +

draw:recreate-on-edit Attribute

@@ -29258,10 +37461,14 @@

draw:recreate-on-edit Attribute< Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + draw:recreate-on-edit="<boolean>"   +

draw:red Attribute (new in ODF 1.2)

@@ -29275,7 +37482,7 @@

draw:red Attribute (new in ODF 1.2) Datatypes - string  + string    @@ -29283,6 +37490,10 @@

draw:red Attribute (new in ODF 1.2)   + + RNG Relations + draw:red="string]"   +

draw:rotation Attribute

@@ -29296,7 +37507,7 @@

draw:rotation Attribute

Datatypes - string  + string    @@ -29304,6 +37515,10 @@

draw:rotation Attribute

  + + RNG Relations + draw:rotation="<string>"   +

draw:secondary-fill-color Attribute (new in ODF 1.2)

@@ -29318,7 +37533,7 @@

draw:secondary-fill-color At Datatypes - string  + string    @@ -29326,6 +37541,10 @@

draw:secondary-fill-color At   + + RNG Relations + draw:secondary-fill-color="string]"   +

draw:shadow Attribute (new in ODF 1.2)

@@ -29344,10 +37563,14 @@

draw:shadow Attribute (new in ODF Values - "hidden"  - "visible"  + "hidden"  + "visible"    + + RNG Relations + draw:shadow="visible | hidden"   +

draw:shadow-color Attribute (new in ODF 1.2)

@@ -29361,7 +37584,7 @@

draw:shadow-color Attribute  Datatypes - string  + string    @@ -29369,6 +37592,10 @@

draw:shadow-color Attribute    + + RNG Relations + draw:shadow-color="string]"   +

draw:shadow-offset-x Attribute (new in ODF 1.2)

@@ -29382,7 +37609,7 @@

draw:shadow-offset-x Attribute Datatypes - string  + string    @@ -29390,6 +37617,10 @@

draw:shadow-offset-x Attribute   + + RNG Relations + draw:shadow-offset-x="string]"   +

draw:shadow-offset-y Attribute (new in ODF 1.2)

@@ -29403,7 +37634,7 @@

draw:shadow-offset-y Attribute Datatypes - string  + string    @@ -29411,6 +37642,10 @@

draw:shadow-offset-y Attribute   + + RNG Relations + draw:shadow-offset-y="string]"   +

draw:shadow-opacity Attribute (new in ODF 1.2)

@@ -29424,7 +37659,7 @@

draw:shadow-opacity Attribute& Datatypes - string  + string    @@ -29432,6 +37667,10 @@

draw:shadow-opacity Attribute&   + + RNG Relations + draw:shadow-opacity="string]"   +

draw:shape-id Attribute

@@ -29450,7 +37689,7 @@

draw:shape-id Attribute

Datatypes - IDREF  + IDREF    @@ -29458,6 +37697,10 @@

draw:shape-id Attribute

  + + RNG Relations + draw:shape-id="<IDREF>"   +

draw:sharpness Attribute

@@ -29471,7 +37714,7 @@

draw:sharpness Attribute

Datatypes - string  + string    @@ -29479,6 +37722,10 @@

draw:sharpness Attribute

  + + RNG Relations + draw:sharpness="string]"   +

draw:show-unit Attribute (new in ODF 1.2)

@@ -29497,10 +37744,14 @@

draw:show-unit Attribute (new Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + draw:show-unit="<boolean>"   +

draw:start Attribute

@@ -29514,7 +37765,7 @@

draw:start Attribute

Datatypes - string  + string    @@ -29522,6 +37773,10 @@

draw:start Attribute

  + + RNG Relations + draw:start="string]"   +

draw:start-angle Attribute

@@ -29536,7 +37791,7 @@

draw:start-angle Attribute

Datatypes - string  + string    @@ -29544,6 +37799,10 @@

draw:start-angle Attribute

  + + RNG Relations + draw:start-angle="<string>"   +

draw:start-color Attribute

@@ -29557,7 +37816,7 @@

draw:start-color Attribute

Datatypes - string  + string    @@ -29565,6 +37824,10 @@

draw:start-color Attribute

  + + RNG Relations + draw:start-color="string]"   +

draw:start-glue-point Attribute

@@ -29578,7 +37841,7 @@

draw:start-glue-point Attribute< Datatypes - nonNegativeInteger  + nonNegativeInteger    @@ -29586,6 +37849,10 @@

draw:start-glue-point Attribute<   + + RNG Relations + draw:start-glue-point="<nonNegativeInteger>"   +

draw:start-guide Attribute (new in ODF 1.2)

@@ -29599,7 +37866,7 @@

draw:start-guide Attribute ( Datatypes - string  + string    @@ -29607,6 +37874,10 @@

draw:start-guide Attribute (   + + RNG Relations + draw:start-guide="string]"   +

draw:start-intensity Attribute

@@ -29620,7 +37891,7 @@

draw:start-intensity Attribute Datatypes - string  + string    @@ -29628,6 +37899,10 @@

draw:start-intensity Attribute   + + RNG Relations + draw:start-intensity="string]"   +

draw:start-line-spacing-horizontal Attribute (new in ODF 1.2)

@@ -29641,7 +37916,7 @@

draw:start-line-spa Datatypes - string  + string    @@ -29649,6 +37924,10 @@

draw:start-line-spa   + + RNG Relations + draw:start-line-spacing-horizontal="string]"   +

draw:start-line-spacing-vertical Attribute (new in ODF 1.2)

@@ -29662,7 +37941,7 @@

draw:start-line-spaci Datatypes - string  + string    @@ -29670,6 +37949,10 @@

draw:start-line-spaci   + + RNG Relations + draw:start-line-spacing-vertical="string]"   +

draw:start-shape Attribute

@@ -29683,7 +37966,7 @@

draw:start-shape Attribute

Datatypes - IDREF  + IDREF    @@ -29691,6 +37974,10 @@

draw:start-shape Attribute

  + + RNG Relations + draw:start-shape="<IDREF>"   +

draw:stroke Attribute (new in ODF 1.2)

@@ -29709,11 +37996,15 @@

draw:stroke Attribute (new in ODF Values - "dash"  - "none"  - "solid"  + "dash"  + "none"  + "solid"    + + RNG Relations + draw:stroke="none | dash | solid"   +

draw:stroke-dash Attribute (new in ODF 1.2)

@@ -29727,7 +38018,7 @@

draw:stroke-dash Attribute ( Datatypes - NCName  + NCName    @@ -29735,6 +38026,10 @@

draw:stroke-dash Attribute (   + + RNG Relations + draw:stroke-dash="(<NCName>)?"   +

draw:stroke-dash-names Attribute (new in ODF 1.2)

@@ -29748,7 +38043,7 @@

draw:stroke-dash-names Attribut Datatypes - NCName  + NCName    @@ -29756,6 +38051,12 @@

draw:stroke-dash-names Attribut   + + RNG Relations + draw:stroke-dash-names=" +START_list(<NCName>)* +END_list"   +

draw:stroke-linejoin Attribute (new in ODF 1.2)

@@ -29774,13 +38075,17 @@

draw:stroke-linejoin Attribute Values - "bevel"  - "middle"  - "miter"  - "none"  - "round"  + "bevel"  + "middle"  + "miter"  + "none"  + "round"    + + RNG Relations + draw:stroke-linejoin="miter | round | bevel | middle | none"   +

draw:style[1] Attribute

@@ -29789,7 +38094,7 @@

draw:style[1] Attribute

Parent Elements - draw:hatch  + draw:stroke-dash    @@ -29800,11 +38105,14 @@

draw:style[1] Attribute

Values - "double"  - "single"  - "triple"  + "rect"  + "round"    + + RNG Relations + draw:style="rect | round"   +

draw:style[2] Attribute

@@ -29825,14 +38133,18 @@

draw:style[2] Attribute

Values - "axial"  - "ellipsoid"  - "linear"  - "radial"  - "rectangular"  - "square"  + "axial"  + "ellipsoid"  + "linear"  + "radial"  + "rectangular"  + "square"    + + RNG Relations + draw:style="linear | axial | radial | ellipsoid | square | rectangular"   +

draw:style[3] Attribute

@@ -29841,7 +38153,7 @@

draw:style[3] Attribute

Parent Elements - draw:stroke-dash  + draw:hatch    @@ -29852,10 +38164,15 @@

draw:style[3] Attribute

Values - "rect"  - "round"  + "double"  + "single"  + "triple"    + + RNG Relations + draw:style="single | double | triple"   +

draw:style-name Attribute

@@ -29894,7 +38211,7 @@

draw:style-name Attribute

Datatypes - NCName  + NCName    @@ -29902,6 +38219,10 @@

draw:style-name Attribute

  + + RNG Relations + draw:style-name="(<NCName>)?"   +

draw:symbol-color Attribute (new in ODF 1.2)

@@ -29915,7 +38236,7 @@

draw:symbol-color Attribute  Datatypes - string  + string    @@ -29923,6 +38244,10 @@

draw:symbol-color Attribute    + + RNG Relations + draw:symbol-color="string]"   +

draw:text-areas Attribute

@@ -29936,7 +38261,7 @@

draw:text-areas Attribute

Datatypes - string  + string    @@ -29944,6 +38269,10 @@

draw:text-areas Attribute

  + + RNG Relations + draw:text-areas="<string>"   +

draw:text-path Attribute

@@ -29962,10 +38291,14 @@

draw:text-path Attribute

Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + draw:text-path="<boolean>"   +

draw:text-path-allowed Attribute

@@ -29984,10 +38317,14 @@

draw:text-path-allowed Attribut Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + draw:text-path-allowed="<boolean>"   +

draw:text-path-mode Attribute

@@ -30006,11 +38343,15 @@

draw:text-path-mode Attribute< Values - "normal"  - "path"  - "shape"  + "normal"  + "path"  + "shape"    + + RNG Relations + draw:text-path-mode="normal | path | shape"   +

draw:text-path-same-letter-heights Attribute

@@ -30029,10 +38370,14 @@

draw:text-path-same Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + draw:text-path-same-letter-heights="<boolean>"   +

draw:text-path-scale Attribute

@@ -30051,10 +38396,14 @@

draw:text-path-scale Attribute Values - "path"  - "shape"  + "path"  + "shape"    + + RNG Relations + draw:text-path-scale="path | shape"   +

draw:text-rotate-angle Attribute

@@ -30068,7 +38417,7 @@

draw:text-rotate-angle Attribut Datatypes - string  + string    @@ -30076,6 +38425,10 @@

draw:text-rotate-angle Attribut   + + RNG Relations + draw:text-rotate-angle="<string>"   +

draw:text-style-name Attribute

@@ -30103,7 +38456,7 @@

draw:text-style-name Attribute Datatypes - NCName  + NCName    @@ -30111,6 +38464,10 @@

draw:text-style-name Attribute   + + RNG Relations + draw:text-style-name="(<NCName>)?"   +

draw:textarea-horizontal-align Attribute (new in ODF 1.2)

@@ -30129,12 +38486,16 @@

draw:textarea-horizonta Values - "center"  - "justify"  - "left"  - "right"  + "center"  + "justify"  + "left"  + "right"    + + RNG Relations + draw:textarea-horizontal-align="left | center | right | justify"   +

draw:textarea-vertical-align Attribute (new in ODF 1.2)

@@ -30153,12 +38514,16 @@

draw:textarea-vertical-al Values - "bottom"  - "justify"  - "middle"  - "top"  + "bottom"  + "justify"  + "middle"  + "top"    + + RNG Relations + draw:textarea-vertical-align="top | middle | bottom | justify"   +

draw:tile-repeat-offset Attribute (new in ODF 1.2)

@@ -30173,16 +38538,22 @@

draw:tile-repeat-offset Attrib Datatypes - string  + string    Values - "horizontal"  - "vertical"  + "horizontal"  + "vertical"    + + RNG Relations + draw:tile-repeat-offset=" +START_liststring]horizontal | vertical +END_list"   +

draw:transform Attribute

@@ -30211,7 +38582,7 @@

draw:transform Attribute

Datatypes - string  + string    @@ -30219,6 +38590,10 @@

draw:transform Attribute

  + + RNG Relations + draw:transform="<string>"   +

draw:type[1] Attribute

@@ -30233,15 +38608,19 @@

draw:type[1] Attribute

Datatypes - string  + string    Values - "non-primitive"  + "non-primitive"    + + RNG Relations + draw:type="non-primitive | <string>"   +

draw:type[2] Attribute

@@ -30261,12 +38640,16 @@

draw:type[2] Attribute

Values - "curve"  - "line"  - "lines"  - "standard"  + "curve"  + "line"  + "lines"  + "standard"    + + RNG Relations + draw:type="standard | lines | line | curve"   +

draw:unit Attribute (new in ODF 1.2)

@@ -30285,18 +38668,22 @@

draw:unit Attribute (new in ODF 1.2 Values - "automatic"  - "cm"  - "ft"  - "inch"  - "km"  - "m"  - "mi"  - "mm"  - "pc"  - "pt"  + "automatic"  + "cm"  + "ft"  + "inch"  + "km"  + "m"  + "mi"  + "mm"  + "pc"  + "pt"    + + RNG Relations + draw:unit="automatic | mm | cm | m | km | pt | pc | inch | ft | mi"   +

draw:value Attribute

@@ -30310,7 +38697,7 @@

draw:value Attribute

Datatypes - string  + string    @@ -30318,6 +38705,10 @@

draw:value Attribute

  + + RNG Relations + draw:value="<string>"   +

draw:visible-area-height Attribute (new in ODF 1.2)

@@ -30331,7 +38722,7 @@

draw:visible-area-height Attr Datatypes - string  + string    @@ -30339,6 +38730,10 @@

draw:visible-area-height Attr   + + RNG Relations + draw:visible-area-height="string]"   +

draw:visible-area-left Attribute (new in ODF 1.2)

@@ -30352,7 +38747,7 @@

draw:visible-area-left Attribut Datatypes - string  + string    @@ -30360,6 +38755,10 @@

draw:visible-area-left Attribut   + + RNG Relations + draw:visible-area-left="string]"   +

draw:visible-area-top Attribute (new in ODF 1.2)

@@ -30373,7 +38772,7 @@

draw:visible-area-top Attribute< Datatypes - string  + string    @@ -30381,6 +38780,10 @@

draw:visible-area-top Attribute<   + + RNG Relations + draw:visible-area-top="string]"   +

draw:visible-area-width Attribute (new in ODF 1.2)

@@ -30394,7 +38797,7 @@

draw:visible-area-width Attrib Datatypes - string  + string    @@ -30402,6 +38805,10 @@

draw:visible-area-width Attrib   + + RNG Relations + draw:visible-area-width="string]"   +

draw:wrap-influence-on-position Attribute (new in ODF 1.2)

@@ -30420,11 +38827,15 @@

draw:wrap-influence-on Values - "iterative"  - "once-concurrent"  - "once-successive"  + "iterative"  + "once-concurrent"  + "once-successive"    + + RNG Relations + draw:wrap-influence-on-position="iterative | once-concurrent | once-successive"   +

draw:z-index Attribute

@@ -30459,7 +38870,7 @@

draw:z-index Attribute

Datatypes - nonNegativeInteger  + nonNegativeInteger    @@ -30467,6 +38878,10 @@

draw:z-index Attribute

  + + RNG Relations + draw:z-index="<nonNegativeInteger>"   +

fo:background-color Attribute (new in ODF 1.2)

@@ -30488,15 +38903,19 @@

fo:background-color Attribute& Datatypes - string  + string    Values - "transparent"  + "transparent"    + + RNG Relations + fo:background-color="transparent | string]"   +

fo:border Attribute (new in ODF 1.2)

@@ -30514,7 +38933,7 @@

fo:border Attribute (new in ODF 1.2 Datatypes - string  + string    @@ -30522,6 +38941,10 @@

fo:border Attribute (new in ODF 1.2   + + RNG Relations + fo:border="<string>"   +

fo:border-bottom Attribute (new in ODF 1.2)

@@ -30539,7 +38962,7 @@

fo:border-bottom Attribute ( Datatypes - string  + string    @@ -30547,6 +38970,10 @@

fo:border-bottom Attribute (   + + RNG Relations + fo:border-bottom="<string>"   +

fo:border-left Attribute (new in ODF 1.2)

@@ -30564,7 +38991,7 @@

fo:border-left Attribute (new Datatypes - string  + string    @@ -30572,6 +38999,10 @@

fo:border-left Attribute (new   + + RNG Relations + fo:border-left="<string>"   +

fo:border-right Attribute (new in ODF 1.2)

@@ -30589,7 +39020,7 @@

fo:border-right Attribute (ne Datatypes - string  + string    @@ -30597,6 +39028,10 @@

fo:border-right Attribute (ne   + + RNG Relations + fo:border-right="<string>"   +

fo:border-top Attribute (new in ODF 1.2)

@@ -30614,7 +39049,7 @@

fo:border-top Attribute (new in Datatypes - string  + string    @@ -30622,6 +39057,10 @@

fo:border-top Attribute (new in   + + RNG Relations + fo:border-top="<string>"   +

fo:break-after Attribute (new in ODF 1.2)

@@ -30643,11 +39082,15 @@

fo:break-after Attribute (new Values - "auto"  - "column"  - "page"  + "auto"  + "column"  + "page"    + + RNG Relations + fo:break-after="auto | column | page"   +

fo:break-before Attribute (new in ODF 1.2)

@@ -30669,11 +39112,15 @@

fo:break-before Attribute (ne Values - "auto"  - "column"  - "page"  + "auto"  + "column"  + "page"    + + RNG Relations + fo:break-before="auto | column | page"   +

fo:clip Attribute (new in ODF 1.2)

@@ -30687,15 +39134,19 @@

fo:clip Attribute (new in ODF 1.2) Datatypes - string  + string    Values - "auto"  + "auto"    + + RNG Relations + fo:clip="auto | string]"   +

fo:color Attribute (new in ODF 1.2)

@@ -30709,7 +39160,7 @@

fo:color Attribute (new in ODF 1.2) Datatypes - string  + string    @@ -30717,6 +39168,10 @@

fo:color Attribute (new in ODF 1.2)   + + RNG Relations + fo:color="string]"   +

fo:column-count Attribute (new in ODF 1.2)

@@ -30730,7 +39185,7 @@

fo:column-count Attribute (ne Datatypes - positiveInteger  + positiveInteger    @@ -30738,6 +39193,10 @@

fo:column-count Attribute (ne   + + RNG Relations + fo:column-count="<positiveInteger>"   +

fo:column-gap Attribute (new in ODF 1.2)

@@ -30751,7 +39210,7 @@

fo:column-gap Attribute (new in Datatypes - string  + string    @@ -30759,6 +39218,10 @@

fo:column-gap Attribute (new in   + + RNG Relations + fo:column-gap="string]"   +

fo:country Attribute

@@ -30774,7 +39237,7 @@

fo:country Attribute

Datatypes - token  + token    @@ -30782,6 +39245,10 @@

fo:country Attribute

  + + RNG Relations + fo:country="token]"   +

fo:end-indent Attribute (new in ODF 1.2)

@@ -30795,7 +39262,7 @@

fo:end-indent Attribute (new in Datatypes - string  + string    @@ -30803,6 +39270,10 @@

fo:end-indent Attribute (new in   + + RNG Relations + fo:end-indent="string]"   +

fo:font-family Attribute (new in ODF 1.2)

@@ -30816,7 +39287,7 @@

fo:font-family Attribute (new Datatypes - string  + string    @@ -30824,6 +39295,10 @@

fo:font-family Attribute (new   + + RNG Relations + fo:font-family="<string>"   +

fo:font-size Attribute (new in ODF 1.2)

@@ -30837,8 +39312,8 @@

fo:font-size Attribute (new in O Datatypes - string  - string  + string  + string    @@ -30846,6 +39321,10 @@

fo:font-size Attribute (new in O   + + RNG Relations + fo:font-size="string] | string]"   +

fo:font-style Attribute (new in ODF 1.2)

@@ -30864,11 +39343,15 @@

fo:font-style Attribute (new in Values - "italic"  - "normal"  - "oblique"  + "italic"  + "normal"  + "oblique"    + + RNG Relations + fo:font-style="normal | italic | oblique"   +

fo:font-variant Attribute (new in ODF 1.2)

@@ -30887,10 +39370,14 @@

fo:font-variant Attribute (ne Values - "normal"  - "small-caps"  + "normal"  + "small-caps"    + + RNG Relations + fo:font-variant="normal | small-caps"   +

fo:font-weight Attribute (new in ODF 1.2)

@@ -30909,19 +39396,23 @@

fo:font-weight Attribute (new Values - "100"  - "200"  - "300"  - "400"  - "500"  - "600"  - "700"  - "800"  - "900"  - "bold"  - "normal"  + "100"  + "200"  + "300"  + "400"  + "500"  + "600"  + "700"  + "800"  + "900"  + "bold"  + "normal"    + + RNG Relations + fo:font-weight="normal | bold | 100 | 200 | 300 | 400 | 500 | 600 | 700 | 800 | 900"   +

fo:height Attribute (new in ODF 1.2)

@@ -30935,7 +39426,7 @@

fo:height Attribute (new in ODF 1.2 Datatypes - string  + string    @@ -30943,6 +39434,10 @@

fo:height Attribute (new in ODF 1.2   + + RNG Relations + fo:height="string]"   +

fo:hyphenate Attribute (new in ODF 1.2)

@@ -30961,10 +39456,14 @@

fo:hyphenate Attribute (new in O Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + fo:hyphenate="<boolean>"   +

fo:hyphenation-keep Attribute (new in ODF 1.2)

@@ -30983,10 +39482,14 @@

fo:hyphenation-keep Attribute& Values - "auto"  - "page"  + "auto"  + "page"    + + RNG Relations + fo:hyphenation-keep="auto | page"   +

fo:hyphenation-ladder-count Attribute (new in ODF 1.2)

@@ -31000,15 +39503,19 @@

fo:hyphenation-ladder-coun Datatypes - positiveInteger  + positiveInteger    Values - "no-limit"  + "no-limit"    + + RNG Relations + fo:hyphenation-ladder-count="no-limit | <positiveInteger>"   +

fo:hyphenation-push-char-count Attribute (new in ODF 1.2)

@@ -31022,7 +39529,7 @@

fo:hyphenation-push-cha Datatypes - positiveInteger  + positiveInteger    @@ -31030,6 +39537,10 @@

fo:hyphenation-push-cha   + + RNG Relations + fo:hyphenation-push-char-count="<positiveInteger>"   +

fo:hyphenation-remain-char-count Attribute (new in ODF 1.2)

@@ -31043,7 +39554,7 @@

fo:hyphenation-remain Datatypes - positiveInteger  + positiveInteger    @@ -31051,6 +39562,10 @@

fo:hyphenation-remain   + + RNG Relations + fo:hyphenation-remain-char-count="<positiveInteger>"   +

fo:keep-together Attribute (new in ODF 1.2)

@@ -31070,10 +39585,14 @@

fo:keep-together Attribute ( Values - "always"  - "auto"  + "always"  + "auto"    + + RNG Relations + fo:keep-together="auto | always"   +

fo:keep-with-next Attribute (new in ODF 1.2)

@@ -31093,10 +39612,14 @@

fo:keep-with-next Attribute  Values - "always"  - "auto"  + "always"  + "auto"    + + RNG Relations + fo:keep-with-next="auto | always"   +

fo:language Attribute

@@ -31112,7 +39635,7 @@

fo:language Attribute

Datatypes - token  + token    @@ -31120,6 +39643,10 @@

fo:language Attribute

  + + RNG Relations + fo:language="token]"   +

fo:letter-spacing Attribute (new in ODF 1.2)

@@ -31133,15 +39660,19 @@

fo:letter-spacing Attribute  Datatypes - string  + string    Values - "normal"  + "normal"    + + RNG Relations + fo:letter-spacing="string] | normal"   +

fo:line-height Attribute (new in ODF 1.2)

@@ -31155,16 +39686,20 @@

fo:line-height Attribute (new Datatypes - string  - string  + string  + string    Values - "normal"  + "normal"    + + RNG Relations + fo:line-height="normal | string] | string]"   +

fo:margin Attribute (new in ODF 1.2)

@@ -31182,8 +39717,8 @@

fo:margin Attribute (new in ODF 1.2 Datatypes - string  - string  + string  + string    @@ -31191,6 +39726,10 @@

fo:margin Attribute (new in ODF 1.2   + + RNG Relations + fo:margin="string] | string]"   +

fo:margin-bottom Attribute (new in ODF 1.2)

@@ -31208,8 +39747,8 @@

fo:margin-bottom Attribute ( Datatypes - string  - string  + string  + string    @@ -31217,6 +39756,10 @@

fo:margin-bottom Attribute (   + + RNG Relations + fo:margin-bottom="string] | string]"   +

fo:margin-left[1] Attribute (new in ODF 1.2)

@@ -31225,13 +39768,19 @@

fo:margin-left[1] Attribute (n Parent Elements - style:list-level-label-alignment  + style:graphic-properties  + style:header-footer-properties  + style:page-layout-properties  + style:paragraph-properties  + style:section-properties  + style:table-properties    Datatypes - string  + string  + string    @@ -31239,6 +39788,10 @@

fo:margin-left[1] Attribute (n   + + RNG Relations + fo:margin-left="string] | string]"   +

fo:margin-left[2] Attribute (new in ODF 1.2)

@@ -31247,19 +39800,13 @@

fo:margin-left[2] Attribute (n Parent Elements - style:graphic-properties  - style:header-footer-properties  - style:page-layout-properties  - style:paragraph-properties  - style:section-properties  - style:table-properties  + style:list-level-label-alignment    Datatypes - string  - string  + string    @@ -31267,6 +39814,10 @@

fo:margin-left[2] Attribute (n   + + RNG Relations + fo:margin-left="string]"   +

fo:margin-right Attribute (new in ODF 1.2)

@@ -31285,8 +39836,8 @@

fo:margin-right Attribute (ne Datatypes - string  - string  + string  + string    @@ -31294,6 +39845,10 @@

fo:margin-right Attribute (ne   + + RNG Relations + fo:margin-right="string] | string]"   +

fo:margin-top Attribute (new in ODF 1.2)

@@ -31311,8 +39866,8 @@

fo:margin-top Attribute (new in Datatypes - string  - string  + string  + string    @@ -31320,6 +39875,10 @@

fo:margin-top Attribute (new in   + + RNG Relations + fo:margin-top="string] | string]"   +

fo:max-height Attribute

@@ -31334,8 +39893,8 @@

fo:max-height Attribute

Datatypes - string  - string  + string  + string    @@ -31343,6 +39902,10 @@

fo:max-height Attribute

  + + RNG Relations + fo:max-height="string] | string]"   +

fo:max-width Attribute

@@ -31357,8 +39920,8 @@

fo:max-width Attribute

Datatypes - string  - string  + string  + string    @@ -31366,6 +39929,10 @@

fo:max-width Attribute

  + + RNG Relations + fo:max-width="string] | string]"   +

fo:min-height[1] Attribute

@@ -31381,8 +39948,8 @@

fo:min-height[1] Attribute

Datatypes - string  - string  + string  + string    @@ -31390,6 +39957,10 @@

fo:min-height[1] Attribute

  + + RNG Relations + fo:min-height="string] | string]"   +

fo:min-height[2] Attribute

@@ -31404,7 +39975,7 @@

fo:min-height[2] Attribute

Datatypes - string  + string    @@ -31412,6 +39983,10 @@

fo:min-height[2] Attribute

  + + RNG Relations + fo:min-height="string]"   +

fo:min-width Attribute

@@ -31426,8 +40001,8 @@

fo:min-width Attribute

Datatypes - string  - string  + string  + string    @@ -31435,6 +40010,10 @@

fo:min-width Attribute

  + + RNG Relations + fo:min-width="string] | string]"   +

fo:orphans Attribute (new in ODF 1.2)

@@ -31448,7 +40027,7 @@

fo:orphans Attribute (new in ODF 1 Datatypes - nonNegativeInteger  + nonNegativeInteger    @@ -31456,6 +40035,10 @@

fo:orphans Attribute (new in ODF 1   + + RNG Relations + fo:orphans="<nonNegativeInteger>"   +

fo:padding Attribute (new in ODF 1.2)

@@ -31473,7 +40056,7 @@

fo:padding Attribute (new in ODF 1 Datatypes - string  + string    @@ -31481,6 +40064,10 @@

fo:padding Attribute (new in ODF 1   + + RNG Relations + fo:padding="string]"   +

fo:padding-bottom Attribute (new in ODF 1.2)

@@ -31498,7 +40085,7 @@

fo:padding-bottom Attribute  Datatypes - string  + string    @@ -31506,6 +40093,10 @@

fo:padding-bottom Attribute    + + RNG Relations + fo:padding-bottom="string]"   +

fo:padding-left Attribute (new in ODF 1.2)

@@ -31523,7 +40114,7 @@

fo:padding-left Attribute (ne Datatypes - string  + string    @@ -31531,6 +40122,10 @@

fo:padding-left Attribute (ne   + + RNG Relations + fo:padding-left="string]"   +

fo:padding-right Attribute (new in ODF 1.2)

@@ -31548,7 +40143,7 @@

fo:padding-right Attribute ( Datatypes - string  + string    @@ -31556,6 +40151,10 @@

fo:padding-right Attribute (   + + RNG Relations + fo:padding-right="string]"   +

fo:padding-top Attribute (new in ODF 1.2)

@@ -31573,7 +40172,7 @@

fo:padding-top Attribute (new Datatypes - string  + string    @@ -31581,6 +40180,10 @@

fo:padding-top Attribute (new   + + RNG Relations + fo:padding-top="string]"   +

fo:page-height Attribute (new in ODF 1.2)

@@ -31594,7 +40197,7 @@

fo:page-height Attribute (new Datatypes - string  + string    @@ -31602,6 +40205,10 @@

fo:page-height Attribute (new   + + RNG Relations + fo:page-height="string]"   +

fo:page-width Attribute (new in ODF 1.2)

@@ -31615,7 +40222,7 @@

fo:page-width Attribute (new in Datatypes - string  + string    @@ -31623,6 +40230,10 @@

fo:page-width Attribute (new in   + + RNG Relations + fo:page-width="string]"   +

fo:script Attribute (new in ODF 1.2)

@@ -31638,7 +40249,7 @@

fo:script Attribute (new in ODF 1.2 Datatypes - token  + token    @@ -31646,6 +40257,10 @@

fo:script Attribute (new in ODF 1.2   + + RNG Relations + fo:script="token]"   +

fo:space-after Attribute (new in ODF 1.2)

@@ -31659,7 +40274,7 @@

fo:space-after Attribute (new Datatypes - string  + string    @@ -31667,6 +40282,10 @@

fo:space-after Attribute (new   + + RNG Relations + fo:space-after="string]"   +

fo:space-before Attribute (new in ODF 1.2)

@@ -31680,7 +40299,7 @@

fo:space-before Attribute (ne Datatypes - string  + string    @@ -31688,6 +40307,10 @@

fo:space-before Attribute (ne   + + RNG Relations + fo:space-before="string]"   +

fo:start-indent Attribute (new in ODF 1.2)

@@ -31701,7 +40324,7 @@

fo:start-indent Attribute (ne Datatypes - string  + string    @@ -31709,6 +40332,10 @@

fo:start-indent Attribute (ne   + + RNG Relations + fo:start-indent="string]"   +

fo:text-align Attribute (new in ODF 1.2)

@@ -31728,14 +40355,18 @@

fo:text-align Attribute (new in Values - "center"  - "end"  - "justify"  - "left"  - "right"  - "start"  + "center"  + "end"  + "justify"  + "left"  + "right"  + "start"    + + RNG Relations + fo:text-align="start | end | left | right | center | justify"   +

fo:text-align-last Attribute (new in ODF 1.2)

@@ -31754,11 +40385,15 @@

fo:text-align-last Attribute&nb Values - "center"  - "justify"  - "start"  + "center"  + "justify"  + "start"    + + RNG Relations + fo:text-align-last="start | center | justify"   +

fo:text-indent[1] Attribute (new in ODF 1.2)

@@ -31773,8 +40408,8 @@

fo:text-indent[1] Attribute (n Datatypes - string  - string  + string  + string    @@ -31782,6 +40417,10 @@

fo:text-indent[1] Attribute (n   + + RNG Relations + fo:text-indent="string] | string]"   +

fo:text-indent[2] Attribute (new in ODF 1.2)

@@ -31796,7 +40435,7 @@

fo:text-indent[2] Attribute (n Datatypes - string  + string    @@ -31804,6 +40443,10 @@

fo:text-indent[2] Attribute (n   + + RNG Relations + fo:text-indent="string]"   +

fo:text-shadow Attribute (new in ODF 1.2)

@@ -31817,15 +40460,19 @@

fo:text-shadow Attribute (new Datatypes - string  + string    Values - "none"  + "none"    + + RNG Relations + fo:text-shadow="none | <string>"   +

fo:text-transform Attribute (new in ODF 1.2)

@@ -31844,12 +40491,16 @@

fo:text-transform Attribute  Values - "capitalize"  - "lowercase"  - "none"  - "uppercase"  + "capitalize"  + "lowercase"  + "none"  + "uppercase"    + + RNG Relations + fo:text-transform="none | lowercase | uppercase | capitalize"   +

fo:widows Attribute (new in ODF 1.2)

@@ -31863,7 +40514,7 @@

fo:widows Attribute (new in ODF 1.2 Datatypes - nonNegativeInteger  + nonNegativeInteger    @@ -31871,6 +40522,10 @@

fo:widows Attribute (new in ODF 1.2   + + RNG Relations + fo:widows="<nonNegativeInteger>"   +

fo:width Attribute (new in ODF 1.2)

@@ -31884,7 +40539,7 @@

fo:width Attribute (new in ODF 1.2) Datatypes - string  + string    @@ -31892,6 +40547,10 @@

fo:width Attribute (new in ODF 1.2)   + + RNG Relations + fo:width="string]"   +

fo:wrap-option Attribute (new in ODF 1.2)

@@ -31911,10 +40570,14 @@

fo:wrap-option Attribute (new Values - "no-wrap"  - "wrap"  + "no-wrap"  + "wrap"    + + RNG Relations + fo:wrap-option="no-wrap | wrap"   +

form:allow-deletes Attribute

@@ -31933,10 +40596,14 @@

form:allow-deletes Attribute Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + form:allow-deletes="<boolean>"   +

form:allow-inserts Attribute

@@ -31955,10 +40622,14 @@

form:allow-inserts Attribute Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + form:allow-inserts="<boolean>"   +

form:allow-updates Attribute

@@ -31977,10 +40648,14 @@

form:allow-updates Attribute Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + form:allow-updates="<boolean>"   +

form:apply-design-mode Attribute

@@ -31999,10 +40674,14 @@

form:apply-design-mode Attribut Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + form:apply-design-mode="<boolean>"   +

form:apply-filter Attribute

@@ -32021,10 +40700,14 @@

form:apply-filter Attribute

Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + form:apply-filter="<boolean>"   +

form:auto-complete Attribute

@@ -32043,10 +40726,14 @@

form:auto-complete Attribute Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + form:auto-complete="<boolean>"   +

form:automatic-focus Attribute

@@ -32065,10 +40752,14 @@

form:automatic-focus Attribute Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + form:automatic-focus="<boolean>"   +

form:bound-column Attribute

@@ -32082,7 +40773,7 @@

form:bound-column Attribute

Datatypes - string  + string    @@ -32090,6 +40781,10 @@

form:bound-column Attribute

  + + RNG Relations + form:bound-column="<string>"   +

form:button-type Attribute

@@ -32109,12 +40804,16 @@

form:button-type Attribute

Values - "push"  - "reset"  - "submit"  - "url"  + "push"  + "reset"  + "submit"  + "url"    + + RNG Relations + form:button-type="submit | reset | push | url"   +

form:command Attribute

@@ -32128,7 +40827,7 @@

form:command Attribute

Datatypes - string  + string    @@ -32136,6 +40835,10 @@

form:command Attribute

  + + RNG Relations + form:command="<string>"   +

form:command-type Attribute

@@ -32154,11 +40857,15 @@

form:command-type Attribute

Values - "command"  - "query"  - "table"  + "command"  + "query"  + "table"    + + RNG Relations + form:command-type="table | query | command"   +

form:control-implementation Attribute

@@ -32194,7 +40901,7 @@

form:control-implementatio Datatypes - QName  + QName    @@ -32202,6 +40909,10 @@

form:control-implementatio   + + RNG Relations + form:control-implementation="QName]"   +

form:convert-empty-to-null Attribute

@@ -32227,10 +40938,14 @@

form:convert-empty-to-null Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + form:convert-empty-to-null="<boolean>"   +

form:current-selected Attribute

@@ -32250,10 +40965,14 @@

form:current-selected Attribute< Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + form:current-selected="<boolean>"   +

form:current-state Attribute

@@ -32272,11 +40991,15 @@

form:current-state Attribute Values - "checked"  - "unchecked"  - "unknown"  + "checked"  + "unchecked"  + "unknown"    + + RNG Relations + form:current-state="unchecked | checked | unknown"   +

form:current-value[1] Attribute

@@ -32285,13 +41008,13 @@

form:current-value[1] Attribute Parent Elements - form:date  + form:number    Datatypes - date  + double    @@ -32299,6 +41022,10 @@

form:current-value[1] Attribute   + + RNG Relations + form:current-value="<double>"   +

form:current-value[2] Attribute

@@ -32307,13 +41034,17 @@

form:current-value[2] Attribute Parent Elements - form:time  + form:combobox  + form:file  + form:formatted-text  + form:text  + form:textarea    Datatypes - time  + string    @@ -32321,6 +41052,10 @@

form:current-value[2] Attribute   + + RNG Relations + form:current-value="<string>"   +

form:current-value[3] Attribute

@@ -32329,17 +41064,13 @@

form:current-value[3] Attribute Parent Elements - form:combobox  - form:file  - form:formatted-text  - form:text  - form:textarea  + form:date    Datatypes - string  + date    @@ -32347,6 +41078,10 @@

form:current-value[3] Attribute   + + RNG Relations + form:current-value="<date>"   +

form:current-value[4] Attribute

@@ -32355,13 +41090,13 @@

form:current-value[4] Attribute Parent Elements - form:number  + form:time    Datatypes - double  + time    @@ -32369,6 +41104,10 @@

form:current-value[4] Attribute   + + RNG Relations + form:current-value="<time>"   +

form:data-field Attribute

@@ -32392,7 +41131,7 @@

form:data-field Attribute

Datatypes - string  + string    @@ -32400,6 +41139,10 @@

form:data-field Attribute

  + + RNG Relations + form:data-field="<string>"   +

form:datasource Attribute

@@ -32413,8 +41156,8 @@

form:datasource Attribute

Datatypes - anyURI  - string  + anyURI  + string    @@ -32422,6 +41165,10 @@

form:datasource Attribute

  + + RNG Relations + form:datasource="<anyIRI> | <string>"   +

form:default-button Attribute

@@ -32440,10 +41187,14 @@

form:default-button Attribute< Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + form:default-button="<boolean>"   +

form:delay-for-repeat Attribute

@@ -32462,7 +41213,7 @@

form:delay-for-repeat Attribute< Datatypes - duration  + duration    @@ -32470,6 +41221,10 @@

form:delay-for-repeat Attribute<   + + RNG Relations + form:delay-for-repeat="<duration>"   +

form:detail-fields Attribute

@@ -32483,7 +41238,7 @@

form:detail-fields Attribute Datatypes - string  + string    @@ -32491,6 +41246,10 @@

form:detail-fields Attribute   + + RNG Relations + form:detail-fields="<string>"   +

form:disabled Attribute

@@ -32527,10 +41286,14 @@

form:disabled Attribute

Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + form:disabled="<boolean>"   +

form:dropdown Attribute

@@ -32550,10 +41313,14 @@

form:dropdown Attribute

Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + form:dropdown="<boolean>"   +

form:echo-char Attribute

@@ -32567,7 +41334,7 @@

form:echo-char Attribute

Datatypes - string  + string    @@ -32575,6 +41342,10 @@

form:echo-char Attribute

  + + RNG Relations + form:echo-char="string]"   +

form:enctype Attribute

@@ -32588,7 +41359,7 @@

form:enctype Attribute

Datatypes - string  + string    @@ -32596,6 +41367,10 @@

form:enctype Attribute

  + + RNG Relations + form:enctype="<string>"   +

form:escape-processing Attribute

@@ -32614,10 +41389,14 @@

form:escape-processing Attribut Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + form:escape-processing="<boolean>"   +

form:filter Attribute

@@ -32631,7 +41410,7 @@

form:filter Attribute

Datatypes - string  + string    @@ -32639,6 +41418,10 @@

form:filter Attribute

  + + RNG Relations + form:filter="<string>"   +

form:focus-on-click Attribute

@@ -32657,10 +41440,14 @@

form:focus-on-click Attribute< Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + form:focus-on-click="<boolean>"   +

form:for Attribute

@@ -32675,7 +41462,7 @@

form:for Attribute

Datatypes - string  + string    @@ -32683,6 +41470,10 @@

form:for Attribute

  + + RNG Relations + form:for="<string>"   +

form:id Attribute

@@ -32716,7 +41507,7 @@

form:id Attribute

Datatypes - NCName  + NCName    @@ -32724,6 +41515,10 @@

form:id Attribute

  + + RNG Relations + form:id="<NCName>"   +

form:ignore-result Attribute

@@ -32742,10 +41537,14 @@

form:ignore-result Attribute Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + form:ignore-result="<boolean>"   +

form:image-align Attribute

@@ -32766,11 +41565,15 @@

form:image-align Attribute

Values - "center"  - "end"  - "start"  + "center"  + "end"  + "start"    + + RNG Relations + form:image-align="start | center | end"   +

form:image-data Attribute

@@ -32786,7 +41589,7 @@

form:image-data Attribute

Datatypes - anyURI  + anyURI    @@ -32794,6 +41597,10 @@

form:image-data Attribute

  + + RNG Relations + form:image-data="<anyIRI>"   +

form:image-position[1] Attribute

@@ -32815,12 +41622,16 @@

form:image-position[1] Attribute Values - "bottom"  - "end"  - "start"  - "top"  + "bottom"  + "end"  + "start"  + "top"    + + RNG Relations + form:image-position="start | end | top | bottom"   +

form:image-position[2] Attribute

@@ -32842,9 +41653,13 @@

form:image-position[2] Attribute Values - "center"  + "center"    + + RNG Relations + form:image-position="center"   +

form:is-tristate Attribute

@@ -32863,10 +41678,14 @@

form:is-tristate Attribute

Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + form:is-tristate="<boolean>"   +

form:label Attribute

@@ -32887,7 +41706,7 @@

form:label Attribute

Datatypes - string  + string    @@ -32895,6 +41714,10 @@

form:label Attribute

  + + RNG Relations + form:label="<string>"   +

form:linked-cell Attribute (new in ODF 1.2)

@@ -32920,8 +41743,8 @@

form:linked-cell Attribute ( Datatypes - string  - string  + string  + string    @@ -32929,6 +41752,10 @@

form:linked-cell Attribute (   + + RNG Relations + form:linked-cell="string] | <string>"   +

form:list-linkage-type Attribute (new in ODF 1.2)

@@ -32947,10 +41774,14 @@

form:list-linkage-type Attribut Values - "selection"  - "selection-indices"  + "selection"  + "selection-indices"    + + RNG Relations + form:list-linkage-type="selection | selection-indices"   +

form:list-source Attribute

@@ -32965,7 +41796,7 @@

form:list-source Attribute

Datatypes - string  + string    @@ -32973,6 +41804,10 @@

form:list-source Attribute

  + + RNG Relations + form:list-source="<string>"   +

form:list-source-type Attribute

@@ -32992,14 +41827,18 @@

form:list-source-type Attribute< Values - "query"  - "sql"  - "sql-pass-through"  - "table"  - "table-fields"  - "value-list"  + "query"  + "sql"  + "sql-pass-through"  + "table"  + "table-fields"  + "value-list"    + + RNG Relations + form:list-source-type="table | query | sql | sql-pass-through | value-list | table-fields"   +

form:master-fields Attribute

@@ -33013,7 +41852,7 @@

form:master-fields Attribute Datatypes - string  + string    @@ -33021,6 +41860,10 @@

form:master-fields Attribute   + + RNG Relations + form:master-fields="<string>"   +

form:max-length Attribute

@@ -33042,7 +41885,7 @@

form:max-length Attribute

Datatypes - nonNegativeInteger  + nonNegativeInteger    @@ -33050,6 +41893,10 @@

form:max-length Attribute

  + + RNG Relations + form:max-length="<nonNegativeInteger>"   +

form:max-value[1] Attribute

@@ -33058,13 +41905,13 @@

form:max-value[1] Attribute

Parent Elements - form:time  + form:number    Datatypes - time  + double    @@ -33072,6 +41919,10 @@

form:max-value[1] Attribute

  + + RNG Relations + form:max-value="<double>"   +

form:max-value[2] Attribute

@@ -33080,13 +41931,13 @@

form:max-value[2] Attribute

Parent Elements - form:value-range  + form:time    Datatypes - integer  + time    @@ -33094,6 +41945,10 @@

form:max-value[2] Attribute

  + + RNG Relations + form:max-value="<time>"   +

form:max-value[3] Attribute

@@ -33102,13 +41957,13 @@

form:max-value[3] Attribute

Parent Elements - form:formatted-text  + form:value-range    Datatypes - string  + integer    @@ -33116,6 +41971,10 @@

form:max-value[3] Attribute

  + + RNG Relations + form:max-value="<integer>"   +

form:max-value[4] Attribute

@@ -33124,13 +41983,13 @@

form:max-value[4] Attribute

Parent Elements - form:number  + form:date    Datatypes - double  + date    @@ -33138,6 +41997,10 @@

form:max-value[4] Attribute

  + + RNG Relations + form:max-value="<date>"   +

form:max-value[5] Attribute

@@ -33146,13 +42009,13 @@

form:max-value[5] Attribute

Parent Elements - form:date  + form:formatted-text    Datatypes - date  + string    @@ -33160,6 +42023,10 @@

form:max-value[5] Attribute

  + + RNG Relations + form:max-value="<string>"   +

form:method Attribute

@@ -33173,16 +42040,20 @@

form:method Attribute

Datatypes - string  + string    Values - "get"  - "post"  + "get"  + "post"    + + RNG Relations + form:method="get | post | <string>"   +

form:min-value[1] Attribute

@@ -33191,13 +42062,13 @@

form:min-value[1] Attribute

Parent Elements - form:number  + form:formatted-text    Datatypes - double  + string    @@ -33205,6 +42076,10 @@

form:min-value[1] Attribute

  + + RNG Relations + form:min-value="<string>"   +

form:min-value[2] Attribute

@@ -33219,7 +42094,7 @@

form:min-value[2] Attribute

Datatypes - date  + date    @@ -33227,6 +42102,10 @@

form:min-value[2] Attribute

  + + RNG Relations + form:min-value="<date>"   +

form:min-value[3] Attribute

@@ -33235,13 +42114,13 @@

form:min-value[3] Attribute

Parent Elements - form:value-range  + form:time    Datatypes - integer  + time    @@ -33249,6 +42128,10 @@

form:min-value[3] Attribute

  + + RNG Relations + form:min-value="<time>"   +

form:min-value[4] Attribute

@@ -33257,13 +42140,13 @@

form:min-value[4] Attribute

Parent Elements - form:time  + form:value-range    Datatypes - time  + integer    @@ -33271,6 +42154,10 @@

form:min-value[4] Attribute

  + + RNG Relations + form:min-value="<integer>"   +

form:min-value[5] Attribute

@@ -33279,13 +42166,13 @@

form:min-value[5] Attribute

Parent Elements - form:formatted-text  + form:number    Datatypes - string  + double    @@ -33293,6 +42180,10 @@

form:min-value[5] Attribute

  + + RNG Relations + form:min-value="<double>"   +

form:multi-line Attribute

@@ -33311,10 +42202,14 @@

form:multi-line Attribute

Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + form:multi-line="<boolean>"   +

form:multiple Attribute

@@ -33333,10 +42228,14 @@

form:multiple Attribute

Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + form:multiple="<boolean>"   +

form:name Attribute

@@ -33372,7 +42271,7 @@

form:name Attribute

Datatypes - string  + string    @@ -33380,6 +42279,10 @@

form:name Attribute

  + + RNG Relations + form:name="<string>"   +

form:navigation-mode Attribute

@@ -33398,11 +42301,15 @@

form:navigation-mode Attribute Values - "current"  - "none"  - "parent"  + "current"  + "none"  + "parent"    + + RNG Relations + form:navigation-mode="none | current | parent"   +

form:order Attribute

@@ -33416,7 +42323,7 @@

form:order Attribute

Datatypes - string  + string    @@ -33424,6 +42331,10 @@

form:order Attribute

  + + RNG Relations + form:order="<string>"   +

form:orientation Attribute

@@ -33442,10 +42353,14 @@

form:orientation Attribute

Values - "horizontal"  - "vertical"  + "horizontal"  + "vertical"    + + RNG Relations + form:orientation="horizontal | vertical"   +

form:page-step-size Attribute

@@ -33459,7 +42374,7 @@

form:page-step-size Attribute< Datatypes - positiveInteger  + positiveInteger    @@ -33467,6 +42382,10 @@

form:page-step-size Attribute<   + + RNG Relations + form:page-step-size="<positiveInteger>"   +

form:printable Attribute

@@ -33503,10 +42422,14 @@

form:printable Attribute

Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + form:printable="<boolean>"   +

form:property-name Attribute

@@ -33521,7 +42444,7 @@

form:property-name Attribute Datatypes - string  + string    @@ -33529,6 +42452,10 @@

form:property-name Attribute   + + RNG Relations + form:property-name="<string>"   +

form:readonly Attribute

@@ -33555,10 +42482,14 @@

form:readonly Attribute

Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + form:readonly="<boolean>"   +

form:repeat Attribute (new in ODF 1.2)

@@ -33582,10 +42513,14 @@

form:repeat Attribute (new in ODF Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + form:repeat="<boolean>"   +

form:selected Attribute

@@ -33605,10 +42540,14 @@

form:selected Attribute

Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + form:selected="<boolean>"   +

form:size Attribute

@@ -33623,7 +42562,7 @@

form:size Attribute

Datatypes - nonNegativeInteger  + nonNegativeInteger    @@ -33631,6 +42570,10 @@

form:size Attribute

  + + RNG Relations + form:size="<nonNegativeInteger>"   +

form:source-cell-range Attribute (new in ODF 1.2)

@@ -33645,10 +42588,10 @@

form:source-cell-range Attribut Datatypes - string  - string  - string  - string  + string  + string  + string  + string    @@ -33656,6 +42599,10 @@

form:source-cell-range Attribut   + + RNG Relations + form:source-cell-range="string] | string] | string] | <string>"   +

form:spin-button Attribute (new in ODF 1.2)

@@ -33677,10 +42624,14 @@

form:spin-button Attribute ( Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + form:spin-button="<boolean>"   +

form:state Attribute

@@ -33699,11 +42650,15 @@

form:state Attribute

Values - "checked"  - "unchecked"  - "unknown"  + "checked"  + "unchecked"  + "unknown"    + + RNG Relations + form:state="unchecked | checked | unknown"   +

form:step-size Attribute

@@ -33717,7 +42672,7 @@

form:step-size Attribute

Datatypes - positiveInteger  + positiveInteger    @@ -33725,6 +42680,10 @@

form:step-size Attribute

  + + RNG Relations + form:step-size="<positiveInteger>"   +

form:tab-cycle Attribute

@@ -33743,11 +42702,15 @@

form:tab-cycle Attribute

Values - "current"  - "page"  - "records"  + "current"  + "page"  + "records"    + + RNG Relations + form:tab-cycle="records | current | page"   +

form:tab-index Attribute

@@ -33776,7 +42739,7 @@

form:tab-index Attribute

Datatypes - nonNegativeInteger  + nonNegativeInteger    @@ -33784,6 +42747,10 @@

form:tab-index Attribute

  + + RNG Relations + form:tab-index="<nonNegativeInteger>"   +

form:tab-stop Attribute

@@ -33817,10 +42784,14 @@

form:tab-stop Attribute

Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + form:tab-stop="<boolean>"   +

form:text-style-name Attribute

@@ -33834,7 +42805,7 @@

form:text-style-name Attribute Datatypes - NCName  + NCName    @@ -33842,6 +42813,10 @@

form:text-style-name Attribute   + + RNG Relations + form:text-style-name="(<NCName>)?"   +

form:title Attribute

@@ -33873,7 +42848,7 @@

form:title Attribute

Datatypes - string  + string    @@ -33881,6 +42856,10 @@

form:title Attribute

  + + RNG Relations + form:title="<string>"   +

form:toggle Attribute

@@ -33899,10 +42878,14 @@

form:toggle Attribute

Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + form:toggle="<boolean>"   +

form:validation Attribute

@@ -33921,10 +42904,14 @@

form:validation Attribute

Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + form:validation="<boolean>"   +

form:value[1] Attribute

@@ -33933,25 +42920,13 @@

form:value[1] Attribute

Parent Elements - form:button  - form:checkbox  - form:combobox  - form:file  - form:formatted-text  - form:hidden  - form:image  - form:option  - form:password  - form:radio  - form:text  - form:textarea  - form:value-range  + form:time    Datatypes - string  + time    @@ -33959,6 +42934,10 @@

form:value[1] Attribute

  + + RNG Relations + form:value="<time>"   +

form:value[2] Attribute

@@ -33967,13 +42946,13 @@

form:value[2] Attribute

Parent Elements - form:date  + form:number    Datatypes - date  + double    @@ -33981,6 +42960,10 @@

form:value[2] Attribute

  + + RNG Relations + form:value="<double>"   +

form:value[3] Attribute

@@ -33989,13 +42972,25 @@

form:value[3] Attribute

Parent Elements - form:time  + form:button  + form:checkbox  + form:combobox  + form:file  + form:formatted-text  + form:hidden  + form:image  + form:option  + form:password  + form:radio  + form:text  + form:textarea  + form:value-range    Datatypes - time  + string    @@ -34003,6 +42998,10 @@

form:value[3] Attribute

  + + RNG Relations + form:value="<string>"   +

form:value[4] Attribute

@@ -34011,13 +43010,13 @@

form:value[4] Attribute

Parent Elements - form:number  + form:date    Datatypes - double  + date    @@ -34025,6 +43024,10 @@

form:value[4] Attribute

  + + RNG Relations + form:value="<date>"   +

form:visual-effect Attribute

@@ -34044,10 +43047,14 @@

form:visual-effect Attribute Values - "3d"  - "flat"  + "3d"  + "flat"    + + RNG Relations + form:visual-effect="flat | 3d"   +

form:xforms-list-source Attribute

@@ -34061,7 +43068,7 @@

form:xforms-list-source Attrib Datatypes - string  + string    @@ -34069,6 +43076,10 @@

form:xforms-list-source Attrib   + + RNG Relations + form:xforms-list-source="<string>"   +

form:xforms-submission Attribute

@@ -34082,7 +43093,7 @@

form:xforms-submission Attribut Datatypes - string  + string    @@ -34090,6 +43101,10 @@

form:xforms-submission Attribut   + + RNG Relations + form:xforms-submission="<string>"   +

grddl:transformation Attribute (new in ODF 1.2)

@@ -34107,7 +43122,7 @@

grddl:transformation Attribute Datatypes - anyURI  + anyURI    @@ -34115,6 +43130,12 @@

grddl:transformation Attribute   + + RNG Relations + grddl:transformation=" +START_list(<anyIRI>)* +END_list"   +

meta:cell-count Attribute (new in ODF 1.2)

@@ -34128,7 +43149,7 @@

meta:cell-count Attribute (ne Datatypes - nonNegativeInteger  + nonNegativeInteger    @@ -34136,6 +43157,10 @@

meta:cell-count Attribute (ne   + + RNG Relations + meta:cell-count="<nonNegativeInteger>"   +

meta:character-count Attribute (new in ODF 1.2)

@@ -34149,7 +43174,7 @@

meta:character-count Attribute Datatypes - nonNegativeInteger  + nonNegativeInteger    @@ -34157,6 +43182,10 @@

meta:character-count Attribute   + + RNG Relations + meta:character-count="<nonNegativeInteger>"   +

meta:date Attribute (new in ODF 1.2)

@@ -34170,7 +43199,7 @@

meta:date Attribute (new in ODF 1.2 Datatypes - dateTime  + dateTime    @@ -34178,6 +43207,10 @@

meta:date Attribute (new in ODF 1.2   + + RNG Relations + meta:date="<dateTime>"   +

meta:delay Attribute (new in ODF 1.2)

@@ -34191,7 +43224,7 @@

meta:delay Attribute (new in ODF 1 Datatypes - duration  + duration    @@ -34199,6 +43232,10 @@

meta:delay Attribute (new in ODF 1   + + RNG Relations + meta:delay="<duration>"   +

meta:draw-count Attribute (new in ODF 1.2)

@@ -34212,7 +43249,7 @@

meta:draw-count Attribute (ne Datatypes - nonNegativeInteger  + nonNegativeInteger    @@ -34220,6 +43257,10 @@

meta:draw-count Attribute (ne   + + RNG Relations + meta:draw-count="<nonNegativeInteger>"   +

meta:frame-count Attribute (new in ODF 1.2)

@@ -34233,7 +43274,7 @@

meta:frame-count Attribute ( Datatypes - nonNegativeInteger  + nonNegativeInteger    @@ -34241,6 +43282,10 @@

meta:frame-count Attribute (   + + RNG Relations + meta:frame-count="<nonNegativeInteger>"   +

meta:image-count Attribute (new in ODF 1.2)

@@ -34254,7 +43299,7 @@

meta:image-count Attribute ( Datatypes - nonNegativeInteger  + nonNegativeInteger    @@ -34262,6 +43307,10 @@

meta:image-count Attribute (   + + RNG Relations + meta:image-count="<nonNegativeInteger>"   +

meta:name Attribute (new in ODF 1.2)

@@ -34275,7 +43324,7 @@

meta:name Attribute (new in ODF 1.2 Datatypes - string  + string    @@ -34283,6 +43332,10 @@

meta:name Attribute (new in ODF 1.2   + + RNG Relations + meta:name="<string>"   +

meta:non-whitespace-character-count Attribute (new in ODF 1.2)

@@ -34296,7 +43349,7 @@

meta:non-whitespac Datatypes - nonNegativeInteger  + nonNegativeInteger    @@ -34304,6 +43357,10 @@

meta:non-whitespac   + + RNG Relations + meta:non-whitespace-character-count="<nonNegativeInteger>"   +

meta:object-count Attribute (new in ODF 1.2)

@@ -34317,7 +43374,7 @@

meta:object-count Attribute  Datatypes - nonNegativeInteger  + nonNegativeInteger    @@ -34325,6 +43382,10 @@

meta:object-count Attribute    + + RNG Relations + meta:object-count="<nonNegativeInteger>"   +

meta:ole-object-count Attribute (new in ODF 1.2)

@@ -34338,7 +43399,7 @@

meta:ole-object-count Attribute< Datatypes - nonNegativeInteger  + nonNegativeInteger    @@ -34346,6 +43407,10 @@

meta:ole-object-count Attribute<   + + RNG Relations + meta:ole-object-count="<nonNegativeInteger>"   +

meta:page-count Attribute (new in ODF 1.2)

@@ -34359,7 +43424,7 @@

meta:page-count Attribute (ne Datatypes - nonNegativeInteger  + nonNegativeInteger    @@ -34367,6 +43432,10 @@

meta:page-count Attribute (ne   + + RNG Relations + meta:page-count="<nonNegativeInteger>"   +

meta:paragraph-count Attribute (new in ODF 1.2)

@@ -34380,7 +43449,7 @@

meta:paragraph-count Attribute Datatypes - nonNegativeInteger  + nonNegativeInteger    @@ -34388,6 +43457,10 @@

meta:paragraph-count Attribute   + + RNG Relations + meta:paragraph-count="<nonNegativeInteger>"   +

meta:row-count Attribute (new in ODF 1.2)

@@ -34401,7 +43474,7 @@

meta:row-count Attribute (new Datatypes - nonNegativeInteger  + nonNegativeInteger    @@ -34409,6 +43482,10 @@

meta:row-count Attribute (new   + + RNG Relations + meta:row-count="<nonNegativeInteger>"   +

meta:sentence-count Attribute (new in ODF 1.2)

@@ -34422,7 +43499,7 @@

meta:sentence-count Attribute& Datatypes - nonNegativeInteger  + nonNegativeInteger    @@ -34430,6 +43507,10 @@

meta:sentence-count Attribute&   + + RNG Relations + meta:sentence-count="<nonNegativeInteger>"   +

meta:syllable-count Attribute (new in ODF 1.2)

@@ -34443,7 +43524,7 @@

meta:syllable-count Attribute& Datatypes - nonNegativeInteger  + nonNegativeInteger    @@ -34451,6 +43532,10 @@

meta:syllable-count Attribute&   + + RNG Relations + meta:syllable-count="<nonNegativeInteger>"   +

meta:table-count Attribute (new in ODF 1.2)

@@ -34464,7 +43549,7 @@

meta:table-count Attribute ( Datatypes - nonNegativeInteger  + nonNegativeInteger    @@ -34472,6 +43557,10 @@

meta:table-count Attribute (   + + RNG Relations + meta:table-count="<nonNegativeInteger>"   +

meta:value-type[1] Attribute (new in ODF 1.2)

@@ -34491,9 +43580,13 @@

meta:value-type[1] Attribute  Values - "time"  + "float"    + + RNG Relations + meta:value-type="float"   +

meta:value-type[2] Attribute (new in ODF 1.2)

@@ -34513,9 +43606,13 @@

meta:value-type[2] Attribute  Values - "float"  + "time"    + + RNG Relations + meta:value-type="time"   +

meta:value-type[3] Attribute (new in ODF 1.2)

@@ -34535,9 +43632,13 @@

meta:value-type[3] Attribute  Values - "date"  + "date"    + + RNG Relations + meta:value-type="date"   +

meta:value-type[4] Attribute (new in ODF 1.2)

@@ -34557,9 +43658,13 @@

meta:value-type[4] Attribute  Values - "string"  + "string"    + + RNG Relations + meta:value-type="string"   +

meta:value-type[5] Attribute (new in ODF 1.2)

@@ -34579,9 +43684,13 @@

meta:value-type[5] Attribute  Values - "boolean"  + "boolean"    + + RNG Relations + meta:value-type="boolean"   +

meta:word-count Attribute (new in ODF 1.2)

@@ -34595,7 +43704,7 @@

meta:word-count Attribute (ne Datatypes - nonNegativeInteger  + nonNegativeInteger    @@ -34603,6 +43712,10 @@

meta:word-count Attribute (ne   + + RNG Relations + meta:word-count="<nonNegativeInteger>"   +

number:automatic-order Attribute

@@ -34622,10 +43735,14 @@

number:automatic-order Attribut Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + number:automatic-order="<boolean>"   +

number:calendar Attribute

@@ -34645,22 +43762,26 @@

number:calendar Attribute

Datatypes - string  + string    Values - "ROC"  - "buddhist"  - "gengou"  - "gregorian"  - "hanja"  - "hanja_yoil"  - "hijri"  - "jewish"  + "ROC"  + "buddhist"  + "gengou"  + "gregorian"  + "hanja"  + "hanja_yoil"  + "hijri"  + "jewish"    + + RNG Relations + number:calendar="gregorian | gengou | ROC | hanja_yoil | hanja | hijri | jewish | buddhist | <string>"   +

number:country Attribute

@@ -34681,7 +43802,7 @@

number:country Attribute

Datatypes - token  + token    @@ -34689,6 +43810,10 @@

number:country Attribute

  + + RNG Relations + number:country="token]"   +

number:decimal-places Attribute

@@ -34704,7 +43829,7 @@

number:decimal-places Attribute< Datatypes - integer  + integer    @@ -34712,6 +43837,10 @@

number:decimal-places Attribute<   + + RNG Relations + number:decimal-places="<integer>"   +

number:decimal-replacement Attribute

@@ -34725,7 +43854,7 @@

number:decimal-replacement Datatypes - string  + string    @@ -34733,6 +43862,10 @@

number:decimal-replacement   + + RNG Relations + number:decimal-replacement="<string>"   +

number:denominator-value Attribute

@@ -34746,7 +43879,7 @@

number:denominator-value Attr Datatypes - integer  + integer    @@ -34754,6 +43887,10 @@

number:denominator-value Attr   + + RNG Relations + number:denominator-value="<integer>"   +

number:display-factor Attribute

@@ -34767,7 +43904,7 @@

number:display-factor Attribute< Datatypes - double  + double    @@ -34775,6 +43912,10 @@

number:display-factor Attribute<   + + RNG Relations + number:display-factor="<double>"   +

number:exponent-interval Attribute (new in ODF 1.3)

@@ -34788,7 +43929,7 @@

number:exponent-interval Attr Datatypes - positiveInteger  + positiveInteger    @@ -34796,6 +43937,10 @@

number:exponent-interval Attr   + + RNG Relations + number:exponent-interval="<positiveInteger>"   +

number:forced-exponent-sign Attribute (new in ODF 1.3)

@@ -34814,10 +43959,14 @@

number:forced-exponent-sig Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + number:forced-exponent-sign="<boolean>"   +

number:format-source Attribute

@@ -34837,10 +43986,14 @@

number:format-source Attribute Values - "fixed"  - "language"  + "fixed"  + "language"    + + RNG Relations + number:format-source="fixed | language"   +

number:grouping Attribute

@@ -34861,10 +44014,14 @@

number:grouping Attribute

Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + number:grouping="<boolean>"   +

number:language Attribute

@@ -34885,7 +44042,7 @@

number:language Attribute

Datatypes - token  + token    @@ -34893,6 +44050,10 @@

number:language Attribute

  + + RNG Relations + number:language="token]"   +

number:max-denominator-value Attribute (new in ODF 1.3)

@@ -34906,7 +44067,7 @@

number:max-denominator-va Datatypes - positiveInteger  + positiveInteger    @@ -34914,6 +44075,10 @@

number:max-denominator-va   + + RNG Relations + number:max-denominator-value="<positiveInteger>"   +

number:min-decimal-places Attribute (new in ODF 1.3)

@@ -34928,7 +44093,7 @@

number:min-decimal-places At Datatypes - integer  + integer    @@ -34936,6 +44101,10 @@

number:min-decimal-places At   + + RNG Relations + number:min-decimal-places="<integer>"   +

number:min-denominator-digits Attribute

@@ -34949,7 +44118,7 @@

number:min-denominator-d Datatypes - integer  + integer    @@ -34957,6 +44126,10 @@

number:min-denominator-d   + + RNG Relations + number:min-denominator-digits="<integer>"   +

number:min-exponent-digits Attribute

@@ -34970,7 +44143,7 @@

number:min-exponent-digits Datatypes - integer  + integer    @@ -34978,6 +44151,10 @@

number:min-exponent-digits   + + RNG Relations + number:min-exponent-digits="<integer>"   +

number:min-integer-digits Attribute

@@ -34993,7 +44170,7 @@

number:min-integer-digits At Datatypes - integer  + integer    @@ -35001,6 +44178,10 @@

number:min-integer-digits At   + + RNG Relations + number:min-integer-digits="<integer>"   +

number:min-numerator-digits Attribute

@@ -35014,7 +44195,7 @@

number:min-numerator-digit Datatypes - integer  + integer    @@ -35022,6 +44203,10 @@

number:min-numerator-digit   + + RNG Relations + number:min-numerator-digits="<integer>"   +

number:position Attribute

@@ -35035,7 +44220,7 @@

number:position Attribute

Datatypes - integer  + integer    @@ -35043,6 +44228,10 @@

number:position Attribute

  + + RNG Relations + number:position="<integer>"   +

number:possessive-form Attribute

@@ -35061,10 +44250,14 @@

number:possessive-form Attribut Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + number:possessive-form="<boolean>"   +

number:rfc-language-tag Attribute (new in ODF 1.2)

@@ -35085,7 +44278,7 @@

number:rfc-language-tag Attrib Datatypes - language  + language    @@ -35093,6 +44286,10 @@

number:rfc-language-tag Attrib   + + RNG Relations + number:rfc-language-tag="<language>"   +

number:script Attribute (new in ODF 1.2)

@@ -35113,7 +44310,7 @@

number:script Attribute (new in Datatypes - token  + token    @@ -35121,6 +44318,10 @@

number:script Attribute (new in   + + RNG Relations + number:script="token]"   +

number:style Attribute

@@ -35147,10 +44348,14 @@

number:style Attribute

Values - "long"  - "short"  + "long"  + "short"    + + RNG Relations + number:style="short | long"   +

number:textual Attribute

@@ -35169,10 +44374,14 @@

number:textual Attribute

Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + number:textual="<boolean>"   +

number:title Attribute

@@ -35192,7 +44401,7 @@

number:title Attribute

Datatypes - string  + string    @@ -35200,6 +44409,10 @@

number:title Attribute

  + + RNG Relations + number:title="<string>"   +

number:transliteration-country Attribute

@@ -35219,7 +44432,7 @@

number:transliteration- Datatypes - token  + token    @@ -35227,6 +44440,10 @@

number:transliteration-   + + RNG Relations + number:transliteration-country="token]"   +

number:transliteration-format Attribute

@@ -35246,7 +44463,7 @@

number:transliteration-f Datatypes - string  + string    @@ -35254,6 +44471,10 @@

number:transliteration-f   + + RNG Relations + number:transliteration-format="<string>"   +

number:transliteration-language Attribute

@@ -35273,7 +44494,7 @@

number:transliteration Datatypes - token  + token    @@ -35281,6 +44502,10 @@

number:transliteration   + + RNG Relations + number:transliteration-language="token]"   +

number:transliteration-style Attribute

@@ -35305,11 +44530,15 @@

number:transliteration-st Values - "long"  - "medium"  - "short"  + "long"  + "medium"  + "short"    + + RNG Relations + number:transliteration-style="short | medium | long"   +

number:truncate-on-overflow Attribute

@@ -35328,10 +44557,14 @@

number:truncate-on-overflo Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + number:truncate-on-overflow="<boolean>"   +

office:automatic-update Attribute

@@ -35351,10 +44584,14 @@

office:automatic-update Attrib Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + office:automatic-update="<boolean>"   +

office:boolean-value Attribute

@@ -35364,7 +44601,7 @@

office:boolean-value Attribute db:column  db:column-definition  - form:list-value[1]  + form:list-value[3]  form:property  table:change-track-table-cell  table:covered-table-cell  @@ -35383,10 +44620,14 @@

office:boolean-value Attribute Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + office:boolean-value="<boolean>"   +

office:conversion-mode Attribute

@@ -35405,11 +44646,15 @@

office:conversion-mode Attribut Values - "into-default-style-data-style"  - "into-english-number"  - "keep-text"  + "into-default-style-data-style"  + "into-english-number"  + "keep-text"    + + RNG Relations + office:conversion-mode="into-default-style-data-style | into-english-number | keep-text"   +

office:currency Attribute

@@ -35419,7 +44664,7 @@

office:currency Attribute

db:column  db:column-definition  - form:list-value[6]  + form:list-value[7]  form:property  table:change-track-table-cell  table:covered-table-cell  @@ -35432,7 +44677,7 @@

office:currency Attribute

Datatypes - string  + string    @@ -35440,6 +44685,10 @@

office:currency Attribute

  + + RNG Relations + office:currency="<string>"   +

office:date-value Attribute

@@ -35449,7 +44698,7 @@

office:date-value Attribute

db:column  db:column-definition  - form:list-value[7]  + form:list-value[2]  form:property  table:change-track-table-cell  table:covered-table-cell  @@ -35463,8 +44712,8 @@

office:date-value Attribute

Datatypes - date  - dateTime  + date  + dateTime    @@ -35472,6 +44721,10 @@

office:date-value Attribute

  + + RNG Relations + office:date-value="<date> | <dateTime>"   +

office:dde-application Attribute

@@ -35486,7 +44739,7 @@

office:dde-application Attribut Datatypes - string  + string    @@ -35494,6 +44747,10 @@

office:dde-application Attribut   + + RNG Relations + office:dde-application="<string>"   +

office:dde-item Attribute

@@ -35508,7 +44765,7 @@

office:dde-item Attribute

Datatypes - string  + string    @@ -35516,6 +44773,10 @@

office:dde-item Attribute

  + + RNG Relations + office:dde-item="<string>"   +

office:dde-topic Attribute

@@ -35530,7 +44791,7 @@

office:dde-topic Attribute

Datatypes - string  + string    @@ -35538,6 +44799,10 @@

office:dde-topic Attribute

  + + RNG Relations + office:dde-topic="<string>"   +

office:display Attribute

@@ -35556,10 +44821,14 @@

office:display Attribute

Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + office:display="<boolean>"   +

office:mimetype Attribute

@@ -35573,7 +44842,7 @@

office:mimetype Attribute

Datatypes - string  + string    @@ -35581,6 +44850,10 @@

office:mimetype Attribute

  + + RNG Relations + office:mimetype="<string>"   +

office:name Attribute

@@ -35602,7 +44875,7 @@

office:name Attribute

Datatypes - string  + string    @@ -35610,6 +44883,10 @@

office:name Attribute

  + + RNG Relations + office:name="<string>"   +

office:server-map Attribute

@@ -35628,10 +44905,14 @@

office:server-map Attribute

Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + office:server-map="<boolean>"   +

office:string-value Attribute

@@ -35641,7 +44922,7 @@

office:string-value Attribute< db:column  db:column-definition  - form:list-value[3]  + form:list-value[1]  form:property  table:change-track-table-cell  table:covered-table-cell  @@ -35655,7 +44936,7 @@

office:string-value Attribute< Datatypes - string  + string    @@ -35663,6 +44944,10 @@

office:string-value Attribute<   + + RNG Relations + office:string-value="<string>"   +

office:target-frame Attribute

@@ -35678,18 +44963,22 @@

office:target-frame Attribute< Datatypes - string  + string    Values - "_blank"  - "_parent"  - "_self"  - "_top"  + "_blank"  + "_parent"  + "_self"  + "_top"    + + RNG Relations + office:target-frame="_self | _blank | _parent | _top | <string>"   +

office:target-frame-name Attribute

@@ -35708,18 +44997,22 @@

office:target-frame-name Attr Datatypes - string  + string    Values - "_blank"  - "_parent"  - "_self"  - "_top"  + "_blank"  + "_parent"  + "_self"  + "_top"    + + RNG Relations + office:target-frame-name="_self | _blank | _parent | _top | <string>"   +

office:time-value Attribute

@@ -35729,7 +45022,7 @@

office:time-value Attribute

db:column  db:column-definition  - form:list-value[2]  + form:list-value[4]  form:property  table:change-track-table-cell  table:covered-table-cell  @@ -35743,7 +45036,7 @@

office:time-value Attribute

Datatypes - duration  + duration    @@ -35751,6 +45044,10 @@

office:time-value Attribute

  + + RNG Relations + office:time-value="<duration>"   +

office:title Attribute (new in ODF 1.1)

@@ -35765,7 +45062,7 @@

office:title Attribute (new in O Datatypes - string  + string    @@ -35773,6 +45070,10 @@

office:title Attribute (new in O   + + RNG Relations + office:title="<string>"   +

office:value Attribute

@@ -35782,9 +45083,9 @@

office:value Attribute

db:column  db:column-definition  - form:list-value[4]  form:list-value[5]  form:list-value[6]  + form:list-value[7]  form:property  table:change-track-table-cell  table:covered-table-cell  @@ -35798,7 +45099,7 @@

office:value Attribute

Datatypes - double  + double    @@ -35806,6 +45107,10 @@

office:value Attribute

  + + RNG Relations + office:value="<double>"   +

office:value-type[1] Attribute

@@ -35834,9 +45139,13 @@

office:value-type[1] Attribute Values - "percentage"  + "string"    + + RNG Relations + office:value-type="string"   +

office:value-type[2] Attribute

@@ -35865,9 +45174,13 @@

office:value-type[2] Attribute Values - "string"  + "time"    + + RNG Relations + office:value-type="time"   +

office:value-type[3] Attribute

@@ -35876,16 +45189,8 @@

office:value-type[3] Attribute Parent Elements - db:column  - db:column-definition  form:list-property  form:property  - table:change-track-table-cell  - table:covered-table-cell  - table:table-cell  - text:expression  - text:user-field-decl  - text:variable-set    @@ -35896,9 +45201,13 @@

office:value-type[3] Attribute Values - "date"  + "void"    + + RNG Relations + office:value-type="void"   +

office:value-type[4] Attribute

@@ -35927,9 +45236,13 @@

office:value-type[4] Attribute Values - "boolean"  + "date"    + + RNG Relations + office:value-type="date"   +

office:value-type[5] Attribute

@@ -35958,9 +45271,13 @@

office:value-type[5] Attribute Values - "currency"  + "percentage"    + + RNG Relations + office:value-type="percentage"   +

office:value-type[6] Attribute

@@ -35969,8 +45286,16 @@

office:value-type[6] Attribute Parent Elements + db:column  + db:column-definition  form:list-property  form:property  + table:change-track-table-cell  + table:covered-table-cell  + table:table-cell  + text:expression  + text:user-field-decl  + text:variable-set    @@ -35981,9 +45306,13 @@

office:value-type[6] Attribute Values - "void"  + "currency"    + + RNG Relations + office:value-type="currency"   +

office:value-type[7] Attribute

@@ -36012,9 +45341,13 @@

office:value-type[7] Attribute Values - "time"  + "float"    + + RNG Relations + office:value-type="float"   +

office:value-type[8] Attribute

@@ -36043,9 +45376,13 @@

office:value-type[8] Attribute Values - "float"  + "boolean"    + + RNG Relations + office:value-type="boolean"   +

office:value-type[9] Attribute

@@ -36066,15 +45403,19 @@

office:value-type[9] Attribute Values - "boolean"  - "currency"  - "date"  - "float"  - "percentage"  - "string"  - "time"  + "boolean"  + "currency"  + "date"  + "float"  + "percentage"  + "string"  + "time"    + + RNG Relations + office:value-type="float | time | date | percentage | currency | boolean | string"   +

office:version Attribute

@@ -36097,9 +45438,13 @@

office:version Attribute

Values - "1.3"  + "1.3"    + + RNG Relations + office:version="1.3"   +

presentation:action Attribute

@@ -36118,21 +45463,25 @@

presentation:action Attribute< Values - "execute"  - "fade-out"  - "first-page"  - "hide"  - "last-page"  - "last-visited-page"  - "next-page"  - "none"  - "previous-page"  - "show"  - "sound"  - "stop"  - "verb"  + "execute"  + "fade-out"  + "first-page"  + "hide"  + "last-page"  + "last-visited-page"  + "next-page"  + "none"  + "previous-page"  + "show"  + "sound"  + "stop"  + "verb"    + + RNG Relations + presentation:action="none | previous-page | next-page | first-page | last-page | hide | stop | execute | show | verb | fade-out | sound | last-visited-page"   +

presentation:animations Attribute

@@ -36151,10 +45500,14 @@

presentation:animations Attrib Values - "disabled"  - "enabled"  + "disabled"  + "enabled"    + + RNG Relations + presentation:animations="enabled | disabled"   +

presentation:background-objects-visible Attribute (new in ODF 1.2)

@@ -36173,10 +45526,14 @@

presentation:b Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + presentation:background-objects-visible="<boolean>"   +

presentation:background-visible Attribute (new in ODF 1.2)

@@ -36195,10 +45552,14 @@

presentation:backgroun Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + presentation:background-visible="<boolean>"   +

presentation:class Attribute

@@ -36218,24 +45579,28 @@

presentation:class Attribute Values - "chart"  - "date-time"  - "footer"  - "graphic"  - "handout"  - "header"  - "notes"  - "object"  - "orgchart"  - "outline"  - "page"  - "page-number"  - "subtitle"  - "table"  - "text"  - "title"  + "chart"  + "date-time"  + "footer"  + "graphic"  + "handout"  + "header"  + "notes"  + "object"  + "orgchart"  + "outline"  + "page"  + "page-number"  + "subtitle"  + "table"  + "text"  + "title"    + + RNG Relations + presentation:class="title | outline | subtitle | text | graphic | object | chart | table | orgchart | page | notes | handout | header | footer | date-time | page-number"   +

presentation:class-names Attribute

@@ -36270,7 +45635,7 @@

presentation:class-names Attr Datatypes - NCName  + NCName    @@ -36278,6 +45643,12 @@

presentation:class-names Attr   + + RNG Relations + presentation:class-names=" +START_list(<NCName>)* +END_list"   +

presentation:delay Attribute

@@ -36294,7 +45665,7 @@

presentation:delay Attribute Datatypes - duration  + duration    @@ -36302,6 +45673,10 @@

presentation:delay Attribute   + + RNG Relations + presentation:delay="<duration>"   +

presentation:direction Attribute

@@ -36324,36 +45699,40 @@

presentation:direction Attribut Values - "clockwise"  - "counter-clockwise"  - "from-bottom"  - "from-center"  - "from-left"  - "from-lower-left"  - "from-lower-right"  - "from-right"  - "from-top"  - "from-upper-left"  - "from-upper-right"  - "horizontal"  - "none"  - "path"  - "spiral-inward-left"  - "spiral-inward-right"  - "spiral-outward-left"  - "spiral-outward-right"  - "to-bottom"  - "to-center"  - "to-left"  - "to-lower-left"  - "to-lower-right"  - "to-right"  - "to-top"  - "to-upper-left"  - "to-upper-right"  - "vertical"  + "clockwise"  + "counter-clockwise"  + "from-bottom"  + "from-center"  + "from-left"  + "from-lower-left"  + "from-lower-right"  + "from-right"  + "from-top"  + "from-upper-left"  + "from-upper-right"  + "horizontal"  + "none"  + "path"  + "spiral-inward-left"  + "spiral-inward-right"  + "spiral-outward-left"  + "spiral-outward-right"  + "to-bottom"  + "to-center"  + "to-left"  + "to-lower-left"  + "to-lower-right"  + "to-right"  + "to-top"  + "to-upper-left"  + "to-upper-right"  + "vertical"    + + RNG Relations + presentation:direction="none | from-left | from-top | from-right | from-bottom | from-center | from-upper-left | from-upper-right | from-lower-left | from-lower-right | to-left | to-top | to-right | to-bottom | to-upper-left | to-upper-right | to-lower-right | to-lower-left | path | spiral-inward-left | spiral-inward-right | spiral-outward-left | spiral-outward-right | vertical | horizontal | to-center | clockwise | counter-clockwise"   +

presentation:display-date-time Attribute (new in ODF 1.2)

@@ -36372,10 +45751,14 @@

presentation:display-da Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + presentation:display-date-time="<boolean>"   +

presentation:display-footer Attribute (new in ODF 1.2)

@@ -36394,10 +45777,14 @@

presentation:display-foote Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + presentation:display-footer="<boolean>"   +

presentation:display-header Attribute (new in ODF 1.2)

@@ -36416,10 +45803,14 @@

presentation:display-heade Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + presentation:display-header="<boolean>"   +

presentation:display-page-number Attribute (new in ODF 1.2)

@@ -36438,10 +45829,14 @@

presentation:display- Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + presentation:display-page-number="<boolean>"   +

presentation:duration Attribute (new in ODF 1.2)

@@ -36455,7 +45850,7 @@

presentation:duration Attribute< Datatypes - duration  + duration    @@ -36463,6 +45858,10 @@

presentation:duration Attribute<   + + RNG Relations + presentation:duration="<duration>"   +

presentation:effect Attribute

@@ -36485,25 +45884,29 @@

presentation:effect Attribute< Values - "appear"  - "checkerboard"  - "close"  - "dissolve"  - "fade"  - "hide"  - "laser"  - "lines"  - "move"  - "move-short"  - "none"  - "open"  - "random"  - "rotate"  - "stretch"  - "stripes"  - "wavyline"  + "appear"  + "checkerboard"  + "close"  + "dissolve"  + "fade"  + "hide"  + "laser"  + "lines"  + "move"  + "move-short"  + "none"  + "open"  + "random"  + "rotate"  + "stretch"  + "stripes"  + "wavyline"    + + RNG Relations + presentation:effect="none | fade | move | stripes | open | close | dissolve | wavyline | random | lines | laser | appear | hide | move-short | checkerboard | rotate | stretch"   +

presentation:endless Attribute

@@ -36522,10 +45925,14 @@

presentation:endless Attribute Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + presentation:endless="<boolean>"   +

presentation:force-manual Attribute

@@ -36544,10 +45951,14 @@

presentation:force-manual At Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + presentation:force-manual="<boolean>"   +

presentation:full-screen Attribute

@@ -36566,10 +45977,14 @@

presentation:full-screen Attr Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + presentation:full-screen="<boolean>"   +

presentation:group-id Attribute

@@ -36587,7 +46002,7 @@

presentation:group-id Attribute< Datatypes - string  + string    @@ -36595,6 +46010,10 @@

presentation:group-id Attribute<   + + RNG Relations + presentation:group-id="<string>"   +

presentation:master-element Attribute

@@ -36612,7 +46031,7 @@

presentation:master-elemen Datatypes - IDREF  + IDREF    @@ -36620,6 +46039,10 @@

presentation:master-elemen   + + RNG Relations + presentation:master-element="<IDREF>"   +

presentation:mouse-as-pen Attribute

@@ -36638,10 +46061,14 @@

presentation:mouse-as-pen At Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + presentation:mouse-as-pen="<boolean>"   +

presentation:mouse-visible Attribute

@@ -36660,10 +46087,14 @@

presentation:mouse-visible Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + presentation:mouse-visible="<boolean>"   +

presentation:name Attribute

@@ -36680,7 +46111,7 @@

presentation:name Attribute

Datatypes - string  + string    @@ -36688,6 +46119,10 @@

presentation:name Attribute

  + + RNG Relations + presentation:name="<string>"   +

presentation:node-type Attribute

@@ -36710,15 +46145,19 @@

presentation:node-type Attribut Values - "after-previous"  - "default"  - "interactive-sequence"  - "main-sequence"  - "on-click"  - "timing-root"  - "with-previous"  + "after-previous"  + "default"  + "interactive-sequence"  + "main-sequence"  + "on-click"  + "timing-root"  + "with-previous"    + + RNG Relations + presentation:node-type="default | on-click | with-previous | after-previous | timing-root | main-sequence | interactive-sequence"   +

presentation:object Attribute

@@ -36737,24 +46176,28 @@

presentation:object Attribute< Values - "chart"  - "date-time"  - "footer"  - "graphic"  - "handout"  - "header"  - "notes"  - "object"  - "orgchart"  - "outline"  - "page"  - "page-number"  - "subtitle"  - "table"  - "text"  - "title"  + "chart"  + "date-time"  + "footer"  + "graphic"  + "handout"  + "header"  + "notes"  + "object"  + "orgchart"  + "outline"  + "page"  + "page-number"  + "subtitle"  + "table"  + "text"  + "title"    + + RNG Relations + presentation:object="title | outline | subtitle | text | graphic | object | chart | table | orgchart | page | notes | handout | header | footer | date-time | page-number"   +

presentation:pages Attribute

@@ -36768,7 +46211,7 @@

presentation:pages Attribute Datatypes - string  + string    @@ -36776,6 +46219,10 @@

presentation:pages Attribute   + + RNG Relations + presentation:pages="<string>"   +

presentation:path-id Attribute

@@ -36792,7 +46239,7 @@

presentation:path-id Attribute Datatypes - string  + string    @@ -36800,6 +46247,10 @@

presentation:path-id Attribute   + + RNG Relations + presentation:path-id="<string>"   +

presentation:pause Attribute

@@ -36813,7 +46264,7 @@

presentation:pause Attribute Datatypes - duration  + duration    @@ -36821,6 +46272,10 @@

presentation:pause Attribute   + + RNG Relations + presentation:pause="<duration>"   +

presentation:placeholder Attribute

@@ -36840,10 +46295,14 @@

presentation:placeholder Attr Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + presentation:placeholder="<boolean>"   +

presentation:play-full Attribute

@@ -36862,10 +46321,14 @@

presentation:play-full Attribut Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + presentation:play-full="<boolean>"   +

presentation:presentation-page-layout-name Attribute

@@ -36880,7 +46343,7 @@

presentatio Datatypes - NCName  + NCName    @@ -36888,6 +46351,10 @@

presentatio   + + RNG Relations + presentation:presentation-page-layout-name="(<NCName>)?"   +

presentation:preset-class Attribute

@@ -36910,15 +46377,19 @@

presentation:preset-class At Values - "custom"  - "emphasis"  - "entrance"  - "exit"  - "media-call"  - "motion-path"  - "ole-action"  + "custom"  + "emphasis"  + "entrance"  + "exit"  + "media-call"  + "motion-path"  + "ole-action"    + + RNG Relations + presentation:preset-class="custom | entrance | exit | emphasis | motion-path | ole-action | media-call"   +

presentation:preset-id Attribute

@@ -36936,7 +46407,7 @@

presentation:preset-id Attribut Datatypes - string  + string    @@ -36944,6 +46415,10 @@

presentation:preset-id Attribut   + + RNG Relations + presentation:preset-id="<string>"   +

presentation:preset-sub-type Attribute

@@ -36961,7 +46436,7 @@

presentation:preset-sub-t Datatypes - string  + string    @@ -36969,6 +46444,10 @@

presentation:preset-sub-t   + + RNG Relations + presentation:preset-sub-type="<string>"   +

presentation:show Attribute

@@ -36982,7 +46461,7 @@

presentation:show Attribute

Datatypes - string  + string    @@ -36990,6 +46469,10 @@

presentation:show Attribute

  + + RNG Relations + presentation:show="<string>"   +

presentation:show-end-of-presentation-slide Attribute (new in ODF 1.1)

@@ -37008,10 +46491,14 @@

presentati Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + presentation:show-end-of-presentation-slide="<boolean>"   +

presentation:show-logo Attribute

@@ -37030,10 +46517,14 @@

presentation:show-logo Attribut Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + presentation:show-logo="<boolean>"   +

presentation:source Attribute

@@ -37052,10 +46543,14 @@

presentation:source Attribute< Values - "current-date"  - "fixed"  + "current-date"  + "fixed"    + + RNG Relations + presentation:source="fixed | current-date"   +

presentation:speed Attribute

@@ -37079,11 +46574,15 @@

presentation:speed Attribute Values - "fast"  - "medium"  - "slow"  + "fast"  + "medium"  + "slow"    + + RNG Relations + presentation:speed="slow | medium | fast"   +

presentation:start-page Attribute

@@ -37097,7 +46596,7 @@

presentation:start-page Attrib Datatypes - string  + string    @@ -37105,6 +46604,10 @@

presentation:start-page Attrib   + + RNG Relations + presentation:start-page="<string>"   +

presentation:start-scale Attribute

@@ -37122,7 +46625,7 @@

presentation:start-scale Attr Datatypes - string  + string    @@ -37130,6 +46633,10 @@

presentation:start-scale Attr   + + RNG Relations + presentation:start-scale="string]"   +

presentation:start-with-navigator Attribute

@@ -37148,10 +46655,14 @@

presentation:start-w Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + presentation:start-with-navigator="<boolean>"   +

presentation:stay-on-top Attribute

@@ -37170,10 +46681,14 @@

presentation:stay-on-top Attr Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + presentation:stay-on-top="<boolean>"   +

presentation:style-name Attribute

@@ -37208,7 +46723,7 @@

presentation:style-name Attrib Datatypes - NCName  + NCName    @@ -37216,6 +46731,10 @@

presentation:style-name Attrib   + + RNG Relations + presentation:style-name="(<NCName>)?"   +

presentation:transition-on-click Attribute

@@ -37234,10 +46753,14 @@

presentation:transiti Values - "disabled"  - "enabled"  + "disabled"  + "enabled"    + + RNG Relations + presentation:transition-on-click="enabled | disabled"   +

presentation:transition-speed Attribute (new in ODF 1.2)

@@ -37256,11 +46779,15 @@

presentation:transition- Values - "fast"  - "medium"  - "slow"  + "fast"  + "medium"  + "slow"    + + RNG Relations + presentation:transition-speed="slow | medium | fast"   +

presentation:transition-style Attribute (new in ODF 1.2)

@@ -37279,72 +46806,76 @@

presentation:transition- Values - "clockwise"  - "close"  - "close-horizontal"  - "close-vertical"  - "counterclockwise"  - "dissolve"  - "fade-from-bottom"  - "fade-from-center"  - "fade-from-left"  - "fade-from-lowerleft"  - "fade-from-lowerright"  - "fade-from-right"  - "fade-from-top"  - "fade-from-upperleft"  - "fade-from-upperright"  - "fade-to-center"  - "fly-away"  - "horizontal-checkerboard"  - "horizontal-lines"  - "horizontal-stripes"  - "interlocking-horizontal-left"  - "interlocking-horizontal-right"  - "interlocking-vertical-bottom"  - "interlocking-vertical-top"  - "melt"  - "move-from-bottom"  - "move-from-left"  - "move-from-lowerleft"  - "move-from-lowerright"  - "move-from-right"  - "move-from-top"  - "move-from-upperleft"  - "move-from-upperright"  - "none"  - "open"  - "open-horizontal"  - "open-vertical"  - "random"  - "roll-from-bottom"  - "roll-from-left"  - "roll-from-right"  - "roll-from-top"  - "spiralin-left"  - "spiralin-right"  - "spiralout-left"  - "spiralout-right"  - "stretch-from-bottom"  - "stretch-from-left"  - "stretch-from-right"  - "stretch-from-top"  - "uncover-to-bottom"  - "uncover-to-left"  - "uncover-to-lowerleft"  - "uncover-to-lowerright"  - "uncover-to-right"  - "uncover-to-top"  - "uncover-to-upperleft"  - "uncover-to-upperright"  - "vertical-checkerboard"  - "vertical-lines"  - "vertical-stripes"  - "wavyline-from-bottom"  - "wavyline-from-left"  - "wavyline-from-right"  - "wavyline-from-top"  -  + "clockwise"  + "close"  + "close-horizontal"  + "close-vertical"  + "counterclockwise"  + "dissolve"  + "fade-from-bottom"  + "fade-from-center"  + "fade-from-left"  + "fade-from-lowerleft"  + "fade-from-lowerright"  + "fade-from-right"  + "fade-from-top"  + "fade-from-upperleft"  + "fade-from-upperright"  + "fade-to-center"  + "fly-away"  + "horizontal-checkerboard"  + "horizontal-lines"  + "horizontal-stripes"  + "interlocking-horizontal-left"  + "interlocking-horizontal-right"  + "interlocking-vertical-bottom"  + "interlocking-vertical-top"  + "melt"  + "move-from-bottom"  + "move-from-left"  + "move-from-lowerleft"  + "move-from-lowerright"  + "move-from-right"  + "move-from-top"  + "move-from-upperleft"  + "move-from-upperright"  + "none"  + "open"  + "open-horizontal"  + "open-vertical"  + "random"  + "roll-from-bottom"  + "roll-from-left"  + "roll-from-right"  + "roll-from-top"  + "spiralin-left"  + "spiralin-right"  + "spiralout-left"  + "spiralout-right"  + "stretch-from-bottom"  + "stretch-from-left"  + "stretch-from-right"  + "stretch-from-top"  + "uncover-to-bottom"  + "uncover-to-left"  + "uncover-to-lowerleft"  + "uncover-to-lowerright"  + "uncover-to-right"  + "uncover-to-top"  + "uncover-to-upperleft"  + "uncover-to-upperright"  + "vertical-checkerboard"  + "vertical-lines"  + "vertical-stripes"  + "wavyline-from-bottom"  + "wavyline-from-left"  + "wavyline-from-right"  + "wavyline-from-top"  +  + + + RNG Relations + presentation:transition-style="none | fade-from-left | fade-from-top | fade-from-right | fade-from-bottom | fade-from-upperleft | fade-from-upperright | fade-from-lowerleft | fade-from-lowerright | move-from-left | move-from-top | move-from-right | move-from-bottom | move-from-upperleft | move-from-upperright | move-from-lowerleft | move-from-lowerright | uncover-to-left | uncover-to-top | uncover-to-right | uncover-to-bottom | uncover-to-upperleft | uncover-to-upperright | uncover-to-lowerleft | uncover-to-lowerright | fade-to-center | fade-from-center | vertical-stripes | horizontal-stripes | clockwise | counterclockwise | open-vertical | open-horizontal | close-vertical | close-horizontal | wavyline-from-left | wavyline-from-top | wavyline-from-right | wavyline-from-bottom | spiralin-left | spiralin-right | spiralout-left | spiralout-right | roll-from-top | roll-from-left | roll-from-right | roll-from-bottom | stretch-from-left | stretch-from-top | stretch-from-right | stretch-from-bottom | vertical-lines | horizontal-lines | dissolve | random | vertical-checkerboard | horizontal-checkerboard | interlocking-horizontal-left | interlocking-horizontal-right | interlocking-vertical-top | interlocking-vertical-bottom | fly-away | open | close | melt"  
@@ -37364,11 +46895,15 @@

presentation:transition-t Values - "automatic"  - "manual"  - "semi-automatic"  + "automatic"  + "manual"  + "semi-automatic"    + + RNG Relations + presentation:transition-type="manual | automatic | semi-automatic"   +

presentation:use-date-time-name Attribute

@@ -37384,7 +46919,7 @@

presentation:use-date- Datatypes - string  + string    @@ -37392,6 +46927,10 @@

presentation:use-date-   + + RNG Relations + presentation:use-date-time-name="<string>"   +

presentation:use-footer-name Attribute

@@ -37407,7 +46946,7 @@

presentation:use-footer-n Datatypes - string  + string    @@ -37415,6 +46954,10 @@

presentation:use-footer-n   + + RNG Relations + presentation:use-footer-name="<string>"   +

presentation:use-header-name Attribute

@@ -37430,7 +46973,7 @@

presentation:use-header-n Datatypes - string  + string    @@ -37438,6 +46981,10 @@

presentation:use-header-n   + + RNG Relations + presentation:use-header-name="<string>"   +

presentation:user-transformed Attribute

@@ -37457,10 +47004,14 @@

presentation:user-transf Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + presentation:user-transformed="<boolean>"   +

presentation:verb Attribute

@@ -37474,7 +47025,7 @@

presentation:verb Attribute

Datatypes - nonNegativeInteger  + nonNegativeInteger    @@ -37482,6 +47033,10 @@

presentation:verb Attribute

  + + RNG Relations + presentation:verb="<nonNegativeInteger>"   +

presentation:visibility Attribute (new in ODF 1.2)

@@ -37500,10 +47055,14 @@

presentation:visibility Attrib Values - "hidden"  - "visible"  + "hidden"  + "visible"    + + RNG Relations + presentation:visibility="visible | hidden"   +

script:event-name Attribute

@@ -37518,7 +47077,7 @@

script:event-name Attribute

Datatypes - string  + string    @@ -37526,6 +47085,10 @@

script:event-name Attribute

  + + RNG Relations + script:event-name="<string>"   +

script:language Attribute

@@ -37541,7 +47104,7 @@

script:language Attribute

Datatypes - string  + string    @@ -37549,6 +47112,10 @@

script:language Attribute

  + + RNG Relations + script:language="<string>"   +

script:macro-name Attribute

@@ -37562,7 +47129,7 @@

script:macro-name Attribute

Datatypes - string  + string    @@ -37570,6 +47137,10 @@

script:macro-name Attribute

  + + RNG Relations + script:macro-name="<string>"   +

smil:accelerate Attribute

@@ -37591,7 +47162,7 @@

smil:accelerate Attribute

Datatypes - decimal  + decimal    @@ -37599,6 +47170,10 @@

smil:accelerate Attribute

  + + RNG Relations + smil:accelerate="decimal]"   +

smil:accumulate Attribute

@@ -37622,10 +47197,14 @@

smil:accumulate Attribute

Values - "none"  - "sum"  + "none"  + "sum"    + + RNG Relations + smil:accumulate="none | sum"   +

smil:additive Attribute

@@ -37649,10 +47228,14 @@

smil:additive Attribute

Values - "replace"  - "sum"  + "replace"  + "sum"    + + RNG Relations + smil:additive="replace | sum"   +

smil:attributeName Attribute

@@ -37670,7 +47253,7 @@

smil:attributeName Attribute Datatypes - string  + string    @@ -37678,6 +47261,10 @@

smil:attributeName Attribute   + + RNG Relations + smil:attributeName="<string>"   +

smil:autoReverse Attribute

@@ -37704,10 +47291,14 @@

smil:autoReverse Attribute

Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + smil:autoReverse="<boolean>"   +

smil:begin Attribute

@@ -37731,7 +47322,7 @@

smil:begin Attribute

Datatypes - string  + string    @@ -37739,6 +47330,10 @@

smil:begin Attribute

  + + RNG Relations + smil:begin="<string>"   +

smil:by Attribute

@@ -37756,7 +47351,7 @@

smil:by Attribute

Datatypes - string  + string    @@ -37764,6 +47359,10 @@

smil:by Attribute

  + + RNG Relations + smil:by="<string>"   +

smil:calcMode Attribute

@@ -37785,12 +47384,16 @@

smil:calcMode Attribute

Values - "discrete"  - "linear"  - "paced"  - "spline"  + "discrete"  + "linear"  + "paced"  + "spline"    + + RNG Relations + smil:calcMode="discrete | linear | paced | spline"   +

smil:decelerate Attribute

@@ -37812,7 +47415,7 @@

smil:decelerate Attribute

Datatypes - decimal  + decimal    @@ -37820,6 +47423,10 @@

smil:decelerate Attribute

  + + RNG Relations + smil:decelerate="decimal]"   +

smil:direction Attribute

@@ -37839,10 +47446,14 @@

smil:direction Attribute

Values - "forward"  - "reverse"  + "forward"  + "reverse"    + + RNG Relations + smil:direction="forward | reverse"   +

smil:dur Attribute

@@ -37865,7 +47476,7 @@

smil:dur Attribute

Datatypes - string  + string    @@ -37873,6 +47484,10 @@

smil:dur Attribute

  + + RNG Relations + smil:dur="<string>"   +

smil:end Attribute

@@ -37896,7 +47511,7 @@

smil:end Attribute

Datatypes - string  + string    @@ -37904,6 +47519,10 @@

smil:end Attribute

  + + RNG Relations + smil:end="<string>"   +

smil:endsync Attribute

@@ -37919,18 +47538,22 @@

smil:endsync Attribute

Datatypes - IDREF  + IDREF    Values - "all"  - "first"  - "last"  - "media"  + "all"  + "first"  + "last"  + "media"    + + RNG Relations + smil:endsync="first | last | all | media | <IDREF>"   +

smil:fadeColor Attribute

@@ -37945,7 +47568,7 @@

smil:fadeColor Attribute

Datatypes - string  + string    @@ -37953,6 +47576,10 @@

smil:fadeColor Attribute

  + + RNG Relations + smil:fadeColor="string]"   +

smil:fill Attribute

@@ -37980,14 +47607,18 @@

smil:fill Attribute

Values - "auto"  - "default"  - "freeze"  - "hold"  - "remove"  - "transition"  + "auto"  + "default"  + "freeze"  + "hold"  + "remove"  + "transition"    + + RNG Relations + smil:fill="remove | freeze | hold | auto | default | transition"   +

smil:fillDefault Attribute

@@ -38015,14 +47646,18 @@

smil:fillDefault Attribute

Values - "auto"  - "freeze"  - "hold"  - "inherit"  - "remove"  - "transition"  + "auto"  + "freeze"  + "hold"  + "inherit"  + "remove"  + "transition"    + + RNG Relations + smil:fillDefault="remove | freeze | hold | transition | auto | inherit"   +

smil:from Attribute

@@ -38040,7 +47675,7 @@

smil:from Attribute

Datatypes - string  + string    @@ -38048,6 +47683,10 @@

smil:from Attribute

  + + RNG Relations + smil:from="<string>"   +

smil:keySplines Attribute

@@ -38063,7 +47702,7 @@

smil:keySplines Attribute

Datatypes - string  + string    @@ -38071,6 +47710,10 @@

smil:keySplines Attribute

  + + RNG Relations + smil:keySplines="<string>"   +

smil:keyTimes Attribute

@@ -38086,7 +47729,7 @@

smil:keyTimes Attribute

Datatypes - string  + string    @@ -38094,6 +47737,10 @@

smil:keyTimes Attribute

  + + RNG Relations + smil:keyTimes="<string>"   +

smil:mode Attribute

@@ -38112,10 +47759,14 @@

smil:mode Attribute

Values - "in"  - "out"  + "in"  + "out"    + + RNG Relations + smil:mode="in | out"   +

smil:repeatCount Attribute

@@ -38138,15 +47789,19 @@

smil:repeatCount Attribute

Datatypes - decimal  + decimal    Values - "indefinite"  + "indefinite"    + + RNG Relations + smil:repeatCount="decimal] | indefinite"   +

smil:repeatDur Attribute

@@ -38169,7 +47824,7 @@

smil:repeatDur Attribute

Datatypes - string  + string    @@ -38177,6 +47832,10 @@

smil:repeatDur Attribute

  + + RNG Relations + smil:repeatDur="<string>"   +

smil:restart Attribute

@@ -38204,12 +47863,16 @@

smil:restart Attribute

Values - "always"  - "default"  - "never"  - "whenNotActive"  + "always"  + "default"  + "never"  + "whenNotActive"    + + RNG Relations + smil:restart="never | always | whenNotActive | default"   +

smil:restartDefault Attribute

@@ -38237,12 +47900,16 @@

smil:restartDefault Attribute< Values - "always"  - "inherit"  - "never"  - "whenNotActive"  + "always"  + "inherit"  + "never"  + "whenNotActive"    + + RNG Relations + smil:restartDefault="never | always | whenNotActive | inherit"   +

smil:subtype Attribute

@@ -38257,7 +47924,7 @@

smil:subtype Attribute

Datatypes - string  + string    @@ -38265,6 +47932,10 @@

smil:subtype Attribute

  + + RNG Relations + smil:subtype="<string>"   +

smil:targetElement Attribute

@@ -38285,7 +47956,7 @@

smil:targetElement Attribute Datatypes - IDREF  + IDREF    @@ -38293,6 +47964,10 @@

smil:targetElement Attribute   + + RNG Relations + smil:targetElement="<IDREF>"   +

smil:to Attribute

@@ -38311,7 +47986,7 @@

smil:to Attribute

Datatypes - string  + string    @@ -38319,6 +47994,10 @@

smil:to Attribute

  + + RNG Relations + smil:to="<string>"   +

smil:type Attribute

@@ -38333,7 +48012,7 @@

smil:type Attribute

Datatypes - string  + string    @@ -38341,6 +48020,10 @@

smil:type Attribute

  + + RNG Relations + smil:type="<string>"   +

smil:values Attribute

@@ -38358,7 +48041,7 @@

smil:values Attribute

Datatypes - string  + string    @@ -38366,6 +48049,10 @@

smil:values Attribute

  + + RNG Relations + smil:values="<string>"   +

style:adjustment Attribute (new in ODF 1.2)

@@ -38384,11 +48071,15 @@

style:adjustment Attribute ( Values - "center"  - "left"  - "right"  + "center"  + "left"  + "right"    + + RNG Relations + style:adjustment="left | center | right"   +

style:apply-style-name Attribute

@@ -38402,7 +48093,7 @@

style:apply-style-name Attribut Datatypes - NCName  + NCName    @@ -38410,6 +48101,10 @@

style:apply-style-name Attribut   + + RNG Relations + style:apply-style-name="(<NCName>)?"   +

style:auto-text-indent Attribute (new in ODF 1.2)

@@ -38428,10 +48123,14 @@

style:auto-text-indent Attribut Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + style:auto-text-indent="<boolean>"   +

style:auto-update Attribute

@@ -38450,10 +48149,14 @@

style:auto-update Attribute

Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + style:auto-update="<boolean>"   +

style:background-transparency Attribute (new in ODF 1.2)

@@ -38468,7 +48171,7 @@

style:background-transpa Datatypes - string  + string    @@ -38476,6 +48179,10 @@

style:background-transpa   + + RNG Relations + style:background-transparency="string]"   +

style:base-cell-address Attribute

@@ -38489,7 +48196,7 @@

style:base-cell-address Attrib Datatypes - string  + string    @@ -38497,6 +48204,10 @@

style:base-cell-address Attrib   + + RNG Relations + style:base-cell-address="string]"   +

style:border-line-width Attribute (new in ODF 1.2)

@@ -38514,7 +48225,7 @@

style:border-line-width Attrib Datatypes - string  + string    @@ -38522,6 +48233,12 @@

style:border-line-width Attrib   + + RNG Relations + style:border-line-width=" +START_liststring]string]string] +END_list"   +

style:border-line-width-bottom Attribute (new in ODF 1.2)

@@ -38539,7 +48256,7 @@

style:border-line-width Datatypes - string  + string    @@ -38547,6 +48264,12 @@

style:border-line-width   + + RNG Relations + style:border-line-width-bottom=" +START_liststring]string]string] +END_list"   +

style:border-line-width-left Attribute (new in ODF 1.2)

@@ -38564,7 +48287,7 @@

style:border-line-width-l Datatypes - string  + string    @@ -38572,6 +48295,12 @@

style:border-line-width-l   + + RNG Relations + style:border-line-width-left=" +START_liststring]string]string] +END_list"   +

style:border-line-width-right Attribute (new in ODF 1.2)

@@ -38589,7 +48318,7 @@

style:border-line-width- Datatypes - string  + string    @@ -38597,6 +48326,12 @@

style:border-line-width-   + + RNG Relations + style:border-line-width-right=" +START_liststring]string]string] +END_list"   +

style:border-line-width-top Attribute (new in ODF 1.2)

@@ -38614,7 +48349,7 @@

style:border-line-width-to Datatypes - string  + string    @@ -38622,6 +48357,12 @@

style:border-line-width-to   + + RNG Relations + style:border-line-width-top=" +START_liststring]string]string] +END_list"   +

style:cell-protect Attribute (new in ODF 1.2)

@@ -38640,12 +48381,18 @@

style:cell-protect Attribute&nb Values - "formula-hidden"  - "hidden-and-protected"  - "none"  - "protected"  + "formula-hidden"  + "hidden-and-protected"  + "none"  + "protected"    + + RNG Relations + style:cell-protect="none | hidden-and-protected | +START_list(protected | formula-hidden)+ +END_list"   +

style:char Attribute (new in ODF 1.2)

@@ -38659,7 +48406,7 @@

style:char Attribute (new in ODF 1 Datatypes - string  + string    @@ -38667,6 +48414,10 @@

style:char Attribute (new in ODF 1   + + RNG Relations + style:char="string]"   +

style:class Attribute

@@ -38680,7 +48431,7 @@

style:class Attribute

Datatypes - string  + string    @@ -38688,6 +48439,10 @@

style:class Attribute

  + + RNG Relations + style:class="<string>"   +

style:color Attribute (new in ODF 1.2)

@@ -38702,7 +48457,7 @@

style:color Attribute (new in ODF Datatypes - string  + string    @@ -38710,6 +48465,10 @@

style:color Attribute (new in ODF   + + RNG Relations + style:color="string]"   +

style:column-width Attribute (new in ODF 1.2)

@@ -38723,7 +48482,7 @@

style:column-width Attribute&nb Datatypes - string  + string    @@ -38731,6 +48490,10 @@

style:column-width Attribute&nb   + + RNG Relations + style:column-width="string]"   +

style:condition Attribute

@@ -38744,7 +48507,7 @@

style:condition Attribute

Datatypes - string  + string    @@ -38752,6 +48515,10 @@

style:condition Attribute

  + + RNG Relations + style:condition="<string>"   +

style:contextual-spacing Attribute (new in ODF 1.3)

@@ -38770,10 +48537,14 @@

style:contextual-spacing Attr Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + style:contextual-spacing="<boolean>"   +

style:country-asian Attribute (new in ODF 1.2)

@@ -38787,7 +48558,7 @@

style:country-asian Attribute& Datatypes - token  + token    @@ -38795,6 +48566,10 @@

style:country-asian Attribute&   + + RNG Relations + style:country-asian="token]"   +

style:country-complex Attribute (new in ODF 1.2)

@@ -38808,7 +48583,7 @@

style:country-complex Attribute< Datatypes - token  + token    @@ -38816,6 +48591,10 @@

style:country-complex Attribute<   + + RNG Relations + style:country-complex="token]"   +

style:data-style-name Attribute

@@ -38849,7 +48628,7 @@

style:data-style-name Attribute< Datatypes - NCName  + NCName    @@ -38857,6 +48636,10 @@

style:data-style-name Attribute<   + + RNG Relations + style:data-style-name="(<NCName>)?"   +

style:decimal-places Attribute (new in ODF 1.2)

@@ -38870,7 +48653,7 @@

style:decimal-places Attribute Datatypes - nonNegativeInteger  + nonNegativeInteger    @@ -38878,6 +48661,10 @@

style:decimal-places Attribute   + + RNG Relations + style:decimal-places="<nonNegativeInteger>"   +

style:default-outline-level Attribute

@@ -38891,7 +48678,7 @@

style:default-outline-leve Datatypes - positiveInteger  + positiveInteger    @@ -38899,6 +48686,10 @@

style:default-outline-leve   + + RNG Relations + style:default-outline-level="(<positiveInteger>)?"   +

style:diagonal-bl-tr Attribute (new in ODF 1.2)

@@ -38912,7 +48703,7 @@

style:diagonal-bl-tr Attribute Datatypes - string  + string    @@ -38920,6 +48711,10 @@

style:diagonal-bl-tr Attribute   + + RNG Relations + style:diagonal-bl-tr="<string>"   +

style:diagonal-bl-tr-widths Attribute (new in ODF 1.2)

@@ -38933,7 +48728,7 @@

style:diagonal-bl-tr-width Datatypes - string  + string    @@ -38941,6 +48736,12 @@

style:diagonal-bl-tr-width   + + RNG Relations + style:diagonal-bl-tr-widths=" +START_liststring]string]string] +END_list"   +

style:diagonal-tl-br Attribute (new in ODF 1.2)

@@ -38954,7 +48755,7 @@

style:diagonal-tl-br Attribute Datatypes - string  + string    @@ -38962,6 +48763,10 @@

style:diagonal-tl-br Attribute   + + RNG Relations + style:diagonal-tl-br="<string>"   +

style:diagonal-tl-br-widths Attribute (new in ODF 1.2)

@@ -38975,7 +48780,7 @@

style:diagonal-tl-br-width Datatypes - string  + string    @@ -38983,6 +48788,12 @@

style:diagonal-tl-br-width   + + RNG Relations + style:diagonal-tl-br-widths=" +START_liststring]string]string] +END_list"   +

style:direction Attribute (new in ODF 1.2)

@@ -39002,10 +48813,14 @@

style:direction Attribute (ne Values - "ltr"  - "ttb"  + "ltr"  + "ttb"    + + RNG Relations + style:direction="ltr | ttb"   +

style:display Attribute

@@ -39029,10 +48844,14 @@

style:display Attribute

Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + style:display="<boolean>"   +

style:display-name Attribute

@@ -39056,7 +48875,7 @@

style:display-name Attribute Datatypes - string  + string    @@ -39064,6 +48883,10 @@

style:display-name Attribute   + + RNG Relations + style:display-name="<string>"   +

style:distance Attribute (new in ODF 1.2)

@@ -39077,7 +48900,7 @@

style:distance Attribute (new Datatypes - string  + string    @@ -39085,6 +48908,10 @@

style:distance Attribute (new   + + RNG Relations + style:distance="string]"   +

style:distance-after-sep Attribute (new in ODF 1.2)

@@ -39098,7 +48925,7 @@

style:distance-after-sep Attr Datatypes - string  + string    @@ -39106,6 +48933,10 @@

style:distance-after-sep Attr   + + RNG Relations + style:distance-after-sep="string]"   +

style:distance-before-sep Attribute (new in ODF 1.2)

@@ -39119,7 +48950,7 @@

style:distance-before-sep At Datatypes - string  + string    @@ -39127,6 +48958,10 @@

style:distance-before-sep At   + + RNG Relations + style:distance-before-sep="string]"   +

style:dynamic-spacing Attribute (new in ODF 1.2)

@@ -39145,10 +48980,14 @@

style:dynamic-spacing Attribute< Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + style:dynamic-spacing="<boolean>"   +

style:editable Attribute (new in ODF 1.2)

@@ -39168,10 +49007,14 @@

style:editable Attribute (new Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + style:editable="<boolean>"   +

style:family[1] Attribute

@@ -39192,10 +49035,13 @@

style:family[1] Attribute

Values - "graphic"  - "presentation"  + "paragraph"    + + RNG Relations + style:family="paragraph"   +

style:family[2] Attribute

@@ -39216,9 +49062,13 @@

style:family[2] Attribute

Values - "paragraph"  + "section"    + + RNG Relations + style:family="section"   +

style:family[3] Attribute

@@ -39239,9 +49089,13 @@

style:family[3] Attribute

Values - "table-column"  + "drawing-page"    + + RNG Relations + style:family="drawing-page"   +

style:family[4] Attribute

@@ -39262,9 +49116,13 @@

style:family[4] Attribute

Values - "table-row"  + "table-row"    + + RNG Relations + style:family="table-row"   +

style:family[5] Attribute

@@ -39285,9 +49143,13 @@

style:family[5] Attribute

Values - "table-cell"  + "ruby"    + + RNG Relations + style:family="ruby"   +

style:family[6] Attribute

@@ -39308,9 +49170,13 @@

style:family[6] Attribute

Values - "chart"  + "table-cell"    + + RNG Relations + style:family="table-cell"   +

style:family[7] Attribute

@@ -39331,9 +49197,13 @@

style:family[7] Attribute

Values - "drawing-page"  + "table"    + + RNG Relations + style:family="table"   +

style:family[8] Attribute

@@ -39354,9 +49224,13 @@

style:family[8] Attribute

Values - "table"  + "chart"    + + RNG Relations + style:family="chart"   +

style:family[9] Attribute

@@ -39377,9 +49251,13 @@

style:family[9] Attribute

Values - "ruby"  + "table-column"    + + RNG Relations + style:family="table-column"   +

style:family[10] Attribute

@@ -39400,9 +49278,13 @@

style:family[10] Attribute

Values - "text"  + "text"    + + RNG Relations + style:family="text"   +

style:family[11] Attribute

@@ -39423,9 +49305,14 @@

style:family[11] Attribute

Values - "section"  + "graphic"  + "presentation"    + + RNG Relations + style:family="graphic | presentation"   +

style:filter-name Attribute (new in ODF 1.2)

@@ -39439,7 +49326,7 @@

style:filter-name Attribute  Datatypes - string  + string    @@ -39447,6 +49334,10 @@

style:filter-name Attribute    + + RNG Relations + style:filter-name="<string>"   +

style:first-page-number Attribute (new in ODF 1.2)

@@ -39460,15 +49351,19 @@

style:first-page-number Attrib Datatypes - positiveInteger  + positiveInteger    Values - "continue"  + "continue"    + + RNG Relations + style:first-page-number="<positiveInteger> | continue"   +

style:flow-with-text Attribute (new in ODF 1.2)

@@ -39487,10 +49382,14 @@

style:flow-with-text Attribute Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + style:flow-with-text="<boolean>"   +

style:font-adornments Attribute

@@ -39504,7 +49403,7 @@

style:font-adornments Attribute< Datatypes - string  + string    @@ -39512,6 +49411,10 @@

style:font-adornments Attribute<   + + RNG Relations + style:font-adornments="<string>"   +

style:font-charset Attribute

@@ -39526,7 +49429,7 @@

style:font-charset Attribute Datatypes - string  + string    @@ -39534,6 +49437,10 @@

style:font-charset Attribute   + + RNG Relations + style:font-charset="string]"   +

style:font-charset-asian Attribute (new in ODF 1.2)

@@ -39547,7 +49454,7 @@

style:font-charset-asian Attr Datatypes - string  + string    @@ -39555,6 +49462,10 @@

style:font-charset-asian Attr   + + RNG Relations + style:font-charset-asian="string]"   +

style:font-charset-complex Attribute (new in ODF 1.2)

@@ -39568,7 +49479,7 @@

style:font-charset-complex Datatypes - string  + string    @@ -39576,6 +49487,10 @@

style:font-charset-complex   + + RNG Relations + style:font-charset-complex="string]"   +

style:font-family-asian Attribute (new in ODF 1.2)

@@ -39589,7 +49504,7 @@

style:font-family-asian Attrib Datatypes - string  + string    @@ -39597,6 +49512,10 @@

style:font-family-asian Attrib   + + RNG Relations + style:font-family-asian="<string>"   +

style:font-family-complex Attribute (new in ODF 1.2)

@@ -39610,7 +49529,7 @@

style:font-family-complex At Datatypes - string  + string    @@ -39618,6 +49537,10 @@

style:font-family-complex At   + + RNG Relations + style:font-family-complex="<string>"   +

style:font-family-generic Attribute

@@ -39637,14 +49560,18 @@

style:font-family-generic At Values - "decorative"  - "modern"  - "roman"  - "script"  - "swiss"  - "system"  + "decorative"  + "modern"  + "roman"  + "script"  + "swiss"  + "system"    + + RNG Relations + style:font-family-generic="roman | swiss | modern | decorative | script | system"   +

style:font-family-generic-asian Attribute (new in ODF 1.2)

@@ -39663,14 +49590,18 @@

style:font-family-gene Values - "decorative"  - "modern"  - "roman"  - "script"  - "swiss"  - "system"  + "decorative"  + "modern"  + "roman"  + "script"  + "swiss"  + "system"    + + RNG Relations + style:font-family-generic-asian="roman | swiss | modern | decorative | script | system"   +

style:font-family-generic-complex Attribute (new in ODF 1.2)

@@ -39689,14 +49620,18 @@

style:font-family-ge Values - "decorative"  - "modern"  - "roman"  - "script"  - "swiss"  - "system"  + "decorative"  + "modern"  + "roman"  + "script"  + "swiss"  + "system"    + + RNG Relations + style:font-family-generic-complex="roman | swiss | modern | decorative | script | system"   +

style:font-independent-line-spacing Attribute (new in ODF 1.2)

@@ -39715,10 +49650,14 @@

style:font-indepen Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + style:font-independent-line-spacing="<boolean>"   +

style:font-name Attribute (new in ODF 1.2)

@@ -39733,7 +49672,7 @@

style:font-name Attribute (ne Datatypes - string  + string    @@ -39741,6 +49680,10 @@

style:font-name Attribute (ne   + + RNG Relations + style:font-name="<string>"   +

style:font-name-asian Attribute (new in ODF 1.2)

@@ -39754,7 +49697,7 @@

style:font-name-asian Attribute< Datatypes - string  + string    @@ -39762,6 +49705,10 @@

style:font-name-asian Attribute<   + + RNG Relations + style:font-name-asian="<string>"   +

style:font-name-complex Attribute (new in ODF 1.2)

@@ -39775,7 +49722,7 @@

style:font-name-complex Attrib Datatypes - string  + string    @@ -39783,6 +49730,10 @@

style:font-name-complex Attrib   + + RNG Relations + style:font-name-complex="<string>"   +

style:font-pitch Attribute

@@ -39802,10 +49753,14 @@

style:font-pitch Attribute

Values - "fixed"  - "variable"  + "fixed"  + "variable"    + + RNG Relations + style:font-pitch="fixed | variable"   +

style:font-pitch-asian Attribute (new in ODF 1.2)

@@ -39824,10 +49779,14 @@

style:font-pitch-asian Attribut Values - "fixed"  - "variable"  + "fixed"  + "variable"    + + RNG Relations + style:font-pitch-asian="fixed | variable"   +

style:font-pitch-complex Attribute (new in ODF 1.2)

@@ -39846,10 +49805,14 @@

style:font-pitch-complex Attr Values - "fixed"  - "variable"  + "fixed"  + "variable"    + + RNG Relations + style:font-pitch-complex="fixed | variable"   +

style:font-relief Attribute (new in ODF 1.2)

@@ -39868,11 +49831,15 @@

style:font-relief Attribute  Values - "embossed"  - "engraved"  - "none"  + "embossed"  + "engraved"  + "none"    + + RNG Relations + style:font-relief="none | embossed | engraved"   +

style:font-size-asian Attribute (new in ODF 1.2)

@@ -39886,8 +49853,8 @@

style:font-size-asian Attribute< Datatypes - string  - string  + string  + string    @@ -39895,6 +49862,10 @@

style:font-size-asian Attribute<   + + RNG Relations + style:font-size-asian="string] | string]"   +

style:font-size-complex Attribute (new in ODF 1.2)

@@ -39908,8 +49879,8 @@

style:font-size-complex Attrib Datatypes - string  - string  + string  + string    @@ -39917,6 +49888,10 @@

style:font-size-complex Attrib   + + RNG Relations + style:font-size-complex="string] | string]"   +

style:font-size-rel Attribute (new in ODF 1.2)

@@ -39930,7 +49905,7 @@

style:font-size-rel Attribute& Datatypes - string  + string    @@ -39938,6 +49913,10 @@

style:font-size-rel Attribute&   + + RNG Relations + style:font-size-rel="string]"   +

style:font-size-rel-asian Attribute (new in ODF 1.2)

@@ -39951,7 +49930,7 @@

style:font-size-rel-asian At Datatypes - string  + string    @@ -39959,6 +49938,10 @@

style:font-size-rel-asian At   + + RNG Relations + style:font-size-rel-asian="string]"   +

style:font-size-rel-complex Attribute (new in ODF 1.2)

@@ -39972,7 +49955,7 @@

style:font-size-rel-comple Datatypes - string  + string    @@ -39980,6 +49963,10 @@

style:font-size-rel-comple   + + RNG Relations + style:font-size-rel-complex="string]"   +

style:font-style-asian Attribute (new in ODF 1.2)

@@ -39998,11 +49985,15 @@

style:font-style-asian Attribut Values - "italic"  - "normal"  - "oblique"  + "italic"  + "normal"  + "oblique"    + + RNG Relations + style:font-style-asian="normal | italic | oblique"   +

style:font-style-complex Attribute (new in ODF 1.2)

@@ -40021,11 +50012,15 @@

style:font-style-complex Attr Values - "italic"  - "normal"  - "oblique"  + "italic"  + "normal"  + "oblique"    + + RNG Relations + style:font-style-complex="normal | italic | oblique"   +

style:font-style-name Attribute (new in ODF 1.2)

@@ -40039,7 +50034,7 @@

style:font-style-name Attribute< Datatypes - string  + string    @@ -40047,6 +50042,10 @@

style:font-style-name Attribute<   + + RNG Relations + style:font-style-name="<string>"   +

style:font-style-name-asian Attribute (new in ODF 1.2)

@@ -40060,7 +50059,7 @@

style:font-style-name-asia Datatypes - string  + string    @@ -40068,6 +50067,10 @@

style:font-style-name-asia   + + RNG Relations + style:font-style-name-asian="<string>"   +

style:font-style-name-complex Attribute (new in ODF 1.2)

@@ -40081,7 +50084,7 @@

style:font-style-name-co Datatypes - string  + string    @@ -40089,6 +50092,10 @@

style:font-style-name-co   + + RNG Relations + style:font-style-name-complex="<string>"   +

style:font-weight-asian Attribute (new in ODF 1.2)

@@ -40107,19 +50114,23 @@

style:font-weight-asian Attrib Values - "100"  - "200"  - "300"  - "400"  - "500"  - "600"  - "700"  - "800"  - "900"  - "bold"  - "normal"  + "100"  + "200"  + "300"  + "400"  + "500"  + "600"  + "700"  + "800"  + "900"  + "bold"  + "normal"    + + RNG Relations + style:font-weight-asian="normal | bold | 100 | 200 | 300 | 400 | 500 | 600 | 700 | 800 | 900"   +

style:font-weight-complex Attribute (new in ODF 1.2)

@@ -40138,19 +50149,23 @@

style:font-weight-complex At Values - "100"  - "200"  - "300"  - "400"  - "500"  - "600"  - "700"  - "800"  - "900"  - "bold"  - "normal"  + "100"  + "200"  + "300"  + "400"  + "500"  + "600"  + "700"  + "800"  + "900"  + "bold"  + "normal"    + + RNG Relations + style:font-weight-complex="normal | bold | 100 | 200 | 300 | 400 | 500 | 600 | 700 | 800 | 900"   +

style:footnote-max-height Attribute (new in ODF 1.2)

@@ -40164,7 +50179,7 @@

style:footnote-max-height At Datatypes - string  + string    @@ -40172,6 +50187,10 @@

style:footnote-max-height At   + + RNG Relations + style:footnote-max-height="string]"   +

style:glyph-orientation-vertical Attribute (new in ODF 1.2)

@@ -40190,13 +50209,17 @@

style:glyph-orientati Values - "0"  - "0deg"  - "0grad"  - "0rad"  - "auto"  + "0"  + "0deg"  + "0grad"  + "0rad"  + "auto"    + + RNG Relations + style:glyph-orientation-vertical="auto | 0 | 0deg | 0rad | 0grad"   +

style:height Attribute (new in ODF 1.2)

@@ -40210,7 +50233,7 @@

style:height Attribute (new in O Datatypes - string  + string    @@ -40218,6 +50241,10 @@

style:height Attribute (new in O   + + RNG Relations + style:height="string]"   +

style:horizontal-pos Attribute (new in ODF 1.2)

@@ -40236,15 +50263,19 @@

style:horizontal-pos Attribute Values - "center"  - "from-inside"  - "from-left"  - "inside"  - "left"  - "outside"  - "right"  + "center"  + "from-inside"  + "from-left"  + "inside"  + "left"  + "outside"  + "right"    + + RNG Relations + style:horizontal-pos="left | center | right | from-left | inside | outside | from-inside"   +

style:horizontal-rel Attribute (new in ODF 1.2)

@@ -40263,21 +50294,25 @@

style:horizontal-rel Attribute Values - "char"  - "frame"  - "frame-content"  - "frame-end-margin"  - "frame-start-margin"  - "page"  - "page-content"  - "page-end-margin"  - "page-start-margin"  - "paragraph"  - "paragraph-content"  - "paragraph-end-margin"  - "paragraph-start-margin"  + "char"  + "frame"  + "frame-content"  + "frame-end-margin"  + "frame-start-margin"  + "page"  + "page-content"  + "page-end-margin"  + "page-start-margin"  + "paragraph"  + "paragraph-content"  + "paragraph-end-margin"  + "paragraph-start-margin"    + + RNG Relations + style:horizontal-rel="page | page-content | page-start-margin | page-end-margin | frame | frame-content | frame-start-margin | frame-end-margin | paragraph | paragraph-content | paragraph-start-margin | paragraph-end-margin | char"   +

style:join-border Attribute (new in ODF 1.2)

@@ -40296,10 +50331,14 @@

style:join-border Attribute  Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + style:join-border="<boolean>"   +

style:justify-single-word Attribute (new in ODF 1.2)

@@ -40318,10 +50357,14 @@

style:justify-single-word At Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + style:justify-single-word="<boolean>"   +

style:language-asian Attribute (new in ODF 1.2)

@@ -40335,7 +50378,7 @@

style:language-asian Attribute Datatypes - token  + token    @@ -40343,6 +50386,10 @@

style:language-asian Attribute   + + RNG Relations + style:language-asian="token]"   +

style:language-complex Attribute (new in ODF 1.2)

@@ -40356,7 +50403,7 @@

style:language-complex Attribut Datatypes - token  + token    @@ -40364,6 +50411,10 @@

style:language-complex Attribut   + + RNG Relations + style:language-complex="token]"   +

style:layout-grid-base-height Attribute (new in ODF 1.2)

@@ -40377,7 +50428,7 @@

style:layout-grid-base-h Datatypes - string  + string    @@ -40385,6 +50436,10 @@

style:layout-grid-base-h   + + RNG Relations + style:layout-grid-base-height="string]"   +

style:layout-grid-base-width Attribute (new in ODF 1.2)

@@ -40398,7 +50453,7 @@

style:layout-grid-base-wi Datatypes - string  + string    @@ -40406,6 +50461,10 @@

style:layout-grid-base-wi   + + RNG Relations + style:layout-grid-base-width="string]"   +

style:layout-grid-color Attribute (new in ODF 1.2)

@@ -40419,7 +50478,7 @@

style:layout-grid-color Attrib Datatypes - string  + string    @@ -40427,6 +50486,10 @@

style:layout-grid-color Attrib   + + RNG Relations + style:layout-grid-color="string]"   +

style:layout-grid-display Attribute (new in ODF 1.2)

@@ -40445,10 +50508,14 @@

style:layout-grid-display At Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + style:layout-grid-display="<boolean>"   +

style:layout-grid-lines Attribute (new in ODF 1.2)

@@ -40462,7 +50529,7 @@

style:layout-grid-lines Attrib Datatypes - positiveInteger  + positiveInteger    @@ -40470,6 +50537,10 @@

style:layout-grid-lines Attrib   + + RNG Relations + style:layout-grid-lines="<positiveInteger>"   +

style:layout-grid-mode Attribute (new in ODF 1.2)

@@ -40488,11 +50559,15 @@

style:layout-grid-mode Attribut Values - "both"  - "line"  - "none"  + "both"  + "line"  + "none"    + + RNG Relations + style:layout-grid-mode="none | line | both"   +

style:layout-grid-print Attribute (new in ODF 1.2)

@@ -40511,10 +50586,14 @@

style:layout-grid-print Attrib Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + style:layout-grid-print="<boolean>"   +

style:layout-grid-ruby-below Attribute (new in ODF 1.2)

@@ -40533,10 +50612,14 @@

style:layout-grid-ruby-be Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + style:layout-grid-ruby-below="<boolean>"   +

style:layout-grid-ruby-height Attribute (new in ODF 1.2)

@@ -40550,7 +50633,7 @@

style:layout-grid-ruby-h Datatypes - string  + string    @@ -40558,6 +50641,10 @@

style:layout-grid-ruby-h   + + RNG Relations + style:layout-grid-ruby-height="string]"   +

style:layout-grid-snap-to Attribute (new in ODF 1.2)

@@ -40576,10 +50663,14 @@

style:layout-grid-snap-to At Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + style:layout-grid-snap-to="<boolean>"   +

style:layout-grid-standard-mode Attribute (new in ODF 1.2)

@@ -40598,10 +50689,14 @@

style:layout-grid-stan Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + style:layout-grid-standard-mode="<boolean>"   +

style:leader-char Attribute

@@ -40615,7 +50710,7 @@

style:leader-char Attribute

Datatypes - string  + string    @@ -40623,6 +50718,10 @@

style:leader-char Attribute

  + + RNG Relations + style:leader-char="string]"   +

style:leader-color Attribute (new in ODF 1.2)

@@ -40636,15 +50735,19 @@

style:leader-color Attribute&nb Datatypes - string  + string    Values - "font-color"  + "font-color"    + + RNG Relations + style:leader-color="font-color | string]"   +

style:leader-style Attribute (new in ODF 1.2)

@@ -40663,16 +50766,20 @@

style:leader-style Attribute&nb Values - "dash"  - "dot-dash"  - "dot-dot-dash"  - "dotted"  - "long-dash"  - "none"  - "solid"  - "wave"  + "dash"  + "dot-dash"  + "dot-dot-dash"  + "dotted"  + "long-dash"  + "none"  + "solid"  + "wave"    + + RNG Relations + style:leader-style="none | solid | dotted | dash | long-dash | dot-dash | dot-dot-dash | wave"   +

style:leader-text Attribute (new in ODF 1.2)

@@ -40686,7 +50793,7 @@

style:leader-text Attribute  Datatypes - string  + string    @@ -40694,6 +50801,10 @@

style:leader-text Attribute    + + RNG Relations + style:leader-text="string]"   +

style:leader-text-style Attribute (new in ODF 1.2)

@@ -40707,7 +50818,7 @@

style:leader-text-style Attrib Datatypes - NCName  + NCName    @@ -40715,6 +50826,10 @@

style:leader-text-style Attrib   + + RNG Relations + style:leader-text-style="(<NCName>)?"   +

style:leader-type Attribute (new in ODF 1.2)

@@ -40733,11 +50848,15 @@

style:leader-type Attribute  Values - "double"  - "none"  - "single"  + "double"  + "none"  + "single"    + + RNG Relations + style:leader-type="none | single | double"   +

style:leader-width Attribute (new in ODF 1.2)

@@ -40751,22 +50870,26 @@

style:leader-width Attribute&nb Datatypes - positiveInteger  - string  - string  + positiveInteger  + string  + string    Values - "auto"  - "bold"  - "medium"  - "normal"  - "thick"  - "thin"  + "auto"  + "bold"  + "medium"  + "normal"  + "thick"  + "thin"    + + RNG Relations + style:leader-width="auto | normal | bold | thin | medium | thick | <positiveInteger> | string] | string]"   +

style:legend-expansion[1] Attribute

@@ -40786,11 +50909,13 @@

style:legend-expansion[1] Attri Values - "balanced"  - "high"  - "wide"  + "custom"    + + RNG Relations + style:legend-expansion="custom"   +

style:legend-expansion[2] Attribute

@@ -40810,9 +50935,15 @@

style:legend-expansion[2] Attri Values - "custom"  + "balanced"  + "high"  + "wide"    + + RNG Relations + style:legend-expansion="wide | high | balanced"   +

style:legend-expansion-aspect-ratio Attribute

@@ -40826,7 +50957,7 @@

style:legend-expan Datatypes - double  + double    @@ -40834,6 +50965,10 @@

style:legend-expan   + + RNG Relations + style:legend-expansion-aspect-ratio="<double>"   +

style:length Attribute (new in ODF 1.2)

@@ -40847,15 +50982,19 @@

style:length Attribute (new in O Datatypes - positiveInteger  + positiveInteger    Values - "word"  + "word"    + + RNG Relations + style:length="word | <positiveInteger>"   +

style:letter-kerning Attribute (new in ODF 1.2)

@@ -40874,10 +51013,14 @@

style:letter-kerning Attribute Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + style:letter-kerning="<boolean>"   +

style:line-break Attribute (new in ODF 1.2)

@@ -40896,10 +51039,14 @@

style:line-break Attribute ( Values - "normal"  - "strict"  + "normal"  + "strict"    + + RNG Relations + style:line-break="normal | strict"   +

style:line-height-at-least Attribute (new in ODF 1.2)

@@ -40913,7 +51060,7 @@

style:line-height-at-least Datatypes - string  + string    @@ -40921,6 +51068,10 @@

style:line-height-at-least   + + RNG Relations + style:line-height-at-least="string]"   +

style:line-spacing Attribute (new in ODF 1.2)

@@ -40934,7 +51085,7 @@

style:line-spacing Attribute&nb Datatypes - string  + string    @@ -40942,6 +51093,10 @@

style:line-spacing Attribute&nb   + + RNG Relations + style:line-spacing="string]"   +

style:line-style Attribute (new in ODF 1.2)

@@ -40960,16 +51115,20 @@

style:line-style Attribute ( Values - "dash"  - "dot-dash"  - "dot-dot-dash"  - "dotted"  - "long-dash"  - "none"  - "solid"  - "wave"  + "dash"  + "dot-dash"  + "dot-dot-dash"  + "dotted"  + "long-dash"  + "none"  + "solid"  + "wave"    + + RNG Relations + style:line-style="none | solid | dotted | dash | long-dash | dot-dash | dot-dot-dash | wave"   +

style:lines Attribute (new in ODF 1.2)

@@ -40983,7 +51142,7 @@

style:lines Attribute (new in ODF Datatypes - positiveInteger  + positiveInteger    @@ -40991,6 +51150,10 @@

style:lines Attribute (new in ODF   + + RNG Relations + style:lines="<positiveInteger>"   +

style:list-level Attribute (new in ODF 1.2)

@@ -41004,7 +51167,7 @@

style:list-level Attribute ( Datatypes - positiveInteger  + positiveInteger    @@ -41012,6 +51175,10 @@

style:list-level Attribute (   + + RNG Relations + style:list-level="(<positiveInteger>)?"   +

style:list-style-name Attribute

@@ -41025,7 +51192,7 @@

style:list-style-name Attribute< Datatypes - NCName  + NCName    @@ -41033,6 +51200,10 @@

style:list-style-name Attribute<   + + RNG Relations + style:list-style-name="(<NCName>)?"   +

style:master-page-name Attribute

@@ -41046,7 +51217,7 @@

style:master-page-name Attribut Datatypes - NCName  + NCName    @@ -41054,6 +51225,10 @@

style:master-page-name Attribut   + + RNG Relations + style:master-page-name="(<NCName>)?"   +

style:may-break-between-rows Attribute (new in ODF 1.2)

@@ -41072,10 +51247,14 @@

style:may-break-between-r Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + style:may-break-between-rows="<boolean>"   +

style:min-row-height Attribute (new in ODF 1.2)

@@ -41089,7 +51268,7 @@

style:min-row-height Attribute Datatypes - string  + string    @@ -41097,6 +51276,10 @@

style:min-row-height Attribute   + + RNG Relations + style:min-row-height="string]"   +

style:mirror Attribute (new in ODF 1.2)

@@ -41115,13 +51298,21 @@

style:mirror Attribute (new in O Values - "horizontal"  - "horizontal-on-even"  - "horizontal-on-odd"  - "none"  - "vertical"  + "horizontal"  + "horizontal-on-even"  + "horizontal-on-odd"  + "none"  + "vertical"    + + RNG Relations + style:mirror="none | vertical | horizontal | horizontal-on-odd | horizontal-on-even | +START_listverticalhorizontal | horizontal-on-odd | horizontal-on-even +END_list | +START_listhorizontal | horizontal-on-odd | horizontal-on-evenvertical +END_list"   +

style:name[1] Attribute

@@ -41148,7 +51339,7 @@

style:name[1] Attribute

Datatypes - NCName  + NCName    @@ -41156,6 +51347,10 @@

style:name[1] Attribute

  + + RNG Relations + style:name="<NCName>"   +

style:name[2] Attribute

@@ -41170,7 +51365,7 @@

style:name[2] Attribute

Datatypes - string  + string    @@ -41178,6 +51373,10 @@

style:name[2] Attribute

  + + RNG Relations + style:name="<string>"   +

style:next-style-name Attribute

@@ -41192,7 +51391,7 @@

style:next-style-name Attribute< Datatypes - NCName  + NCName    @@ -41200,6 +51399,10 @@

style:next-style-name Attribute<   + + RNG Relations + style:next-style-name="(<NCName>)?"   +

style:num-format[1] Attribute

@@ -41229,17 +51432,21 @@

style:num-format[1] Attribute

Datatypes - string  + string    Values - "1"  - "I"  - "i"  + "1"  + "I"  + "i"    + + RNG Relations + style:num-format="(1 | i | I | <string>)?"   +

style:num-format[2] Attribute

@@ -41274,10 +51481,14 @@

style:num-format[2] Attribute

Values - "A"  - "a"  + "A"  + "a"    + + RNG Relations + style:num-format="a | A"   +

style:num-letter-sync Attribute

@@ -41311,10 +51522,14 @@

style:num-letter-sync Attribute< Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + style:num-letter-sync="<boolean>"   +

style:num-prefix Attribute

@@ -41332,7 +51547,7 @@

style:num-prefix Attribute

Datatypes - string  + string    @@ -41340,6 +51555,10 @@

style:num-prefix Attribute

  + + RNG Relations + style:num-prefix="<string>"   +

style:num-suffix Attribute

@@ -41357,7 +51576,7 @@

style:num-suffix Attribute

Datatypes - string  + string    @@ -41365,6 +51584,10 @@

style:num-suffix Attribute

  + + RNG Relations + style:num-suffix="<string>"   +

style:number-wrapped-paragraphs Attribute (new in ODF 1.2)

@@ -41378,15 +51601,19 @@

style:number-wrapped-p Datatypes - positiveInteger  + positiveInteger    Values - "no-limit"  + "no-limit"    + + RNG Relations + style:number-wrapped-paragraphs="no-limit | <positiveInteger>"   +

style:overflow-behavior Attribute (new in ODF 1.2)

@@ -41405,10 +51632,14 @@

style:overflow-behavior Attrib Values - "auto-create-new-frame"  - "clip"  + "auto-create-new-frame"  + "clip"    + + RNG Relations + style:overflow-behavior="clip | auto-create-new-frame"   +

style:page-layout-name Attribute

@@ -41424,7 +51655,7 @@

style:page-layout-name Attribut Datatypes - NCName  + NCName    @@ -41432,6 +51663,10 @@

style:page-layout-name Attribut   + + RNG Relations + style:page-layout-name="(<NCName>)?"   +

style:page-number Attribute (new in ODF 1.2)

@@ -41446,15 +51681,19 @@

style:page-number Attribute  Datatypes - nonNegativeInteger  + nonNegativeInteger    Values - "auto"  + "auto"    + + RNG Relations + style:page-number="<nonNegativeInteger> | auto"   +

style:page-usage Attribute

@@ -41473,12 +51712,16 @@

style:page-usage Attribute

Values - "all"  - "left"  - "mirrored"  - "right"  + "all"  + "left"  + "mirrored"  + "right"    + + RNG Relations + style:page-usage="all | left | right | mirrored"   +

style:paper-tray-name Attribute (new in ODF 1.2)

@@ -41492,15 +51735,19 @@

style:paper-tray-name Attribute< Datatypes - string  + string    Values - "default"  + "default"    + + RNG Relations + style:paper-tray-name="default | <string>"   +

style:parent-style-name Attribute

@@ -41514,7 +51761,7 @@

style:parent-style-name Attrib Datatypes - NCName  + NCName    @@ -41522,6 +51769,10 @@

style:parent-style-name Attrib   + + RNG Relations + style:parent-style-name="(<NCName>)?"   +

style:percentage-data-style-name Attribute (new in ODF 1.2)

@@ -41535,7 +51786,7 @@

style:percentage-data Datatypes - NCName  + NCName    @@ -41543,6 +51794,10 @@

style:percentage-data   + + RNG Relations + style:percentage-data-style-name="(<NCName>)?"   +

style:position[1] Attribute

@@ -41558,7 +51813,7 @@

style:position[1] Attribute

Datatypes - string  + string    @@ -41566,6 +51821,10 @@

style:position[1] Attribute

  + + RNG Relations + style:position="string]"   +

style:position[2] Attribute

@@ -41585,13 +51844,21 @@

style:position[2] Attribute

Values - "bottom"  - "center"  - "left"  - "right"  - "top"  + "bottom"  + "center"  + "left"  + "right"  + "top"    + + RNG Relations + style:position="left | center | right | top | bottom | +START_listleft | center | righttop | center | bottom +END_list | +START_listtop | center | bottomleft | center | right +END_list"   +

style:print Attribute (new in ODF 1.2)

@@ -41610,16 +51877,22 @@

style:print Attribute (new in ODF Values - "annotations"  - "charts"  - "drawings"  - "formulas"  - "grid"  - "headers"  - "objects"  - "zero-values"  + "annotations"  + "charts"  + "drawings"  + "formulas"  + "grid"  + "headers"  + "objects"  + "zero-values"    + + RNG Relations + style:print=" +START_list(headers | grid | annotations | objects | charts | drawings | formulas | zero-values)* +END_list"   +

style:print-content Attribute (new in ODF 1.2)

@@ -41639,10 +51912,14 @@

style:print-content Attribute& Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + style:print-content="<boolean>"   +

style:print-orientation Attribute (new in ODF 1.2)

@@ -41661,10 +51938,14 @@

style:print-orientation Attrib Values - "landscape"  - "portrait"  + "landscape"  + "portrait"    + + RNG Relations + style:print-orientation="portrait | landscape"   +

style:print-page-order Attribute (new in ODF 1.2)

@@ -41683,10 +51964,14 @@

style:print-page-order Attribut Values - "ltr"  - "ttb"  + "ltr"  + "ttb"    + + RNG Relations + style:print-page-order="ttb | ltr"   +

style:protect[1] Attribute (new in ODF 1.2)

@@ -41695,7 +51980,7 @@

style:protect[1] Attribute (new Parent Elements - style:graphic-properties  + style:section-properties    @@ -41706,12 +51991,14 @@

style:protect[1] Attribute (new Values - "content"  - "none"  - "position"  - "size"  + "false"  + "true"    + + RNG Relations + style:protect="<boolean>"   +

style:protect[2] Attribute (new in ODF 1.2)

@@ -41720,7 +52007,7 @@

style:protect[2] Attribute (new Parent Elements - style:section-properties  + style:graphic-properties    @@ -41731,10 +52018,18 @@

style:protect[2] Attribute (new Values - "false"  - "true"  + "content"  + "none"  + "position"  + "size"    + + RNG Relations + style:protect="none | +START_list(content | position | size)+ +END_list"   +

style:punctuation-wrap Attribute (new in ODF 1.2)

@@ -41753,10 +52048,14 @@

style:punctuation-wrap Attribut Values - "hanging"  - "simple"  + "hanging"  + "simple"    + + RNG Relations + style:punctuation-wrap="simple | hanging"   +

style:register-true Attribute (new in ODF 1.2)

@@ -41775,10 +52074,14 @@

style:register-true Attribute& Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + style:register-true="<boolean>"   +

style:register-truth-ref-style-name Attribute (new in ODF 1.2)

@@ -41792,7 +52095,7 @@

style:register-tru Datatypes - NCName  + NCName    @@ -41800,6 +52103,10 @@

style:register-tru   + + RNG Relations + style:register-truth-ref-style-name="(<NCName>)?"   +

style:rel-column-width Attribute (new in ODF 1.2)

@@ -41813,7 +52120,7 @@

style:rel-column-width Attribut Datatypes - string  + string    @@ -41821,6 +52128,10 @@

style:rel-column-width Attribut   + + RNG Relations + style:rel-column-width="string]"   +

style:rel-height Attribute

@@ -41835,16 +52146,20 @@

style:rel-height Attribute

Datatypes - string  + string    Values - "scale"  - "scale-min"  + "scale"  + "scale-min"    + + RNG Relations + style:rel-height="string] | scale | scale-min"   +

style:rel-width[1] Attribute

@@ -41853,21 +52168,27 @@

style:rel-width[1] Attribute

Parent Elements - style:footnote-sep  - style:table-properties  + draw:frame  + style:graphic-properties    Datatypes - string  + string    Values + "scale"  + "scale-min"    + + RNG Relations + style:rel-width="string] | scale | scale-min"   +

style:rel-width[2] Attribute

@@ -41876,13 +52197,14 @@

style:rel-width[2] Attribute

Parent Elements - style:column  + style:footnote-sep  + style:table-properties    Datatypes - string  + string    @@ -41890,6 +52212,10 @@

style:rel-width[2] Attribute

  + + RNG Relations + style:rel-width="string]"   +

style:rel-width[3] Attribute

@@ -41898,23 +52224,24 @@

style:rel-width[3] Attribute

Parent Elements - draw:frame  - style:graphic-properties  + style:column    Datatypes - string  + string    Values - "scale"  - "scale-min"    + + RNG Relations + style:rel-width="string]"   +

style:repeat Attribute (new in ODF 1.2)

@@ -41935,11 +52262,15 @@

style:repeat Attribute (new in O Values - "no-repeat"  - "repeat"  - "stretch"  + "no-repeat"  + "repeat"  + "stretch"    + + RNG Relations + style:repeat="no-repeat | repeat | stretch"   +

style:repeat-content Attribute (new in ODF 1.2)

@@ -41958,10 +52289,14 @@

style:repeat-content Attribute Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + style:repeat-content="<boolean>"   +

style:rfc-language-tag Attribute (new in ODF 1.2)

@@ -41977,7 +52312,7 @@

style:rfc-language-tag Attribut Datatypes - language  + language    @@ -41985,6 +52320,10 @@

style:rfc-language-tag Attribut   + + RNG Relations + style:rfc-language-tag="<language>"   +

style:rfc-language-tag-asian Attribute (new in ODF 1.2)

@@ -41998,7 +52337,7 @@

style:rfc-language-tag-as Datatypes - language  + language    @@ -42006,6 +52345,10 @@

style:rfc-language-tag-as   + + RNG Relations + style:rfc-language-tag-asian="<language>"   +

style:rfc-language-tag-complex Attribute (new in ODF 1.2)

@@ -42019,7 +52362,7 @@

style:rfc-language-tag- Datatypes - language  + language    @@ -42027,6 +52370,10 @@

style:rfc-language-tag-   + + RNG Relations + style:rfc-language-tag-complex="<language>"   +

style:rotation-align Attribute (new in ODF 1.2)

@@ -42045,12 +52392,16 @@

style:rotation-align Attribute Values - "bottom"  - "center"  - "none"  - "top"  + "bottom"  + "center"  + "none"  + "top"    + + RNG Relations + style:rotation-align="none | bottom | top | center"   +

style:rotation-angle Attribute (new in ODF 1.2)

@@ -42065,7 +52416,7 @@

style:rotation-angle Attribute Datatypes - string  + string    @@ -42073,6 +52424,10 @@

style:rotation-angle Attribute   + + RNG Relations + style:rotation-angle="<string>"   +

style:row-height Attribute (new in ODF 1.2)

@@ -42086,7 +52441,7 @@

style:row-height Attribute ( Datatypes - string  + string    @@ -42094,6 +52449,10 @@

style:row-height Attribute (   + + RNG Relations + style:row-height="string]"   +

style:ruby-align Attribute (new in ODF 1.2)

@@ -42112,13 +52471,17 @@

style:ruby-align Attribute ( Values - "center"  - "distribute-letter"  - "distribute-space"  - "left"  - "right"  + "center"  + "distribute-letter"  + "distribute-space"  + "left"  + "right"    + + RNG Relations + style:ruby-align="left | center | right | distribute-letter | distribute-space"   +

style:ruby-position Attribute (new in ODF 1.2)

@@ -42137,10 +52500,14 @@

style:ruby-position Attribute& Values - "above"  - "below"  + "above"  + "below"    + + RNG Relations + style:ruby-position="above | below"   +

style:run-through Attribute (new in ODF 1.2)

@@ -42159,10 +52526,14 @@

style:run-through Attribute  Values - "background"  - "foreground"  + "background"  + "foreground"    + + RNG Relations + style:run-through="foreground | background"   +

style:scale-to Attribute (new in ODF 1.2)

@@ -42176,7 +52547,7 @@

style:scale-to Attribute (new Datatypes - string  + string    @@ -42184,6 +52555,10 @@

style:scale-to Attribute (new   + + RNG Relations + style:scale-to="string]"   +

style:scale-to-X Attribute (new in ODF 1.3)

@@ -42197,7 +52572,7 @@

style:scale-to-X Attribute ( Datatypes - positiveInteger  + positiveInteger    @@ -42205,6 +52580,10 @@

style:scale-to-X Attribute (   + + RNG Relations + style:scale-to-X="<positiveInteger>"   +

style:scale-to-Y Attribute (new in ODF 1.3)

@@ -42218,7 +52597,7 @@

style:scale-to-Y Attribute ( Datatypes - positiveInteger  + positiveInteger    @@ -42226,6 +52605,10 @@

style:scale-to-Y Attribute (   + + RNG Relations + style:scale-to-Y="<positiveInteger>"   +

style:scale-to-pages Attribute (new in ODF 1.2)

@@ -42239,7 +52622,7 @@

style:scale-to-pages Attribute Datatypes - positiveInteger  + positiveInteger    @@ -42247,6 +52630,10 @@

style:scale-to-pages Attribute   + + RNG Relations + style:scale-to-pages="<positiveInteger>"   +

style:script-asian Attribute (new in ODF 1.2)

@@ -42260,7 +52647,7 @@

style:script-asian Attribute&nb Datatypes - token  + token    @@ -42268,6 +52655,10 @@

style:script-asian Attribute&nb   + + RNG Relations + style:script-asian="token]"   +

style:script-complex Attribute (new in ODF 1.2)

@@ -42281,7 +52672,7 @@

style:script-complex Attribute Datatypes - token  + token    @@ -42289,6 +52680,10 @@

style:script-complex Attribute   + + RNG Relations + style:script-complex="token]"   +

style:script-type Attribute (new in ODF 1.2)

@@ -42307,12 +52702,16 @@

style:script-type Attribute  Values - "asian"  - "complex"  - "ignore"  - "latin"  + "asian"  + "complex"  + "ignore"  + "latin"    + + RNG Relations + style:script-type="latin | asian | complex | ignore"   +

style:shadow Attribute (new in ODF 1.2)

@@ -42331,15 +52730,19 @@

style:shadow Attribute (new in O Datatypes - string  + string    Values - "none"  + "none"    + + RNG Relations + style:shadow="none | <string>"   +

style:shrink-to-fit Attribute (new in ODF 1.2)

@@ -42359,10 +52762,14 @@

style:shrink-to-fit Attribute& Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + style:shrink-to-fit="<boolean>"   +

style:snap-to-layout-grid Attribute (new in ODF 1.2)

@@ -42381,10 +52788,14 @@

style:snap-to-layout-grid At Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + style:snap-to-layout-grid="<boolean>"   +

style:style Attribute (new in ODF 1.2)

@@ -42403,13 +52814,17 @@

style:style Attribute (new in ODF Values - "dashed"  - "dot-dashed"  - "dotted"  - "none"  - "solid"  + "dashed"  + "dot-dashed"  + "dotted"  + "none"  + "solid"    + + RNG Relations + style:style="none | solid | dotted | dashed | dot-dashed"   +

style:style-name Attribute (new in ODF 1.2)

@@ -42423,7 +52838,7 @@

style:style-name Attribute ( Datatypes - NCName  + NCName    @@ -42431,6 +52846,10 @@

style:style-name Attribute (   + + RNG Relations + style:style-name="(<NCName>)?"   +

style:tab-stop-distance Attribute (new in ODF 1.2)

@@ -42444,7 +52863,7 @@

style:tab-stop-distance Attrib Datatypes - string  + string    @@ -42452,6 +52871,10 @@

style:tab-stop-distance Attrib   + + RNG Relations + style:tab-stop-distance="string]"   +

style:table-centering Attribute (new in ODF 1.2)

@@ -42470,12 +52893,16 @@

style:table-centering Attribute< Values - "both"  - "horizontal"  - "none"  - "vertical"  + "both"  + "horizontal"  + "none"  + "vertical"    + + RNG Relations + style:table-centering="horizontal | vertical | both | none"   +

style:text-align-source Attribute (new in ODF 1.2)

@@ -42494,10 +52921,14 @@

style:text-align-source Attrib Values - "fix"  - "value-type"  + "fix"  + "value-type"    + + RNG Relations + style:text-align-source="fix | value-type"   +

style:text-autospace Attribute (new in ODF 1.2)

@@ -42516,10 +52947,14 @@

style:text-autospace Attribute Values - "ideograph-alpha"  - "none"  + "ideograph-alpha"  + "none"    + + RNG Relations + style:text-autospace="none | ideograph-alpha"   +

style:text-blinking Attribute (new in ODF 1.2)

@@ -42538,10 +52973,14 @@

style:text-blinking Attribute& Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + style:text-blinking="<boolean>"   +

style:text-combine Attribute (new in ODF 1.2)

@@ -42560,11 +52999,15 @@

style:text-combine Attribute&nb Values - "letters"  - "lines"  - "none"  + "letters"  + "lines"  + "none"    + + RNG Relations + style:text-combine="none | letters | lines"   +

style:text-combine-end-char Attribute (new in ODF 1.2)

@@ -42578,7 +53021,7 @@

style:text-combine-end-cha Datatypes - string  + string    @@ -42586,6 +53029,10 @@

style:text-combine-end-cha   + + RNG Relations + style:text-combine-end-char="string]"   +

style:text-combine-start-char Attribute (new in ODF 1.2)

@@ -42599,7 +53046,7 @@

style:text-combine-start Datatypes - string  + string    @@ -42607,6 +53054,10 @@

style:text-combine-start   + + RNG Relations + style:text-combine-start-char="string]"   +

style:text-emphasize Attribute (new in ODF 1.2)

@@ -42625,15 +53076,21 @@

style:text-emphasize Attribute Values - "above"  - "accent"  - "below"  - "circle"  - "disc"  - "dot"  - "none"  + "above"  + "accent"  + "below"  + "circle"  + "disc"  + "dot"  + "none"    + + RNG Relations + style:text-emphasize="none | +START_listnone | accent | dot | circle | discabove | below +END_list"   +

style:text-line-through-color Attribute (new in ODF 1.2)

@@ -42647,15 +53104,19 @@

style:text-line-through- Datatypes - string  + string    Values - "font-color"  + "font-color"    + + RNG Relations + style:text-line-through-color="font-color | string]"   +

style:text-line-through-mode Attribute (new in ODF 1.2)

@@ -42674,10 +53135,14 @@

style:text-line-through-m Values - "continuous"  - "skip-white-space"  + "continuous"  + "skip-white-space"    + + RNG Relations + style:text-line-through-mode="continuous | skip-white-space"   +

style:text-line-through-style Attribute (new in ODF 1.2)

@@ -42696,16 +53161,20 @@

style:text-line-through- Values - "dash"  - "dot-dash"  - "dot-dot-dash"  - "dotted"  - "long-dash"  - "none"  - "solid"  - "wave"  + "dash"  + "dot-dash"  + "dot-dot-dash"  + "dotted"  + "long-dash"  + "none"  + "solid"  + "wave"    + + RNG Relations + style:text-line-through-style="none | solid | dotted | dash | long-dash | dot-dash | dot-dot-dash | wave"   +

style:text-line-through-text Attribute (new in ODF 1.2)

@@ -42719,7 +53188,7 @@

style:text-line-through-t Datatypes - string  + string    @@ -42727,6 +53196,10 @@

style:text-line-through-t   + + RNG Relations + style:text-line-through-text="<string>"   +

style:text-line-through-text-style Attribute (new in ODF 1.2)

@@ -42740,7 +53213,7 @@

style:text-line-thr Datatypes - NCName  + NCName    @@ -42748,6 +53221,10 @@

style:text-line-thr   + + RNG Relations + style:text-line-through-text-style="(<NCName>)?"   +

style:text-line-through-type Attribute (new in ODF 1.2)

@@ -42766,11 +53243,15 @@

style:text-line-through-t Values - "double"  - "none"  - "single"  + "double"  + "none"  + "single"    + + RNG Relations + style:text-line-through-type="none | single | double"   +

style:text-line-through-width Attribute (new in ODF 1.2)

@@ -42784,22 +53265,26 @@

style:text-line-through- Datatypes - positiveInteger  - string  - string  + positiveInteger  + string  + string    Values - "auto"  - "bold"  - "medium"  - "normal"  - "thick"  - "thin"  + "auto"  + "bold"  + "medium"  + "normal"  + "thick"  + "thin"    + + RNG Relations + style:text-line-through-width="auto | normal | bold | thin | medium | thick | <positiveInteger> | string] | string]"   +

style:text-outline Attribute (new in ODF 1.2)

@@ -42818,10 +53303,14 @@

style:text-outline Attribute&nb Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + style:text-outline="<boolean>"   +

style:text-overline-color Attribute (new in ODF 1.2)

@@ -42835,15 +53324,19 @@

style:text-overline-color At Datatypes - string  + string    Values - "font-color"  + "font-color"    + + RNG Relations + style:text-overline-color="font-color | string]"   +

style:text-overline-mode Attribute (new in ODF 1.2)

@@ -42862,10 +53355,14 @@

style:text-overline-mode Attr Values - "continuous"  - "skip-white-space"  + "continuous"  + "skip-white-space"    + + RNG Relations + style:text-overline-mode="continuous | skip-white-space"   +

style:text-overline-style Attribute (new in ODF 1.2)

@@ -42884,16 +53381,20 @@

style:text-overline-style At Values - "dash"  - "dot-dash"  - "dot-dot-dash"  - "dotted"  - "long-dash"  - "none"  - "solid"  - "wave"  + "dash"  + "dot-dash"  + "dot-dot-dash"  + "dotted"  + "long-dash"  + "none"  + "solid"  + "wave"    + + RNG Relations + style:text-overline-style="none | solid | dotted | dash | long-dash | dot-dash | dot-dot-dash | wave"   +

style:text-overline-type Attribute (new in ODF 1.2)

@@ -42912,11 +53413,15 @@

style:text-overline-type Attr Values - "double"  - "none"  - "single"  + "double"  + "none"  + "single"    + + RNG Relations + style:text-overline-type="none | single | double"   +

style:text-overline-width Attribute (new in ODF 1.2)

@@ -42930,22 +53435,26 @@

style:text-overline-width At Datatypes - positiveInteger  - string  - string  + positiveInteger  + string  + string    Values - "auto"  - "bold"  - "medium"  - "normal"  - "thick"  - "thin"  + "auto"  + "bold"  + "medium"  + "normal"  + "thick"  + "thin"    + + RNG Relations + style:text-overline-width="auto | normal | bold | thin | medium | thick | <positiveInteger> | string] | string]"   +

style:text-position Attribute (new in ODF 1.2)

@@ -42959,16 +53468,22 @@

style:text-position Attribute& Datatypes - string  + string    Values - "sub"  - "super"  + "sub"  + "super"    + + RNG Relations + style:text-position=" +START_liststring] | super | sub(string])? +END_list"   +

style:text-rotation-angle Attribute (new in ODF 1.2)

@@ -42982,7 +53497,7 @@

style:text-rotation-angle At Datatypes - string  + string    @@ -42990,6 +53505,10 @@

style:text-rotation-angle At   + + RNG Relations + style:text-rotation-angle="<string>"   +

style:text-rotation-scale Attribute (new in ODF 1.2)

@@ -43008,10 +53527,14 @@

style:text-rotation-scale At Values - "fixed"  - "line-height"  + "fixed"  + "line-height"    + + RNG Relations + style:text-rotation-scale="fixed | line-height"   +

style:text-scale Attribute (new in ODF 1.2)

@@ -43025,7 +53548,7 @@

style:text-scale Attribute ( Datatypes - string  + string    @@ -43033,6 +53556,10 @@

style:text-scale Attribute (   + + RNG Relations + style:text-scale="string]"   +

style:text-underline-color Attribute (new in ODF 1.2)

@@ -43046,15 +53573,19 @@

style:text-underline-color Datatypes - string  + string    Values - "font-color"  + "font-color"    + + RNG Relations + style:text-underline-color="font-color | string]"   +

style:text-underline-mode Attribute (new in ODF 1.2)

@@ -43073,10 +53604,14 @@

style:text-underline-mode At Values - "continuous"  - "skip-white-space"  + "continuous"  + "skip-white-space"    + + RNG Relations + style:text-underline-mode="continuous | skip-white-space"   +

style:text-underline-style Attribute (new in ODF 1.2)

@@ -43095,16 +53630,20 @@

style:text-underline-style Values - "dash"  - "dot-dash"  - "dot-dot-dash"  - "dotted"  - "long-dash"  - "none"  - "solid"  - "wave"  + "dash"  + "dot-dash"  + "dot-dot-dash"  + "dotted"  + "long-dash"  + "none"  + "solid"  + "wave"    + + RNG Relations + style:text-underline-style="none | solid | dotted | dash | long-dash | dot-dash | dot-dot-dash | wave"   +

style:text-underline-type Attribute (new in ODF 1.2)

@@ -43123,11 +53662,15 @@

style:text-underline-type At Values - "double"  - "none"  - "single"  + "double"  + "none"  + "single"    + + RNG Relations + style:text-underline-type="none | single | double"   +

style:text-underline-width Attribute (new in ODF 1.2)

@@ -43141,22 +53684,26 @@

style:text-underline-width Datatypes - positiveInteger  - string  - string  + positiveInteger  + string  + string    Values - "auto"  - "bold"  - "medium"  - "normal"  - "thick"  - "thin"  + "auto"  + "bold"  + "medium"  + "normal"  + "thick"  + "thin"    + + RNG Relations + style:text-underline-width="auto | normal | bold | thin | medium | thick | <positiveInteger> | string] | string]"   +

style:type[1] Attribute

@@ -43165,7 +53712,7 @@

style:type[1] Attribute

Parent Elements - style:tab-stop  + text:index-entry-tab-stop    @@ -43176,9 +53723,13 @@

style:type[1] Attribute

Values - "char"  + "right"    + + RNG Relations + style:type="right"   +

style:type[2] Attribute

@@ -43187,7 +53738,7 @@

style:type[2] Attribute

Parent Elements - text:index-entry-tab-stop  + style:tab-stop    @@ -43198,9 +53749,13 @@

style:type[2] Attribute

Values - "left"  + "char"    + + RNG Relations + style:type="char"   +

style:type[3] Attribute

@@ -43209,7 +53764,7 @@

style:type[3] Attribute

Parent Elements - text:index-entry-tab-stop  + style:tab-stop    @@ -43220,9 +53775,15 @@

style:type[3] Attribute

Values - "right"  + "center"  + "left"  + "right"    + + RNG Relations + style:type="left | center | right"   +

style:type[4] Attribute

@@ -43231,7 +53792,7 @@

style:type[4] Attribute

Parent Elements - style:tab-stop  + text:index-entry-tab-stop    @@ -43242,11 +53803,13 @@

style:type[4] Attribute

Values - "center"  - "left"  - "right"  + "left"    + + RNG Relations + style:type="left"   +

style:use-optimal-column-width Attribute (new in ODF 1.2)

@@ -43265,10 +53828,14 @@

style:use-optimal-colum Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + style:use-optimal-column-width="<boolean>"   +

style:use-optimal-row-height Attribute (new in ODF 1.2)

@@ -43287,10 +53854,14 @@

style:use-optimal-row-hei Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + style:use-optimal-row-height="<boolean>"   +

style:use-window-font-color Attribute (new in ODF 1.2)

@@ -43309,10 +53880,14 @@

style:use-window-font-colo Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + style:use-window-font-color="<boolean>"   +

style:vertical-align[1] Attribute (new in ODF 1.2)

@@ -43332,12 +53907,16 @@

style:vertical-align[1] Attribute Values - "automatic"  - "bottom"  - "middle"  - "top"  + "automatic"  + "bottom"  + "middle"  + "top"    + + RNG Relations + style:vertical-align="top | middle | bottom | automatic"   +

style:vertical-align[2] Attribute (new in ODF 1.2)

@@ -43357,13 +53936,17 @@

style:vertical-align[2] Attribute Values - "auto"  - "baseline"  - "bottom"  - "middle"  - "top"  + "auto"  + "baseline"  + "bottom"  + "middle"  + "top"    + + RNG Relations + style:vertical-align="top | middle | bottom | auto | baseline"   +

style:vertical-align[3] Attribute (new in ODF 1.2)

@@ -43383,11 +53966,15 @@

style:vertical-align[3] Attribute Values - "bottom"  - "middle"  - "top"  + "bottom"  + "middle"  + "top"    + + RNG Relations + style:vertical-align="top | middle | bottom"   +

style:vertical-pos Attribute (new in ODF 1.2)

@@ -43407,13 +53994,17 @@

style:vertical-pos Attribute&nb Values - "below"  - "bottom"  - "from-top"  - "middle"  - "top"  + "below"  + "bottom"  + "from-top"  + "middle"  + "top"    + + RNG Relations + style:vertical-pos="top | middle | bottom | from-top | below"   +

style:vertical-rel Attribute (new in ODF 1.2)

@@ -43433,18 +54024,22 @@

style:vertical-rel Attribute&nb Values - "baseline"  - "char"  - "frame"  - "frame-content"  - "line"  - "page"  - "page-content"  - "paragraph"  - "paragraph-content"  - "text"  + "baseline"  + "char"  + "frame"  + "frame-content"  + "line"  + "page"  + "page-content"  + "paragraph"  + "paragraph-content"  + "text"    + + RNG Relations + style:vertical-rel="page | page-content | frame | frame-content | paragraph | paragraph-content | char | line | baseline | text"   +

style:volatile Attribute

@@ -43469,10 +54064,14 @@

style:volatile Attribute

Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + style:volatile="<boolean>"   +

style:width[1] Attribute (new in ODF 1.2)

@@ -43488,7 +54087,7 @@

style:width[1] Attribute (new in Datatypes - string  + string    @@ -43496,6 +54095,10 @@

style:width[1] Attribute (new in   + + RNG Relations + style:width="string]"   +

style:width[2] Attribute (new in ODF 1.2)

@@ -43510,7 +54113,7 @@

style:width[2] Attribute (new in Datatypes - string  + string    @@ -43518,6 +54121,10 @@

style:width[2] Attribute (new in   + + RNG Relations + style:width="string]"   +

style:wrap Attribute (new in ODF 1.2)

@@ -43536,15 +54143,19 @@

style:wrap Attribute (new in ODF 1 Values - "biggest"  - "dynamic"  - "left"  - "none"  - "parallel"  - "right"  - "run-through"  + "biggest"  + "dynamic"  + "left"  + "none"  + "parallel"  + "right"  + "run-through"    + + RNG Relations + style:wrap="none | left | right | parallel | dynamic | run-through | biggest"   +

style:wrap-contour Attribute (new in ODF 1.2)

@@ -43563,10 +54174,14 @@

style:wrap-contour Attribute&nb Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + style:wrap-contour="<boolean>"   +

style:wrap-contour-mode Attribute (new in ODF 1.2)

@@ -43585,10 +54200,14 @@

style:wrap-contour-mode Attrib Values - "full"  - "outside"  + "full"  + "outside"    + + RNG Relations + style:wrap-contour-mode="full | outside"   +

style:wrap-dynamic-threshold Attribute (new in ODF 1.2)

@@ -43602,7 +54221,7 @@

style:wrap-dynamic-thresh Datatypes - string  + string    @@ -43610,6 +54229,10 @@

style:wrap-dynamic-thresh   + + RNG Relations + style:wrap-dynamic-threshold="string]"   +

style:writing-mode Attribute (new in ODF 1.2)

@@ -43633,16 +54256,20 @@

style:writing-mode Attribute&nb Values - "lr"  - "lr-tb"  - "page"  - "rl"  - "rl-tb"  - "tb"  - "tb-lr"  - "tb-rl"  + "lr"  + "lr-tb"  + "page"  + "rl"  + "rl-tb"  + "tb"  + "tb-lr"  + "tb-rl"    + + RNG Relations + style:writing-mode="lr-tb | rl-tb | tb-rl | tb-lr | lr | rl | tb | page"   +

style:writing-mode-automatic Attribute (new in ODF 1.2)

@@ -43661,10 +54288,14 @@

style:writing-mode-automa Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + style:writing-mode-automatic="<boolean>"   +

svg:accent-height Attribute

@@ -43678,7 +54309,7 @@

svg:accent-height Attribute

Datatypes - integer  + integer    @@ -43686,6 +54317,10 @@

svg:accent-height Attribute

  + + RNG Relations + svg:accent-height="<integer>"   +

svg:alphabetic Attribute

@@ -43699,7 +54334,7 @@

svg:alphabetic Attribute

Datatypes - integer  + integer    @@ -43707,6 +54342,10 @@

svg:alphabetic Attribute

  + + RNG Relations + svg:alphabetic="<integer>"   +

svg:ascent Attribute

@@ -43720,7 +54359,7 @@

svg:ascent Attribute

Datatypes - integer  + integer    @@ -43728,6 +54367,10 @@

svg:ascent Attribute

  + + RNG Relations + svg:ascent="<integer>"   +

svg:bbox Attribute

@@ -43741,7 +54384,7 @@

svg:bbox Attribute

Datatypes - string  + string    @@ -43749,6 +54392,10 @@

svg:bbox Attribute

  + + RNG Relations + svg:bbox="<string>"   +

svg:cap-height Attribute

@@ -43762,7 +54409,7 @@

svg:cap-height Attribute

Datatypes - integer  + integer    @@ -43770,6 +54417,10 @@

svg:cap-height Attribute

  + + RNG Relations + svg:cap-height="<integer>"   +

svg:cx[1] Attribute

@@ -43784,8 +54435,8 @@

svg:cx[1] Attribute

Datatypes - string  - string  + string  + string    @@ -43793,6 +54444,10 @@

svg:cx[1] Attribute

  + + RNG Relations + svg:cx="string] | string]"   +

svg:cx[2] Attribute

@@ -43809,7 +54464,7 @@

svg:cx[2] Attribute

Datatypes - string  + string    @@ -43817,6 +54472,10 @@

svg:cx[2] Attribute

  + + RNG Relations + svg:cx="string]"   +

svg:cy[1] Attribute

@@ -43825,14 +54484,15 @@

svg:cy[1] Attribute

Parent Elements - svg:radialGradient  + draw:area-circle  + draw:circle  + draw:ellipse    Datatypes - string  - string  + string    @@ -43840,6 +54500,10 @@

svg:cy[1] Attribute

  + + RNG Relations + svg:cy="string]"   +

svg:cy[2] Attribute

@@ -43848,15 +54512,14 @@

svg:cy[2] Attribute

Parent Elements - draw:area-circle  - draw:circle  - draw:ellipse  + svg:radialGradient    Datatypes - string  + string  + string    @@ -43864,6 +54527,10 @@

svg:cy[2] Attribute

  + + RNG Relations + svg:cy="string] | string]"   +

svg:d Attribute

@@ -43882,7 +54549,7 @@

svg:d Attribute

Datatypes - string  + string    @@ -43890,6 +54557,10 @@

svg:d Attribute

  + + RNG Relations + svg:d="<string>"   +

svg:descent Attribute

@@ -43903,7 +54574,7 @@

svg:descent Attribute

Datatypes - integer  + integer    @@ -43911,6 +54582,10 @@

svg:descent Attribute

  + + RNG Relations + svg:descent="<integer>"   +

svg:fill-rule Attribute (new in ODF 1.2)

@@ -43930,10 +54605,14 @@

svg:fill-rule Attribute (new in Values - "evenodd"  - "nonzero"  + "evenodd"  + "nonzero"    + + RNG Relations + svg:fill-rule="nonzero | evenodd"   +

svg:font-family Attribute

@@ -43947,7 +54626,7 @@

svg:font-family Attribute

Datatypes - string  + string    @@ -43955,6 +54634,10 @@

svg:font-family Attribute

  + + RNG Relations + svg:font-family="<string>"   +

svg:font-size Attribute

@@ -43968,7 +54651,7 @@

svg:font-size Attribute

Datatypes - string  + string    @@ -43976,6 +54659,10 @@

svg:font-size Attribute

  + + RNG Relations + svg:font-size="string]"   +

svg:font-stretch Attribute

@@ -43994,17 +54681,21 @@

svg:font-stretch Attribute

Values - "condensed"  - "expanded"  - "extra-condensed"  - "extra-expanded"  - "normal"  - "semi-condensed"  - "semi-expanded"  - "ultra-condensed"  - "ultra-expanded"  + "condensed"  + "expanded"  + "extra-condensed"  + "extra-expanded"  + "normal"  + "semi-condensed"  + "semi-expanded"  + "ultra-condensed"  + "ultra-expanded"    + + RNG Relations + svg:font-stretch="normal | ultra-condensed | extra-condensed | condensed | semi-condensed | semi-expanded | expanded | extra-expanded | ultra-expanded"   +

svg:font-style Attribute

@@ -44023,11 +54714,15 @@

svg:font-style Attribute

Values - "italic"  - "normal"  - "oblique"  + "italic"  + "normal"  + "oblique"    + + RNG Relations + svg:font-style="normal | italic | oblique"   +

svg:font-variant Attribute

@@ -44046,10 +54741,14 @@

svg:font-variant Attribute

Values - "normal"  - "small-caps"  + "normal"  + "small-caps"    + + RNG Relations + svg:font-variant="normal | small-caps"   +

svg:font-weight Attribute

@@ -44068,19 +54767,23 @@

svg:font-weight Attribute

Values - "100"  - "200"  - "300"  - "400"  - "500"  - "600"  - "700"  - "800"  - "900"  - "bold"  - "normal"  + "100"  + "200"  + "300"  + "400"  + "500"  + "600"  + "700"  + "800"  + "900"  + "bold"  + "normal"    + + RNG Relations + svg:font-weight="normal | bold | 100 | 200 | 300 | 400 | 500 | 600 | 700 | 800 | 900"   +

svg:fx Attribute

@@ -44094,8 +54797,8 @@

svg:fx Attribute

Datatypes - string  - string  + string  + string    @@ -44103,6 +54806,10 @@

svg:fx Attribute

  + + RNG Relations + svg:fx="string] | string]"   +

svg:fy Attribute

@@ -44116,8 +54823,8 @@

svg:fy Attribute

Datatypes - string  - string  + string  + string    @@ -44125,6 +54832,10 @@

svg:fy Attribute

  + + RNG Relations + svg:fy="string] | string]"   +

svg:gradientTransform Attribute

@@ -44139,7 +54850,7 @@

svg:gradientTransform Attribute< Datatypes - string  + string    @@ -44147,6 +54858,10 @@

svg:gradientTransform Attribute<   + + RNG Relations + svg:gradientTransform="<string>"   +

svg:gradientUnits Attribute

@@ -44166,9 +54881,13 @@

svg:gradientUnits Attribute

Values - "objectBoundingBox"  + "objectBoundingBox"    + + RNG Relations + svg:gradientUnits="objectBoundingBox"   +

svg:hanging Attribute

@@ -44182,7 +54901,7 @@

svg:hanging Attribute

Datatypes - integer  + integer    @@ -44190,6 +54909,10 @@

svg:hanging Attribute

  + + RNG Relations + svg:hanging="<integer>"   +

svg:height[1] Attribute

@@ -44228,7 +54951,7 @@

svg:height[1] Attribute

Datatypes - string  + string    @@ -44236,6 +54959,10 @@

svg:height[1] Attribute

  + + RNG Relations + svg:height="string]"   +

svg:height[2] Attribute

@@ -44250,8 +54977,8 @@

svg:height[2] Attribute

Datatypes - string  - string  + string  + string    @@ -44259,6 +54986,10 @@

svg:height[2] Attribute

  + + RNG Relations + svg:height="string] | string]"   +

svg:ideographic Attribute

@@ -44272,7 +55003,7 @@

svg:ideographic Attribute

Datatypes - integer  + integer    @@ -44280,6 +55011,10 @@

svg:ideographic Attribute

  + + RNG Relations + svg:ideographic="<integer>"   +

svg:mathematical Attribute

@@ -44293,7 +55028,7 @@

svg:mathematical Attribute

Datatypes - integer  + integer    @@ -44301,6 +55036,10 @@

svg:mathematical Attribute

  + + RNG Relations + svg:mathematical="<integer>"   +

svg:name Attribute (new in ODF 1.1)

@@ -44314,7 +55053,7 @@

svg:name Attribute (new in ODF 1.1) Datatypes - string  + string    @@ -44322,6 +55061,10 @@

svg:name Attribute (new in ODF 1.1)   + + RNG Relations + svg:name="<string>"   +

svg:offset Attribute

@@ -44335,8 +55078,8 @@

svg:offset Attribute

Datatypes - double  - string  + double  + string    @@ -44344,6 +55087,10 @@

svg:offset Attribute

  + + RNG Relations + svg:offset="<double> | string]"   +

svg:origin Attribute

@@ -44357,7 +55104,7 @@

svg:origin Attribute

Datatypes - string  + string    @@ -44365,6 +55112,10 @@

svg:origin Attribute

  + + RNG Relations + svg:origin="<string>"   +

svg:overline-position Attribute

@@ -44378,7 +55129,7 @@

svg:overline-position Attribute< Datatypes - integer  + integer    @@ -44386,6 +55137,10 @@

svg:overline-position Attribute<   + + RNG Relations + svg:overline-position="<integer>"   +

svg:overline-thickness Attribute

@@ -44399,7 +55154,7 @@

svg:overline-thickness Attribut Datatypes - integer  + integer    @@ -44407,6 +55162,10 @@

svg:overline-thickness Attribut   + + RNG Relations + svg:overline-thickness="<integer>"   +

svg:panose-1 Attribute

@@ -44420,7 +55179,7 @@

svg:panose-1 Attribute

Datatypes - string  + string    @@ -44428,6 +55187,10 @@

svg:panose-1 Attribute

  + + RNG Relations + svg:panose-1="<string>"   +

svg:path Attribute

@@ -44441,7 +55204,7 @@

svg:path Attribute

Datatypes - string  + string    @@ -44449,6 +55212,10 @@

svg:path Attribute

  + + RNG Relations + svg:path="<string>"   +

svg:r[1] Attribute

@@ -44457,14 +55224,14 @@

svg:r[1] Attribute

Parent Elements - svg:radialGradient  + draw:area-circle  + draw:circle    Datatypes - string  - string  + string    @@ -44472,6 +55239,10 @@

svg:r[1] Attribute

  + + RNG Relations + svg:r="string]"   +

svg:r[2] Attribute

@@ -44480,14 +55251,14 @@

svg:r[2] Attribute

Parent Elements - draw:area-circle  - draw:circle  + svg:radialGradient    Datatypes - string  + string  + string    @@ -44495,6 +55266,10 @@

svg:r[2] Attribute

  + + RNG Relations + svg:r="string] | string]"   +

svg:rx[1] Attribute

@@ -44509,7 +55284,7 @@

svg:rx[1] Attribute

Datatypes - string  + string    @@ -44517,6 +55292,10 @@

svg:rx[1] Attribute

  + + RNG Relations + svg:rx="string]"   +

svg:rx[2] Attribute

@@ -44531,7 +55310,7 @@

svg:rx[2] Attribute

Datatypes - string  + string    @@ -44539,6 +55318,10 @@

svg:rx[2] Attribute

  + + RNG Relations + svg:rx="string]"   +

svg:ry[1] Attribute

@@ -44547,13 +55330,13 @@

svg:ry[1] Attribute

Parent Elements - draw:rect  + draw:ellipse    Datatypes - string  + string    @@ -44561,6 +55344,10 @@

svg:ry[1] Attribute

  + + RNG Relations + svg:ry="string]"   +

svg:ry[2] Attribute

@@ -44569,13 +55356,13 @@

svg:ry[2] Attribute

Parent Elements - draw:ellipse  + draw:rect    Datatypes - string  + string    @@ -44583,6 +55370,10 @@

svg:ry[2] Attribute

  + + RNG Relations + svg:ry="string]"   +

svg:slope Attribute

@@ -44596,7 +55387,7 @@

svg:slope Attribute

Datatypes - integer  + integer    @@ -44604,6 +55395,10 @@

svg:slope Attribute

  + + RNG Relations + svg:slope="<integer>"   +

svg:spreadMethod Attribute

@@ -44623,11 +55418,15 @@

svg:spreadMethod Attribute

Values - "pad"  - "reflect"  - "repeat"  + "pad"  + "reflect"  + "repeat"    + + RNG Relations + svg:spreadMethod="pad | reflect | repeat"   +

svg:stemh Attribute

@@ -44641,7 +55440,7 @@

svg:stemh Attribute

Datatypes - integer  + integer    @@ -44649,6 +55448,10 @@

svg:stemh Attribute

  + + RNG Relations + svg:stemh="<integer>"   +

svg:stemv Attribute

@@ -44662,7 +55465,7 @@

svg:stemv Attribute

Datatypes - integer  + integer    @@ -44670,6 +55473,10 @@

svg:stemv Attribute

  + + RNG Relations + svg:stemv="<integer>"   +

svg:stop-color Attribute

@@ -44683,7 +55490,7 @@

svg:stop-color Attribute

Datatypes - string  + string    @@ -44691,6 +55498,10 @@

svg:stop-color Attribute

  + + RNG Relations + svg:stop-color="string]"   +

svg:stop-opacity Attribute

@@ -44704,7 +55515,7 @@

svg:stop-opacity Attribute

Datatypes - double  + double    @@ -44712,6 +55523,10 @@

svg:stop-opacity Attribute

  + + RNG Relations + svg:stop-opacity="<double>"   +

svg:strikethrough-position Attribute

@@ -44725,7 +55540,7 @@

svg:strikethrough-position Datatypes - integer  + integer    @@ -44733,6 +55548,10 @@

svg:strikethrough-position   + + RNG Relations + svg:strikethrough-position="<integer>"   +

svg:strikethrough-thickness Attribute

@@ -44746,7 +55565,7 @@

svg:strikethrough-thicknes Datatypes - integer  + integer    @@ -44754,6 +55573,10 @@

svg:strikethrough-thicknes   + + RNG Relations + svg:strikethrough-thickness="<integer>"   +

svg:string Attribute

@@ -44767,7 +55590,7 @@

svg:string Attribute

Datatypes - string  + string    @@ -44775,6 +55598,10 @@

svg:string Attribute

  + + RNG Relations + svg:string="<string>"   +

svg:stroke-color Attribute (new in ODF 1.2)

@@ -44788,7 +55615,7 @@

svg:stroke-color Attribute ( Datatypes - string  + string    @@ -44796,6 +55623,10 @@

svg:stroke-color Attribute (   + + RNG Relations + svg:stroke-color="string]"   +

svg:stroke-linecap Attribute (new in ODF 1.2)

@@ -44814,11 +55645,15 @@

svg:stroke-linecap Attribute&nb Values - "butt"  - "round"  - "square"  + "butt"  + "round"  + "square"    + + RNG Relations + svg:stroke-linecap="butt | square | round"   +

svg:stroke-opacity Attribute (new in ODF 1.2)

@@ -44832,8 +55667,8 @@

svg:stroke-opacity Attribute&nb Datatypes - double  - string  + double  + string    @@ -44841,6 +55676,10 @@

svg:stroke-opacity Attribute&nb   + + RNG Relations + svg:stroke-opacity="double] | string]"   +

svg:stroke-width Attribute (new in ODF 1.2)

@@ -44854,7 +55693,7 @@

svg:stroke-width Attribute ( Datatypes - string  + string    @@ -44862,6 +55701,10 @@

svg:stroke-width Attribute (   + + RNG Relations + svg:stroke-width="string]"   +

svg:type Attribute

@@ -44880,13 +55723,17 @@

svg:type Attribute

Values - "rotate"  - "scale"  - "skewX"  - "skewY"  - "translate"  + "rotate"  + "scale"  + "skewX"  + "skewY"  + "translate"    + + RNG Relations + svg:type="translate | scale | rotate | skewX | skewY"   +

svg:underline-position Attribute

@@ -44900,7 +55747,7 @@

svg:underline-position Attribut Datatypes - integer  + integer    @@ -44908,6 +55755,10 @@

svg:underline-position Attribut   + + RNG Relations + svg:underline-position="<integer>"   +

svg:underline-thickness Attribute

@@ -44921,7 +55772,7 @@

svg:underline-thickness Attrib Datatypes - integer  + integer    @@ -44929,6 +55780,10 @@

svg:underline-thickness Attrib   + + RNG Relations + svg:underline-thickness="<integer>"   +

svg:unicode-range Attribute

@@ -44942,7 +55797,7 @@

svg:unicode-range Attribute

Datatypes - string  + string    @@ -44950,6 +55805,10 @@

svg:unicode-range Attribute

  + + RNG Relations + svg:unicode-range="<string>"   +

svg:units-per-em Attribute

@@ -44963,7 +55822,7 @@

svg:units-per-em Attribute

Datatypes - integer  + integer    @@ -44971,6 +55830,10 @@

svg:units-per-em Attribute

  + + RNG Relations + svg:units-per-em="<integer>"   +

svg:v-alphabetic Attribute

@@ -44984,7 +55847,7 @@

svg:v-alphabetic Attribute

Datatypes - integer  + integer    @@ -44992,6 +55855,10 @@

svg:v-alphabetic Attribute

  + + RNG Relations + svg:v-alphabetic="<integer>"   +

svg:v-hanging Attribute

@@ -45005,7 +55872,7 @@

svg:v-hanging Attribute

Datatypes - integer  + integer    @@ -45013,6 +55880,10 @@

svg:v-hanging Attribute

  + + RNG Relations + svg:v-hanging="<integer>"   +

svg:v-ideographic Attribute

@@ -45026,7 +55897,7 @@

svg:v-ideographic Attribute

Datatypes - integer  + integer    @@ -45034,6 +55905,10 @@

svg:v-ideographic Attribute

  + + RNG Relations + svg:v-ideographic="<integer>"   +

svg:v-mathematical Attribute

@@ -45047,7 +55922,7 @@

svg:v-mathematical Attribute Datatypes - integer  + integer    @@ -45055,6 +55930,10 @@

svg:v-mathematical Attribute   + + RNG Relations + svg:v-mathematical="<integer>"   +

svg:viewBox Attribute

@@ -45078,7 +55957,7 @@

svg:viewBox Attribute

Datatypes - integer  + integer    @@ -45086,6 +55965,12 @@

svg:viewBox Attribute

  + + RNG Relations + svg:viewBox=" +START_list<integer><integer><integer><integer> +END_list"   +

svg:width[1] Attribute

@@ -45100,8 +55985,8 @@

svg:width[1] Attribute

Datatypes - string  - string  + string  + string    @@ -45109,6 +55994,10 @@

svg:width[1] Attribute

  + + RNG Relations + svg:width="string] | string]"   +

svg:width[2] Attribute

@@ -45148,7 +56037,7 @@

svg:width[2] Attribute

Datatypes - string  + string    @@ -45156,6 +56045,10 @@

svg:width[2] Attribute

  + + RNG Relations + svg:width="string]"   +

svg:widths Attribute

@@ -45169,7 +56062,7 @@

svg:widths Attribute

Datatypes - string  + string    @@ -45177,6 +56070,10 @@

svg:widths Attribute

  + + RNG Relations + svg:widths="<string>"   +

svg:x[1] Attribute

@@ -45184,6 +56081,34 @@

svg:x[1] Attribute

+ + + + + + + + + + + + + + +
Parent Elements + draw:glue-point  + presentation:placeholder  + 
Datatypes + string  + string  + 
Values
RNG Relationssvg:x="string] | string]"  
+
+

svg:x[2] Attribute

+

There are more than one Definitions by this name.

+ + + @@ -45223,29 +56148,9 @@

svg:x[1] Attribute

-
Parent Elements chart:coordinate-region  chart:data-label  @@ -45215,7 +56140,7 @@

svg:x[1] Attribute

Datatypes - string  + string   
 
-
-

svg:x[2] Attribute

-

There are more than one Definitions by this name.

- - - - - - - - - - - + +
Parent Elements - draw:glue-point  - presentation:placeholder  - 
Datatypes - string  - string  - 
ValuesRNG Relationssvg:x="string]"  

@@ -45260,7 +56165,7 @@

svg:x-height Attribute

Datatypes - integer  + integer    @@ -45268,6 +56173,10 @@

svg:x-height Attribute

  + + RNG Relations + svg:x-height="<integer>"   +

svg:x1[1] Attribute

@@ -45284,7 +56193,7 @@

svg:x1[1] Attribute

Datatypes - string  + string    @@ -45292,6 +56201,10 @@

svg:x1[1] Attribute

  + + RNG Relations + svg:x1="string]"   +

svg:x1[2] Attribute

@@ -45306,8 +56219,8 @@

svg:x1[2] Attribute

Datatypes - string  - string  + string  + string    @@ -45315,6 +56228,10 @@

svg:x1[2] Attribute

  + + RNG Relations + svg:x1="string] | string]"   +

svg:x2[1] Attribute

@@ -45331,7 +56248,7 @@

svg:x2[1] Attribute

Datatypes - string  + string    @@ -45339,6 +56256,10 @@

svg:x2[1] Attribute

  + + RNG Relations + svg:x2="string]"   +

svg:x2[2] Attribute

@@ -45353,8 +56274,8 @@

svg:x2[2] Attribute

Datatypes - string  - string  + string  + string    @@ -45362,6 +56283,10 @@

svg:x2[2] Attribute

  + + RNG Relations + svg:x2="string] | string]"   +

svg:y[1] Attribute

@@ -45377,8 +56302,8 @@

svg:y[1] Attribute

Datatypes - string  - string  + string  + string    @@ -45386,6 +56311,10 @@

svg:y[1] Attribute

  + + RNG Relations + svg:y="string] | string]"   +

svg:y[2] Attribute

@@ -45426,7 +56355,7 @@

svg:y[2] Attribute

Datatypes - string  + string    @@ -45434,6 +56363,10 @@

svg:y[2] Attribute

  + + RNG Relations + svg:y="string]"   +

svg:y1[1] Attribute

@@ -45450,7 +56383,7 @@

svg:y1[1] Attribute

Datatypes - string  + string    @@ -45458,6 +56391,10 @@

svg:y1[1] Attribute

  + + RNG Relations + svg:y1="string]"   +

svg:y1[2] Attribute

@@ -45472,8 +56409,8 @@

svg:y1[2] Attribute

Datatypes - string  - string  + string  + string    @@ -45481,6 +56418,10 @@

svg:y1[2] Attribute

  + + RNG Relations + svg:y1="string] | string]"   +

svg:y2[1] Attribute

@@ -45497,7 +56438,7 @@

svg:y2[1] Attribute

Datatypes - string  + string    @@ -45505,6 +56446,10 @@

svg:y2[1] Attribute

  + + RNG Relations + svg:y2="string]"   +

svg:y2[2] Attribute

@@ -45519,8 +56464,8 @@

svg:y2[2] Attribute

Datatypes - string  - string  + string  + string    @@ -45528,6 +56473,10 @@

svg:y2[2] Attribute

  + + RNG Relations + svg:y2="string] | string]"   +

table:acceptance-state Attribute

@@ -45549,11 +56498,15 @@

table:acceptance-state Attribut Values - "accepted"  - "pending"  - "rejected"  + "accepted"  + "pending"  + "rejected"    + + RNG Relations + table:acceptance-state="accepted | rejected | pending"   +

table:add-empty-lines Attribute

@@ -45572,10 +56525,14 @@

table:add-empty-lines Attribute< Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + table:add-empty-lines="<boolean>"   +

table:algorithm Attribute

@@ -45589,7 +56546,7 @@

table:algorithm Attribute

Datatypes - string  + string    @@ -45597,6 +56554,10 @@

table:algorithm Attribute

  + + RNG Relations + table:algorithm="<string>"   +

table:align Attribute (new in ODF 1.2)

@@ -45615,12 +56576,16 @@

table:align Attribute (new in ODF Values - "center"  - "left"  - "margins"  - "right"  + "center"  + "left"  + "margins"  + "right"    + + RNG Relations + table:align="left | center | right | margins"   +

table:allow-empty-cell Attribute

@@ -45639,10 +56604,14 @@

table:allow-empty-cell Attribut Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + table:allow-empty-cell="<boolean>"   +

table:application-data Attribute

@@ -45656,7 +56625,7 @@

table:application-data Attribut Datatypes - string  + string    @@ -45664,6 +56633,10 @@

table:application-data Attribut   + + RNG Relations + table:application-data="<string>"   +

table:automatic-find-labels Attribute

@@ -45682,10 +56655,14 @@

table:automatic-find-label Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + table:automatic-find-labels="<boolean>"   +

table:base-cell-address Attribute

@@ -45701,7 +56678,7 @@

table:base-cell-address Attrib Datatypes - string  + string    @@ -45709,6 +56686,10 @@

table:base-cell-address Attrib   + + RNG Relations + table:base-cell-address="string]"   +

table:bind-styles-to-content Attribute

@@ -45728,10 +56709,14 @@

table:bind-styles-to-cont Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + table:bind-styles-to-content="<boolean>"   +

table:border-color Attribute

@@ -45745,7 +56730,7 @@

table:border-color Attribute Datatypes - string  + string    @@ -45753,6 +56738,10 @@

table:border-color Attribute   + + RNG Relations + table:border-color="string]"   +

table:border-model Attribute (new in ODF 1.2)

@@ -45771,10 +56760,14 @@

table:border-model Attribute&nb Values - "collapsing"  - "separating"  + "collapsing"  + "separating"    + + RNG Relations + table:border-model="collapsing | separating"   +

table:buttons Attribute

@@ -45788,7 +56781,7 @@

table:buttons Attribute

Datatypes - string  + string    @@ -45796,6 +56789,10 @@

table:buttons Attribute

  + + RNG Relations + table:buttons="<string>"   +

table:case-sensitive[1] Attribute

@@ -45804,20 +56801,27 @@

table:case-sensitive[1] Attribute Parent Elements - table:filter-condition  + table:calculation-settings  + table:sort  + table:subtotal-rules    Datatypes - string    Values + "false"  + "true"    + + RNG Relations + table:case-sensitive="<boolean>"   +

table:case-sensitive[2] Attribute

@@ -45826,23 +56830,24 @@

table:case-sensitive[2] Attribute Parent Elements - table:calculation-settings  - table:sort  - table:subtotal-rules  + table:filter-condition    Datatypes + string    Values - "false"  - "true"    + + RNG Relations + table:case-sensitive="<string>"   +

table:cell-address Attribute

@@ -45856,7 +56861,7 @@

table:cell-address Attribute Datatypes - string  + string    @@ -45864,6 +56869,10 @@

table:cell-address Attribute   + + RNG Relations + table:cell-address="string]"   +

table:cell-range Attribute

@@ -45879,7 +56888,7 @@

table:cell-range Attribute

Datatypes - string  + string    @@ -45887,6 +56896,10 @@

table:cell-range Attribute

  + + RNG Relations + table:cell-range="<string>"   +

table:cell-range-address[1] Attribute

@@ -45903,9 +56916,9 @@

table:cell-range-address[1] A Datatypes - string  - string  - string  + string  + string  + string    @@ -45913,6 +56926,10 @@

table:cell-range-address[1] A   + + RNG Relations + table:cell-range-address="string] | string] | string]"   +

table:cell-range-address[2] Attribute

@@ -45929,7 +56946,7 @@

table:cell-range-address[2] A Datatypes - string  + string    @@ -45937,6 +56954,10 @@

table:cell-range-address[2] A   + + RNG Relations + table:cell-range-address="<string>"   +

table:column Attribute

@@ -45952,7 +56973,7 @@

table:column Attribute

Datatypes - integer  + integer    @@ -45960,6 +56981,10 @@

table:column Attribute

  + + RNG Relations + table:column="<integer>"   +

table:comment Attribute

@@ -45973,7 +56998,7 @@

table:comment Attribute

Datatypes - string  + string    @@ -45981,6 +57006,10 @@

table:comment Attribute

  + + RNG Relations + table:comment="<string>"   +

table:condition Attribute

@@ -45994,7 +57023,7 @@

table:condition Attribute

Datatypes - string  + string    @@ -46002,6 +57031,10 @@

table:condition Attribute

  + + RNG Relations + table:condition="<string>"   +

table:condition-source Attribute

@@ -46020,10 +57053,14 @@

table:condition-source Attribut Values - "cell-range"  - "self"  + "cell-range"  + "self"    + + RNG Relations + table:condition-source="self | cell-range"   +

table:condition-source-range-address Attribute

@@ -46037,9 +57074,9 @@

table:condition-s Datatypes - string  - string  - string  + string  + string  + string    @@ -46047,6 +57084,10 @@

table:condition-s   + + RNG Relations + table:condition-source-range-address="string] | string] | string]"   +

table:contains-error Attribute

@@ -46065,10 +57106,14 @@

table:contains-error Attribute Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + table:contains-error="<boolean>"   +

table:contains-header Attribute

@@ -46087,10 +57132,14 @@

table:contains-header Attribute< Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + table:contains-header="<boolean>"   +

table:content-validation-name Attribute

@@ -46105,7 +57154,7 @@

table:content-validation Datatypes - string  + string    @@ -46113,6 +57162,10 @@

table:content-validation   + + RNG Relations + table:content-validation-name="<string>"   +

table:copy-back Attribute

@@ -46131,10 +57184,14 @@

table:copy-back Attribute

Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + table:copy-back="<boolean>"   +

table:copy-formulas Attribute

@@ -46153,10 +57210,14 @@

table:copy-formulas Attribute< Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + table:copy-formulas="<boolean>"   +

table:copy-styles Attribute

@@ -46175,10 +57236,14 @@

table:copy-styles Attribute

Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + table:copy-styles="<boolean>"   +

table:count Attribute

@@ -46192,7 +57257,7 @@

table:count Attribute

Datatypes - positiveInteger  + positiveInteger    @@ -46200,6 +57265,10 @@

table:count Attribute

  + + RNG Relations + table:count="<positiveInteger>"   +

table:country Attribute

@@ -46213,7 +57282,7 @@

table:country Attribute

Datatypes - token  + token    @@ -46221,6 +57290,10 @@

table:country Attribute

  + + RNG Relations + table:country="token]"   +

table:data-cell-range-address Attribute

@@ -46234,9 +57307,9 @@

table:data-cell-range-ad Datatypes - string  - string  - string  + string  + string  + string    @@ -46244,6 +57317,10 @@

table:data-cell-range-ad   + + RNG Relations + table:data-cell-range-address="string] | string] | string]"   +

table:data-field Attribute

@@ -46258,7 +57335,7 @@

table:data-field Attribute

Datatypes - string  + string    @@ -46266,6 +57343,10 @@

table:data-field Attribute

  + + RNG Relations + table:data-field="<string>"   +

table:data-type[1] Attribute

@@ -46281,17 +57362,21 @@

table:data-type[1] Attribute

Datatypes - string  + string    Values - "automatic"  - "number"  - "text"  + "automatic"  + "number"  + "text"    + + RNG Relations + table:data-type="text | number | automatic | <string>"   +

table:data-type[2] Attribute

@@ -46311,10 +57396,14 @@

table:data-type[2] Attribute

Values - "number"  - "text"  + "number"  + "text"    + + RNG Relations + table:data-type="text | number"   +

table:database-name Attribute

@@ -46330,7 +57419,7 @@

table:database-name Attribute< Datatypes - string  + string    @@ -46338,6 +57427,10 @@

table:database-name Attribute<   + + RNG Relations + table:database-name="<string>"   +

table:database-table-name Attribute

@@ -46351,7 +57444,7 @@

table:database-table-name At Datatypes - string  + string    @@ -46359,6 +57452,10 @@

table:database-table-name At   + + RNG Relations + table:database-table-name="<string>"   +

table:date-end Attribute

@@ -46372,16 +57469,20 @@

table:date-end Attribute

Datatypes - date  - dateTime  + date  + dateTime    Values - "auto"  + "auto"    + + RNG Relations + table:date-end="<date> | <dateTime> | auto"   +

table:date-start Attribute

@@ -46395,16 +57496,20 @@

table:date-start Attribute

Datatypes - date  - dateTime  + date  + dateTime    Values - "auto"  + "auto"    + + RNG Relations + table:date-start="<date> | <dateTime> | auto"   +

table:date-value Attribute (new in ODF 1.1)

@@ -46418,7 +57523,7 @@

table:date-value Attribute ( Datatypes - date  + date    @@ -46426,6 +57531,10 @@

table:date-value Attribute (   + + RNG Relations + table:date-value="<date>"   +

table:default-cell-style-name Attribute

@@ -46440,7 +57549,7 @@

table:default-cell-style Datatypes - NCName  + NCName    @@ -46448,6 +57557,10 @@

table:default-cell-style   + + RNG Relations + table:default-cell-style-name="(<NCName>)?"   +

table:direction Attribute

@@ -46466,11 +57579,15 @@

table:direction Attribute

Values - "from-another-table"  - "from-same-table"  - "to-another-table"  + "from-another-table"  + "from-same-table"  + "to-another-table"    + + RNG Relations + table:direction="from-another-table | to-another-table | from-same-table"   +

table:display Attribute

@@ -46494,10 +57611,14 @@

table:display Attribute

Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + table:display="<boolean>"   +

table:display-border Attribute

@@ -46516,10 +57637,14 @@

table:display-border Attribute Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + table:display-border="<boolean>"   +

table:display-duplicates Attribute

@@ -46538,10 +57663,14 @@

table:display-duplicates Attr Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + table:display-duplicates="<boolean>"   +

table:display-filter-buttons Attribute

@@ -46560,10 +57689,14 @@

table:display-filter-butt Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + table:display-filter-buttons="<boolean>"   +

table:display-list Attribute

@@ -46582,11 +57715,15 @@

table:display-list Attribute Values - "none"  - "sort-ascending"  - "unsorted"  + "none"  + "sort-ascending"  + "unsorted"    + + RNG Relations + table:display-list="none | unsorted | sort-ascending"   +

table:display-member-mode Attribute

@@ -46605,10 +57742,14 @@

table:display-member-mode At Values - "from-bottom"  - "from-top"  + "from-bottom"  + "from-top"    + + RNG Relations + table:display-member-mode="from-top | from-bottom"   +

table:drill-down-on-double-click Attribute

@@ -46627,10 +57768,14 @@

table:drill-down-on-d Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + table:drill-down-on-double-click="<boolean>"   +

table:embedded-number-behavior Attribute (new in ODF 1.2)

@@ -46649,11 +57794,15 @@

table:embedded-number-b Values - "alpha-numeric"  - "double"  - "integer"  + "alpha-numeric"  + "double"  + "integer"    + + RNG Relations + table:embedded-number-behavior="alpha-numeric | integer | double"   +

table:enabled Attribute

@@ -46672,10 +57821,14 @@

table:enabled Attribute

Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + table:enabled="<boolean>"   +

table:end Attribute

@@ -46689,15 +57842,19 @@

table:end Attribute

Datatypes - double  + double    Values - "auto"  + "auto"    + + RNG Relations + table:end="<double> | auto"   +

table:end-cell-address Attribute

@@ -46728,7 +57885,7 @@

table:end-cell-address Attribut Datatypes - string  + string    @@ -46736,6 +57893,10 @@

table:end-cell-address Attribut   + + RNG Relations + table:end-cell-address="string]"   +

table:end-column Attribute

@@ -46750,7 +57911,7 @@

table:end-column Attribute

Datatypes - integer  + integer    @@ -46758,6 +57919,10 @@

table:end-column Attribute

  + + RNG Relations + table:end-column="<integer>"   +

table:end-position Attribute

@@ -46771,7 +57936,7 @@

table:end-position Attribute Datatypes - integer  + integer    @@ -46779,6 +57944,10 @@

table:end-position Attribute   + + RNG Relations + table:end-position="<integer>"   +

table:end-row Attribute

@@ -46793,7 +57962,7 @@

table:end-row Attribute

Datatypes - integer  + integer    @@ -46801,6 +57970,10 @@

table:end-row Attribute

  + + RNG Relations + table:end-row="<integer>"   +

table:end-table Attribute

@@ -46815,7 +57988,7 @@

table:end-table Attribute

Datatypes - integer  + integer    @@ -46823,6 +57996,10 @@

table:end-table Attribute

  + + RNG Relations + table:end-table="<integer>"   +

table:end-x Attribute

@@ -46853,7 +58030,7 @@

table:end-x Attribute

Datatypes - string  + string    @@ -46861,6 +58038,10 @@

table:end-x Attribute

  + + RNG Relations + table:end-x="string]"   +

table:end-y Attribute

@@ -46891,7 +58072,7 @@

table:end-y Attribute

Datatypes - string  + string    @@ -46899,6 +58080,10 @@

table:end-y Attribute

  + + RNG Relations + table:end-y="string]"   +

table:execute Attribute

@@ -46917,10 +58102,14 @@

table:execute Attribute

Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + table:execute="<boolean>"   +

table:expression Attribute

@@ -46934,7 +58123,7 @@

table:expression Attribute

Datatypes - string  + string    @@ -46942,6 +58131,10 @@

table:expression Attribute

  + + RNG Relations + table:expression="<string>"   +

table:field-name Attribute

@@ -46955,7 +58148,7 @@

table:field-name Attribute

Datatypes - string  + string    @@ -46963,6 +58156,10 @@

table:field-name Attribute

  + + RNG Relations + table:field-name="<string>"   +

table:field-number Attribute

@@ -46978,7 +58175,7 @@

table:field-number Attribute Datatypes - nonNegativeInteger  + nonNegativeInteger    @@ -46986,6 +58183,10 @@

table:field-number Attribute   + + RNG Relations + table:field-number="<nonNegativeInteger>"   +

table:filter-name Attribute

@@ -47000,7 +58201,7 @@

table:filter-name Attribute

Datatypes - string  + string    @@ -47008,6 +58209,10 @@

table:filter-name Attribute

  + + RNG Relations + table:filter-name="<string>"   +

table:filter-options Attribute

@@ -47022,7 +58227,7 @@

table:filter-options Attribute Datatypes - string  + string    @@ -47030,6 +58235,10 @@

table:filter-options Attribute   + + RNG Relations + table:filter-options="<string>"   +

table:first-row-end-column Attribute (new in ODF 1.2)

@@ -47048,10 +58257,14 @@

table:first-row-end-column Values - "column"  - "row"  + "column"  + "row"    + + RNG Relations + table:first-row-end-column="row | column"   +

table:first-row-start-column Attribute (new in ODF 1.2)

@@ -47070,10 +58283,14 @@

table:first-row-start-col Values - "column"  - "row"  + "column"  + "row"    + + RNG Relations + table:first-row-start-column="row | column"   +

table:formula Attribute

@@ -47089,7 +58306,7 @@

table:formula Attribute

Datatypes - string  + string    @@ -47097,6 +58314,10 @@

table:formula Attribute

  + + RNG Relations + table:formula="<string>"   +

table:function[1] Attribute

@@ -47105,33 +58326,36 @@

table:function[1] Attribute

Parent Elements - table:data-pilot-field  - table:data-pilot-subtotal  + table:consolidation  + table:subtotal-field    Datatypes - string  + string    Values - "auto"  - "average"  - "count"  - "countnums"  - "max"  - "min"  - "product"  - "stdev"  - "stdevp"  - "sum"  - "var"  - "varp"  + "average"  + "count"  + "countnums"  + "max"  + "min"  + "product"  + "stdev"  + "stdevp"  + "sum"  + "var"  + "varp"    + + RNG Relations + table:function="average | count | countnums | max | min | product | stdev | stdevp | sum | var | varp | <string>"   +

table:function[2] Attribute

@@ -47140,32 +58364,37 @@

table:function[2] Attribute

Parent Elements - table:consolidation  - table:subtotal-field  + table:data-pilot-field  + table:data-pilot-subtotal    Datatypes - string  + string    Values - "average"  - "count"  - "countnums"  - "max"  - "min"  - "product"  - "stdev"  - "stdevp"  - "sum"  - "var"  - "varp"  + "auto"  + "average"  + "count"  + "countnums"  + "max"  + "min"  + "product"  + "stdev"  + "stdevp"  + "sum"  + "var"  + "varp"    + + RNG Relations + table:function="auto | average | count | countnums | max | min | product | stdev | stdevp | sum | var | varp | <string>"   +

table:grand-total Attribute

@@ -47184,12 +58413,16 @@

table:grand-total Attribute

Values - "both"  - "column"  - "none"  - "row"  + "both"  + "column"  + "none"  + "row"    + + RNG Relations + table:grand-total="none | row | column | both"   +

table:group-by-field-number Attribute

@@ -47203,7 +58436,7 @@

table:group-by-field-numbe Datatypes - nonNegativeInteger  + nonNegativeInteger    @@ -47211,6 +58444,10 @@

table:group-by-field-numbe   + + RNG Relations + table:group-by-field-number="<nonNegativeInteger>"   +

table:grouped-by Attribute

@@ -47229,15 +58466,19 @@

table:grouped-by Attribute

Values - "days"  - "hours"  - "minutes"  - "months"  - "quarters"  - "seconds"  - "years"  + "days"  + "hours"  + "minutes"  + "months"  + "quarters"  + "seconds"  + "years"    + + RNG Relations + table:grouped-by="seconds | minutes | hours | days | months | quarters | years"   +

table:has-persistent-data Attribute

@@ -47256,10 +58497,14 @@

table:has-persistent-data At Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + table:has-persistent-data="<boolean>"   +

table:id Attribute

@@ -47281,7 +58526,7 @@

table:id Attribute

Datatypes - string  + string    @@ -47289,6 +58534,10 @@

table:id Attribute

  + + RNG Relations + table:id="<string>"   +

table:identify-categories Attribute

@@ -47307,10 +58556,14 @@

table:identify-categories At Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + table:identify-categories="<boolean>"   +

table:ignore-empty-rows Attribute

@@ -47329,10 +58582,14 @@

table:ignore-empty-rows Attrib Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + table:ignore-empty-rows="<boolean>"   +

table:index Attribute

@@ -47346,7 +58603,7 @@

table:index Attribute

Datatypes - nonNegativeInteger  + nonNegativeInteger    @@ -47354,6 +58611,10 @@

table:index Attribute

  + + RNG Relations + table:index="<nonNegativeInteger>"   +

table:is-active Attribute

@@ -47372,10 +58633,14 @@

table:is-active Attribute

Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + table:is-active="<boolean>"   +

table:is-data-layout-field Attribute

@@ -47389,7 +58654,7 @@

table:is-data-layout-field Datatypes - string  + string    @@ -47397,6 +58662,10 @@

table:is-data-layout-field   + + RNG Relations + table:is-data-layout-field="<string>"   +

table:is-selection Attribute

@@ -47415,10 +58684,14 @@

table:is-selection Attribute Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + table:is-selection="<boolean>"   +

table:is-sub-table Attribute

@@ -47437,10 +58710,14 @@

table:is-sub-table Attribute Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + table:is-sub-table="<boolean>"   +

table:label-cell-range-address Attribute

@@ -47454,9 +58731,9 @@

table:label-cell-range- Datatypes - string  - string  - string  + string  + string  + string    @@ -47464,6 +58741,10 @@

table:label-cell-range-   + + RNG Relations + table:label-cell-range-address="string] | string] | string]"   +

table:language Attribute

@@ -47477,7 +58758,7 @@

table:language Attribute

Datatypes - token  + token    @@ -47485,6 +58766,10 @@

table:language Attribute

  + + RNG Relations + table:language="token]"   +

table:last-column-spanned Attribute

@@ -47498,7 +58783,7 @@

table:last-column-spanned At Datatypes - positiveInteger  + positiveInteger    @@ -47506,6 +58791,10 @@

table:last-column-spanned At   + + RNG Relations + table:last-column-spanned="<positiveInteger>"   +

table:last-row-end-column Attribute (new in ODF 1.2)

@@ -47524,10 +58813,14 @@

table:last-row-end-column At Values - "column"  - "row"  + "column"  + "row"    + + RNG Relations + table:last-row-end-column="row | column"   +

table:last-row-spanned Attribute

@@ -47541,7 +58834,7 @@

table:last-row-spanned Attribut Datatypes - positiveInteger  + positiveInteger    @@ -47549,6 +58842,10 @@

table:last-row-spanned Attribut   + + RNG Relations + table:last-row-spanned="<positiveInteger>"   +

table:last-row-start-column Attribute (new in ODF 1.2)

@@ -47567,10 +58864,14 @@

table:last-row-start-colum Values - "column"  - "row"  + "column"  + "row"    + + RNG Relations + table:last-row-start-column="row | column"   +

table:layout-mode Attribute

@@ -47589,11 +58890,15 @@

table:layout-mode Attribute

Values - "outline-subtotals-bottom"  - "outline-subtotals-top"  - "tabular-layout"  + "outline-subtotals-bottom"  + "outline-subtotals-top"  + "tabular-layout"    + + RNG Relations + table:layout-mode="tabular-layout | outline-subtotals-top | outline-subtotals-bottom"   +

table:link-to-source-data Attribute

@@ -47612,10 +58917,14 @@

table:link-to-source-data At Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + table:link-to-source-data="<boolean>"   +

table:marked-invalid Attribute

@@ -47634,10 +58943,14 @@

table:marked-invalid Attribute Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + table:marked-invalid="<boolean>"   +

table:matrix-covered Attribute

@@ -47656,10 +58969,14 @@

table:matrix-covered Attribute Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + table:matrix-covered="<boolean>"   +

table:maximum-difference Attribute

@@ -47673,7 +58990,7 @@

table:maximum-difference Attr Datatypes - double  + double    @@ -47681,6 +58998,10 @@

table:maximum-difference Attr   + + RNG Relations + table:maximum-difference="<double>"   +

table:member-count Attribute

@@ -47694,7 +59015,7 @@

table:member-count Attribute Datatypes - nonNegativeInteger  + nonNegativeInteger    @@ -47702,6 +59023,10 @@

table:member-count Attribute   + + RNG Relations + table:member-count="<nonNegativeInteger>"   +

table:member-name Attribute

@@ -47715,7 +59040,7 @@

table:member-name Attribute

Datatypes - string  + string    @@ -47723,6 +59048,10 @@

table:member-name Attribute

  + + RNG Relations + table:member-name="<string>"   +

table:member-type[1] Attribute

@@ -47742,10 +59071,14 @@

table:member-type[1] Attribute Values - "next"  - "previous"  + "next"  + "previous"    + + RNG Relations + table:member-type="previous | next"   +

table:member-type[2] Attribute

@@ -47765,9 +59098,13 @@

table:member-type[2] Attribute Values - "named"  + "named"    + + RNG Relations + table:member-type="named"   +

table:message-type Attribute

@@ -47786,11 +59123,15 @@

table:message-type Attribute Values - "information"  - "stop"  - "warning"  + "information"  + "stop"  + "warning"    + + RNG Relations + table:message-type="stop | warning | information"   +

table:mode Attribute

@@ -47809,10 +59150,14 @@

table:mode Attribute

Values - "copy-all"  - "copy-results-only"  + "copy-all"  + "copy-results-only"    + + RNG Relations + table:mode="copy-all | copy-results-only"   +

table:multi-deletion-spanned Attribute

@@ -47826,7 +59171,7 @@

table:multi-deletion-span Datatypes - integer  + integer    @@ -47834,6 +59179,10 @@

table:multi-deletion-span   + + RNG Relations + table:multi-deletion-spanned="<integer>"   +

table:name[1] Attribute

@@ -47860,7 +59209,7 @@

table:name[1] Attribute

Datatypes - string  + string    @@ -47868,6 +59217,10 @@

table:name[1] Attribute

  + + RNG Relations + table:name="<string>"   +

table:name[2] Attribute

@@ -47887,13 +59240,17 @@

table:name[2] Attribute

Values - "remove-dependents"  - "remove-precedents"  - "trace-dependents"  - "trace-errors"  - "trace-precedents"  + "remove-dependents"  + "remove-precedents"  + "trace-dependents"  + "trace-errors"  + "trace-precedents"    + + RNG Relations + table:name="trace-dependents | remove-dependents | trace-precedents | remove-precedents | trace-errors"   +

table:null-year Attribute

@@ -47907,7 +59264,7 @@

table:null-year Attribute

Datatypes - positiveInteger  + positiveInteger    @@ -47915,6 +59272,10 @@

table:null-year Attribute

  + + RNG Relations + table:null-year="<positiveInteger>"   +

table:number-columns-repeated Attribute

@@ -47930,7 +59291,7 @@

table:number-columns-rep Datatypes - positiveInteger  + positiveInteger    @@ -47938,6 +59299,10 @@

table:number-columns-rep   + + RNG Relations + table:number-columns-repeated="<positiveInteger>"   +

table:number-columns-spanned Attribute

@@ -47951,7 +59316,7 @@

table:number-columns-span Datatypes - positiveInteger  + positiveInteger    @@ -47959,6 +59324,10 @@

table:number-columns-span   + + RNG Relations + table:number-columns-spanned="<positiveInteger>"   +

table:number-matrix-columns-spanned Attribute

@@ -47973,7 +59342,7 @@

table:number-matri Datatypes - positiveInteger  + positiveInteger    @@ -47981,6 +59350,10 @@

table:number-matri   + + RNG Relations + table:number-matrix-columns-spanned="<positiveInteger>"   +

table:number-matrix-rows-spanned Attribute

@@ -47995,7 +59368,7 @@

table:number-matrix-r Datatypes - positiveInteger  + positiveInteger    @@ -48003,6 +59376,10 @@

table:number-matrix-r   + + RNG Relations + table:number-matrix-rows-spanned="<positiveInteger>"   +

table:number-rows-repeated Attribute

@@ -48016,7 +59393,7 @@

table:number-rows-repeated Datatypes - positiveInteger  + positiveInteger    @@ -48024,6 +59401,10 @@

table:number-rows-repeated   + + RNG Relations + table:number-rows-repeated="<positiveInteger>"   +

table:number-rows-spanned Attribute

@@ -48037,7 +59418,7 @@

table:number-rows-spanned At Datatypes - positiveInteger  + positiveInteger    @@ -48045,6 +59426,10 @@

table:number-rows-spanned At   + + RNG Relations + table:number-rows-spanned="<positiveInteger>"   +

table:object-name Attribute

@@ -48058,7 +59443,7 @@

table:object-name Attribute

Datatypes - string  + string    @@ -48066,6 +59451,10 @@

table:object-name Attribute

  + + RNG Relations + table:object-name="<string>"   +

table:on-update-keep-size Attribute

@@ -48084,10 +59473,14 @@

table:on-update-keep-size At Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + table:on-update-keep-size="<boolean>"   +

table:on-update-keep-styles Attribute

@@ -48106,10 +59499,14 @@

table:on-update-keep-style Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + table:on-update-keep-styles="<boolean>"   +

table:operator Attribute

@@ -48123,7 +59520,7 @@

table:operator Attribute

Datatypes - string  + string    @@ -48131,6 +59528,10 @@

table:operator Attribute

  + + RNG Relations + table:operator="<string>"   +

table:order Attribute

@@ -48151,10 +59552,14 @@

table:order Attribute

Values - "ascending"  - "descending"  + "ascending"  + "descending"    + + RNG Relations + table:order="ascending | descending"   +

table:orientation[1] Attribute

@@ -48163,7 +59568,8 @@

table:orientation[1] Attribute Parent Elements - table:data-pilot-field  + table:database-range  + table:label-range    @@ -48174,12 +59580,14 @@

table:orientation[1] Attribute Values - "column"  - "data"  - "hidden"  - "row"  + "column"  + "row"    + + RNG Relations + table:orientation="column | row"   +

table:orientation[2] Attribute

@@ -48188,8 +59596,7 @@

table:orientation[2] Attribute Parent Elements - table:database-range  - table:label-range  + table:data-pilot-field    @@ -48200,10 +59607,16 @@

table:orientation[2] Attribute Values - "column"  - "row"  + "column"  + "data"  + "hidden"  + "row"    + + RNG Relations + table:orientation="row | column | data | hidden"   +

table:orientation[3] Attribute

@@ -48223,9 +59636,13 @@

table:orientation[3] Attribute Values - "page"  + "page"    + + RNG Relations + table:orientation="page"   +

table:page-breaks-on-group-change Attribute

@@ -48244,10 +59661,14 @@

table:page-breaks-on Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + table:page-breaks-on-group-change="<boolean>"   +

table:paragraph-style-name Attribute (new in ODF 1.2)

@@ -48269,7 +59690,7 @@

table:paragraph-style-name Datatypes - NCName  + NCName    @@ -48277,6 +59698,10 @@

table:paragraph-style-name   + + RNG Relations + table:paragraph-style-name="(<NCName>)?"   +

table:parse-sql-statement Attribute

@@ -48295,10 +59720,14 @@

table:parse-sql-statement At Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + table:parse-sql-statement="<boolean>"   +

table:password Attribute

@@ -48312,7 +59741,7 @@

table:password Attribute

Datatypes - string  + string    @@ -48320,6 +59749,10 @@

table:password Attribute

  + + RNG Relations + table:password="<string>"   +

table:position Attribute

@@ -48336,7 +59769,7 @@

table:position Attribute

Datatypes - integer  + integer    @@ -48344,6 +59777,10 @@

table:position Attribute

  + + RNG Relations + table:position="<integer>"   +

table:precision-as-shown Attribute

@@ -48362,10 +59799,14 @@

table:precision-as-shown Attr Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + table:precision-as-shown="<boolean>"   +

table:print Attribute

@@ -48384,10 +59825,14 @@

table:print Attribute

Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + table:print="<boolean>"   +

table:print-ranges Attribute

@@ -48401,7 +59846,7 @@

table:print-ranges Attribute Datatypes - string  + string    @@ -48409,6 +59854,10 @@

table:print-ranges Attribute   + + RNG Relations + table:print-ranges="<string>"   +

table:protect Attribute

@@ -48428,10 +59877,14 @@

table:protect Attribute

Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + table:protect="<boolean>"   +

table:protected Attribute

@@ -48453,10 +59906,14 @@

table:protected Attribute

Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + table:protected="<boolean>"   +

table:protection-key Attribute

@@ -48471,7 +59928,7 @@

table:protection-key Attribute Datatypes - string  + string    @@ -48479,6 +59936,10 @@

table:protection-key Attribute   + + RNG Relations + table:protection-key="<string>"   +

table:protection-key-digest-algorithm Attribute (new in ODF 1.2)

@@ -48493,7 +59954,7 @@

table:protection Datatypes - anyURI  + anyURI    @@ -48501,6 +59962,10 @@

table:protection   + + RNG Relations + table:protection-key-digest-algorithm="<anyIRI>"   +

table:query-name Attribute

@@ -48514,7 +59979,7 @@

table:query-name Attribute

Datatypes - string  + string    @@ -48522,6 +59987,10 @@

table:query-name Attribute

  + + RNG Relations + table:query-name="<string>"   +

table:range-usable-as Attribute

@@ -48540,13 +60009,19 @@

table:range-usable-as Attribute< Values - "filter"  - "none"  - "print-range"  - "repeat-column"  - "repeat-row"  + "filter"  + "none"  + "print-range"  + "repeat-column"  + "repeat-row"    + + RNG Relations + table:range-usable-as="none | +START_list(print-range | filter | repeat-row | repeat-column)+ +END_list"   +

table:refresh-delay[1] Attribute

@@ -48555,21 +60030,25 @@

table:refresh-delay[1] Attribute Parent Elements - table:cell-range-source  - table:table-source  + table:database-range    Datatypes - duration    Values + "false"  + "true"    + + RNG Relations + table:refresh-delay="<boolean>"   +

table:refresh-delay[2] Attribute

@@ -48578,21 +60057,25 @@

table:refresh-delay[2] Attribute Parent Elements - table:database-range  + table:cell-range-source  + table:table-source    Datatypes + duration    Values - "false"  - "true"    + + RNG Relations + table:refresh-delay="<duration>"   +

table:rejecting-change-id Attribute

@@ -48609,7 +60092,7 @@

table:rejecting-change-id At Datatypes - string  + string    @@ -48617,6 +60100,10 @@

table:rejecting-change-id At   + + RNG Relations + table:rejecting-change-id="<string>"   +

table:rfc-language-tag Attribute (new in ODF 1.2)

@@ -48630,7 +60117,7 @@

table:rfc-language-tag Attribut Datatypes - language  + language    @@ -48638,6 +60125,10 @@

table:rfc-language-tag Attribut   + + RNG Relations + table:rfc-language-tag="<language>"   +

table:row Attribute

@@ -48653,7 +60144,7 @@

table:row Attribute

Datatypes - integer  + integer    @@ -48661,6 +60152,10 @@

table:row Attribute

  + + RNG Relations + table:row="<integer>"   +

table:scenario-ranges Attribute

@@ -48674,7 +60169,7 @@

table:scenario-ranges Attribute< Datatypes - string  + string    @@ -48682,6 +60177,10 @@

table:scenario-ranges Attribute<   + + RNG Relations + table:scenario-ranges="<string>"   +

table:script Attribute (new in ODF 1.2)

@@ -48695,7 +60194,7 @@

table:script Attribute (new in O Datatypes - token  + token    @@ -48703,6 +60202,10 @@

table:script Attribute (new in O   + + RNG Relations + table:script="token]"   +

table:search-criteria-must-apply-to-whole-cell Attribute

@@ -48721,10 +60224,14 @@

table:s Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + table:search-criteria-must-apply-to-whole-cell="<boolean>"   +

table:selected-page Attribute

@@ -48738,7 +60245,7 @@

table:selected-page Attribute< Datatypes - string  + string    @@ -48746,6 +60253,10 @@

table:selected-page Attribute<   + + RNG Relations + table:selected-page="<string>"   +

table:show-details Attribute

@@ -48764,10 +60275,14 @@

table:show-details Attribute Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + table:show-details="<boolean>"   +

table:show-empty Attribute

@@ -48786,10 +60301,14 @@

table:show-empty Attribute

Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + table:show-empty="<boolean>"   +

table:show-filter-button Attribute

@@ -48808,10 +60327,14 @@

table:show-filter-button Attr Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + table:show-filter-button="<boolean>"   +

table:sort-mode[1] Attribute

@@ -48831,11 +60354,15 @@

table:sort-mode[1] Attribute

Values - "manual"  - "name"  - "none"  + "manual"  + "name"  + "none"    + + RNG Relations + table:sort-mode="none | manual | name"   +

table:sort-mode[2] Attribute

@@ -48855,9 +60382,13 @@

table:sort-mode[2] Attribute

Values - "data"  + "data"    + + RNG Relations + table:sort-mode="data"   +

table:source-cell-range-addresses Attribute

@@ -48871,7 +60402,7 @@

table:source-cell-ra Datatypes - string  + string    @@ -48879,6 +60410,10 @@

table:source-cell-ra   + + RNG Relations + table:source-cell-range-addresses="<string>"   +

table:source-field-name Attribute

@@ -48893,7 +60428,7 @@

table:source-field-name Attrib Datatypes - string  + string    @@ -48901,6 +60436,10 @@

table:source-field-name Attrib   + + RNG Relations + table:source-field-name="<string>"   +

table:source-name Attribute

@@ -48914,7 +60453,7 @@

table:source-name Attribute

Datatypes - string  + string    @@ -48922,6 +60461,10 @@

table:source-name Attribute

  + + RNG Relations + table:source-name="<string>"   +

table:sql-statement Attribute

@@ -48935,7 +60478,7 @@

table:sql-statement Attribute< Datatypes - string  + string    @@ -48943,6 +60486,10 @@

table:sql-statement Attribute<   + + RNG Relations + table:sql-statement="<string>"   +

table:start Attribute

@@ -48956,15 +60503,19 @@

table:start Attribute

Datatypes - double  + double    Values - "auto"  + "auto"    + + RNG Relations + table:start="<double> | auto"   +

table:start-column Attribute

@@ -48979,7 +60530,7 @@

table:start-column Attribute Datatypes - integer  + integer    @@ -48987,6 +60538,10 @@

table:start-column Attribute   + + RNG Relations + table:start-column="<integer>"   +

table:start-position Attribute

@@ -49000,7 +60555,7 @@

table:start-position Attribute Datatypes - integer  + integer    @@ -49008,6 +60563,10 @@

table:start-position Attribute   + + RNG Relations + table:start-position="<integer>"   +

table:start-row Attribute

@@ -49022,7 +60581,7 @@

table:start-row Attribute

Datatypes - integer  + integer    @@ -49030,6 +60589,10 @@

table:start-row Attribute

  + + RNG Relations + table:start-row="<integer>"   +

table:start-table Attribute

@@ -49044,7 +60607,7 @@

table:start-table Attribute

Datatypes - integer  + integer    @@ -49052,6 +60615,10 @@

table:start-table Attribute

  + + RNG Relations + table:start-table="<integer>"   +

table:status Attribute

@@ -49070,10 +60637,14 @@

table:status Attribute

Values - "disable"  - "enable"  + "disable"  + "enable"    + + RNG Relations + table:status="enable | disable"   +

table:step Attribute

@@ -49087,7 +60658,7 @@

table:step Attribute

Datatypes - double  + double    @@ -49095,6 +60666,10 @@

table:step Attribute

  + + RNG Relations + table:step="<double>"   +

table:steps Attribute

@@ -49108,7 +60683,7 @@

table:steps Attribute

Datatypes - positiveInteger  + positiveInteger    @@ -49116,6 +60691,10 @@

table:steps Attribute

  + + RNG Relations + table:steps="<positiveInteger>"   +

table:structure-protected Attribute

@@ -49134,10 +60713,14 @@

table:structure-protected At Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + table:structure-protected="<boolean>"   +

table:style-name Attribute

@@ -49165,7 +60748,7 @@

table:style-name Attribute

Datatypes - NCName  + NCName    @@ -49173,6 +60756,10 @@

table:style-name Attribute

  + + RNG Relations + table:style-name="(<NCName>)?"   +

table:tab-color Attribute (new in ODF 1.3)

@@ -49186,7 +60773,7 @@

table:tab-color Attribute (ne Datatypes - string  + string    @@ -49194,6 +60781,10 @@

table:tab-color Attribute (ne   + + RNG Relations + table:tab-color="string]"   +

table:table Attribute

@@ -49211,7 +60802,7 @@

table:table Attribute

Datatypes - integer  + integer    @@ -49219,6 +60810,10 @@

table:table Attribute

  + + RNG Relations + table:table="<integer>"   +

table:table-background Attribute

@@ -49254,10 +60849,14 @@

table:table-background Attribut Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + table:table-background="<boolean>"   +

table:table-name Attribute

@@ -49271,7 +60870,7 @@

table:table-name Attribute

Datatypes - string  + string    @@ -49279,6 +60878,10 @@

table:table-name Attribute

  + + RNG Relations + table:table-name="<string>"   +

table:target-cell-address Attribute

@@ -49292,7 +60895,7 @@

table:target-cell-address At Datatypes - string  + string    @@ -49300,6 +60903,10 @@

table:target-cell-address At   + + RNG Relations + table:target-cell-address="string]"   +

table:target-range-address Attribute

@@ -49316,9 +60923,9 @@

table:target-range-address Datatypes - string  - string  - string  + string  + string  + string    @@ -49326,6 +60933,10 @@

table:target-range-address   + + RNG Relations + table:target-range-address="string] | string] | string]"   +

table:template-name Attribute (new in ODF 1.2)

@@ -49339,7 +60950,7 @@

table:template-name Attribute& Datatypes - string  + string    @@ -49347,6 +60958,10 @@

table:template-name Attribute&   + + RNG Relations + table:template-name="<string>"   +

table:title Attribute

@@ -49361,7 +60976,7 @@

table:title Attribute

Datatypes - string  + string    @@ -49369,6 +60984,10 @@

table:title Attribute

  + + RNG Relations + table:title="<string>"   +

table:track-changes Attribute

@@ -49387,10 +61006,14 @@

table:track-changes Attribute< Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + table:track-changes="<boolean>"   +

table:type[1] Attribute

@@ -49410,17 +61033,21 @@

table:type[1] Attribute

Values - "column-percentage"  - "index"  - "member-difference"  - "member-percentage"  - "member-percentage-difference"  - "none"  - "row-percentage"  - "running-total"  - "total-percentage"  + "column-percentage"  + "index"  + "member-difference"  + "member-percentage"  + "member-percentage-difference"  + "none"  + "row-percentage"  + "running-total"  + "total-percentage"    + + RNG Relations + table:type="none | member-difference | member-percentage | member-percentage-difference | running-total | row-percentage | column-percentage | total-percentage | index"   +

table:type[2] Attribute

@@ -49441,11 +61068,15 @@

table:type[2] Attribute

Values - "column"  - "row"  - "table"  + "column"  + "row"  + "table"    + + RNG Relations + table:type="row | column | table"   +

table:use-banding-columns-styles Attribute (new in ODF 1.2)

@@ -49464,10 +61095,14 @@

table:use-banding-col Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + table:use-banding-columns-styles="<boolean>"   +

table:use-banding-rows-styles Attribute (new in ODF 1.2)

@@ -49486,10 +61121,14 @@

table:use-banding-rows-s Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + table:use-banding-rows-styles="<boolean>"   +

table:use-first-column-styles Attribute (new in ODF 1.2)

@@ -49508,10 +61147,14 @@

table:use-first-column-s Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + table:use-first-column-styles="<boolean>"   +

table:use-first-row-styles Attribute (new in ODF 1.2)

@@ -49530,10 +61173,14 @@

table:use-first-row-styles Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + table:use-first-row-styles="<boolean>"   +

table:use-labels Attribute

@@ -49552,12 +61199,16 @@

table:use-labels Attribute

Values - "both"  - "column"  - "none"  - "row"  + "both"  + "column"  + "none"  + "row"    + + RNG Relations + table:use-labels="none | row | column | both"   +

table:use-last-column-styles Attribute (new in ODF 1.2)

@@ -49576,10 +61227,14 @@

table:use-last-column-sty Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + table:use-last-column-styles="<boolean>"   +

table:use-last-row-styles Attribute (new in ODF 1.2)

@@ -49598,10 +61253,14 @@

table:use-last-row-styles At Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + table:use-last-row-styles="<boolean>"   +

table:use-regular-expressions Attribute

@@ -49620,10 +61279,14 @@

table:use-regular-expres Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + table:use-regular-expressions="<boolean>"   +

table:use-wildcards Attribute (new in ODF 1.2)

@@ -49642,10 +61305,14 @@

table:use-wildcards Attribute& Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + table:use-wildcards="<boolean>"   +

table:used-hierarchy Attribute

@@ -49659,7 +61326,7 @@

table:used-hierarchy Attribute Datatypes - integer  + integer    @@ -49667,6 +61334,10 @@

table:used-hierarchy Attribute   + + RNG Relations + table:used-hierarchy="<integer>"   +

table:user-name Attribute

@@ -49680,7 +61351,7 @@

table:user-name Attribute

Datatypes - string  + string    @@ -49688,6 +61359,10 @@

table:user-name Attribute

  + + RNG Relations + table:user-name="<string>"   +

table:value[1] Attribute

@@ -49696,14 +61371,13 @@

table:value[1] Attribute

Parent Elements - table:filter-condition  + table:filter-set-item    Datatypes - double  - string  + string    @@ -49711,6 +61385,10 @@

table:value[1] Attribute

  + + RNG Relations + table:value="<string>"   +

table:value[2] Attribute

@@ -49719,13 +61397,14 @@

table:value[2] Attribute

Parent Elements - table:filter-set-item  + table:filter-condition    Datatypes - string  + double  + string    @@ -49733,6 +61412,10 @@

table:value[2] Attribute

  + + RNG Relations + table:value="<string> | <double>"   +

table:value-type Attribute

@@ -49751,9 +61434,13 @@

table:value-type Attribute

Values - "date"  + "date"    + + RNG Relations + table:value-type="date"   +

table:visibility Attribute

@@ -49773,11 +61460,15 @@

table:visibility Attribute

Values - "collapse"  - "filter"  - "visible"  + "collapse"  + "filter"  + "visible"    + + RNG Relations + table:visibility="visible | collapse | filter"   +

text:active Attribute

@@ -49796,10 +61487,14 @@

text:active Attribute

Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + text:active="<boolean>"   +

text:address Attribute

@@ -49813,7 +61508,7 @@

text:address Attribute

Datatypes - string  + string    @@ -49821,6 +61516,10 @@

text:address Attribute

  + + RNG Relations + CHOICE_NAME_CLASS="<string>"   +

text:alphabetical-separators Attribute

@@ -49839,10 +61538,14 @@

text:alphabetical-separat Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + text:alphabetical-separators="<boolean>"   +

text:anchor-page-number Attribute

@@ -49874,7 +61577,7 @@

text:anchor-page-number Attrib Datatypes - positiveInteger  + positiveInteger    @@ -49882,6 +61585,10 @@

text:anchor-page-number Attrib   + + RNG Relations + text:anchor-page-number="<positiveInteger>"   +

text:anchor-type Attribute

@@ -49918,13 +61625,17 @@

text:anchor-type Attribute

Values - "as-char"  - "char"  - "frame"  - "page"  - "paragraph"  + "as-char"  + "char"  + "frame"  + "page"  + "paragraph"    + + RNG Relations + text:anchor-type="page | frame | paragraph | char | as-char"   +

text:animation Attribute (new in ODF 1.2)

@@ -49943,12 +61654,16 @@

text:animation Attribute (new Values - "alternate"  - "none"  - "scroll"  - "slide"  + "alternate"  + "none"  + "scroll"  + "slide"    + + RNG Relations + text:animation="none | scroll | alternate | slide"   +

text:animation-delay Attribute (new in ODF 1.2)

@@ -49962,7 +61677,7 @@

text:animation-delay Attribute Datatypes - duration  + duration    @@ -49970,6 +61685,10 @@

text:animation-delay Attribute   + + RNG Relations + text:animation-delay="<duration>"   +

text:animation-direction Attribute (new in ODF 1.2)

@@ -49988,12 +61707,16 @@

text:animation-direction Attr Values - "down"  - "left"  - "right"  - "up"  + "down"  + "left"  + "right"  + "up"    + + RNG Relations + text:animation-direction="left | right | up | down"   +

text:animation-repeat Attribute (new in ODF 1.2)

@@ -50007,7 +61730,7 @@

text:animation-repeat Attribute< Datatypes - nonNegativeInteger  + nonNegativeInteger    @@ -50015,6 +61738,10 @@

text:animation-repeat Attribute<   + + RNG Relations + text:animation-repeat="<nonNegativeInteger>"   +

text:animation-start-inside Attribute (new in ODF 1.2)

@@ -50033,10 +61760,14 @@

text:animation-start-insid Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + text:animation-start-inside="<boolean>"   +

text:animation-steps Attribute (new in ODF 1.2)

@@ -50050,7 +61781,7 @@

text:animation-steps Attribute Datatypes - string  + string    @@ -50058,6 +61789,10 @@

text:animation-steps Attribute   + + RNG Relations + text:animation-steps="string]"   +

text:animation-stop-inside Attribute (new in ODF 1.2)

@@ -50076,10 +61811,14 @@

text:animation-stop-inside Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + text:animation-stop-inside="<boolean>"   +

text:annote Attribute

@@ -50093,7 +61832,7 @@

text:annote Attribute

Datatypes - string  + string    @@ -50101,6 +61840,10 @@

text:annote Attribute

  + + RNG Relations + CHOICE_NAME_CLASS="<string>"   +

text:author Attribute

@@ -50114,7 +61857,7 @@

text:author Attribute

Datatypes - string  + string    @@ -50122,6 +61865,10 @@

text:author Attribute

  + + RNG Relations + CHOICE_NAME_CLASS="<string>"   +

text:bibliography-data-field Attribute

@@ -50140,40 +61887,44 @@

text:bibliography-data-fi Values - "address"  - "annote"  - "author"  - "bibliography-type"  - "booktitle"  - "chapter"  - "custom1"  - "custom2"  - "custom3"  - "custom4"  - "custom5"  - "edition"  - "editor"  - "howpublished"  - "identifier"  - "institution"  - "isbn"  - "issn"  - "journal"  - "month"  - "note"  - "number"  - "organizations"  - "pages"  - "publisher"  - "report-type"  - "school"  - "series"  - "title"  - "url"  - "volume"  - "year"  + "address"  + "annote"  + "author"  + "bibliography-type"  + "booktitle"  + "chapter"  + "custom1"  + "custom2"  + "custom3"  + "custom4"  + "custom5"  + "edition"  + "editor"  + "howpublished"  + "identifier"  + "institution"  + "isbn"  + "issn"  + "journal"  + "month"  + "note"  + "number"  + "organizations"  + "pages"  + "publisher"  + "report-type"  + "school"  + "series"  + "title"  + "url"  + "volume"  + "year"    + + RNG Relations + text:bibliography-data-field="address | annote | author | bibliography-type | booktitle | chapter | custom1 | custom2 | custom3 | custom4 | custom5 | edition | editor | howpublished | identifier | institution | isbn | issn | journal | month | note | number | organizations | pages | publisher | report-type | school | series | title | url | volume | year"   +

text:bibliography-type Attribute

@@ -50193,30 +61944,34 @@

text:bibliography-type Attribut Values - "article"  - "book"  - "booklet"  - "conference"  - "custom1"  - "custom2"  - "custom3"  - "custom4"  - "custom5"  - "email"  - "inbook"  - "incollection"  - "inproceedings"  - "journal"  - "manual"  - "mastersthesis"  - "misc"  - "phdthesis"  - "proceedings"  - "techreport"  - "unpublished"  - "www"  + "article"  + "book"  + "booklet"  + "conference"  + "custom1"  + "custom2"  + "custom3"  + "custom4"  + "custom5"  + "email"  + "inbook"  + "incollection"  + "inproceedings"  + "journal"  + "manual"  + "mastersthesis"  + "misc"  + "phdthesis"  + "proceedings"  + "techreport"  + "unpublished"  + "www"    + + RNG Relations + text:bibliography-type="article | book | booklet | conference | custom1 | custom2 | custom3 | custom4 | custom5 | email | inbook | incollection | inproceedings | journal | manual | mastersthesis | misc | phdthesis | proceedings | techreport | unpublished | www"   +

text:booktitle Attribute

@@ -50230,7 +61985,7 @@

text:booktitle Attribute

Datatypes - string  + string    @@ -50238,6 +61993,10 @@

text:booktitle Attribute

  + + RNG Relations + CHOICE_NAME_CLASS="<string>"   +

text:bullet-char Attribute

@@ -50251,7 +62010,7 @@

text:bullet-char Attribute

Datatypes - string  + string    @@ -50259,6 +62018,10 @@

text:bullet-char Attribute

  + + RNG Relations + text:bullet-char="string]"   +

text:bullet-relative-size Attribute

@@ -50272,7 +62035,7 @@

text:bullet-relative-size At Datatypes - string  + string    @@ -50280,6 +62043,10 @@

text:bullet-relative-size At   + + RNG Relations + text:bullet-relative-size="string]"   +

text:c Attribute

@@ -50293,7 +62060,7 @@

text:c Attribute

Datatypes - nonNegativeInteger  + nonNegativeInteger    @@ -50301,6 +62068,10 @@

text:c Attribute

  + + RNG Relations + text:c="<nonNegativeInteger>"   +

text:capitalize-entries Attribute

@@ -50319,10 +62090,14 @@

text:capitalize-entries Attrib Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + text:capitalize-entries="<boolean>"   +

text:caption-sequence-format Attribute

@@ -50342,11 +62117,15 @@

text:caption-sequence-for Values - "caption"  - "category-and-value"  - "text"  + "caption"  + "category-and-value"  + "text"    + + RNG Relations + text:caption-sequence-format="text | category-and-value | caption"   +

text:caption-sequence-name Attribute

@@ -50361,7 +62140,7 @@

text:caption-sequence-name Datatypes - string  + string    @@ -50369,6 +62148,10 @@

text:caption-sequence-name   + + RNG Relations + text:caption-sequence-name="<string>"   +

text:change-id Attribute

@@ -50384,7 +62167,7 @@

text:change-id Attribute

Datatypes - IDREF  + IDREF    @@ -50392,6 +62175,10 @@

text:change-id Attribute

  + + RNG Relations + text:change-id="<IDREF>"   +

text:chapter Attribute

@@ -50405,7 +62192,7 @@

text:chapter Attribute

Datatypes - string  + string    @@ -50413,6 +62200,10 @@

text:chapter Attribute

  + + RNG Relations + CHOICE_NAME_CLASS="<string>"   +

text:citation-body-style-name Attribute

@@ -50426,7 +62217,7 @@

text:citation-body-style Datatypes - NCName  + NCName    @@ -50434,6 +62225,10 @@

text:citation-body-style   + + RNG Relations + text:citation-body-style-name="(<NCName>)?"   +

text:citation-style-name Attribute

@@ -50447,7 +62242,7 @@

text:citation-style-name Attr Datatypes - NCName  + NCName    @@ -50455,6 +62250,10 @@

text:citation-style-name Attr   + + RNG Relations + text:citation-style-name="(<NCName>)?"   +

text:class-names Attribute

@@ -50470,7 +62269,7 @@

text:class-names Attribute

Datatypes - NCName  + NCName    @@ -50478,6 +62277,12 @@

text:class-names Attribute

  + + RNG Relations + text:class-names=" +START_list(<NCName>)* +END_list"   +

text:column-name Attribute

@@ -50491,7 +62296,7 @@

text:column-name Attribute

Datatypes - string  + string    @@ -50499,6 +62304,10 @@

text:column-name Attribute

  + + RNG Relations + text:column-name="<string>"   +

text:combine-entries Attribute

@@ -50517,10 +62326,14 @@

text:combine-entries Attribute Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + text:combine-entries="<boolean>"   +

text:combine-entries-with-dash Attribute

@@ -50539,10 +62352,14 @@

text:combine-entries-wi Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + text:combine-entries-with-dash="<boolean>"   +

text:combine-entries-with-pp Attribute

@@ -50561,10 +62378,14 @@

text:combine-entries-with Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + text:combine-entries-with-pp="<boolean>"   +

text:comma-separated Attribute

@@ -50583,10 +62404,14 @@

text:comma-separated Attribute Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + text:comma-separated="<boolean>"   +

text:cond-style-name Attribute

@@ -50601,7 +62426,7 @@

text:cond-style-name Attribute Datatypes - NCName  + NCName    @@ -50609,6 +62434,10 @@

text:cond-style-name Attribute   + + RNG Relations + text:cond-style-name="(<NCName>)?"   +

text:condition[1] Attribute

@@ -50617,20 +62446,29 @@

text:condition[1] Attribute

Parent Elements - style:text-properties  + text:conditional-text  + text:database-next  + text:database-row-select  + text:hidden-paragraph  + text:hidden-text  + text:section    Datatypes + string    Values - "none"    + + RNG Relations + text:condition="<string>"   +

text:condition[2] Attribute

@@ -50639,25 +62477,24 @@

text:condition[2] Attribute

Parent Elements - text:conditional-text  - text:database-next  - text:database-row-select  - text:hidden-paragraph  - text:hidden-text  - text:section  + style:text-properties    Datatypes - string    Values + "none"    + + RNG Relations + text:condition="none"   +

text:connection-name Attribute

@@ -50671,7 +62508,7 @@

text:connection-name Attribute Datatypes - string  + string    @@ -50679,6 +62516,10 @@

text:connection-name Attribute   + + RNG Relations + text:connection-name="<string>"   +

text:consecutive-numbering Attribute

@@ -50697,10 +62538,14 @@

text:consecutive-numbering Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + text:consecutive-numbering="<boolean>"   +

text:continue-list Attribute (new in ODF 1.2)

@@ -50714,7 +62559,7 @@

text:continue-list Attribute&nb Datatypes - IDREF  + IDREF    @@ -50722,6 +62567,10 @@

text:continue-list Attribute&nb   + + RNG Relations + text:continue-list="<IDREF>"   +

text:continue-numbering Attribute

@@ -50741,10 +62590,14 @@

text:continue-numbering Attrib Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + text:continue-numbering="<boolean>"   +

text:copy-outline-levels Attribute

@@ -50763,10 +62616,14 @@

text:copy-outline-levels Attr Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + text:copy-outline-levels="<boolean>"   +

text:count-empty-lines Attribute

@@ -50785,10 +62642,14 @@

text:count-empty-lines Attribut Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + text:count-empty-lines="<boolean>"   +

text:count-in-text-boxes Attribute

@@ -50807,10 +62668,14 @@

text:count-in-text-boxes Attr Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + text:count-in-text-boxes="<boolean>"   +

text:current-selected Attribute (new in ODF 1.3)

@@ -50829,10 +62694,14 @@

text:current-selected Attribute< Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + text:current-selected="<boolean>"   +

text:current-value Attribute

@@ -50851,10 +62720,14 @@

text:current-value Attribute Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + text:current-value="<boolean>"   +

text:custom1 Attribute

@@ -50868,7 +62741,7 @@

text:custom1 Attribute

Datatypes - string  + string    @@ -50876,6 +62749,10 @@

text:custom1 Attribute

  + + RNG Relations + CHOICE_NAME_CLASS="<string>"   +

text:custom2 Attribute

@@ -50889,7 +62766,7 @@

text:custom2 Attribute

Datatypes - string  + string    @@ -50897,6 +62774,10 @@

text:custom2 Attribute

  + + RNG Relations + CHOICE_NAME_CLASS="<string>"   +

text:custom3 Attribute

@@ -50910,7 +62791,7 @@

text:custom3 Attribute

Datatypes - string  + string    @@ -50918,6 +62799,10 @@

text:custom3 Attribute

  + + RNG Relations + CHOICE_NAME_CLASS="<string>"   +

text:custom4 Attribute

@@ -50931,7 +62816,7 @@

text:custom4 Attribute

Datatypes - string  + string    @@ -50939,6 +62824,10 @@

text:custom4 Attribute

  + + RNG Relations + CHOICE_NAME_CLASS="<string>"   +

text:custom5 Attribute

@@ -50952,7 +62841,7 @@

text:custom5 Attribute

Datatypes - string  + string    @@ -50960,6 +62849,10 @@

text:custom5 Attribute

  + + RNG Relations + CHOICE_NAME_CLASS="<string>"   +

text:database-name Attribute

@@ -50977,7 +62870,7 @@

text:database-name Attribute Datatypes - string  + string    @@ -50985,6 +62878,10 @@

text:database-name Attribute   + + RNG Relations + text:database-name="<string>"   +

text:date-adjust Attribute

@@ -50998,7 +62895,7 @@

text:date-adjust Attribute

Datatypes - duration  + duration    @@ -51006,6 +62903,10 @@

text:date-adjust Attribute

  + + RNG Relations + text:date-adjust="<duration>"   +

text:date-value[1] Attribute

@@ -51021,7 +62922,7 @@

text:date-value[1] Attribute

Datatypes - date  + date    @@ -51029,6 +62930,10 @@

text:date-value[1] Attribute

  + + RNG Relations + text:date-value="<date>"   +

text:date-value[2] Attribute

@@ -51044,8 +62949,8 @@

text:date-value[2] Attribute

Datatypes - date  - dateTime  + date  + dateTime    @@ -51053,6 +62958,10 @@

text:date-value[2] Attribute

  + + RNG Relations + text:date-value="<date> | <dateTime>"   +

text:default-style-name Attribute

@@ -51066,7 +62975,7 @@

text:default-style-name Attrib Datatypes - NCName  + NCName    @@ -51074,6 +62983,10 @@

text:default-style-name Attrib   + + RNG Relations + text:default-style-name="(<NCName>)?"   +

text:description Attribute

@@ -51090,7 +63003,7 @@

text:description Attribute

Datatypes - string  + string    @@ -51098,6 +63011,10 @@

text:description Attribute

  + + RNG Relations + text:description="<string>"   +

text:display[1] Attribute

@@ -51107,7 +63024,6 @@

text:display[1] Attribute

Parent Elements style:text-properties  - text:section    @@ -51118,9 +63034,13 @@

text:display[1] Attribute

Values - "condition"  + "none"    + + RNG Relations + text:display="none"   +

text:display[2] Attribute

@@ -51129,6 +63049,7 @@

text:display[2] Attribute

Parent Elements + style:text-properties  text:section    @@ -51140,10 +63061,13 @@

text:display[2] Attribute

Values - "none"  - "true"  + "condition"    + + RNG Relations + text:display="condition"   +

text:display[3] Attribute

@@ -51152,9 +63076,7 @@

text:display[3] Attribute

Parent Elements - text:expression  - text:table-formula  - text:variable-get  + text:section    @@ -51165,10 +63087,14 @@

text:display[3] Attribute

Values - "formula"  - "value"  + "none"  + "true"    + + RNG Relations + text:display="true | none"   +

text:display[4] Attribute

@@ -51177,8 +63103,7 @@

text:display[4] Attribute

Parent Elements - text:chapter  - text:index-entry-chapter  + text:user-field-get    @@ -51189,13 +63114,15 @@

text:display[4] Attribute

Values - "name"  - "number"  - "number-and-name"  - "plain-number"  - "plain-number-and-name"  + "formula"  + "none"  + "value"    + + RNG Relations + text:display="value | formula | none"   +

text:display[5] Attribute

@@ -51215,9 +63142,13 @@

text:display[5] Attribute

Values - "true"  + "true"    + + RNG Relations + text:display="true"   +

text:display[6] Attribute

@@ -51226,7 +63157,7 @@

text:display[6] Attribute

Parent Elements - text:user-field-get  + text:file-name    @@ -51237,11 +63168,16 @@

text:display[6] Attribute

Values - "formula"  - "none"  - "value"  + "full"  + "name"  + "name-and-extension"  + "path"    + + RNG Relations + text:display="full | path | name | name-and-extension"   +

text:display[7] Attribute

@@ -51250,7 +63186,8 @@

text:display[7] Attribute

Parent Elements - text:file-name  + text:variable-input  + text:variable-set    @@ -51261,12 +63198,14 @@

text:display[7] Attribute

Values - "full"  - "name"  - "name-and-extension"  - "path"  + "none"  + "value"    + + RNG Relations + text:display="value | none"   +

text:display[8] Attribute

@@ -51275,8 +63214,7 @@

text:display[8] Attribute

Parent Elements - text:variable-input  - text:variable-set  + text:template-name    @@ -51287,10 +63225,18 @@

text:display[8] Attribute

Values - "none"  - "value"  + "area"  + "full"  + "name"  + "name-and-extension"  + "path"  + "title"    + + RNG Relations + text:display="full | path | name | name-and-extension | area | title"   +

text:display[9] Attribute

@@ -51299,7 +63245,8 @@

text:display[9] Attribute

Parent Elements - text:template-name  + text:chapter  + text:index-entry-chapter    @@ -51310,14 +63257,17 @@

text:display[9] Attribute

Values - "area"  - "full"  - "name"  - "name-and-extension"  - "path"  - "title"  + "name"  + "number"  + "number-and-name"  + "plain-number"  + "plain-number-and-name"    + + RNG Relations + text:display="name | number | number-and-name | plain-number-and-name | plain-number"   +

text:display[10] Attribute

@@ -51326,7 +63276,9 @@

text:display[10] Attribute

Parent Elements - style:text-properties  + text:expression  + text:table-formula  + text:variable-get    @@ -51337,9 +63289,14 @@

text:display[10] Attribute

Values - "none"  + "formula"  + "value"    + + RNG Relations + text:display="value | formula"   +

text:display-levels Attribute

@@ -51354,7 +63311,7 @@

text:display-levels Attribute< Datatypes - positiveInteger  + positiveInteger    @@ -51362,6 +63319,10 @@

text:display-levels Attribute<   + + RNG Relations + text:display-levels="<positiveInteger>"   +

text:display-outline-level Attribute

@@ -51375,7 +63336,7 @@

text:display-outline-level Datatypes - nonNegativeInteger  + nonNegativeInteger    @@ -51383,6 +63344,10 @@

text:display-outline-level   + + RNG Relations + text:display-outline-level="<nonNegativeInteger>"   +

text:dont-balance-text-columns Attribute (new in ODF 1.2)

@@ -51401,10 +63366,14 @@

text:dont-balance-text- Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + text:dont-balance-text-columns="<boolean>"   +

text:duration Attribute

@@ -51418,7 +63387,7 @@

text:duration Attribute

Datatypes - duration  + duration    @@ -51426,6 +63395,10 @@

text:duration Attribute

  + + RNG Relations + text:duration="<duration>"   +

text:edition Attribute

@@ -51439,7 +63412,7 @@

text:edition Attribute

Datatypes - string  + string    @@ -51447,6 +63420,10 @@

text:edition Attribute

  + + RNG Relations + CHOICE_NAME_CLASS="<string>"   +

text:editor Attribute

@@ -51460,7 +63437,7 @@

text:editor Attribute

Datatypes - string  + string    @@ -51468,6 +63445,10 @@

text:editor Attribute

  + + RNG Relations + CHOICE_NAME_CLASS="<string>"   +

text:filter-name Attribute

@@ -51481,7 +63462,7 @@

text:filter-name Attribute

Datatypes - string  + string    @@ -51489,6 +63470,10 @@

text:filter-name Attribute

  + + RNG Relations + text:filter-name="<string>"   +

text:fixed Attribute

@@ -51543,10 +63528,14 @@

text:fixed Attribute

Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + text:fixed="<boolean>"   +

text:footnotes-position Attribute

@@ -51565,12 +63554,16 @@

text:footnotes-position Attrib Values - "document"  - "page"  - "section"  - "text"  + "document"  + "page"  + "section"  + "text"    + + RNG Relations + text:footnotes-position="text | page | section | document"   +

text:formula Attribute

@@ -51588,7 +63581,7 @@

text:formula Attribute

Datatypes - string  + string    @@ -51596,6 +63589,10 @@

text:formula Attribute

  + + RNG Relations + text:formula="<string>"   +

text:global Attribute

@@ -51614,10 +63611,14 @@

text:global Attribute

Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + text:global="<boolean>"   +

text:howpublished Attribute

@@ -51631,7 +63632,7 @@

text:howpublished Attribute

Datatypes - string  + string    @@ -51639,6 +63640,10 @@

text:howpublished Attribute

  + + RNG Relations + CHOICE_NAME_CLASS="<string>"   +

text:id[1] Attribute

@@ -51647,16 +63652,19 @@

text:id[1] Attribute

Parent Elements - draw:text-box  - text:changed-region  - text:h  - text:p  + text:alphabetical-index-mark-end  + text:alphabetical-index-mark-start  + text:note  + text:toc-mark-end  + text:toc-mark-start  + text:user-index-mark-end  + text:user-index-mark-start    Datatypes - NCName  + string    @@ -51664,6 +63672,10 @@

text:id[1] Attribute

  + + RNG Relations + text:id="<string>"   +

text:id[2] Attribute

@@ -51672,19 +63684,16 @@

text:id[2] Attribute

Parent Elements - text:alphabetical-index-mark-end  - text:alphabetical-index-mark-start  - text:note  - text:toc-mark-end  - text:toc-mark-start  - text:user-index-mark-end  - text:user-index-mark-start  + draw:text-box  + text:changed-region  + text:h  + text:p    Datatypes - string  + NCName    @@ -51692,6 +63701,10 @@

text:id[2] Attribute

  + + RNG Relations + text:id="<NCName>"   +

text:identifier Attribute

@@ -51705,7 +63718,7 @@

text:identifier Attribute

Datatypes - string  + string    @@ -51713,6 +63726,10 @@

text:identifier Attribute

  + + RNG Relations + CHOICE_NAME_CLASS="<string>"   +

text:ignore-case Attribute

@@ -51731,10 +63748,14 @@

text:ignore-case Attribute

Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + text:ignore-case="<boolean>"   +

text:increment Attribute

@@ -51749,7 +63770,7 @@

text:increment Attribute

Datatypes - nonNegativeInteger  + nonNegativeInteger    @@ -51757,6 +63778,10 @@

text:increment Attribute

  + + RNG Relations + text:increment="<nonNegativeInteger>"   +

text:index-name Attribute

@@ -51772,7 +63797,7 @@

text:index-name Attribute

Datatypes - string  + string    @@ -51780,6 +63805,10 @@

text:index-name Attribute

  + + RNG Relations + text:index-name="<string>"   +

text:index-scope Attribute

@@ -51803,10 +63832,14 @@

text:index-scope Attribute

Values - "chapter"  - "document"  + "chapter"  + "document"    + + RNG Relations + text:index-scope="document | chapter"   +

text:institution Attribute

@@ -51820,7 +63853,7 @@

text:institution Attribute

Datatypes - string  + string    @@ -51828,6 +63861,10 @@

text:institution Attribute

  + + RNG Relations + CHOICE_NAME_CLASS="<string>"   +

text:is-hidden Attribute

@@ -51847,10 +63884,14 @@

text:is-hidden Attribute

Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + text:is-hidden="<boolean>"   +

text:is-list-header Attribute

@@ -51869,10 +63910,14 @@

text:is-list-header Attribute< Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + text:is-list-header="<boolean>"   +

text:isbn Attribute

@@ -51886,7 +63931,7 @@

text:isbn Attribute

Datatypes - string  + string    @@ -51894,6 +63939,10 @@

text:isbn Attribute

  + + RNG Relations + CHOICE_NAME_CLASS="<string>"   +

text:issn Attribute

@@ -51907,7 +63956,7 @@

text:issn Attribute

Datatypes - string  + string    @@ -51915,6 +63964,10 @@

text:issn Attribute

  + + RNG Relations + CHOICE_NAME_CLASS="<string>"   +

text:journal Attribute

@@ -51928,7 +63981,7 @@

text:journal Attribute

Datatypes - string  + string    @@ -51936,6 +63989,10 @@

text:journal Attribute

  + + RNG Relations + CHOICE_NAME_CLASS="<string>"   +

text:key Attribute

@@ -51954,40 +64011,44 @@

text:key Attribute

Values - "address"  - "annote"  - "author"  - "bibliography-type"  - "booktitle"  - "chapter"  - "custom1"  - "custom2"  - "custom3"  - "custom4"  - "custom5"  - "edition"  - "editor"  - "howpublished"  - "identifier"  - "institution"  - "isbn"  - "issn"  - "journal"  - "month"  - "note"  - "number"  - "organizations"  - "pages"  - "publisher"  - "report-type"  - "school"  - "series"  - "title"  - "url"  - "volume"  - "year"  + "address"  + "annote"  + "author"  + "bibliography-type"  + "booktitle"  + "chapter"  + "custom1"  + "custom2"  + "custom3"  + "custom4"  + "custom5"  + "edition"  + "editor"  + "howpublished"  + "identifier"  + "institution"  + "isbn"  + "issn"  + "journal"  + "month"  + "note"  + "number"  + "organizations"  + "pages"  + "publisher"  + "report-type"  + "school"  + "series"  + "title"  + "url"  + "volume"  + "year"    + + RNG Relations + text:key="address | annote | author | bibliography-type | booktitle | chapter | custom1 | custom2 | custom3 | custom4 | custom5 | edition | editor | howpublished | identifier | institution | isbn | issn | journal | month | note | number | organizations | pages | publisher | report-type | school | series | title | url | volume | year"   +

text:key1 Attribute

@@ -52002,7 +64063,7 @@

text:key1 Attribute

Datatypes - string  + string    @@ -52010,6 +64071,10 @@

text:key1 Attribute

  + + RNG Relations + text:key1="<string>"   +

text:key1-phonetic Attribute

@@ -52024,7 +64089,7 @@

text:key1-phonetic Attribute Datatypes - string  + string    @@ -52032,6 +64097,10 @@

text:key1-phonetic Attribute   + + RNG Relations + text:key1-phonetic="<string>"   +

text:key2 Attribute

@@ -52046,7 +64115,7 @@

text:key2 Attribute

Datatypes - string  + string    @@ -52054,6 +64123,10 @@

text:key2 Attribute

  + + RNG Relations + text:key2="<string>"   +

text:key2-phonetic Attribute

@@ -52068,7 +64141,7 @@

text:key2-phonetic Attribute Datatypes - string  + string    @@ -52076,6 +64149,10 @@

text:key2-phonetic Attribute   + + RNG Relations + text:key2-phonetic="<string>"   +

text:kind Attribute

@@ -52094,11 +64171,15 @@

text:kind Attribute

Values - "gap"  - "unit"  - "value"  + "gap"  + "unit"  + "value"    + + RNG Relations + text:kind="value | unit | gap"   +

text:label Attribute

@@ -52112,7 +64193,7 @@

text:label Attribute

Datatypes - string  + string    @@ -52120,6 +64201,10 @@

text:label Attribute

  + + RNG Relations + text:label="<string>"   +

text:label-followed-by Attribute (new in ODF 1.2)

@@ -52138,11 +64223,15 @@

text:label-followed-by Attribut Values - "listtab"  - "nothing"  - "space"  + "listtab"  + "nothing"  + "space"    + + RNG Relations + text:label-followed-by="listtab | space | nothing"   +

text:level Attribute

@@ -52160,7 +64249,7 @@

text:level Attribute

Datatypes - positiveInteger  + positiveInteger    @@ -52168,6 +64257,10 @@

text:level Attribute

  + + RNG Relations + text:level="<positiveInteger>"   +

text:line-break Attribute (new in ODF 1.2)

@@ -52186,10 +64279,14 @@

text:line-break Attribute (ne Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + text:line-break="<boolean>"   +

text:line-number Attribute (new in ODF 1.2)

@@ -52203,7 +64300,7 @@

text:line-number Attribute ( Datatypes - nonNegativeInteger  + nonNegativeInteger    @@ -52211,6 +64308,10 @@

text:line-number Attribute (   + + RNG Relations + text:line-number="<nonNegativeInteger>"   +

text:list-id Attribute (new in ODF 1.2)

@@ -52224,7 +64325,7 @@

text:list-id Attribute (new in O Datatypes - NCName  + NCName    @@ -52232,6 +64333,10 @@

text:list-id Attribute (new in O   + + RNG Relations + text:list-id="<NCName>"   +

text:list-level-position-and-space-mode Attribute (new in ODF 1.2)

@@ -52250,10 +64355,14 @@

text:list-leve Values - "label-alignment"  - "label-width-and-position"  + "label-alignment"  + "label-width-and-position"    + + RNG Relations + text:list-level-position-and-space-mode="label-width-and-position | label-alignment"   +

text:list-tab-stop-position Attribute (new in ODF 1.2)

@@ -52267,7 +64376,7 @@

text:list-tab-stop-positio Datatypes - string  + string    @@ -52275,6 +64384,10 @@

text:list-tab-stop-positio   + + RNG Relations + text:list-tab-stop-position="string]"   +

text:main-entry Attribute

@@ -52294,10 +64407,14 @@

text:main-entry Attribute

Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + text:main-entry="<boolean>"   +

text:main-entry-style-name Attribute

@@ -52311,7 +64428,7 @@

text:main-entry-style-name Datatypes - NCName  + NCName    @@ -52319,6 +64436,10 @@

text:main-entry-style-name   + + RNG Relations + text:main-entry-style-name="(<NCName>)?"   +

text:master-page-name Attribute

@@ -52333,7 +64454,7 @@

text:master-page-name Attribute< Datatypes - NCName  + NCName    @@ -52341,6 +64462,10 @@

text:master-page-name Attribute<   + + RNG Relations + text:master-page-name="(<NCName>)?"   +

text:min-label-distance Attribute (new in ODF 1.2)

@@ -52354,7 +64479,7 @@

text:min-label-distance Attrib Datatypes - string  + string    @@ -52362,6 +64487,10 @@

text:min-label-distance Attrib   + + RNG Relations + text:min-label-distance="string]"   +

text:min-label-width Attribute (new in ODF 1.2)

@@ -52375,7 +64504,7 @@

text:min-label-width Attribute Datatypes - string  + string    @@ -52383,6 +64512,10 @@

text:min-label-width Attribute   + + RNG Relations + text:min-label-width="string]"   +

text:month Attribute

@@ -52396,7 +64529,7 @@

text:month Attribute

Datatypes - string  + string    @@ -52404,6 +64537,10 @@

text:month Attribute

  + + RNG Relations + CHOICE_NAME_CLASS="<string>"   +

text:name Attribute

@@ -52443,7 +64580,7 @@

text:name Attribute

Datatypes - string  + string    @@ -52451,6 +64588,10 @@

text:name Attribute

  + + RNG Relations + text:name="<string>"   +

text:note Attribute

@@ -52464,7 +64605,7 @@

text:note Attribute

Datatypes - string  + string    @@ -52472,6 +64613,10 @@

text:note Attribute

  + + RNG Relations + CHOICE_NAME_CLASS="<string>"   +

text:note-class Attribute

@@ -52492,10 +64637,14 @@

text:note-class Attribute

Values - "endnote"  - "footnote"  + "endnote"  + "footnote"    + + RNG Relations + text:note-class="footnote | endnote"   +

text:number Attribute

@@ -52509,7 +64658,7 @@

text:number Attribute

Datatypes - string  + string    @@ -52517,6 +64666,10 @@

text:number Attribute

  + + RNG Relations + CHOICE_NAME_CLASS="<string>"   +

text:number-lines Attribute

@@ -52536,10 +64689,14 @@

text:number-lines Attribute

Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + text:number-lines="<boolean>"   +

text:number-position Attribute

@@ -52558,12 +64715,16 @@

text:number-position Attribute Values - "inner"  - "left"  - "outer"  - "right"  + "inner"  + "left"  + "outer"  + "right"    + + RNG Relations + text:number-position="left | right | inner | outer"   +

text:numbered-entries Attribute

@@ -52582,10 +64743,14 @@

text:numbered-entries Attribute< Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + text:numbered-entries="<boolean>"   +

text:offset Attribute

@@ -52599,7 +64764,7 @@

text:offset Attribute

Datatypes - string  + string    @@ -52607,6 +64772,10 @@

text:offset Attribute

  + + RNG Relations + text:offset="string]"   +

text:organizations Attribute

@@ -52620,7 +64789,7 @@

text:organizations Attribute Datatypes - string  + string    @@ -52628,6 +64797,10 @@

text:organizations Attribute   + + RNG Relations + CHOICE_NAME_CLASS="<string>"   +

text:outline-level[1] Attribute

@@ -52636,22 +64809,13 @@

text:outline-level[1] Attribute Parent Elements - text:h  - text:index-entry-chapter  - text:index-source-styles  - text:table-of-content-entry-template  - text:table-of-content-source  - text:toc-mark  - text:toc-mark-start  - text:user-index-entry-template  - text:user-index-mark  - text:user-index-mark-start  + text:chapter    Datatypes - positiveInteger  + nonNegativeInteger    @@ -52659,6 +64823,10 @@

text:outline-level[1] Attribute   + + RNG Relations + text:outline-level="<nonNegativeInteger>"   +

text:outline-level[2] Attribute

@@ -52667,23 +64835,33 @@

text:outline-level[2] Attribute Parent Elements - text:alphabetical-index-entry-template  + text:h  + text:index-entry-chapter  + text:index-source-styles  + text:table-of-content-entry-template  + text:table-of-content-source  + text:toc-mark  + text:toc-mark-start  + text:user-index-entry-template  + text:user-index-mark  + text:user-index-mark-start    Datatypes + positiveInteger    Values - "1"  - "2"  - "3"  - "separator"    + + RNG Relations + text:outline-level="<positiveInteger>"   +

text:outline-level[3] Attribute

@@ -52692,20 +64870,27 @@

text:outline-level[3] Attribute Parent Elements - text:chapter  + text:alphabetical-index-entry-template    Datatypes - nonNegativeInteger    Values + "1"  + "2"  + "3"  + "separator"    + + RNG Relations + text:outline-level="1 | 2 | 3 | separator"   +

text:page-adjust Attribute

@@ -52720,7 +64905,7 @@

text:page-adjust Attribute

Datatypes - integer  + integer    @@ -52728,6 +64913,10 @@

text:page-adjust Attribute

  + + RNG Relations + text:page-adjust="<integer>"   +

text:pages Attribute

@@ -52741,7 +64930,7 @@

text:pages Attribute

Datatypes - string  + string    @@ -52749,6 +64938,10 @@

text:pages Attribute

  + + RNG Relations + CHOICE_NAME_CLASS="<string>"   +

text:placeholder-type Attribute

@@ -52767,13 +64960,17 @@

text:placeholder-type Attribute< Values - "image"  - "object"  - "table"  - "text"  - "text-box"  + "image"  + "object"  + "table"  + "text"  + "text-box"    + + RNG Relations + text:placeholder-type="text | table | text-box | image | object"   +

text:prefix Attribute

@@ -52787,7 +64984,7 @@

text:prefix Attribute

Datatypes - string  + string    @@ -52795,6 +64992,10 @@

text:prefix Attribute

  + + RNG Relations + text:prefix="<string>"   +

text:protected Attribute

@@ -52821,10 +65022,14 @@

text:protected Attribute

Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + text:protected="<boolean>"   +

text:protection-key Attribute

@@ -52846,7 +65051,7 @@

text:protection-key Attribute< Datatypes - string  + string    @@ -52854,6 +65059,10 @@

text:protection-key Attribute<   + + RNG Relations + text:protection-key="<string>"   +

text:protection-key-digest-algorithm Attribute (new in ODF 1.2)

@@ -52875,7 +65084,7 @@

text:protection-k Datatypes - anyURI  + anyURI    @@ -52883,6 +65092,10 @@

text:protection-k   + + RNG Relations + text:protection-key-digest-algorithm="<anyIRI>"   +

text:publisher Attribute

@@ -52896,7 +65109,7 @@

text:publisher Attribute

Datatypes - string  + string    @@ -52904,6 +65117,10 @@

text:publisher Attribute

  + + RNG Relations + CHOICE_NAME_CLASS="<string>"   +

text:ref-name Attribute

@@ -52921,7 +65138,7 @@

text:ref-name Attribute

Datatypes - string  + string    @@ -52929,6 +65146,10 @@

text:ref-name Attribute

  + + RNG Relations + text:ref-name="<string>"   +

text:reference-format[1] Attribute

@@ -52937,7 +65158,7 @@

text:reference-format[1] Attribu Parent Elements - text:sequence-ref  + text:note-ref    @@ -52948,15 +65169,16 @@

text:reference-format[1] Attribu Values - "caption"  - "category-and-value"  - "chapter"  - "direction"  - "page"  - "text"  - "value"  + "chapter"  + "direction"  + "page"  + "text"    + + RNG Relations + text:reference-format="page | chapter | direction | text"   +

text:reference-format[2] Attribute

@@ -52965,7 +65187,8 @@

text:reference-format[2] Attribu Parent Elements - text:note-ref  + text:bookmark-ref  + text:reference-ref    @@ -52976,12 +65199,19 @@

text:reference-format[2] Attribu Values - "chapter"  - "direction"  - "page"  - "text"  + "chapter"  + "direction"  + "number"  + "number-all-superior"  + "number-no-superior"  + "page"  + "text"    + + RNG Relations + text:reference-format="page | chapter | direction | text | number-no-superior | number-all-superior | number"   +

text:reference-format[3] Attribute

@@ -52990,8 +65220,7 @@

text:reference-format[3] Attribu Parent Elements - text:bookmark-ref  - text:reference-ref  + text:sequence-ref    @@ -53002,15 +65231,19 @@

text:reference-format[3] Attribu Values - "chapter"  - "direction"  - "number"  - "number-all-superior"  - "number-no-superior"  - "page"  - "text"  + "caption"  + "category-and-value"  + "chapter"  + "direction"  + "page"  + "text"  + "value"    + + RNG Relations + text:reference-format="page | chapter | direction | text | category-and-value | caption | value"   +

text:relative-tab-stop-position Attribute

@@ -53034,10 +65267,14 @@

text:relative-tab-stop Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + text:relative-tab-stop-position="<boolean>"   +

text:report-type Attribute

@@ -53051,7 +65288,7 @@

text:report-type Attribute

Datatypes - string  + string    @@ -53059,6 +65296,10 @@

text:report-type Attribute

  + + RNG Relations + CHOICE_NAME_CLASS="<string>"   +

text:restart-numbering Attribute

@@ -53077,10 +65318,14 @@

text:restart-numbering Attribut Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + text:restart-numbering="<boolean>"   +

text:restart-on-page Attribute

@@ -53099,10 +65344,14 @@

text:restart-on-page Attribute Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + text:restart-on-page="<boolean>"   +

text:row-number Attribute

@@ -53116,7 +65365,7 @@

text:row-number Attribute

Datatypes - nonNegativeInteger  + nonNegativeInteger    @@ -53124,6 +65373,10 @@

text:row-number Attribute

  + + RNG Relations + text:row-number="<nonNegativeInteger>"   +

text:school Attribute

@@ -53137,7 +65390,7 @@

text:school Attribute

Datatypes - string  + string    @@ -53145,6 +65398,10 @@

text:school Attribute

  + + RNG Relations + CHOICE_NAME_CLASS="<string>"   +

text:section-name Attribute

@@ -53158,7 +65415,7 @@

text:section-name Attribute

Datatypes - string  + string    @@ -53166,6 +65423,10 @@

text:section-name Attribute

  + + RNG Relations + text:section-name="<string>"   +

text:select-page[1] Attribute

@@ -53174,7 +65435,7 @@

text:select-page[1] Attribute

Parent Elements - text:page-number  + text:page-continuation    @@ -53185,11 +65446,14 @@

text:select-page[1] Attribute

Values - "current"  - "next"  - "previous"  + "next"  + "previous"    + + RNG Relations + text:select-page="previous | next"   +

text:select-page[2] Attribute

@@ -53198,7 +65462,7 @@

text:select-page[2] Attribute

Parent Elements - text:page-continuation  + text:page-number    @@ -53209,10 +65473,15 @@

text:select-page[2] Attribute

Values - "next"  - "previous"  + "current"  + "next"  + "previous"    + + RNG Relations + text:select-page="previous | current | next"   +

text:separation-character Attribute

@@ -53226,7 +65495,7 @@

text:separation-character At Datatypes - string  + string    @@ -53234,6 +65503,10 @@

text:separation-character At   + + RNG Relations + text:separation-character="string]"   +

text:series Attribute

@@ -53247,7 +65520,7 @@

text:series Attribute

Datatypes - string  + string    @@ -53255,6 +65528,10 @@

text:series Attribute

  + + RNG Relations + CHOICE_NAME_CLASS="<string>"   +

text:sort-algorithm Attribute

@@ -53269,7 +65546,7 @@

text:sort-algorithm Attribute< Datatypes - string  + string    @@ -53277,6 +65554,10 @@

text:sort-algorithm Attribute<   + + RNG Relations + text:sort-algorithm="<string>"   +

text:sort-ascending Attribute

@@ -53295,10 +65576,14 @@

text:sort-ascending Attribute< Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + text:sort-ascending="<boolean>"   +

text:sort-by-position Attribute

@@ -53317,10 +65602,14 @@

text:sort-by-position Attribute< Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + text:sort-by-position="<boolean>"   +

text:space-before Attribute (new in ODF 1.2)

@@ -53334,7 +65623,7 @@

text:space-before Attribute  Datatypes - string  + string    @@ -53342,6 +65631,10 @@

text:space-before Attribute    + + RNG Relations + text:space-before="string]"   +

text:start-numbering-at Attribute

@@ -53360,11 +65653,15 @@

text:start-numbering-at Attrib Values - "chapter"  - "document"  - "page"  + "chapter"  + "document"  + "page"    + + RNG Relations + text:start-numbering-at="document | chapter | page"   +

text:start-value[1] Attribute

@@ -53373,16 +65670,14 @@

text:start-value[1] Attribute

Parent Elements - text:h  - text:list-item  - text:notes-configuration  - text:numbered-paragraph  + text:list-level-style-number  + text:outline-level-style    Datatypes - nonNegativeInteger  + positiveInteger    @@ -53390,6 +65685,10 @@

text:start-value[1] Attribute

  + + RNG Relations + text:start-value="<positiveInteger>"   +

text:start-value[2] Attribute

@@ -53398,14 +65697,16 @@

text:start-value[2] Attribute

Parent Elements - text:list-level-style-number  - text:outline-level-style  + text:h  + text:list-item  + text:notes-configuration  + text:numbered-paragraph    Datatypes - positiveInteger  + nonNegativeInteger    @@ -53413,6 +65714,10 @@

text:start-value[2] Attribute

  + + RNG Relations + text:start-value="<nonNegativeInteger>"   +

text:string-value Attribute

@@ -53430,7 +65735,7 @@

text:string-value Attribute

Datatypes - string  + string    @@ -53438,6 +65743,10 @@

text:string-value Attribute

  + + RNG Relations + text:string-value="<string>"   +

text:string-value-if-false Attribute

@@ -53451,7 +65760,7 @@

text:string-value-if-false Datatypes - string  + string    @@ -53459,6 +65768,10 @@

text:string-value-if-false   + + RNG Relations + text:string-value-if-false="<string>"   +

text:string-value-if-true Attribute

@@ -53472,7 +65785,7 @@

text:string-value-if-true At Datatypes - string  + string    @@ -53480,6 +65793,10 @@

text:string-value-if-true At   + + RNG Relations + text:string-value-if-true="<string>"   +

text:string-value-phonetic Attribute

@@ -53494,7 +65811,7 @@

text:string-value-phonetic Datatypes - string  + string    @@ -53502,6 +65819,10 @@

text:string-value-phonetic   + + RNG Relations + text:string-value-phonetic="<string>"   +

text:style-name Attribute

@@ -53552,7 +65873,7 @@

text:style-name Attribute

Datatypes - NCName  + NCName    @@ -53560,6 +65881,10 @@

text:style-name Attribute

  + + RNG Relations + text:style-name="(<NCName>)?"   +

text:style-override Attribute (new in ODF 1.2)

@@ -53573,7 +65898,7 @@

text:style-override Attribute& Datatypes - NCName  + NCName    @@ -53581,6 +65906,10 @@

text:style-override Attribute&   + + RNG Relations + text:style-override="(<NCName>)?"   +

text:suffix Attribute

@@ -53594,7 +65923,7 @@

text:suffix Attribute

Datatypes - string  + string    @@ -53602,6 +65931,10 @@

text:suffix Attribute

  + + RNG Relations + text:suffix="<string>"   +

text:tab-ref Attribute

@@ -53615,7 +65948,7 @@

text:tab-ref Attribute

Datatypes - nonNegativeInteger  + nonNegativeInteger    @@ -53623,6 +65956,10 @@

text:tab-ref Attribute

  + + RNG Relations + text:tab-ref="<nonNegativeInteger>"   +

text:table-name Attribute

@@ -53640,7 +65977,7 @@

text:table-name Attribute

Datatypes - string  + string    @@ -53648,6 +65985,10 @@

text:table-name Attribute

  + + RNG Relations + text:table-name="<string>"   +

text:table-type Attribute

@@ -53670,11 +66011,15 @@

text:table-type Attribute

Values - "command"  - "query"  - "table"  + "command"  + "query"  + "table"    + + RNG Relations + text:table-type="table | query | command"   +

text:time-adjust Attribute

@@ -53688,7 +66033,7 @@

text:time-adjust Attribute

Datatypes - duration  + duration    @@ -53696,6 +66041,10 @@

text:time-adjust Attribute

  + + RNG Relations + text:time-adjust="<duration>"   +

text:time-value[1] Attribute

@@ -53704,14 +66053,15 @@

text:time-value[1] Attribute

Parent Elements - text:modification-time  - text:print-time  + text:creation-time  + text:time    Datatypes - time  + dateTime  + time    @@ -53719,6 +66069,10 @@

text:time-value[1] Attribute

  + + RNG Relations + text:time-value="<time> | <dateTime>"   +

text:time-value[2] Attribute

@@ -53727,15 +66081,14 @@

text:time-value[2] Attribute

Parent Elements - text:creation-time  - text:time  + text:modification-time  + text:print-time    Datatypes - dateTime  - time  + time    @@ -53743,6 +66096,10 @@

text:time-value[2] Attribute

  + + RNG Relations + text:time-value="<time>"   +

text:title Attribute

@@ -53756,7 +66113,7 @@

text:title Attribute

Datatypes - string  + string    @@ -53764,6 +66121,10 @@

text:title Attribute

  + + RNG Relations + CHOICE_NAME_CLASS="<string>"   +

text:track-changes Attribute

@@ -53782,10 +66143,14 @@

text:track-changes Attribute Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + text:track-changes="<boolean>"   +

text:url Attribute

@@ -53799,7 +66164,7 @@

text:url Attribute

Datatypes - string  + string    @@ -53807,6 +66172,10 @@

text:url Attribute

  + + RNG Relations + CHOICE_NAME_CLASS="<string>"   +

text:use-caption Attribute

@@ -53826,10 +66195,14 @@

text:use-caption Attribute

Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + text:use-caption="<boolean>"   +

text:use-chart-objects Attribute

@@ -53848,10 +66221,14 @@

text:use-chart-objects Attribut Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + text:use-chart-objects="<boolean>"   +

text:use-draw-objects Attribute

@@ -53870,10 +66247,14 @@

text:use-draw-objects Attribute< Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + text:use-draw-objects="<boolean>"   +

text:use-floating-frames Attribute

@@ -53892,10 +66273,14 @@

text:use-floating-frames Attr Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + text:use-floating-frames="<boolean>"   +

text:use-graphics Attribute

@@ -53914,10 +66299,14 @@

text:use-graphics Attribute

Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + text:use-graphics="<boolean>"   +

text:use-index-marks Attribute

@@ -53937,10 +66326,14 @@

text:use-index-marks Attribute Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + text:use-index-marks="<boolean>"   +

text:use-index-source-styles Attribute

@@ -53960,10 +66353,14 @@

text:use-index-source-sty Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + text:use-index-source-styles="<boolean>"   +

text:use-keys-as-entries Attribute

@@ -53982,10 +66379,14 @@

text:use-keys-as-entries Attr Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + text:use-keys-as-entries="<boolean>"   +

text:use-math-objects Attribute

@@ -54004,10 +66405,14 @@

text:use-math-objects Attribute< Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + text:use-math-objects="<boolean>"   +

text:use-objects Attribute

@@ -54026,10 +66431,14 @@

text:use-objects Attribute

Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + text:use-objects="<boolean>"   +

text:use-other-objects Attribute

@@ -54048,10 +66457,14 @@

text:use-other-objects Attribut Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + text:use-other-objects="<boolean>"   +

text:use-outline-level Attribute

@@ -54070,10 +66483,14 @@

text:use-outline-level Attribut Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + text:use-outline-level="<boolean>"   +

text:use-soft-page-breaks Attribute (new in ODF 1.1)

@@ -54092,10 +66509,14 @@

text:use-soft-page-breaks At Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + text:use-soft-page-breaks="<boolean>"   +

text:use-spreadsheet-objects Attribute

@@ -54114,10 +66535,14 @@

text:use-spreadsheet-obje Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + text:use-spreadsheet-objects="<boolean>"   +

text:use-tables Attribute

@@ -54136,10 +66561,14 @@

text:use-tables Attribute

Values - "false"  - "true"  + "false"  + "true"    + + RNG Relations + text:use-tables="<boolean>"   +

text:value[1] Attribute

@@ -54148,13 +66577,13 @@

text:value[1] Attribute

Parent Elements - text:database-row-number  + text:label    Datatypes - nonNegativeInteger  + string    @@ -54162,6 +66591,10 @@

text:value[1] Attribute

  + + RNG Relations + text:value="<string>"   +

text:value[2] Attribute

@@ -54170,13 +66603,13 @@

text:value[2] Attribute

Parent Elements - text:label  + text:database-row-number    Datatypes - string  + nonNegativeInteger    @@ -54184,6 +66617,10 @@

text:value[2] Attribute

  + + RNG Relations + text:value="<nonNegativeInteger>"   +

text:visited-style-name Attribute

@@ -54197,7 +66634,7 @@

text:visited-style-name Attrib Datatypes - NCName  + NCName    @@ -54205,6 +66642,10 @@

text:visited-style-name Attrib   + + RNG Relations + text:visited-style-name="(<NCName>)?"   +

text:volume Attribute

@@ -54218,7 +66659,7 @@

text:volume Attribute

Datatypes - string  + string    @@ -54226,6 +66667,10 @@

text:volume Attribute

  + + RNG Relations + CHOICE_NAME_CLASS="<string>"   +

text:year Attribute

@@ -54239,7 +66684,7 @@

text:year Attribute

Datatypes - string  + string    @@ -54247,6 +66692,10 @@

text:year Attribute

  + + RNG Relations + CHOICE_NAME_CLASS="<string>"   +

xforms:bind Attribute

@@ -54280,7 +66729,7 @@

xforms:bind Attribute

Datatypes - string  + string    @@ -54288,6 +66737,10 @@

xforms:bind Attribute

  + + RNG Relations + xforms:bind="<string>"   +

xhtml:about Attribute (new in ODF 1.2)

@@ -54306,8 +66759,8 @@

xhtml:about Attribute (new in ODF Datatypes - anyURI  - string  + anyURI  + string    @@ -54315,6 +66768,10 @@

xhtml:about Attribute (new in ODF   + + RNG Relations + xhtml:about="<anyURI> | string]"   +

xhtml:content Attribute (new in ODF 1.2)

@@ -54333,7 +66790,7 @@

xhtml:content Attribute (new in Datatypes - string  + string    @@ -54341,6 +66798,10 @@

xhtml:content Attribute (new in   + + RNG Relations + xhtml:content="<string>"   +

xhtml:datatype Attribute (new in ODF 1.2)

@@ -54359,7 +66820,7 @@

xhtml:datatype Attribute (new Datatypes - string  + string    @@ -54367,6 +66828,10 @@

xhtml:datatype Attribute (new   + + RNG Relations + xhtml:datatype="string]"   +

xhtml:property Attribute (new in ODF 1.2)

@@ -54385,7 +66850,7 @@

xhtml:property Attribute (new Datatypes - string  + string    @@ -54393,6 +66858,12 @@

xhtml:property Attribute (new   + + RNG Relations + xhtml:property=" +START_list(string])+ +END_list"   +

xlink:actuate[1] Attribute

@@ -54424,9 +66895,13 @@

xlink:actuate[1] Attribute

Values - "onRequest"  + "onRequest"    + + RNG Relations + xlink:actuate="onRequest"   +

xlink:actuate[2] Attribute

@@ -54455,9 +66930,13 @@

xlink:actuate[2] Attribute

Values - "onLoad"  + "onLoad"    + + RNG Relations + xlink:actuate="onLoad"   +

xlink:href Attribute

@@ -54506,7 +66985,7 @@

xlink:href Attribute

Datatypes - anyURI  + anyURI    @@ -54514,6 +66993,10 @@

xlink:href Attribute

  + + RNG Relations + xlink:href="<anyIRI>"   +

xlink:show[1] Attribute

@@ -54539,10 +67022,14 @@

xlink:show[1] Attribute

Values - "new"  - "replace"  + "new"  + "replace"    + + RNG Relations + xlink:show="new | replace"   +

xlink:show[2] Attribute

@@ -54572,9 +67059,13 @@

xlink:show[2] Attribute

Values - "embed"  + "embed"    + + RNG Relations + xlink:show="embed"   +

xlink:show[3] Attribute

@@ -54595,9 +67086,13 @@

xlink:show[3] Attribute

Values - "none"  + "none"    + + RNG Relations + xlink:show="none"   +

xlink:show[4] Attribute

@@ -54617,9 +67112,13 @@

xlink:show[4] Attribute

Values - "replace"  + "replace"    + + RNG Relations + xlink:show="replace"   +

xlink:title Attribute (new in ODF 1.2)

@@ -54633,7 +67132,7 @@

xlink:title Attribute (new in ODF Datatypes - string  + string    @@ -54641,6 +67140,10 @@

xlink:title Attribute (new in ODF   + + RNG Relations + xlink:title="<string>"   +

xlink:type Attribute

@@ -54689,9 +67192,13 @@

xlink:type Attribute

Values - "simple"  + "simple"    + + RNG Relations + xlink:type="simple"   +

xml:id Attribute (new in ODF 1.2)

@@ -54791,7 +67298,7 @@

xml:id Attribute (new in ODF 1.2)

Datatypes - ID  + ID    @@ -54799,6 +67306,10 @@

xml:id Attribute (new in ODF 1.2)

  + + RNG Relations + xml:id="<ID>"   +
From a1cd9879b2fabb84f0036aad36c661fd70abdfea Mon Sep 17 00:00:00 2001 From: Svante Schubert Date: Tue, 27 Sep 2022 15:04:53 +0200 Subject: [PATCH 3/4] Adjusting pom.xml to MSV 2022.8-SNAPSHOT with comment that this branch requires the MSV namespace-prefix2 branch in order to create the prefixes in the OdfReference.html --- pom.xml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index a7760336dd..ed9dbfd21b 100644 --- a/pom.xml +++ b/pom.xml @@ -84,7 +84,9 @@ net.java.dev.msv msv-core - 2022.7 + + 2022.8-SNAPSHOT net.rootdev From 05924316ba70326614301d9774aec5727b8d5a35 Mon Sep 17 00:00:00 2001 From: Svante Schubert Date: Tue, 27 Sep 2022 16:19:47 +0200 Subject: [PATCH 4/4] Adjusting type reference to # hash prefix instead of < > brackets as type would be too close to elements look --- ...ressionVisitorDescendantsAsHTMLString.java | 18 +- .../OdfReference.html | 30 +- .../OdfReference.html | 30 +- .../OdfReference.html | 40 +- .../OdfReference.html | 50 +- .../odf-schema-1.0/OdfReference.html | 3958 +++++------ .../odf-schema-1.1/OdfReference.html | 4118 ++++++------ .../odf-schema-1.2/OdfReference.html | 5776 ++++++++-------- .../odf-schema-1.3/OdfReference.html | 5852 ++++++++--------- 9 files changed, 9936 insertions(+), 9936 deletions(-) diff --git a/generator/schema2template/src/main/java/schema2template/grammar/MSVExpressionVisitorDescendantsAsHTMLString.java b/generator/schema2template/src/main/java/schema2template/grammar/MSVExpressionVisitorDescendantsAsHTMLString.java index f6571cbc01..7c464711ed 100644 --- a/generator/schema2template/src/main/java/schema2template/grammar/MSVExpressionVisitorDescendantsAsHTMLString.java +++ b/generator/schema2template/src/main/java/schema2template/grammar/MSVExpressionVisitorDescendantsAsHTMLString.java @@ -258,11 +258,11 @@ public void onData(DataExp exp) { builder.append( "<" + + "\">#" + dti.getName() - + ">"); + + ""); } else if (exp.name.equals("anyIRI")) { - builder.append("<anyIRI\">"); + builder.append("#anyIRI"); } else if (isPredefinedType(dt)) { // it's a MSV pre-defined type. builder.append(""); @@ -294,11 +294,11 @@ public void onRef(ReferenceExp exp) { builder.append( "<" + + "\">#" + exp.name - + ">"); + + ""); } else if (exp.name.equals("anyIRI")) { - builder.append("<anyIRI>"); + builder.append("#anyIRI"); } else { exp.exp.visit(this); } @@ -311,11 +311,11 @@ public void onRef(ReferenceExp exp) { builder.append( "<" + + "\">#" + exp.name - + ">"); + + ""); } else if (exp.name.equals("anyIRI")) { - builder.append("<anyIRI>"); + builder.append("#anyIRI"); } else { builder.append("<xsd:ref name=\"" + exp.name + "\"/>"); } diff --git a/generator/schema2template/src/test/resources/test-reference/odf/generation/odf-reference/odf-package-manifest-1.0/OdfReference.html b/generator/schema2template/src/test/resources/test-reference/odf/generation/odf-reference/odf-package-manifest-1.0/OdfReference.html index e9bb888cbf..58c7e6e33b 100644 --- a/generator/schema2template/src/test/resources/test-reference/odf/generation/odf-reference/odf-package-manifest-1.0/OdfReference.html +++ b/generator/schema2template/src/test/resources/test-reference/odf/generation/odf-reference/odf-package-manifest-1.0/OdfReference.html @@ -51,7 +51,7 @@

manifest:algorithm Element

Child Relations - <manifest:algorithm manifest:algorithm-name="<string>" manifest:initialisation-vector="<base64Binary>" >  + <manifest:algorithm manifest:algorithm-name="#string" manifest:initialisation-vector="#base64Binary" > 
@@ -80,7 +80,7 @@

manifest:encryption-data Elemen Child Relations - <manifest:encryption-data manifest:checksum-type="<string>" manifest:checksum="<base64Binary>" <manifest:algorithm ... ><manifest:key-derivation ... >>  + <manifest:encryption-data manifest:checksum-type="#string" manifest:checksum="#base64Binary" <manifest:algorithm ... ><manifest:key-derivation ... >> 
@@ -109,8 +109,8 @@

manifest:file-entry Element

Child Relations - <manifest:file-entry manifest:full-path="<string>" (manifest:size="<nonNegativeInteger>" )? - manifest:media-type="<string>" (<manifest:encryption-data ... >)? + <manifest:file-entry manifest:full-path="#string" (manifest:size="#nonNegativeInteger" )? + manifest:media-type="#string" (<manifest:encryption-data ... >)? >  @@ -139,7 +139,7 @@

manifest:key-derivation Element< Child Relations - <manifest:key-derivation manifest:key-derivation-name="<string>" manifest:salt="<base64Binary>" manifest:iteration-count="<nonNegativeInteger>" >  + <manifest:key-derivation manifest:key-derivation-name="#string" manifest:salt="#base64Binary" manifest:iteration-count="#nonNegativeInteger" > 
@@ -189,7 +189,7 @@

manifest:algorithm-name Attrib RNG Relations - manifest:algorithm-name="<string>"   + manifest:algorithm-name="#string"  
@@ -214,7 +214,7 @@

manifest:checksum Attribute

RNG Relations - manifest:checksum="<base64Binary>"   + manifest:checksum="#base64Binary"  
@@ -239,7 +239,7 @@

manifest:checksum-type Attribut RNG Relations - manifest:checksum-type="<string>"   + manifest:checksum-type="#string"  
@@ -264,7 +264,7 @@

manifest:full-path Attribute RNG Relations - manifest:full-path="<string>"   + manifest:full-path="#string"  
@@ -289,7 +289,7 @@

manifest:initialisation RNG Relations - manifest:initialisation-vector="<base64Binary>"   + manifest:initialisation-vector="#base64Binary"  
@@ -314,7 +314,7 @@

manifest:iteration-count Attr RNG Relations - manifest:iteration-count="<nonNegativeInteger>"   + manifest:iteration-count="#nonNegativeInteger"  
@@ -339,7 +339,7 @@

manifest:key-derivation-n RNG Relations - manifest:key-derivation-name="<string>"   + manifest:key-derivation-name="#string"  
@@ -364,7 +364,7 @@

manifest:media-type Attribute< RNG Relations - manifest:media-type="<string>"   + manifest:media-type="#string"  
@@ -389,7 +389,7 @@

manifest:salt Attribute

RNG Relations - manifest:salt="<base64Binary>"   + manifest:salt="#base64Binary"  
@@ -414,7 +414,7 @@

manifest:size Attribute

RNG Relations - manifest:size="<nonNegativeInteger>"   + manifest:size="#nonNegativeInteger"  
diff --git a/generator/schema2template/src/test/resources/test-reference/odf/generation/odf-reference/odf-package-manifest-1.1/OdfReference.html b/generator/schema2template/src/test/resources/test-reference/odf/generation/odf-reference/odf-package-manifest-1.1/OdfReference.html index 5c0059cc47..f9ab58da2f 100644 --- a/generator/schema2template/src/test/resources/test-reference/odf/generation/odf-reference/odf-package-manifest-1.1/OdfReference.html +++ b/generator/schema2template/src/test/resources/test-reference/odf/generation/odf-reference/odf-package-manifest-1.1/OdfReference.html @@ -51,7 +51,7 @@

manifest:algorithm Element

Child Relations - <manifest:algorithm manifest:algorithm-name="<string>" manifest:initialisation-vector="<base64Binary>" >  + <manifest:algorithm manifest:algorithm-name="#string" manifest:initialisation-vector="#base64Binary" > 
@@ -80,7 +80,7 @@

manifest:encryption-data Elemen Child Relations - <manifest:encryption-data manifest:checksum-type="<string>" manifest:checksum="<base64Binary>" <manifest:algorithm ... ><manifest:key-derivation ... >>  + <manifest:encryption-data manifest:checksum-type="#string" manifest:checksum="#base64Binary" <manifest:algorithm ... ><manifest:key-derivation ... >> 
@@ -109,8 +109,8 @@

manifest:file-entry Element

Child Relations - <manifest:file-entry manifest:full-path="<string>" (manifest:size="<nonNegativeInteger>" )? - manifest:media-type="<string>" (<manifest:encryption-data ... >)? + <manifest:file-entry manifest:full-path="#string" (manifest:size="#nonNegativeInteger" )? + manifest:media-type="#string" (<manifest:encryption-data ... >)? >  @@ -139,7 +139,7 @@

manifest:key-derivation Element< Child Relations - <manifest:key-derivation manifest:key-derivation-name="<string>" manifest:salt="<base64Binary>" manifest:iteration-count="<nonNegativeInteger>" >  + <manifest:key-derivation manifest:key-derivation-name="#string" manifest:salt="#base64Binary" manifest:iteration-count="#nonNegativeInteger" > 
@@ -189,7 +189,7 @@

manifest:algorithm-name Attrib RNG Relations - manifest:algorithm-name="<string>"   + manifest:algorithm-name="#string"  
@@ -214,7 +214,7 @@

manifest:checksum Attribute

RNG Relations - manifest:checksum="<base64Binary>"   + manifest:checksum="#base64Binary"  
@@ -239,7 +239,7 @@

manifest:checksum-type Attribut RNG Relations - manifest:checksum-type="<string>"   + manifest:checksum-type="#string"  
@@ -264,7 +264,7 @@

manifest:full-path Attribute RNG Relations - manifest:full-path="<string>"   + manifest:full-path="#string"  
@@ -289,7 +289,7 @@

manifest:initialisation RNG Relations - manifest:initialisation-vector="<base64Binary>"   + manifest:initialisation-vector="#base64Binary"  
@@ -314,7 +314,7 @@

manifest:iteration-count Attr RNG Relations - manifest:iteration-count="<nonNegativeInteger>"   + manifest:iteration-count="#nonNegativeInteger"  
@@ -339,7 +339,7 @@

manifest:key-derivation-n RNG Relations - manifest:key-derivation-name="<string>"   + manifest:key-derivation-name="#string"  
@@ -364,7 +364,7 @@

manifest:media-type Attribute< RNG Relations - manifest:media-type="<string>"   + manifest:media-type="#string"  
@@ -389,7 +389,7 @@

manifest:salt Attribute

RNG Relations - manifest:salt="<base64Binary>"   + manifest:salt="#base64Binary"  
@@ -414,7 +414,7 @@

manifest:size Attribute

RNG Relations - manifest:size="<nonNegativeInteger>"   + manifest:size="#nonNegativeInteger"  
diff --git a/generator/schema2template/src/test/resources/test-reference/odf/generation/odf-reference/odf-package-manifest-1.2/OdfReference.html b/generator/schema2template/src/test/resources/test-reference/odf/generation/odf-reference/odf-package-manifest-1.2/OdfReference.html index 5ee8852b2d..74add5b76b 100644 --- a/generator/schema2template/src/test/resources/test-reference/odf/generation/odf-reference/odf-package-manifest-1.2/OdfReference.html +++ b/generator/schema2template/src/test/resources/test-reference/odf/generation/odf-reference/odf-package-manifest-1.2/OdfReference.html @@ -53,7 +53,7 @@

manifest:algorithm Element

Child Relations - <manifest:algorithm manifest:algorithm-name="Blowfish CFB | <anyURI>" manifest:initialisation-vector="<base64Binary>" (<*:* ... >)* >  + <manifest:algorithm manifest:algorithm-name="Blowfish CFB | #anyURI" manifest:initialisation-vector="#base64Binary" (<*:* ... >)* > 
@@ -83,7 +83,7 @@

manifest:encryption-data Elemen Child Relations - <manifest:encryption-data manifest:checksum-type="SHA1/1K | <anyURI>" manifest:checksum="<base64Binary>" <manifest:algorithm ... > (<manifest:start-key-generation ... >)? + <manifest:encryption-data manifest:checksum-type="SHA1/1K | #anyURI" manifest:checksum="#base64Binary" <manifest:algorithm ... > (<manifest:start-key-generation ... >)? <manifest:key-derivation ... >>  @@ -115,9 +115,9 @@

manifest:file-entry Element

Child Relations - <manifest:file-entry manifest:full-path="<string>" (manifest:size="<nonNegativeInteger>" )? - manifest:media-type="<string>" (manifest:preferred-view-mode="edit | presentation-slide-show | read-only | QName]" )? - (manifest:version="<string>" )? + <manifest:file-entry manifest:full-path="#string" (manifest:size="#nonNegativeInteger" )? + manifest:media-type="#string" (manifest:preferred-view-mode="edit | presentation-slide-show | read-only | QName]" )? + (manifest:version="#string" )? (<manifest:encryption-data ... >)? >  @@ -148,7 +148,7 @@

manifest:key-derivation Element< Child Relations - <manifest:key-derivation manifest:key-derivation-name="PBKDF2 | <anyURI>" manifest:salt="<base64Binary>" manifest:iteration-count="<nonNegativeInteger>" (manifest:key-size="<nonNegativeInteger>" )? + <manifest:key-derivation manifest:key-derivation-name="PBKDF2 | #anyURI" manifest:salt="#base64Binary" manifest:iteration-count="#nonNegativeInteger" (manifest:key-size="#nonNegativeInteger" )? >  @@ -202,7 +202,7 @@

manifest:start-key-generat Child Relations - <manifest:start-key-generation manifest:start-key-generation-name="SHA1 | <anyURI>" (manifest:key-size="<nonNegativeInteger>" )? + <manifest:start-key-generation manifest:start-key-generation-name="SHA1 | #anyURI" (manifest:key-size="#nonNegativeInteger" )? >  @@ -229,7 +229,7 @@

manifest:algorithm-name Attrib RNG Relations - manifest:algorithm-name="Blowfish CFB | <anyURI>"   + manifest:algorithm-name="Blowfish CFB | #anyURI"  
@@ -254,7 +254,7 @@

manifest:checksum Attribute

RNG Relations - manifest:checksum="<base64Binary>"   + manifest:checksum="#base64Binary"  
@@ -280,7 +280,7 @@

manifest:checksum-type Attribut RNG Relations - manifest:checksum-type="SHA1/1K | <anyURI>"   + manifest:checksum-type="SHA1/1K | #anyURI"  
@@ -305,7 +305,7 @@

manifest:full-path Attribute RNG Relations - manifest:full-path="<string>"   + manifest:full-path="#string"  
@@ -330,7 +330,7 @@

manifest:initialisation RNG Relations - manifest:initialisation-vector="<base64Binary>"   + manifest:initialisation-vector="#base64Binary"  
@@ -355,7 +355,7 @@

manifest:iteration-count Attr RNG Relations - manifest:iteration-count="<nonNegativeInteger>"   + manifest:iteration-count="#nonNegativeInteger"  
@@ -381,7 +381,7 @@

manifest:key-derivation-n RNG Relations - manifest:key-derivation-name="PBKDF2 | <anyURI>"   + manifest:key-derivation-name="PBKDF2 | #anyURI"  
@@ -407,7 +407,7 @@

manifest:key-size Attribute  RNG Relations - manifest:key-size="<nonNegativeInteger>"   + manifest:key-size="#nonNegativeInteger"  
@@ -432,7 +432,7 @@

manifest:media-type Attribute< RNG Relations - manifest:media-type="<string>"   + manifest:media-type="#string"  
@@ -485,7 +485,7 @@

manifest:salt Attribute

RNG Relations - manifest:salt="<base64Binary>"   + manifest:salt="#base64Binary"  
@@ -510,7 +510,7 @@

manifest:size Attribute

RNG Relations - manifest:size="<nonNegativeInteger>"   + manifest:size="#nonNegativeInteger"  
@@ -536,7 +536,7 @@

manifest:start-key- RNG Relations - manifest:start-key-generation-name="SHA1 | <anyURI>"   + manifest:start-key-generation-name="SHA1 | #anyURI"  
@@ -588,7 +588,7 @@

manifest:version[2] Attribute&nbs RNG Relations - manifest:version="<string>"   + manifest:version="#string"  
diff --git a/generator/schema2template/src/test/resources/test-reference/odf/generation/odf-reference/odf-package-manifest-1.3/OdfReference.html b/generator/schema2template/src/test/resources/test-reference/odf/generation/odf-reference/odf-package-manifest-1.3/OdfReference.html index 1bf6df9d30..f258da7252 100644 --- a/generator/schema2template/src/test/resources/test-reference/odf/generation/odf-reference/odf-package-manifest-1.3/OdfReference.html +++ b/generator/schema2template/src/test/resources/test-reference/odf/generation/odf-reference/odf-package-manifest-1.3/OdfReference.html @@ -76,7 +76,7 @@

manifest:CipherValue Element&nb Child Relations - <manifest:CipherValue <base64Binary>>  + <manifest:CipherValue #base64Binary
@@ -129,7 +129,7 @@

manifest:PGPKeyID Element (ne Child Relations - <manifest:PGPKeyID <base64Binary>>  + <manifest:PGPKeyID #base64Binary
@@ -154,7 +154,7 @@

manifest:PGPKeyPacket Element& Child Relations - <manifest:PGPKeyPacket <base64Binary>>  + <manifest:PGPKeyPacket #base64Binary
@@ -182,7 +182,7 @@

manifest:algorithm Element

Child Relations - <manifest:algorithm manifest:algorithm-name="Blowfish CFB | <anyURI>" manifest:initialisation-vector="<base64Binary>" (<*:* ... >)* >  + <manifest:algorithm manifest:algorithm-name="Blowfish CFB | #anyURI" manifest:initialisation-vector="#base64Binary" (<*:* ... >)* > 
@@ -241,7 +241,7 @@

manifest:encryption-data Elemen Child Relations - <manifest:encryption-data manifest:checksum-type="SHA1/1K | <anyURI>" manifest:checksum="<base64Binary>" <manifest:algorithm ... > (<manifest:start-key-generation ... >)? + <manifest:encryption-data manifest:checksum-type="SHA1/1K | #anyURI" manifest:checksum="#base64Binary" <manifest:algorithm ... > (<manifest:start-key-generation ... >)? <manifest:key-derivation ... >>  @@ -268,7 +268,7 @@

manifest:encryption-method El Child Relations - <manifest:encryption-method manifest:PGPAlgorithm="<anyURI>" >  + <manifest:encryption-method manifest:PGPAlgorithm="#anyURI" > 
@@ -299,9 +299,9 @@

manifest:file-entry Element

Child Relations - <manifest:file-entry manifest:full-path="<string>" (manifest:size="<nonNegativeInteger>" )? - manifest:media-type="<string>" (manifest:preferred-view-mode="edit | presentation-slide-show | read-only | QName]" )? - (manifest:version="<string>" )? + <manifest:file-entry manifest:full-path="#string" (manifest:size="#nonNegativeInteger" )? + manifest:media-type="#string" (manifest:preferred-view-mode="edit | presentation-slide-show | read-only | QName]" )? + (manifest:version="#string" )? (<manifest:encryption-data ... >)? >  @@ -333,7 +333,7 @@

manifest:key-derivation Element< Child Relations - <manifest:key-derivation manifest:key-derivation-name="PGP" | manifest:key-derivation-name="PBKDF2 | <anyURI>" manifest:salt="<base64Binary>" manifest:iteration-count="<nonNegativeInteger>" (manifest:key-size="<nonNegativeInteger>" )? + <manifest:key-derivation manifest:key-derivation-name="PGP" | manifest:key-derivation-name="PBKDF2 | #anyURI" manifest:salt="#base64Binary" manifest:iteration-count="#nonNegativeInteger" (manifest:key-size="#nonNegativeInteger" )? >  @@ -414,7 +414,7 @@

manifest:start-key-generat Child Relations - <manifest:start-key-generation manifest:start-key-generation-name="SHA1 | <anyURI>" (manifest:key-size="<nonNegativeInteger>" )? + <manifest:start-key-generation manifest:start-key-generation-name="SHA1 | #anyURI" (manifest:key-size="#nonNegativeInteger" )? >  @@ -440,7 +440,7 @@

manifest:PGPAlgorithm Attribute< RNG Relations - manifest:PGPAlgorithm="<anyURI>"   + manifest:PGPAlgorithm="#anyURI"  
@@ -466,7 +466,7 @@

manifest:algorithm-name Attrib RNG Relations - manifest:algorithm-name="Blowfish CFB | <anyURI>"   + manifest:algorithm-name="Blowfish CFB | #anyURI"  
@@ -491,7 +491,7 @@

manifest:checksum Attribute

RNG Relations - manifest:checksum="<base64Binary>"   + manifest:checksum="#base64Binary"  
@@ -517,7 +517,7 @@

manifest:checksum-type Attribut RNG Relations - manifest:checksum-type="SHA1/1K | <anyURI>"   + manifest:checksum-type="SHA1/1K | #anyURI"  
@@ -542,7 +542,7 @@

manifest:full-path Attribute RNG Relations - manifest:full-path="<string>"   + manifest:full-path="#string"  
@@ -567,7 +567,7 @@

manifest:initialisation RNG Relations - manifest:initialisation-vector="<base64Binary>"   + manifest:initialisation-vector="#base64Binary"  
@@ -592,7 +592,7 @@

manifest:iteration-count Attr RNG Relations - manifest:iteration-count="<nonNegativeInteger>"   + manifest:iteration-count="#nonNegativeInteger"  
@@ -645,7 +645,7 @@

manifest:key-derivation-n RNG Relations - manifest:key-derivation-name="PBKDF2 | <anyURI>"   + manifest:key-derivation-name="PBKDF2 | #anyURI"  
@@ -671,7 +671,7 @@

manifest:key-size Attribute  RNG Relations - manifest:key-size="<nonNegativeInteger>"   + manifest:key-size="#nonNegativeInteger"  
@@ -696,7 +696,7 @@

manifest:media-type Attribute< RNG Relations - manifest:media-type="<string>"   + manifest:media-type="#string"  
@@ -749,7 +749,7 @@

manifest:salt Attribute

RNG Relations - manifest:salt="<base64Binary>"   + manifest:salt="#base64Binary"  
@@ -774,7 +774,7 @@

manifest:size Attribute

RNG Relations - manifest:size="<nonNegativeInteger>"   + manifest:size="#nonNegativeInteger"  
@@ -800,7 +800,7 @@

manifest:start-key- RNG Relations - manifest:start-key-generation-name="SHA1 | <anyURI>"   + manifest:start-key-generation-name="SHA1 | #anyURI"  
@@ -852,7 +852,7 @@

manifest:version[2] Attribute&nbs RNG Relations - manifest:version="<string>"   + manifest:version="#string"  
diff --git a/generator/schema2template/src/test/resources/test-reference/odf/generation/odf-reference/odf-schema-1.0/OdfReference.html b/generator/schema2template/src/test/resources/test-reference/odf/generation/odf-reference/odf-schema-1.0/OdfReference.html index 3b375a19d4..c08d380277 100644 --- a/generator/schema2template/src/test/resources/test-reference/odf/generation/odf-reference/odf-schema-1.0/OdfReference.html +++ b/generator/schema2template/src/test/resources/test-reference/odf/generation/odf-reference/odf-schema-1.0/OdfReference.html @@ -70,18 +70,18 @@

anim:animate Element

Child Relations - <anim:animate (smil:targetElement="<IDREF>" )? - (anim:sub-item="<string>" )? - smil:attributeName="<string>" (smil:values="<string>" )? - (anim:formula="<string>" )? + <anim:animate (smil:targetElement="#IDREF" )? + (anim:sub-item="#string" )? + smil:attributeName="#string" (smil:values="#string" )? + (anim:formula="#string" )? - ( (smil:to="<string>" )? - (smil:from="<string>" )? - (smil:by="<string>" )? + ( (smil:to="#string" )? + (smil:from="#string" )? + (smil:by="#string" )? ) (smil:calcMode="discrete | linear | paced | spline" )? - (smil:keyTimes="<string>" )? - (smil:keySplines="<string>" )? - (smil:repeatDur="<string>" smil:repeatCount="<nonNegativeInteger>" )? + (smil:keyTimes="#string" )? + (smil:keySplines="#string" )? + (smil:repeatDur="#string" smil:repeatCount="#nonNegativeInteger" )? (smil:fill="remove | freeze | hold | auto | default | transition" )? (smil:accumulate="none | sum" )? (smil:additive="replace | sum" )? @@ -128,19 +128,19 @@

anim:animateColor Element

Child Relations - <anim:animateColor (smil:targetElement="<IDREF>" )? - (anim:sub-item="<string>" )? - smil:attributeName="<string>" (smil:accumulate="none | sum" )? + <anim:animateColor (smil:targetElement="#IDREF" )? + (anim:sub-item="#string" )? + smil:attributeName="#string" (smil:accumulate="none | sum" )? (smil:additive="replace | sum" )? - (smil:values="<string>" )? - (anim:formula="<string>" )? + (smil:values="#string" )? + (anim:formula="#string" )? - ( (smil:to="<string>" )? - (smil:from="<string>" )? - (smil:by="<string>" )? + ( (smil:to="#string" )? + (smil:from="#string" )? + (smil:by="#string" )? ) (smil:calcMode="discrete | linear | paced | spline" )? - (smil:keyTimes="<string>" )? - (smil:keySplines="<string>" )? + (smil:keyTimes="#string" )? + (smil:keySplines="#string" )? (anim:color-interpolation="rgb | hsl" )? (anim:color-interpolation-direction="clockwise | counter-clockwise" )? (smil:fill="remove | freeze | hold | auto | default | transition" )? @@ -187,22 +187,22 @@

anim:animateMotion Element

Child Relations - <anim:animateMotion (svg:path="<string>" )? - (svg:origin="<string>" )? + <anim:animateMotion (svg:path="#string" )? + (svg:origin="#string" )? (smil:calcMode="discrete | linear | paced | spline" )? - (smil:targetElement="<IDREF>" )? - (anim:sub-item="<string>" )? - smil:attributeName="<string>" (smil:accumulate="none | sum" )? + (smil:targetElement="#IDREF" )? + (anim:sub-item="#string" )? + smil:attributeName="#string" (smil:accumulate="none | sum" )? (smil:additive="replace | sum" )? - (smil:values="<string>" )? - (anim:formula="<string>" )? + (smil:values="#string" )? + (anim:formula="#string" )? - ( (smil:to="<string>" )? - (smil:from="<string>" )? - (smil:by="<string>" )? + ( (smil:to="#string" )? + (smil:from="#string" )? + (smil:by="#string" )? ) (smil:fill="remove | freeze | hold | auto | default | transition" )? - (smil:keyTimes="<string>" )? - (smil:keySplines="<string>" )? + (smil:keyTimes="#string" )? + (smil:keySplines="#string" )? >  @@ -242,16 +242,16 @@

anim:animateTransform Element< Child Relations - <anim:animateTransform (smil:targetElement="<IDREF>" )? - (anim:sub-item="<string>" )? - smil:attributeName="<string>" (smil:accumulate="none | sum" )? + <anim:animateTransform (smil:targetElement="#IDREF" )? + (anim:sub-item="#string" )? + smil:attributeName="#string" (smil:accumulate="none | sum" )? (smil:additive="replace | sum" )? - (smil:values="<string>" )? - (anim:formula="<string>" )? + (smil:values="#string" )? + (anim:formula="#string" )? - ( (smil:to="<string>" )? - (smil:from="<string>" )? - (smil:by="<string>" )? + ( (smil:to="#string" )? + (smil:from="#string" )? + (smil:by="#string" )? )svg:type="translate | scale | rotate | skewX | skewY" (smil:fill="remove | freeze | hold | auto | default | transition" )? >  @@ -295,19 +295,19 @@

anim:audio Element

Child Relations <anim:audio (presentation:node-type="default | on-click | with-previous | after-previous | timing-root | main-sequence | interactive-sequence" )? - (presentation:preset-id="<string>" )? - (presentation:preset-sub-type="<string>" )? + (presentation:preset-id="#string" )? + (presentation:preset-sub-type="#string" )? (presentation:preset-class="custom | entrance | exit | emphasis | motion-path | ole-action | media-call" )? - (presentation:master-element="<IDREF>" )? - (presentation:group-id="<string>" )? - (anim:id="<ID>" )? - (xlink:href="<anyURI>" )? - (anim:audio-level="<double>" )? + (presentation:master-element="#IDREF" )? + (presentation:group-id="#string" )? + (anim:id="#ID" )? + (xlink:href="#anyURI" )? + (anim:audio-level="#double" )? - ( (smil:begin="<string>" )? - (smil:end="<string>" )? - (smil:dur="<string>" )? - (smil:repeatDur="<string>" smil:repeatCount="<nonNegativeInteger>" )? + ( (smil:begin="#string" )? + (smil:end="#string" )? + (smil:dur="#string" )? + (smil:repeatDur="#string" smil:repeatCount="#nonNegativeInteger" )? )>  @@ -349,16 +349,16 @@

anim:command Element

Child Relations <anim:command (presentation:node-type="default | on-click | with-previous | after-previous | timing-root | main-sequence | interactive-sequence" )? - (presentation:preset-id="<string>" )? - (presentation:preset-sub-type="<string>" )? + (presentation:preset-id="#string" )? + (presentation:preset-sub-type="#string" )? (presentation:preset-class="custom | entrance | exit | emphasis | motion-path | ole-action | media-call" )? - (presentation:master-element="<IDREF>" )? - (presentation:group-id="<string>" )? - (anim:id="<ID>" )? - anim:command="<string>" (smil:begin="<string>" )? - (smil:end="<string>" )? - (smil:targetElement="<IDREF>" )? - (anim:sub-item="<string>" )? + (presentation:master-element="#IDREF" )? + (presentation:group-id="#string" )? + (anim:id="#ID" )? + anim:command="#string" (smil:begin="#string" )? + (smil:end="#string" )? + (smil:targetElement="#IDREF" )? + (anim:sub-item="#string" )? (<anim:param ... >)* >  @@ -421,28 +421,28 @@

anim:iterate Element

Child Relations <anim:iterate (presentation:node-type="default | on-click | with-previous | after-previous | timing-root | main-sequence | interactive-sequence" )? - (presentation:preset-id="<string>" )? - (presentation:preset-sub-type="<string>" )? + (presentation:preset-id="#string" )? + (presentation:preset-sub-type="#string" )? (presentation:preset-class="custom | entrance | exit | emphasis | motion-path | ole-action | media-call" )? - (presentation:master-element="<IDREF>" )? - (presentation:group-id="<string>" )? - (anim:id="<ID>" )? - (smil:targetElement="<IDREF>" )? - (anim:iterate-type="<string>" )? - (anim:iterate-interval="<duration>" )? + (presentation:master-element="#IDREF" )? + (presentation:group-id="#string" )? + (anim:id="#ID" )? + (smil:targetElement="#IDREF" )? + (anim:iterate-type="#string" )? + (anim:iterate-interval="#duration" )? ( - ( (smil:begin="<string>" )? - (smil:end="<string>" )? - (smil:dur="<string>" )? - (smil:repeatDur="<string>" smil:repeatCount="<nonNegativeInteger>" )? + ( (smil:begin="#string" )? + (smil:end="#string" )? + (smil:dur="#string" )? + (smil:repeatDur="#string" smil:repeatCount="#nonNegativeInteger" )? ) (smil:restart="never | always | whenNotActive | default" )? (smil:restartDefault="never | always | whenNotActive | inherit" )? (smil:fill="remove | freeze | hold | auto | default | transition" )? (smil:fillDefault="remove | freeze | hold | transition | auto | inherit" )? - (smil:accelerate="<double>" )? - (smil:decelerate="<double>" )? - (smil:autoReverse="<boolean>" )? + (smil:accelerate="#double" )? + (smil:decelerate="#double" )? + (smil:autoReverse="#boolean" )? ) (smil:endsync="first | last | all | media" )? (<anim:animate ... > | <anim:set ... > | <anim:animateMotion ... > | <anim:animateColor ... > | <anim:animateTransform ... > | <anim:transitionFilter ... > | <anim:par ... > | <anim:seq ... > | <anim:iterate ... > | <anim:audio ... > | <anim:command ... >)* >  @@ -503,25 +503,25 @@

anim:par Element

Child Relations <anim:par (presentation:node-type="default | on-click | with-previous | after-previous | timing-root | main-sequence | interactive-sequence" )? - (presentation:preset-id="<string>" )? - (presentation:preset-sub-type="<string>" )? + (presentation:preset-id="#string" )? + (presentation:preset-sub-type="#string" )? (presentation:preset-class="custom | entrance | exit | emphasis | motion-path | ole-action | media-call" )? - (presentation:master-element="<IDREF>" )? - (presentation:group-id="<string>" )? - (anim:id="<ID>" )? + (presentation:master-element="#IDREF" )? + (presentation:group-id="#string" )? + (anim:id="#ID" )? ( - ( (smil:begin="<string>" )? - (smil:end="<string>" )? - (smil:dur="<string>" )? - (smil:repeatDur="<string>" smil:repeatCount="<nonNegativeInteger>" )? + ( (smil:begin="#string" )? + (smil:end="#string" )? + (smil:dur="#string" )? + (smil:repeatDur="#string" smil:repeatCount="#nonNegativeInteger" )? ) (smil:restart="never | always | whenNotActive | default" )? (smil:restartDefault="never | always | whenNotActive | inherit" )? (smil:fill="remove | freeze | hold | auto | default | transition" )? (smil:fillDefault="remove | freeze | hold | transition | auto | inherit" )? - (smil:accelerate="<double>" )? - (smil:decelerate="<double>" )? - (smil:autoReverse="<boolean>" )? + (smil:accelerate="#double" )? + (smil:decelerate="#double" )? + (smil:autoReverse="#boolean" )? ) (smil:endsync="first | last | all | media" )? (<anim:animate ... > | <anim:set ... > | <anim:animateMotion ... > | <anim:animateColor ... > | <anim:animateTransform ... > | <anim:transitionFilter ... > | <anim:par ... > | <anim:seq ... > | <anim:iterate ... > | <anim:audio ... > | <anim:command ... >)* >  @@ -598,26 +598,26 @@

anim:seq Element

Child Relations <anim:seq (presentation:node-type="default | on-click | with-previous | after-previous | timing-root | main-sequence | interactive-sequence" )? - (presentation:preset-id="<string>" )? - (presentation:preset-sub-type="<string>" )? + (presentation:preset-id="#string" )? + (presentation:preset-sub-type="#string" )? (presentation:preset-class="custom | entrance | exit | emphasis | motion-path | ole-action | media-call" )? - (presentation:master-element="<IDREF>" )? - (presentation:group-id="<string>" )? - (anim:id="<ID>" )? + (presentation:master-element="#IDREF" )? + (presentation:group-id="#string" )? + (anim:id="#ID" )? (smil:endsync="first | last | all | media" )? ( - ( (smil:begin="<string>" )? - (smil:end="<string>" )? - (smil:dur="<string>" )? - (smil:repeatDur="<string>" smil:repeatCount="<nonNegativeInteger>" )? + ( (smil:begin="#string" )? + (smil:end="#string" )? + (smil:dur="#string" )? + (smil:repeatDur="#string" smil:repeatCount="#nonNegativeInteger" )? ) (smil:restart="never | always | whenNotActive | default" )? (smil:restartDefault="never | always | whenNotActive | inherit" )? (smil:fill="remove | freeze | hold | auto | default | transition" )? (smil:fillDefault="remove | freeze | hold | transition | auto | inherit" )? - (smil:accelerate="<double>" )? - (smil:decelerate="<double>" )? - (smil:autoReverse="<boolean>" )? + (smil:accelerate="#double" )? + (smil:decelerate="#double" )? + (smil:autoReverse="#boolean" )? )>  @@ -652,9 +652,9 @@

anim:set Element

Child Relations - <anim:set (smil:targetElement="<IDREF>" )? - (anim:sub-item="<string>" )? - smil:attributeName="<string>" (smil:to="<string>" )? + <anim:set (smil:targetElement="#IDREF" )? + (anim:sub-item="#string" )? + smil:attributeName="#string" (smil:to="#string" )? (smil:fill="remove | freeze | hold | auto | default | transition" )? (smil:accumulate="none | sum" )? (smil:additive="replace | sum" )? @@ -701,18 +701,18 @@

anim:transitionFilter Element< Child Relations - <anim:transitionFilter (smil:targetElement="<IDREF>" )? - (anim:sub-item="<string>" )? + <anim:transitionFilter (smil:targetElement="#IDREF" )? + (anim:sub-item="#string" )? (smil:accumulate="none | sum" )? (smil:additive="replace | sum" )? - (smil:values="<string>" )? - (anim:formula="<string>" )? + (smil:values="#string" )? + (anim:formula="#string" )? - ( (smil:to="<string>" )? - (smil:from="<string>" )? - (smil:by="<string>" )? + ( (smil:to="#string" )? + (smil:from="#string" )? + (smil:by="#string" )? ) (smil:calcMode="discrete | linear | paced | spline" )? - smil:type="<string>" (smil:subtype="<string>" )? + smil:type="#string" (smil:subtype="#string" )? (smil:direction="forward | reverse" )? (smil:fadeColor="forward | reverse" )? (smil:mode="in | out" )? @@ -748,8 +748,8 @@

chart:axis Element

Child Relations - <chart:axis chart:dimension="x | y | z" (chart:name="<string>" )? - (chart:style-name="(<NCName>)?" )? + <chart:axis chart:dimension="x | y | z" (chart:name="#string" )? + (chart:style-name="(#NCName)?" )? (<chart:title ... >)? (<chart:categories ... >)? (<chart:grid ... >)* >  @@ -819,9 +819,9 @@

chart:chart Element

<chart:chart chart:class="string]" ( (svg:width="string]" )? (svg:height="string]" )? - ) (chart:column-mapping="<string>" )? - (chart:row-mapping="<string>" )? - (chart:style-name="(<NCName>)?" )? + ) (chart:column-mapping="#string" )? + (chart:row-mapping="#string" )? + (chart:style-name="(#NCName)?" )? (<chart:title ... >)? (<chart:subtitle ... >)? (<chart:footer ... >)? @@ -854,8 +854,8 @@

chart:data-point Element

Child Relations - <chart:data-point (chart:repeated="<nonNegativeInteger>" )? - (chart:style-name="(<NCName>)?" )? + <chart:data-point (chart:repeated="#nonNegativeInteger" )? + (chart:style-name="(#NCName)?" )? >  @@ -909,7 +909,7 @@

chart:error-indicator Element< Child Relations - <chart:error-indicator (chart:style-name="(<NCName>)?" )? + <chart:error-indicator (chart:style-name="(#NCName)?" )? >  @@ -938,7 +938,7 @@

chart:floor Element

Child Relations <chart:floor (svg:width="string]" )? - (chart:style-name="(<NCName>)?" )? + (chart:style-name="(#NCName)?" )? >  @@ -973,7 +973,7 @@

chart:footer Element

( (svg:x="string]" )? (svg:y="string]" )? - ) (chart:style-name="(<NCName>)?" )? + ) (chart:style-name="(#NCName)?" )? (<text:p ... >)? >  @@ -1003,7 +1003,7 @@

chart:grid Element

Child Relations <chart:grid (chart:class="major | minor" )? - (chart:style-name="(<NCName>)?" )? + (chart:style-name="(#NCName)?" )? >  @@ -1045,8 +1045,8 @@

chart:legend Element

( (svg:x="string]" )? (svg:y="string]" )? ) (style:legend-expansion="wide | high | balanced" | - (style:legend-expansion="custom" style:legend-expansion-aspect-ratio="<double>" ))? - (chart:style-name="(<NCName>)?" )? + (style:legend-expansion="custom" style:legend-expansion-aspect-ratio="#double" ))? + (chart:style-name="(#NCName)?" )? >  @@ -1073,7 +1073,7 @@

chart:mean-value Element

Child Relations - <chart:mean-value (chart:style-name="(<NCName>)?" )? + <chart:mean-value (chart:style-name="(#NCName)?" )? >  @@ -1132,7 +1132,7 @@

chart:plot-area Element

) ( (svg:width="string]" )? (svg:height="string]" )? - )) (chart:style-name="(<NCName>)?" )? + )) (chart:style-name="(#NCName)?" )? (table:cell-range-address="string]" )? (chart:data-source-has-labels="none | row | column | both" )? @@ -1143,10 +1143,10 @@

chart:plot-area Element

) (dr3d:projection="parallel | perspective" )? (dr3d:distance="string]" )? (dr3d:focal-length="string]" )? - (dr3d:shadow-slant="<nonNegativeInteger>" )? + (dr3d:shadow-slant="#nonNegativeInteger" )? (dr3d:shade-mode="flat | phong | gouraud | draft" )? (dr3d:ambient-color="string]" )? - (dr3d:lighting-mode="<boolean>" )? + (dr3d:lighting-mode="#boolean" )? (dr3d:transform="TEXT" )? )(<dr3d:light ... >)* (<chart:axis ... >)* (<chart:series ... >)* (<chart:stock-gain-marker ... >)? (<chart:stock-loss-marker ... >)? @@ -1179,7 +1179,7 @@

chart:regression-curve Element Child Relations - <chart:regression-curve (chart:style-name="(<NCName>)?" )? + <chart:regression-curve (chart:style-name="(#NCName)?" )? >  @@ -1218,8 +1218,8 @@

chart:series Element

<chart:series (chart:values-cell-range-address="string]" )? (chart:label-cell-address="string]" )? (chart:class="string]" )? - (chart:attached-axis="<string>" )? - (chart:style-name="(<NCName>)?" )? + (chart:attached-axis="#string" )? + (chart:style-name="(#NCName)?" )? (<chart:domain ... >)* (<chart:mean-value ... >)? (<chart:regression-curve ... >)? (<chart:error-indicator ... >)? @@ -1249,7 +1249,7 @@

chart:stock-gain-marker Element< Child Relations - <chart:stock-gain-marker (chart:style-name="(<NCName>)?" )? + <chart:stock-gain-marker (chart:style-name="(#NCName)?" )? >  @@ -1276,7 +1276,7 @@

chart:stock-loss-marker Element< Child Relations - <chart:stock-loss-marker (chart:style-name="(<NCName>)?" )? + <chart:stock-loss-marker (chart:style-name="(#NCName)?" )? >  @@ -1303,7 +1303,7 @@

chart:stock-range-line Element Child Relations - <chart:stock-range-line (chart:style-name="(<NCName>)?" )? + <chart:stock-range-line (chart:style-name="(#NCName)?" )? >  @@ -1338,7 +1338,7 @@

chart:subtitle Element

( (svg:x="string]" )? (svg:y="string]" )? - ) (chart:style-name="(<NCName>)?" )? + ) (chart:style-name="(#NCName)?" )? (<text:p ... >)? >  @@ -1375,7 +1375,7 @@

chart:title Element

( (svg:x="string]" )? (svg:y="string]" )? - ) (chart:style-name="(<NCName>)?" )? + ) (chart:style-name="(#NCName)?" )? (<text:p ... >)? >  @@ -1405,7 +1405,7 @@

chart:wall Element

Child Relations <chart:wall (svg:width="string]" )? - (chart:style-name="(<NCName>)?" )? + (chart:style-name="(#NCName)?" )? >  @@ -1435,7 +1435,7 @@

config:config-item Element

Child Relations - <config:config-item config:name="<string>" config:type="boolean | short | int | long | double | string | datetime | base64Binary" TEXT>  + <config:config-item config:name="#string" config:type="boolean | short | int | long | double | string | datetime | base64Binary" TEXT> 
@@ -1466,7 +1466,7 @@

config:config-item-map-entr Child Relations - <config:config-item-map-entry (config:name="<string>" )? + <config:config-item-map-entry (config:name="#string" )? (<config:config-item ... > | <config:config-item-set ... > | <config:config-item-map-named ... > | <config:config-item-map-indexed ... >)+ >  @@ -1495,7 +1495,7 @@

config:config-item-map-in Child Relations - <config:config-item-map-indexed config:name="<string>" (<config:config-item-map-entry ... >)+ >  + <config:config-item-map-indexed config:name="#string" (<config:config-item-map-entry ... >)+ > 
@@ -1523,7 +1523,7 @@

config:config-item-map-name Child Relations - <config:config-item-map-named config:name="<string>" (<config:config-item-map-entry ... >)+ >  + <config:config-item-map-named config:name="#string" (<config:config-item-map-entry ... >)+ > 
@@ -1555,7 +1555,7 @@

config:config-item-set Element Child Relations - <config:config-item-set config:name="<string>" (<config:config-item ... > | <config:config-item-set ... > | <config:config-item-map-named ... > | <config:config-item-map-indexed ... >)+ >  + <config:config-item-set config:name="#string" (<config:config-item ... > | <config:config-item-set ... > | <config:config-item-map-named ... > | <config:config-item-map-indexed ... >)+ > 
@@ -1581,7 +1581,7 @@

dc:creator Element

Child Relations - <dc:creator <string>>  + <dc:creator #string
@@ -1607,7 +1607,7 @@

dc:date Element

Child Relations - <dc:date <dateTime>>  + <dc:date #dateTime
@@ -1645,18 +1645,18 @@

dr3d:cube Element

<dr3d:cube ( (dr3d:min-edge="string]" )? (dr3d:max-edge="string]" )? - ) (draw:z-index="<nonNegativeInteger>" )? - (draw:id="<ID>" )? - (draw:layer="<string>" )? + ) (draw:z-index="#nonNegativeInteger" )? + (draw:id="#ID" )? + (draw:layer="#string" )? - ( (draw:style-name="(<NCName>)?" )? + ( (draw:style-name="(#NCName)?" )? (draw:class-names=" -START_list(<NCName>)* +START_list(#NCName)* END_list" )? ) | - ( (presentation:style-name="(<NCName>)?" )? + ( (presentation:style-name="(#NCName)?" )? (presentation:class-names=" -START_list(<NCName>)* +START_list(#NCName)* END_list" )? ) (dr3d:transform="TEXT" )? >  @@ -1694,20 +1694,20 @@

dr3d:extrude Element

Child Relations - <dr3d:extrude svg:d="<string>" svg:viewBox=" -START_list<integer><integer><integer><integer> -END_list" (draw:id="<ID>" )? - (draw:z-index="<nonNegativeInteger>" )? - (draw:layer="<string>" )? + <dr3d:extrude svg:d="#string" svg:viewBox=" +START_list#integer#integer#integer#integer +END_list" (draw:id="#ID" )? + (draw:z-index="#nonNegativeInteger" )? + (draw:layer="#string" )? - ( (draw:style-name="(<NCName>)?" )? + ( (draw:style-name="(#NCName)?" )? (draw:class-names=" -START_list(<NCName>)* +START_list(#NCName)* END_list" )? ) | - ( (presentation:style-name="(<NCName>)?" )? + ( (presentation:style-name="(#NCName)?" )? (presentation:class-names=" -START_list(<NCName>)* +START_list(#NCName)* END_list" )? ) (dr3d:transform="TEXT" )? >  @@ -1741,8 +1741,8 @@

dr3d:light Element

Child Relations <dr3d:light (dr3d:diffuse-color="string]" )? - dr3d:direction="string]" (dr3d:enabled="<boolean>" )? - (dr3d:specular="<boolean>" )? + dr3d:direction="string]" (dr3d:enabled="#boolean" )? + (dr3d:specular="#boolean" )? >  @@ -1779,19 +1779,19 @@

dr3d:rotate Element

Child Relations <dr3d:rotate svg:viewBox=" -START_list<integer><integer><integer><integer> -END_list" svg:d="<string>" (draw:z-index="<nonNegativeInteger>" )? - (draw:id="<ID>" )? - (draw:layer="<string>" )? +START_list#integer#integer#integer#integer +END_list" svg:d="#string" (draw:z-index="#nonNegativeInteger" )? + (draw:id="#ID" )? + (draw:layer="#string" )? - ( (draw:style-name="(<NCName>)?" )? + ( (draw:style-name="(#NCName)?" )? (draw:class-names=" -START_list(<NCName>)* +START_list(#NCName)* END_list" )? ) | - ( (presentation:style-name="(<NCName>)?" )? + ( (presentation:style-name="(#NCName)?" )? (presentation:class-names=" -START_list(<NCName>)* +START_list(#NCName)* END_list" )? ) (dr3d:transform="TEXT" )? >  @@ -1880,10 +1880,10 @@

dr3d:scene Element

) (dr3d:projection="parallel | perspective" )? (dr3d:distance="string]" )? (dr3d:focal-length="string]" )? - (dr3d:shadow-slant="<nonNegativeInteger>" )? + (dr3d:shadow-slant="#nonNegativeInteger" )? (dr3d:shade-mode="flat | phong | gouraud | draft" )? (dr3d:ambient-color="string]" )? - (dr3d:lighting-mode="<boolean>" )? + (dr3d:lighting-mode="#boolean" )? ( (svg:x="string]" )? (svg:y="string]" )? @@ -1891,25 +1891,25 @@

dr3d:scene Element

( (svg:width="string]" )? (svg:height="string]" )? ) - ( (draw:style-name="(<NCName>)?" )? + ( (draw:style-name="(#NCName)?" )? (draw:class-names=" -START_list(<NCName>)* +START_list(#NCName)* END_list" )? ) | - ( (presentation:style-name="(<NCName>)?" )? + ( (presentation:style-name="(#NCName)?" )? (presentation:class-names=" -START_list(<NCName>)* +START_list(#NCName)* END_list" )? - ) (draw:z-index="<nonNegativeInteger>" )? - (draw:id="<ID>" )? - (draw:layer="<string>" )? + ) (draw:z-index="#nonNegativeInteger" )? + (draw:id="#ID" )? + (draw:layer="#string" )? ( (table:end-cell-address="string]" )? (table:end-x="string]" )? (table:end-y="string]" )? - ) (table:table-background="<boolean>" )? + ) (table:table-background="#boolean" )? (text:anchor-type="page | frame | paragraph | char | as-char" )? - (text:anchor-page-number="<positiveInteger>" )? + (text:anchor-page-number="#positiveInteger" )? (dr3d:transform="TEXT" )? (<dr3d:light ... >)* (<dr3d:scene ... > | <dr3d:extrude ... > | <dr3d:sphere ... > | <dr3d:rotate ... > | <dr3d:cube ... >)* >  @@ -1948,18 +1948,18 @@

dr3d:sphere Element

Child Relations <dr3d:sphere (dr3d:center="string]" )? (dr3d:size="string]" )? - (draw:z-index="<nonNegativeInteger>" )? - (draw:id="<ID>" )? - (draw:layer="<string>" )? + (draw:z-index="#nonNegativeInteger" )? + (draw:id="#ID" )? + (draw:layer="#string" )? - ( (draw:style-name="(<NCName>)?" )? + ( (draw:style-name="(#NCName)?" )? (draw:class-names=" -START_list(<NCName>)* +START_list(#NCName)* END_list" )? ) | - ( (presentation:style-name="(<NCName>)?" )? + ( (presentation:style-name="(#NCName)?" )? (presentation:class-names=" -START_list(<NCName>)* +START_list(#NCName)* END_list" )? ) (dr3d:transform="TEXT" )? >  @@ -2009,13 +2009,13 @@

draw:a Element

Child Relations <draw:a - (xlink:href="<anyURI>" (xlink:type="simple" )? + (xlink:href="#anyURI" (xlink:type="simple" )? (xlink:actuate="onRequest" )? ) - ( (office:target-frame-name="_self | _blank | _parent | _top | <string>" )? + ( (office:target-frame-name="_self | _blank | _parent | _top | #string" )? (xlink:show="new | replace" )? - ) (office:name="<string>" )? - (office:server-map="<boolean>" )? + ) (office:name="#string" )? + (office:server-map="#boolean" )? <draw:frame ... >>  @@ -2053,9 +2053,9 @@

draw:applet Element

<draw:applet (draw:code="TEXT" )? (draw:object="TEXT" )? (draw:archive="TEXT" )? - (draw:may-script="<boolean>" )? + (draw:may-script="#boolean" )? ( - (xlink:href="<anyURI>" (xlink:type="simple" )? + (xlink:href="#anyURI" (xlink:type="simple" )? (xlink:show="embed" )? (xlink:actuate="onLoad" )? ))? @@ -2096,11 +2096,11 @@

draw:area-circle Element

Child Relations <draw:area-circle - ( (xlink:href="<anyURI>" )? + ( (xlink:href="#anyURI" )? (xlink:type="simple" )? - (office:target-frame-name="_self | _blank | _parent | _top | <string>" )? + (office:target-frame-name="_self | _blank | _parent | _top | #string" )? (xlink:show="new | replace" )? - ) (office:name="<string>" )? + ) (office:name="#string" )? (draw:nohref="nohref" )? svg:cx="string]" svg:cy="string]" svg:r="string]" (<svg:desc ... >)? (<office:event-listeners ... >)? @@ -2144,14 +2144,14 @@

draw:area-polygon Element

Child Relations <draw:area-polygon - ( (xlink:href="<anyURI>" )? + ( (xlink:href="#anyURI" )? (xlink:type="simple" )? - (office:target-frame-name="_self | _blank | _parent | _top | <string>" )? + (office:target-frame-name="_self | _blank | _parent | _top | #string" )? (xlink:show="new | replace" )? - ) (office:name="<string>" )? + ) (office:name="#string" )? (draw:nohref="nohref" )? svg:x="string]" svg:y="string]" svg:width="string]" svg:height="string]" svg:viewBox=" -START_list<integer><integer><integer><integer> +START_list#integer#integer#integer#integer END_list" draw:points="string]" (<svg:desc ... >)? (<office:event-listeners ... >)? >  @@ -2192,11 +2192,11 @@

draw:area-rectangle Element

Child Relations <draw:area-rectangle - ( (xlink:href="<anyURI>" )? + ( (xlink:href="#anyURI" )? (xlink:type="simple" )? - (office:target-frame-name="_self | _blank | _parent | _top | <string>" )? + (office:target-frame-name="_self | _blank | _parent | _top | #string" )? (xlink:show="new | replace" )? - ) (office:name="<string>" )? + ) (office:name="#string" )? (draw:nohref="nohref" )? svg:x="string]" svg:y="string]" svg:width="string]" svg:height="string]" (<svg:desc ... >)? (<office:event-listeners ... >)? @@ -2281,29 +2281,29 @@

draw:caption Element

(svg:height="string]" )? ) ( - ( (draw:z-index="<nonNegativeInteger>" )? - (draw:id="<ID>" )? - (draw:layer="<string>" )? + ( (draw:z-index="#nonNegativeInteger" )? + (draw:id="#ID" )? + (draw:layer="#string" )? - ( (draw:style-name="(<NCName>)?" )? + ( (draw:style-name="(#NCName)?" )? (draw:class-names=" -START_list(<NCName>)* +START_list(#NCName)* END_list" )? ) | - ( (presentation:style-name="(<NCName>)?" )? + ( (presentation:style-name="(#NCName)?" )? (presentation:class-names=" -START_list(<NCName>)* +START_list(#NCName)* END_list" )? - ) (draw:transform="<string>" )? - (draw:name="<string>" )? + ) (draw:transform="#string" )? + (draw:name="#string" )? ( (table:end-cell-address="string]" )? (table:end-x="string]" )? (table:end-y="string]" )? - ) (table:table-background="<boolean>" )? + ) (table:table-background="#boolean" )? (text:anchor-type="page | frame | paragraph | char | as-char" )? - (text:anchor-page-number="<positiveInteger>" )? - ) (draw:text-style-name="(<NCName>)?" )? + (text:anchor-page-number="#positiveInteger" )? + ) (draw:text-style-name="(#NCName)?" )? ) (<office:event-listeners ... >)? (<draw:glue-point ... >)* (<text:p ... > | <text:list ... >)* >  @@ -2382,8 +2382,8 @@

draw:circle Element

<draw:circle (svg:r="string]" )? (svg:cx="string]" svg:cy="string]" )? (draw:kind="full | section | cut | arc" )? - (draw:start-angle="<double>" )? - (draw:end-angle="<double>" )? + (draw:start-angle="#double" )? + (draw:end-angle="#double" )? ( (svg:x="string]" )? (svg:y="string]" )? @@ -2392,29 +2392,29 @@

draw:circle Element

(svg:height="string]" )? ) ( - ( (draw:z-index="<nonNegativeInteger>" )? - (draw:id="<ID>" )? - (draw:layer="<string>" )? + ( (draw:z-index="#nonNegativeInteger" )? + (draw:id="#ID" )? + (draw:layer="#string" )? - ( (draw:style-name="(<NCName>)?" )? + ( (draw:style-name="(#NCName)?" )? (draw:class-names=" -START_list(<NCName>)* +START_list(#NCName)* END_list" )? ) | - ( (presentation:style-name="(<NCName>)?" )? + ( (presentation:style-name="(#NCName)?" )? (presentation:class-names=" -START_list(<NCName>)* +START_list(#NCName)* END_list" )? - ) (draw:transform="<string>" )? - (draw:name="<string>" )? + ) (draw:transform="#string" )? + (draw:name="#string" )? ( (table:end-cell-address="string]" )? (table:end-x="string]" )? (table:end-y="string]" )? - ) (table:table-background="<boolean>" )? + ) (table:table-background="#boolean" )? (text:anchor-type="page | frame | paragraph | char | as-char" )? - (text:anchor-page-number="<positiveInteger>" )? - ) (draw:text-style-name="(<NCName>)?" )? + (text:anchor-page-number="#positiveInteger" )? + ) (draw:text-style-name="(#NCName)?" )? ) (<office:event-listeners ... >)? (<draw:glue-point ... >)* (<text:p ... > | <text:list ... >)* >  @@ -2492,39 +2492,39 @@

draw:connector Element

Child Relations <draw:connector (draw:type="standard | lines | line | curve" )? (svg:x1="string]" svg:y1="string]" )? - (draw:start-shape="<IDREF>" )? - (draw:start-glue-point="<nonNegativeInteger>" )? + (draw:start-shape="#IDREF" )? + (draw:start-glue-point="#nonNegativeInteger" )? (svg:x2="string]" svg:y2="string]" )? - (draw:end-shape="<IDREF>" )? - (draw:end-glue-point="<nonNegativeInteger>" )? + (draw:end-shape="#IDREF" )? + (draw:end-glue-point="#nonNegativeInteger" )? (draw:line-skew=" START_liststring](string](string])?)? END_list" )? ( - ( (draw:z-index="<nonNegativeInteger>" )? - (draw:id="<ID>" )? - (draw:layer="<string>" )? + ( (draw:z-index="#nonNegativeInteger" )? + (draw:id="#ID" )? + (draw:layer="#string" )? - ( (draw:style-name="(<NCName>)?" )? + ( (draw:style-name="(#NCName)?" )? (draw:class-names=" -START_list(<NCName>)* +START_list(#NCName)* END_list" )? ) | - ( (presentation:style-name="(<NCName>)?" )? + ( (presentation:style-name="(#NCName)?" )? (presentation:class-names=" -START_list(<NCName>)* +START_list(#NCName)* END_list" )? - ) (draw:transform="<string>" )? - (draw:name="<string>" )? + ) (draw:transform="#string" )? + (draw:name="#string" )? ( (table:end-cell-address="string]" )? (table:end-x="string]" )? (table:end-y="string]" )? - ) (table:table-background="<boolean>" )? + ) (table:table-background="#boolean" )? (text:anchor-type="page | frame | paragraph | char | as-char" )? - (text:anchor-page-number="<positiveInteger>" )? - ) (draw:text-style-name="(<NCName>)?" )? + (text:anchor-page-number="#positiveInteger" )? + ) (draw:text-style-name="(#NCName)?" )? ) (<office:event-listeners ... >)? (<draw:glue-point ... >)* (<text:p ... > | <text:list ... >)* >  @@ -2556,12 +2556,12 @@

draw:contour-path Element

Child Relations - <draw:contour-path draw:recreate-on-edit="<boolean>" + <draw:contour-path draw:recreate-on-edit="#boolean" ( (svg:width="string]" )? (svg:height="string]" )? )svg:viewBox=" -START_list<integer><integer><integer><integer> -END_list" svg:d="<string>" >  +START_list#integer#integer#integer#integer +END_list" svg:d="#string" > 
@@ -2591,11 +2591,11 @@

draw:contour-polygon Element Child Relations - <draw:contour-polygon draw:recreate-on-edit="<boolean>" + <draw:contour-polygon draw:recreate-on-edit="#boolean" ( (svg:width="string]" )? (svg:height="string]" )? )svg:viewBox=" -START_list<integer><integer><integer><integer> +START_list#integer#integer#integer#integer END_list" draw:points="string]" >  @@ -2662,7 +2662,7 @@

draw:control Element

Child Relations - <draw:control draw:control="<IDREF>" + <draw:control draw:control="#IDREF" ( (svg:x="string]" )? (svg:y="string]" )? ) @@ -2670,29 +2670,29 @@

draw:control Element

(svg:height="string]" )? ) ( - ( (draw:z-index="<nonNegativeInteger>" )? - (draw:id="<ID>" )? - (draw:layer="<string>" )? + ( (draw:z-index="#nonNegativeInteger" )? + (draw:id="#ID" )? + (draw:layer="#string" )? - ( (draw:style-name="(<NCName>)?" )? + ( (draw:style-name="(#NCName)?" )? (draw:class-names=" -START_list(<NCName>)* +START_list(#NCName)* END_list" )? ) | - ( (presentation:style-name="(<NCName>)?" )? + ( (presentation:style-name="(#NCName)?" )? (presentation:class-names=" -START_list(<NCName>)* +START_list(#NCName)* END_list" )? - ) (draw:transform="<string>" )? - (draw:name="<string>" )? + ) (draw:transform="#string" )? + (draw:name="#string" )? ( (table:end-cell-address="string]" )? (table:end-x="string]" )? (table:end-y="string]" )? - ) (table:table-background="<boolean>" )? + ) (table:table-background="#boolean" )? (text:anchor-type="page | frame | paragraph | char | as-char" )? - (text:anchor-page-number="<positiveInteger>" )? - ) (draw:text-style-name="(<NCName>)?" )? + (text:anchor-page-number="#positiveInteger" )? + ) (draw:text-style-name="(#NCName)?" )? )(<draw:glue-point ... >)* >  @@ -2765,7 +2765,7 @@

draw:custom-shape Element

Child Relations <draw:custom-shape (draw:engine="string]" )? - (draw:data="<string>" )? + (draw:data="#string" )? ( (svg:x="string]" )? (svg:y="string]" )? @@ -2774,29 +2774,29 @@

draw:custom-shape Element

(svg:height="string]" )? ) ( - ( (draw:z-index="<nonNegativeInteger>" )? - (draw:id="<ID>" )? - (draw:layer="<string>" )? + ( (draw:z-index="#nonNegativeInteger" )? + (draw:id="#ID" )? + (draw:layer="#string" )? - ( (draw:style-name="(<NCName>)?" )? + ( (draw:style-name="(#NCName)?" )? (draw:class-names=" -START_list(<NCName>)* +START_list(#NCName)* END_list" )? ) | - ( (presentation:style-name="(<NCName>)?" )? + ( (presentation:style-name="(#NCName)?" )? (presentation:class-names=" -START_list(<NCName>)* +START_list(#NCName)* END_list" )? - ) (draw:transform="<string>" )? - (draw:name="<string>" )? + ) (draw:transform="#string" )? + (draw:name="#string" )? ( (table:end-cell-address="string]" )? (table:end-x="string]" )? (table:end-y="string]" )? - ) (table:table-background="<boolean>" )? + ) (table:table-background="#boolean" )? (text:anchor-type="page | frame | paragraph | char | as-char" )? - (text:anchor-page-number="<positiveInteger>" )? - ) (draw:text-style-name="(<NCName>)?" )? + (text:anchor-page-number="#positiveInteger" )? + ) (draw:text-style-name="(#NCName)?" )? ) (<office:event-listeners ... >)? (<draw:glue-point ... >)* (<text:p ... > | <text:list ... >)* (<draw:enhanced-geometry ... >)? >  @@ -2876,8 +2876,8 @@

draw:ellipse Element

Child Relations <draw:ellipse (svg:cx="string]" svg:cy="string]" )? (draw:kind="full | section | cut | arc" )? - (draw:start-angle="<double>" )? - (draw:end-angle="<double>" )? + (draw:start-angle="#double" )? + (draw:end-angle="#double" )? (svg:rx="string]" svg:ry="string]" )? ( (svg:x="string]" )? @@ -2887,29 +2887,29 @@

draw:ellipse Element

(svg:height="string]" )? ) ( - ( (draw:z-index="<nonNegativeInteger>" )? - (draw:id="<ID>" )? - (draw:layer="<string>" )? + ( (draw:z-index="#nonNegativeInteger" )? + (draw:id="#ID" )? + (draw:layer="#string" )? - ( (draw:style-name="(<NCName>)?" )? + ( (draw:style-name="(#NCName)?" )? (draw:class-names=" -START_list(<NCName>)* +START_list(#NCName)* END_list" )? ) | - ( (presentation:style-name="(<NCName>)?" )? + ( (presentation:style-name="(#NCName)?" )? (presentation:class-names=" -START_list(<NCName>)* +START_list(#NCName)* END_list" )? - ) (draw:transform="<string>" )? - (draw:name="<string>" )? + ) (draw:transform="#string" )? + (draw:name="#string" )? ( (table:end-cell-address="string]" )? (table:end-x="string]" )? (table:end-y="string]" )? - ) (table:table-background="<boolean>" )? + ) (table:table-background="#boolean" )? (text:anchor-type="page | frame | paragraph | char | as-char" )? - (text:anchor-page-number="<positiveInteger>" )? - ) (draw:text-style-name="(<NCName>)?" )? + (text:anchor-page-number="#positiveInteger" )? + ) (draw:text-style-name="(#NCName)?" )? ) (<office:event-listeners ... >)? (<draw:glue-point ... >)* (<text:p ... > | <text:list ... >)* >  @@ -2981,61 +2981,61 @@

draw:enhanced-geometry Element Child Relations - <draw:enhanced-geometry (draw:type="non-primitive | <string>" )? + <draw:enhanced-geometry (draw:type="non-primitive | #string" )? (svg:viewBox=" -START_list<integer><integer><integer><integer> +START_list#integer#integer#integer#integer END_list" )? - ( (draw:mirror-vertical="<boolean>" )? - (draw:mirror-horizontal="<boolean>" )? - ) (draw:text-rotate-angle="<double>" )? - (draw:extrusion-allowed="<boolean>" )? - (draw:text-path-allowed="<boolean>" )? - (draw:concentric-gradient-fill-allowed="<boolean>" )? - (draw:extrusion="<boolean>" )? + ( (draw:mirror-vertical="#boolean" )? + (draw:mirror-horizontal="#boolean" )? + ) (draw:text-rotate-angle="#double" )? + (draw:extrusion-allowed="#boolean" )? + (draw:text-path-allowed="#boolean" )? + (draw:concentric-gradient-fill-allowed="#boolean" )? + (draw:extrusion="#boolean" )? (draw:extrusion-brightness="string]" )? (draw:extrusion-depth=" -START_liststring]<double> +START_liststring]#double END_list" )? (draw:extrusion-diffusion="string]" )? - (draw:extrusion-number-of-line-segments="<integer>" )? - (draw:extrusion-light-face="<boolean>" )? - (draw:extrusion-first-light-harsh="<boolean>" )? - (draw:extrusion-second-light-harsh="<boolean>" )? + (draw:extrusion-number-of-line-segments="#integer" )? + (draw:extrusion-light-face="#boolean" )? + (draw:extrusion-first-light-harsh="#boolean" )? + (draw:extrusion-second-light-harsh="#boolean" )? (draw:extrusion-first-light-level="string]" )? (draw:extrusion-second-light-level="string]" )? (draw:extrusion-first-light-direction="string]" )? (draw:extrusion-second-light-direction="string]" )? - (draw:extrusion-metal="<boolean>" )? + (draw:extrusion-metal="#boolean" )? (dr3d:shade-mode="flat | phong | gouraud | draft" )? (draw:extrusion-rotation-angle=" -START_list<double><double> +START_list#double#double END_list" )? (draw:extrusion-rotation-center="string]" )? (draw:extrusion-shininess="string]" )? (draw:extrusion-skew=" -START_list<double><double> +START_list#double#double END_list" )? (draw:extrusion-specularity="string]" )? (dr3d:projection="parallel | perspective" )? - (draw:extrusion-viewpoint="<string>" )? + (draw:extrusion-viewpoint="#string" )? (draw:extrusion-origin=" -START_list<double><double> +START_list#double#double END_list" )? - (draw:extrusion-color="<boolean>" )? - (draw:enhanced-path="<string>" )? + (draw:extrusion-color="#boolean" )? + (draw:enhanced-path="#string" )? - ( (draw:path-stretchpoint-x="<double>" )? - (draw:path-stretchpoint-y="<double>" )? - ) (draw:text-areas="<string>" )? - (draw:glue-points="<string>" )? + ( (draw:path-stretchpoint-x="#double" )? + (draw:path-stretchpoint-y="#double" )? + ) (draw:text-areas="#string" )? + (draw:glue-points="#string" )? (draw:glue-point-type="none | segments | rectangle" )? (draw:glue-point-leaving-directions="TEXT" )? - (draw:text-path="<boolean>" )? + (draw:text-path="#boolean" )? (draw:text-path-mode="normal | path | shape" )? (draw:text-path-scale="path | shape" )? - (draw:text-path-same-letter-heights="<boolean>" )? - (draw:modifiers="<string>" )? + (draw:text-path-same-letter-heights="#boolean" )? + (draw:modifiers="#string" )? (<draw:equation ... >)* (<draw:handle ... >)* >  @@ -3063,8 +3063,8 @@

draw:equation Element

Child Relations - <draw:equation (draw:name="<string>" )? - (draw:formula="<string>" )? + <draw:equation (draw:name="#string" )? + (draw:formula="#string" )? >  @@ -3098,11 +3098,11 @@

draw:fill-image Element

Child Relations - <draw:fill-image draw:name="<NCName>" (draw:display-name="<string>" )? + <draw:fill-image draw:name="#NCName" (draw:display-name="#string" )? ( (svg:width="string]" )? (svg:height="string]" )? - )xlink:href="<anyURI>" (xlink:type="simple" )? + )xlink:href="#anyURI" (xlink:type="simple" )? (xlink:show="embed" )? (xlink:actuate="onLoad" )? >  @@ -3135,9 +3135,9 @@

draw:floating-frame Element

Child Relations - <draw:floating-frame (draw:frame-name="<string>" )? + <draw:floating-frame (draw:frame-name="#string" )? - (xlink:href="<anyURI>" (xlink:type="simple" )? + (xlink:href="#anyURI" (xlink:type="simple" )? (xlink:show="embed" )? (xlink:actuate="onLoad" )? )>  @@ -3227,29 +3227,29 @@

draw:frame Element

Child Relations <draw:frame ( - ( (draw:z-index="<nonNegativeInteger>" )? - (draw:id="<ID>" )? - (draw:layer="<string>" )? + ( (draw:z-index="#nonNegativeInteger" )? + (draw:id="#ID" )? + (draw:layer="#string" )? - ( (draw:style-name="(<NCName>)?" )? + ( (draw:style-name="(#NCName)?" )? (draw:class-names=" -START_list(<NCName>)* +START_list(#NCName)* END_list" )? ) | - ( (presentation:style-name="(<NCName>)?" )? + ( (presentation:style-name="(#NCName)?" )? (presentation:class-names=" -START_list(<NCName>)* +START_list(#NCName)* END_list" )? - ) (draw:transform="<string>" )? - (draw:name="<string>" )? + ) (draw:transform="#string" )? + (draw:name="#string" )? ( (table:end-cell-address="string]" )? (table:end-x="string]" )? (table:end-y="string]" )? - ) (table:table-background="<boolean>" )? + ) (table:table-background="#boolean" )? (text:anchor-type="page | frame | paragraph | char | as-char" )? - (text:anchor-page-number="<positiveInteger>" )? - ) (draw:text-style-name="(<NCName>)?" )? + (text:anchor-page-number="#positiveInteger" )? + ) (draw:text-style-name="(#NCName)?" )? ) ( (svg:x="string]" )? (svg:y="string]" )? @@ -3260,9 +3260,9 @@

draw:frame Element

) (style:rel-width="string] | scale | scale-min" )? (style:rel-height="string] | scale | scale-min" )? ) (presentation:class="title | outline | subtitle | text | graphic | object | chart | table | orgchart | page | notes | handout | header | footer | date-time | page-number" )? - (presentation:placeholder="<boolean>" )? - (presentation:user-transformed="<boolean>" )? - (draw:copy-of="<string>" )? + (presentation:placeholder="#boolean" )? + (presentation:user-transformed="#boolean" )? + (draw:copy-of="#string" )? (<draw:text-box ... > | <draw:image ... > | <draw:object ... > | <draw:object-ole ... > | <draw:applet ... > | <draw:floating-frame ... > | <draw:plugin ... >)* (<office:event-listeners ... >)? (<draw:glue-point ... >)* (<draw:image-map ... >)? (<svg:desc ... >)? @@ -3345,26 +3345,26 @@

draw:g Element

Child Relations <draw:g (svg:y="string]" )? - (draw:z-index="<nonNegativeInteger>" )? - (draw:name="<string>" )? - (draw:id="<ID>" )? + (draw:z-index="#nonNegativeInteger" )? + (draw:name="#string" )? + (draw:id="#ID" )? - ( (draw:style-name="(<NCName>)?" )? + ( (draw:style-name="(#NCName)?" )? (draw:class-names=" -START_list(<NCName>)* +START_list(#NCName)* END_list" )? ) | - ( (presentation:style-name="(<NCName>)?" )? + ( (presentation:style-name="(#NCName)?" )? (presentation:class-names=" -START_list(<NCName>)* +START_list(#NCName)* END_list" )? ) ( (table:end-cell-address="string]" )? (table:end-x="string]" )? (table:end-y="string]" )? - ) (table:table-background="<boolean>" )? + ) (table:table-background="#boolean" )? (text:anchor-type="page | frame | paragraph | char | as-char" )? - (text:anchor-page-number="<positiveInteger>" )? + (text:anchor-page-number="#positiveInteger" )? (<office:event-listeners ... >)? (<draw:glue-point ... >)* (<draw:rect ... > | <draw:line ... > | <draw:polyline ... > | <draw:polygon ... > | <draw:regular-polygon ... > | <draw:path ... > | <draw:circle ... > | <draw:ellipse ... > | <draw:g ... > | <draw:page-thumbnail ... > | <draw:frame ... > | <draw:measure ... > | <draw:caption ... > | <draw:connector ... > | <draw:control ... > | <dr3d:scene ... > | <draw:custom-shape ... >)* >  @@ -3409,7 +3409,7 @@

draw:glue-point Element

Child Relations - <draw:glue-point draw:id="<nonNegativeInteger>" + <draw:glue-point draw:id="#nonNegativeInteger" (svg:x="string] | string]" svg:y="string] | string]" )draw:align="top-left | top | top-right | left | center | right | bottom-left | bottom-right" >  @@ -3446,12 +3446,12 @@

draw:gradient Element

Child Relations - <draw:gradient (draw:name="<NCName>" )? - (draw:display-name="<string>" )? + <draw:gradient (draw:name="#NCName" )? + (draw:display-name="#string" )? draw:style="linear | axial | radial | ellipsoid | square | rectangular" ( (draw:cx="string]" )? (draw:cy="string]" )? - ) (draw:angle="<integer>" )? + ) (draw:angle="#integer" )? (draw:border="string]" )? ( (draw:start-color="string]" )? @@ -3495,16 +3495,16 @@

draw:handle Element

Child Relations - <draw:handle (draw:handle-mirror-vertical="<boolean>" )? - (draw:handle-mirror-horizontal="<boolean>" )? - (draw:handle-switched="<boolean>" )? - draw:handle-position="<string>" (draw:handle-range-x-minimum="<string>" )? - (draw:handle-range-x-maximum="<string>" )? - (draw:handle-range-y-minimum="<string>" )? - (draw:handle-range-y-maximum="<string>" )? - (draw:handle-polar="<string>" )? - (draw:handle-radius-range-minimum="<string>" )? - (draw:handle-radius-range-maximum="<string>" )? + <draw:handle (draw:handle-mirror-vertical="#boolean" )? + (draw:handle-mirror-horizontal="#boolean" )? + (draw:handle-switched="#boolean" )? + draw:handle-position="#string" (draw:handle-range-x-minimum="#string" )? + (draw:handle-range-x-maximum="#string" )? + (draw:handle-range-y-minimum="#string" )? + (draw:handle-range-y-maximum="#string" )? + (draw:handle-polar="#string" )? + (draw:handle-radius-range-minimum="#string" )? + (draw:handle-radius-range-maximum="#string" )? >  @@ -3536,10 +3536,10 @@

draw:hatch Element

Child Relations - <draw:hatch draw:name="<NCName>" (draw:display-name="<string>" )? + <draw:hatch draw:name="#NCName" (draw:display-name="#string" )? draw:style="single | double | triple" (draw:color="string]" )? (draw:distance="string]" )? - (draw:rotation="<integer>" )? + (draw:rotation="#integer" )? >  @@ -3573,9 +3573,9 @@

draw:image Element

Child Relations - <draw:image (draw:filter-name="<string>" )? + <draw:image (draw:filter-name="#string" )? - (xlink:href="<anyURI>" (xlink:type="simple" )? + (xlink:href="#anyURI" (xlink:type="simple" )? (xlink:show="embed" )? (xlink:actuate="onLoad" )? ) | <office:binary-data ... >(<text:p ... > | <text:list ... >)* >  @@ -3634,7 +3634,7 @@

draw:layer Element

Child Relations - <draw:layer draw:name="<string>" (draw:protected="<boolean>" )? + <draw:layer draw:name="#string" (draw:protected="#boolean" )? (draw:display="always | screen | printer | none" )? >  @@ -3734,29 +3734,29 @@

draw:line Element

(svg:x1="string]" svg:y1="string]" ) (svg:x2="string]" svg:y2="string]" ) ( - ( (draw:z-index="<nonNegativeInteger>" )? - (draw:id="<ID>" )? - (draw:layer="<string>" )? + ( (draw:z-index="#nonNegativeInteger" )? + (draw:id="#ID" )? + (draw:layer="#string" )? - ( (draw:style-name="(<NCName>)?" )? + ( (draw:style-name="(#NCName)?" )? (draw:class-names=" -START_list(<NCName>)* +START_list(#NCName)* END_list" )? ) | - ( (presentation:style-name="(<NCName>)?" )? + ( (presentation:style-name="(#NCName)?" )? (presentation:class-names=" -START_list(<NCName>)* +START_list(#NCName)* END_list" )? - ) (draw:transform="<string>" )? - (draw:name="<string>" )? + ) (draw:transform="#string" )? + (draw:name="#string" )? ( (table:end-cell-address="string]" )? (table:end-x="string]" )? (table:end-y="string]" )? - ) (table:table-background="<boolean>" )? + ) (table:table-background="#boolean" )? (text:anchor-type="page | frame | paragraph | char | as-char" )? - (text:anchor-page-number="<positiveInteger>" )? - ) (draw:text-style-name="(<NCName>)?" )? + (text:anchor-page-number="#positiveInteger" )? + ) (draw:text-style-name="(#NCName)?" )? ) (<office:event-listeners ... >)? (<draw:glue-point ... >)* (<text:p ... > | <text:list ... >)* >  @@ -3787,10 +3787,10 @@

draw:marker Element

Child Relations - <draw:marker draw:name="<NCName>" (draw:display-name="<string>" )? + <draw:marker draw:name="#NCName" (draw:display-name="#string" )? svg:viewBox=" -START_list<integer><integer><integer><integer> -END_list" svg:d="<string>" >  +START_list#integer#integer#integer#integer +END_list" svg:d="#string" > 
@@ -3862,29 +3862,29 @@

draw:measure Element

(svg:x1="string]" svg:y1="string]" ) (svg:x2="string]" svg:y2="string]" ) ( - ( (draw:z-index="<nonNegativeInteger>" )? - (draw:id="<ID>" )? - (draw:layer="<string>" )? + ( (draw:z-index="#nonNegativeInteger" )? + (draw:id="#ID" )? + (draw:layer="#string" )? - ( (draw:style-name="(<NCName>)?" )? + ( (draw:style-name="(#NCName)?" )? (draw:class-names=" -START_list(<NCName>)* +START_list(#NCName)* END_list" )? ) | - ( (presentation:style-name="(<NCName>)?" )? + ( (presentation:style-name="(#NCName)?" )? (presentation:class-names=" -START_list(<NCName>)* +START_list(#NCName)* END_list" )? - ) (draw:transform="<string>" )? - (draw:name="<string>" )? + ) (draw:transform="#string" )? + (draw:name="#string" )? ( (table:end-cell-address="string]" )? (table:end-x="string]" )? (table:end-y="string]" )? - ) (table:table-background="<boolean>" )? + ) (table:table-background="#boolean" )? (text:anchor-type="page | frame | paragraph | char | as-char" )? - (text:anchor-page-number="<positiveInteger>" )? - ) (draw:text-style-name="(<NCName>)?" )? + (text:anchor-page-number="#positiveInteger" )? + ) (draw:text-style-name="(#NCName)?" )? ) (<office:event-listeners ... >)? (<draw:glue-point ... >)* (<text:p ... > | <text:list ... >)* >  @@ -3918,9 +3918,9 @@

draw:object Element

Child Relations - <draw:object (draw:notify-on-update-of-ranges="<string>" )? + <draw:object (draw:notify-on-update-of-ranges="#string" )? - (xlink:href="<anyURI>" (xlink:type="simple" )? + (xlink:href="#anyURI" (xlink:type="simple" )? (xlink:show="embed" )? (xlink:actuate="onLoad" )? ) | <office:document ... > | <math:math ... >>  @@ -3956,7 +3956,7 @@

draw:object-ole Element

Child Relations <draw:object-ole (draw:class-id="TEXT" )? - (xlink:href="<anyURI>" (xlink:type="simple" )? + (xlink:href="#anyURI" (xlink:type="simple" )? (xlink:show="embed" )? (xlink:actuate="onLoad" )? ) | <office:binary-data ... >>  @@ -3993,12 +3993,12 @@

draw:opacity Element

Child Relations - <draw:opacity (draw:name="<NCName>" )? - (draw:display-name="<string>" )? + <draw:opacity (draw:name="#NCName" )? + (draw:display-name="#string" )? draw:style="linear | axial | radial | ellipsoid | square | rectangular" ( (draw:cx="string]" )? (draw:cy="string]" )? - ) (draw:angle="<integer>" )? + ) (draw:angle="#integer" )? (draw:border="string]" )? ( (draw:start="string]" )? @@ -4068,13 +4068,13 @@

draw:page Element

Child Relations - <draw:page (presentation:use-header-name="<string>" )? - (presentation:use-footer-name="<string>" )? - (presentation:use-date-time-name="<string>" )? - (draw:name="<string>" )? - (draw:style-name="(<NCName>)?" )? - draw:master-page-name="(<NCName>)?" (presentation:presentation-page-layout-name="(<NCName>)?" )? - (draw:id="<ID>" )? + <draw:page (presentation:use-header-name="#string" )? + (presentation:use-footer-name="#string" )? + (presentation:use-date-time-name="#string" )? + (draw:name="#string" )? + (draw:style-name="(#NCName)?" )? + draw:master-page-name="(#NCName)?" (presentation:presentation-page-layout-name="(#NCName)?" )? + (draw:id="#ID" )? ( (<office:forms ... >)? )? (<draw:rect ... > | <draw:line ... > | <draw:polyline ... > | <draw:polygon ... > | <draw:regular-polygon ... > | <draw:path ... > | <draw:circle ... > | <draw:ellipse ... > | <draw:g ... > | <draw:page-thumbnail ... > | <draw:frame ... > | <draw:measure ... > | <draw:caption ... > | <draw:connector ... > | <draw:control ... > | <dr3d:scene ... > | <draw:custom-shape ... >)* (<presentation:animations ... > | <anim:animate ... > | <anim:set ... > | <anim:animateMotion ... > | <anim:animateColor ... > | <anim:animateTransform ... > | <anim:transitionFilter ... > | <anim:par ... > | <anim:seq ... > | <anim:iterate ... > | <anim:audio ... > | <anim:command ... >)? @@ -4146,7 +4146,7 @@

draw:page-thumbnail Element

Child Relations - <draw:page-thumbnail (draw:page-number="<positiveInteger>" )? + <draw:page-thumbnail (draw:page-number="#positiveInteger" )? ( (svg:x="string]" )? (svg:y="string]" )? @@ -4154,31 +4154,31 @@

draw:page-thumbnail Element

( (svg:width="string]" )? (svg:height="string]" )? ) (presentation:class="title | outline | subtitle | text | graphic | object | chart | table | orgchart | page | notes | handout | header | footer | date-time | page-number" )? - (presentation:placeholder="<boolean>" )? - (presentation:user-transformed="<boolean>" )? + (presentation:placeholder="#boolean" )? + (presentation:user-transformed="#boolean" )? - ( (draw:z-index="<nonNegativeInteger>" )? - (draw:id="<ID>" )? - (draw:layer="<string>" )? + ( (draw:z-index="#nonNegativeInteger" )? + (draw:id="#ID" )? + (draw:layer="#string" )? - ( (draw:style-name="(<NCName>)?" )? + ( (draw:style-name="(#NCName)?" )? (draw:class-names=" -START_list(<NCName>)* +START_list(#NCName)* END_list" )? ) | - ( (presentation:style-name="(<NCName>)?" )? + ( (presentation:style-name="(#NCName)?" )? (presentation:class-names=" -START_list(<NCName>)* +START_list(#NCName)* END_list" )? - ) (draw:transform="<string>" )? - (draw:name="<string>" )? + ) (draw:transform="#string" )? + (draw:name="#string" )? ( (table:end-cell-address="string]" )? (table:end-x="string]" )? (table:end-y="string]" )? - ) (table:table-background="<boolean>" )? + ) (table:table-background="#boolean" )? (text:anchor-type="page | frame | paragraph | char | as-char" )? - (text:anchor-page-number="<positiveInteger>" )? + (text:anchor-page-number="#positiveInteger" )? )>  @@ -4279,39 +4279,39 @@

draw:path Element

Child Relations - <draw:path svg:d="<string>" + <draw:path svg:d="#string" ( (svg:x="string]" )? (svg:y="string]" )? ) ( (svg:width="string]" )? (svg:height="string]" )? )svg:viewBox=" -START_list<integer><integer><integer><integer> +START_list#integer#integer#integer#integer END_list" ( - ( (draw:z-index="<nonNegativeInteger>" )? - (draw:id="<ID>" )? - (draw:layer="<string>" )? + ( (draw:z-index="#nonNegativeInteger" )? + (draw:id="#ID" )? + (draw:layer="#string" )? - ( (draw:style-name="(<NCName>)?" )? + ( (draw:style-name="(#NCName)?" )? (draw:class-names=" -START_list(<NCName>)* +START_list(#NCName)* END_list" )? ) | - ( (presentation:style-name="(<NCName>)?" )? + ( (presentation:style-name="(#NCName)?" )? (presentation:class-names=" -START_list(<NCName>)* +START_list(#NCName)* END_list" )? - ) (draw:transform="<string>" )? - (draw:name="<string>" )? + ) (draw:transform="#string" )? + (draw:name="#string" )? ( (table:end-cell-address="string]" )? (table:end-x="string]" )? (table:end-y="string]" )? - ) (table:table-background="<boolean>" )? + ) (table:table-background="#boolean" )? (text:anchor-type="page | frame | paragraph | char | as-char" )? - (text:anchor-page-number="<positiveInteger>" )? - ) (draw:text-style-name="(<NCName>)?" )? + (text:anchor-page-number="#positiveInteger" )? + ) (draw:text-style-name="(#NCName)?" )? ) (<office:event-listeners ... >)? (<draw:glue-point ... >)* (<text:p ... > | <text:list ... >)* >  @@ -4346,7 +4346,7 @@

draw:plugin Element

Child Relations <draw:plugin (draw:mime-type="TEXT" )? - (xlink:href="<anyURI>" (xlink:type="simple" )? + (xlink:href="#anyURI" (xlink:type="simple" )? (xlink:show="embed" )? (xlink:actuate="onLoad" )? )(<draw:param ... >)* >  @@ -4426,32 +4426,32 @@

draw:polygon Element

( (svg:width="string]" )? (svg:height="string]" )? )svg:viewBox=" -START_list<integer><integer><integer><integer> +START_list#integer#integer#integer#integer END_list" ( - ( (draw:z-index="<nonNegativeInteger>" )? - (draw:id="<ID>" )? - (draw:layer="<string>" )? + ( (draw:z-index="#nonNegativeInteger" )? + (draw:id="#ID" )? + (draw:layer="#string" )? - ( (draw:style-name="(<NCName>)?" )? + ( (draw:style-name="(#NCName)?" )? (draw:class-names=" -START_list(<NCName>)* +START_list(#NCName)* END_list" )? ) | - ( (presentation:style-name="(<NCName>)?" )? + ( (presentation:style-name="(#NCName)?" )? (presentation:class-names=" -START_list(<NCName>)* +START_list(#NCName)* END_list" )? - ) (draw:transform="<string>" )? - (draw:name="<string>" )? + ) (draw:transform="#string" )? + (draw:name="#string" )? ( (table:end-cell-address="string]" )? (table:end-x="string]" )? (table:end-y="string]" )? - ) (table:table-background="<boolean>" )? + ) (table:table-background="#boolean" )? (text:anchor-type="page | frame | paragraph | char | as-char" )? - (text:anchor-page-number="<positiveInteger>" )? - ) (draw:text-style-name="(<NCName>)?" )? + (text:anchor-page-number="#positiveInteger" )? + ) (draw:text-style-name="(#NCName)?" )? ) (<office:event-listeners ... >)? (<draw:glue-point ... >)* (<text:p ... > | <text:list ... >)* >  @@ -4530,32 +4530,32 @@

draw:polyline Element

( (svg:width="string]" )? (svg:height="string]" )? )svg:viewBox=" -START_list<integer><integer><integer><integer> +START_list#integer#integer#integer#integer END_list" ( - ( (draw:z-index="<nonNegativeInteger>" )? - (draw:id="<ID>" )? - (draw:layer="<string>" )? + ( (draw:z-index="#nonNegativeInteger" )? + (draw:id="#ID" )? + (draw:layer="#string" )? - ( (draw:style-name="(<NCName>)?" )? + ( (draw:style-name="(#NCName)?" )? (draw:class-names=" -START_list(<NCName>)* +START_list(#NCName)* END_list" )? ) | - ( (presentation:style-name="(<NCName>)?" )? + ( (presentation:style-name="(#NCName)?" )? (presentation:class-names=" -START_list(<NCName>)* +START_list(#NCName)* END_list" )? - ) (draw:transform="<string>" )? - (draw:name="<string>" )? + ) (draw:transform="#string" )? + (draw:name="#string" )? ( (table:end-cell-address="string]" )? (table:end-x="string]" )? (table:end-y="string]" )? - ) (table:table-background="<boolean>" )? + ) (table:table-background="#boolean" )? (text:anchor-type="page | frame | paragraph | char | as-char" )? - (text:anchor-page-number="<positiveInteger>" )? - ) (draw:text-style-name="(<NCName>)?" )? + (text:anchor-page-number="#positiveInteger" )? + ) (draw:text-style-name="(#NCName)?" )? ) (<office:event-listeners ... >)? (<draw:glue-point ... >)* (<text:p ... > | <text:list ... >)* >  @@ -4635,29 +4635,29 @@

draw:rect Element

(svg:height="string]" )? ) ( - ( (draw:z-index="<nonNegativeInteger>" )? - (draw:id="<ID>" )? - (draw:layer="<string>" )? + ( (draw:z-index="#nonNegativeInteger" )? + (draw:id="#ID" )? + (draw:layer="#string" )? - ( (draw:style-name="(<NCName>)?" )? + ( (draw:style-name="(#NCName)?" )? (draw:class-names=" -START_list(<NCName>)* +START_list(#NCName)* END_list" )? ) | - ( (presentation:style-name="(<NCName>)?" )? + ( (presentation:style-name="(#NCName)?" )? (presentation:class-names=" -START_list(<NCName>)* +START_list(#NCName)* END_list" )? - ) (draw:transform="<string>" )? - (draw:name="<string>" )? + ) (draw:transform="#string" )? + (draw:name="#string" )? ( (table:end-cell-address="string]" )? (table:end-x="string]" )? (table:end-y="string]" )? - ) (table:table-background="<boolean>" )? + ) (table:table-background="#boolean" )? (text:anchor-type="page | frame | paragraph | char | as-char" )? - (text:anchor-page-number="<positiveInteger>" )? - ) (draw:text-style-name="(<NCName>)?" )? + (text:anchor-page-number="#positiveInteger" )? + ) (draw:text-style-name="(#NCName)?" )? ) (<office:event-listeners ... >)? (<draw:glue-point ... >)* (<text:p ... > | <text:list ... >)* >  @@ -4732,7 +4732,7 @@

draw:regular-polygon Element Child Relations <draw:regular-polygon draw:concave="false" | - (draw:concave="true" draw:sharpness="string]" )draw:corners="<positiveInteger>" + (draw:concave="true" draw:sharpness="string]" )draw:corners="#positiveInteger" ( (svg:x="string]" )? (svg:y="string]" )? ) @@ -4740,29 +4740,29 @@

draw:regular-polygon Element<nonNegativeInteger>" )? - (draw:id="<ID>" )? - (draw:layer="<string>" )? + ( (draw:z-index="#nonNegativeInteger" )? + (draw:id="#ID" )? + (draw:layer="#string" )? - ( (draw:style-name="(<NCName>)?" )? + ( (draw:style-name="(#NCName)?" )? (draw:class-names=" -START_list(<NCName>)* +START_list(#NCName)* END_list" )? ) | - ( (presentation:style-name="(<NCName>)?" )? + ( (presentation:style-name="(#NCName)?" )? (presentation:class-names=" -START_list(<NCName>)* +START_list(#NCName)* END_list" )? - ) (draw:transform="<string>" )? - (draw:name="<string>" )? + ) (draw:transform="#string" )? + (draw:name="#string" )? ( (table:end-cell-address="string]" )? (table:end-x="string]" )? (table:end-y="string]" )? - ) (table:table-background="<boolean>" )? + ) (table:table-background="#boolean" )? (text:anchor-type="page | frame | paragraph | char | as-char" )? - (text:anchor-page-number="<positiveInteger>" )? - ) (draw:text-style-name="(<NCName>)?" )? + (text:anchor-page-number="#positiveInteger" )? + ) (draw:text-style-name="(#NCName)?" )? ) (<office:event-listeners ... >)? (<draw:glue-point ... >)* (<text:p ... > | <text:list ... >)* >  @@ -4797,12 +4797,12 @@

draw:stroke-dash Element

Child Relations - <draw:stroke-dash draw:name="<NCName>" (draw:display-name="<string>" )? + <draw:stroke-dash draw:name="#NCName" (draw:display-name="#string" )? (draw:style="rect | round" )? - ( (draw:dots1="<integer>" )? + ( (draw:dots1="#integer" )? (draw:dots1-length="string]" )? - (draw:dots2="<integer>" )? + (draw:dots2="#integer" )? (draw:dots2-length="string]" )? ) (draw:distance="string]" )? >  @@ -4870,7 +4870,7 @@

draw:text-box Element

Child Relations - <draw:text-box (draw:chain-next-name="<string>" )? + <draw:text-box (draw:chain-next-name="#string" )? (draw:corner-radius="string]" )? ( (fo:min-height="string] | string]" )? @@ -4929,26 +4929,26 @@

form:button Element

Child Relations <form:button ( - ( (form:name="<string>" )? + ( (form:name="#string" )? (form:control-implementation="string]" )? - form:id="<ID>" (xforms:bind="<string>" )? + form:id="#ID" (xforms:bind="#string" )? ) (form:button-type="submit | reset | push | url" )? - (form:disabled="<boolean>" )? - (form:label="<string>" )? - (form:image-data="<anyURI>" )? - (form:printable="<boolean>" )? - (form:tab-index="<nonNegativeInteger>" )? - (form:tab-stop="<boolean>" )? - (office:target-frame="_self | _blank | _parent | _top | <string>" )? - (xlink:href="<anyURI>" )? + (form:disabled="#boolean" )? + (form:label="#string" )? + (form:image-data="#anyURI" )? + (form:printable="#boolean" )? + (form:tab-index="#nonNegativeInteger" )? + (form:tab-stop="#boolean" )? + (office:target-frame="_self | _blank | _parent | _top | #string" )? + (xlink:href="#anyURI" )? (form:title="TEXT" )? - (form:value="<string>" )? + (form:value="#string" )? form:image-position="center" | EMPTY | (form:image-position="start | end | top | bottom" (form:image-align="start | center | end" )? - )) (form:default-button="<boolean>" )? - (form:toggle="<boolean>" )? - (form:focus-on-click="<boolean>" )? - (form:xforms-submission="<string>" )? + )) (form:default-button="#boolean" )? + (form:toggle="#boolean" )? + (form:focus-on-click="#boolean" )? + (form:xforms-submission="#string" )? ( (<form:properties ... >)? (<office:event-listeners ... >)? @@ -5001,22 +5001,22 @@

form:checkbox Element

Child Relations <form:checkbox ( - ( (form:name="<string>" )? + ( (form:name="#string" )? (form:control-implementation="string]" )? - form:id="<ID>" (xforms:bind="<string>" )? - ) (form:disabled="<boolean>" )? - (form:label="<string>" )? - (form:printable="<boolean>" )? - (form:tab-index="<nonNegativeInteger>" )? - (form:tab-stop="<boolean>" )? + form:id="#ID" (xforms:bind="#string" )? + ) (form:disabled="#boolean" )? + (form:label="#string" )? + (form:printable="#boolean" )? + (form:tab-index="#nonNegativeInteger" )? + (form:tab-stop="#boolean" )? (form:title="TEXT" )? - (form:value="<string>" )? - (form:data-field="<string>" )? + (form:value="#string" )? + (form:data-field="#string" )? (form:visual-effect="flat | 3d" )? form:image-position="center" | EMPTY | (form:image-position="start | end | top | bottom" (form:image-align="start | center | end" )? )) (form:current-state="unchecked | checked | unknown" )? - (form:is-tristate="<boolean>" )? + (form:is-tristate="#boolean" )? (form:state="unchecked | checked | unknown" )? ( (<form:properties ... >)? @@ -5059,10 +5059,10 @@

form:column Element

Child Relations <form:column - ( (form:name="<string>" )? + ( (form:name="#string" )? (form:control-implementation="string]" )? - (form:label="<string>" )? - (form:text-style-name="(<NCName>)?" )? + (form:label="#string" )? + (form:text-style-name="(#NCName)?" )? )(<form:text ... > | <form:textarea ... > | <form:formatted-text ... > | <form:number ... > | <form:date ... > | <form:combobox ... > | <form:listbox ... > | <form:checkbox ... >)+ >  @@ -5114,25 +5114,25 @@

form:combobox Element

Child Relations <form:combobox ( - ( (form:name="<string>" )? + ( (form:name="#string" )? (form:control-implementation="string]" )? - form:id="<ID>" (xforms:bind="<string>" )? - ) (form:current-value="<string>" )? - (form:disabled="<boolean>" )? - (form:dropdown="<boolean>" )? - (form:max-length="<nonNegativeInteger>" )? - (form:printable="<boolean>" )? - (form:readonly="<boolean>" )? - (form:size="<nonNegativeInteger>" )? - (form:tab-index="<nonNegativeInteger>" )? - (form:tab-stop="<boolean>" )? + form:id="#ID" (xforms:bind="#string" )? + ) (form:current-value="#string" )? + (form:disabled="#boolean" )? + (form:dropdown="#boolean" )? + (form:max-length="#nonNegativeInteger" )? + (form:printable="#boolean" )? + (form:readonly="#boolean" )? + (form:size="#nonNegativeInteger" )? + (form:tab-index="#nonNegativeInteger" )? + (form:tab-stop="#boolean" )? (form:title="TEXT" )? - (form:value="<string>" )? - (form:convert-empty-to-null="<boolean>" )? - (form:data-field="<string>" )? - (form:list-source="<string>" )? + (form:value="#string" )? + (form:convert-empty-to-null="#boolean" )? + (form:data-field="#string" )? + (form:list-source="#string" )? (form:list-source-type="table | query | sql | sql-pass-through | value-list | table-fields" )? - ) (form:auto-complete="<boolean>" )? + ) (form:auto-complete="#boolean" )? ( (<form:properties ... >)? (<office:event-listeners ... >)? @@ -5167,7 +5167,7 @@

form:connection-resource Elemen Child Relations - <form:connection-resource xlink:href="<anyURI>" >  + <form:connection-resource xlink:href="#anyURI" > 
@@ -5212,24 +5212,24 @@

form:date Element

Child Relations - <form:date (form:value="<date>" )? - (form:current-value="<date>" )? - (form:min-value="<date>" )? - (form:max-value="<date>" )? + <form:date (form:value="#date" )? + (form:current-value="#date" )? + (form:min-value="#date" )? + (form:max-value="#date" )? ( - ( (form:name="<string>" )? + ( (form:name="#string" )? (form:control-implementation="string]" )? - form:id="<ID>" (xforms:bind="<string>" )? - ) (form:disabled="<boolean>" )? - (form:max-length="<nonNegativeInteger>" )? - (form:printable="<boolean>" )? - (form:readonly="<boolean>" )? - (form:tab-index="<nonNegativeInteger>" )? - (form:tab-stop="<boolean>" )? + form:id="#ID" (xforms:bind="#string" )? + ) (form:disabled="#boolean" )? + (form:max-length="#nonNegativeInteger" )? + (form:printable="#boolean" )? + (form:readonly="#boolean" )? + (form:tab-index="#nonNegativeInteger" )? + (form:tab-stop="#boolean" )? (form:title="TEXT" )? - (form:convert-empty-to-null="<boolean>" )? - (form:data-field="<string>" )? + (form:convert-empty-to-null="#boolean" )? + (form:data-field="#string" )? ) ( (<form:properties ... >)? (<office:event-listeners ... >)? @@ -5275,18 +5275,18 @@

form:file Element

Child Relations <form:file ( - ( (form:name="<string>" )? + ( (form:name="#string" )? (form:control-implementation="string]" )? - form:id="<ID>" (xforms:bind="<string>" )? - ) (form:current-value="<string>" )? - (form:disabled="<boolean>" )? - (form:max-length="<nonNegativeInteger>" )? - (form:printable="<boolean>" )? - (form:readonly="<boolean>" )? - (form:tab-index="<nonNegativeInteger>" )? - (form:tab-stop="<boolean>" )? + form:id="#ID" (xforms:bind="#string" )? + ) (form:current-value="#string" )? + (form:disabled="#boolean" )? + (form:max-length="#nonNegativeInteger" )? + (form:printable="#boolean" )? + (form:readonly="#boolean" )? + (form:tab-index="#nonNegativeInteger" )? + (form:tab-stop="#boolean" )? (form:title="TEXT" )? - (form:value="<string>" )? + (form:value="#string" )? ) ( (<form:properties ... >)? (<office:event-listeners ... >)? @@ -5329,15 +5329,15 @@

form:fixed-text Element

Child Relations <form:fixed-text ( - ( (form:name="<string>" )? + ( (form:name="#string" )? (form:control-implementation="string]" )? - form:id="<ID>" (xforms:bind="<string>" )? - ) (form:for="<string>" )? - (form:disabled="<boolean>" )? - (form:label="<string>" )? - (form:printable="<boolean>" )? + form:id="#ID" (xforms:bind="#string" )? + ) (form:for="#string" )? + (form:disabled="#boolean" )? + (form:label="#string" )? + (form:printable="#boolean" )? (form:title="TEXT" )? - ) (form:multi-line="<boolean>" )? + ) (form:multi-line="#boolean" )? ( (<form:properties ... >)? (<office:event-listeners ... >)? @@ -5415,28 +5415,28 @@

form:form Element

Child Relations - <form:form (form:name="<string>" )? + <form:form (form:name="#string" )? (form:control-implementation="string]" )? - (xlink:href="<anyURI>" (xlink:type="simple" )? + (xlink:href="#anyURI" (xlink:type="simple" )? (xlink:actuate="onRequest" )? )? - (office:target-frame="_self | _blank | _parent | _top | <string>" )? - (form:method="get | post | <string>" )? - (form:enctype="<string>" )? - (form:allow-deletes="<boolean>" )? - (form:allow-inserts="<boolean>" )? - (form:allow-updates="<boolean>" )? - (form:apply-filter="<boolean>" )? + (office:target-frame="_self | _blank | _parent | _top | #string" )? + (form:method="get | post | #string" )? + (form:enctype="#string" )? + (form:allow-deletes="#boolean" )? + (form:allow-inserts="#boolean" )? + (form:allow-updates="#boolean" )? + (form:apply-filter="#boolean" )? (form:command-type="table | query | command" )? (form:command="TEXT" )? - (form:datasource="<anyURI> | <string>" )? - (form:master-fields="<string>" )? - (form:detail-fields="<string>" )? - (form:escape-processing="<boolean>" )? - (form:filter="<string>" )? - (form:ignore-result="<boolean>" )? + (form:datasource="#anyURI | #string" )? + (form:master-fields="#string" )? + (form:detail-fields="#string" )? + (form:escape-processing="#boolean" )? + (form:filter="#string" )? + (form:ignore-result="#boolean" )? (form:navigation-mode="none | current | parent" )? - (form:order="<string>" )? + (form:order="#string" )? (form:tab-cycle="records | current | page" )? (<form:properties ... >)? (<office:event-listeners ... >)? @@ -5489,23 +5489,23 @@

form:formatted-text Element

Child Relations <form:formatted-text ( - ( (form:name="<string>" )? + ( (form:name="#string" )? (form:control-implementation="string]" )? - form:id="<ID>" (xforms:bind="<string>" )? - ) (form:current-value="<string>" )? - (form:disabled="<boolean>" )? - (form:max-length="<nonNegativeInteger>" )? - (form:printable="<boolean>" )? - (form:readonly="<boolean>" )? - (form:tab-index="<nonNegativeInteger>" )? - (form:tab-stop="<boolean>" )? + form:id="#ID" (xforms:bind="#string" )? + ) (form:current-value="#string" )? + (form:disabled="#boolean" )? + (form:max-length="#nonNegativeInteger" )? + (form:printable="#boolean" )? + (form:readonly="#boolean" )? + (form:tab-index="#nonNegativeInteger" )? + (form:tab-stop="#boolean" )? (form:title="TEXT" )? - (form:value="<string>" )? - (form:convert-empty-to-null="<boolean>" )? - (form:data-field="<string>" )? - ) (form:max-value="<string>" )? - (form:min-value="<string>" )? - (form:validation="<boolean>" )? + (form:value="#string" )? + (form:convert-empty-to-null="#boolean" )? + (form:data-field="#string" )? + ) (form:max-value="#string" )? + (form:min-value="#string" )? + (form:validation="#boolean" )? ( (<form:properties ... >)? (<office:event-listeners ... >)? @@ -5547,13 +5547,13 @@

form:frame Element

Child Relations <form:frame ( - ( (form:name="<string>" )? + ( (form:name="#string" )? (form:control-implementation="string]" )? - form:id="<ID>" (xforms:bind="<string>" )? - ) (form:disabled="<boolean>" )? - (form:for="<string>" )? - (form:label="<string>" )? - (form:printable="<boolean>" )? + form:id="#ID" (xforms:bind="#string" )? + ) (form:disabled="#boolean" )? + (form:for="#string" )? + (form:label="#string" )? + (form:printable="#boolean" )? (form:title="TEXT" )? ) ( (<form:properties ... >)? @@ -5590,9 +5590,9 @@

form:generic-control Element Child Relations <form:generic-control - ( (form:name="<string>" )? + ( (form:name="#string" )? (form:control-implementation="string]" )? - form:id="<ID>" (xforms:bind="<string>" )? + form:id="#ID" (xforms:bind="#string" )? ) ( (<form:properties ... >)? (<office:event-listeners ... >)? @@ -5635,13 +5635,13 @@

form:grid Element

Child Relations <form:grid ( - ( (form:name="<string>" )? + ( (form:name="#string" )? (form:control-implementation="string]" )? - form:id="<ID>" (xforms:bind="<string>" )? - ) (form:disabled="<boolean>" )? - (form:printable="<boolean>" )? - (form:tab-index="<nonNegativeInteger>" )? - (form:tab-stop="<boolean>" )? + form:id="#ID" (xforms:bind="#string" )? + ) (form:disabled="#boolean" )? + (form:printable="#boolean" )? + (form:tab-index="#nonNegativeInteger" )? + (form:tab-stop="#boolean" )? (form:title="TEXT" )? ) ( (<form:properties ... >)? @@ -5680,10 +5680,10 @@

form:hidden Element

Child Relations <form:hidden ( - ( (form:name="<string>" )? + ( (form:name="#string" )? (form:control-implementation="string]" )? - form:id="<ID>" (xforms:bind="<string>" )? - ) (form:value="<string>" )? + form:id="#ID" (xforms:bind="#string" )? + ) (form:value="#string" )? ) ( (<form:properties ... >)? (<office:event-listeners ... >)? @@ -5730,19 +5730,19 @@

form:image Element

Child Relations <form:image ( - ( (form:name="<string>" )? + ( (form:name="#string" )? (form:control-implementation="string]" )? - form:id="<ID>" (xforms:bind="<string>" )? + form:id="#ID" (xforms:bind="#string" )? ) (form:button-type="submit | reset | push | url" )? - (form:disabled="<boolean>" )? - (form:image-data="<anyURI>" )? - (form:printable="<boolean>" )? - (form:tab-index="<nonNegativeInteger>" )? - (form:tab-stop="<boolean>" )? - (office:target-frame="_self | _blank | _parent | _top | <string>" )? - (xlink:href="<anyURI>" )? + (form:disabled="#boolean" )? + (form:image-data="#anyURI" )? + (form:printable="#boolean" )? + (form:tab-index="#nonNegativeInteger" )? + (form:tab-stop="#boolean" )? + (office:target-frame="_self | _blank | _parent | _top | #string" )? + (xlink:href="#anyURI" )? (form:title="TEXT" )? - (form:value="<string>" )? + (form:value="#string" )? ) ( (<form:properties ... >)? (<office:event-listeners ... >)? @@ -5785,15 +5785,15 @@

form:image-frame Element

Child Relations <form:image-frame ( - ( (form:name="<string>" )? + ( (form:name="#string" )? (form:control-implementation="string]" )? - form:id="<ID>" (xforms:bind="<string>" )? - ) (form:disabled="<boolean>" )? - (form:image-data="<anyURI>" )? - (form:printable="<boolean>" )? - (form:readonly="<boolean>" )? + form:id="#ID" (xforms:bind="#string" )? + ) (form:disabled="#boolean" )? + (form:image-data="#anyURI" )? + (form:printable="#boolean" )? + (form:readonly="#boolean" )? (form:title="TEXT" )? - (form:data-field="<string>" )? + (form:data-field="#string" )? ) ( (<form:properties ... >)? (<office:event-listeners ... >)? @@ -5824,7 +5824,7 @@

form:item Element

Child Relations - <form:item (form:label="<string>" )? + <form:item (form:label="#string" )? TEXT>  @@ -5866,7 +5866,7 @@

form:list-property Element

Child Relations - <form:list-property form:property-name="<string>" + <form:list-property form:property-name="#string" (office:value-type="float" (<form:list-value ... >)* ) | (office:value-type="percentage" (<form:list-value ... >)* ) | (office:value-type="currency" (<form:list-value ... >)* ) | @@ -5901,7 +5901,7 @@

form:list-value[1] Element

Child Relations - <form:list-value office:value="<double>" (office:currency="<string>" )? + <form:list-value office:value="#double" (office:currency="#string" )? >  @@ -5929,7 +5929,7 @@

form:list-value[2] Element

Child Relations - <form:list-value office:string-value="<string>" >  + <form:list-value office:string-value="#string" > 
@@ -5956,7 +5956,7 @@

form:list-value[3] Element

Child Relations - <form:list-value office:value="<double>" >  + <form:list-value office:value="#double" > 
@@ -5983,7 +5983,7 @@

form:list-value[4] Element

Child Relations - <form:list-value office:date-value="<date> | <dateTime>" >  + <form:list-value office:date-value="#date | #dateTime" > 
@@ -6010,7 +6010,7 @@

form:list-value[5] Element

Child Relations - <form:list-value office:time-value="<duration>" >  + <form:list-value office:time-value="#duration" > 
@@ -6037,7 +6037,7 @@

form:list-value[6] Element

Child Relations - <form:list-value office:value="<double>" >  + <form:list-value office:value="#double" > 
@@ -6064,7 +6064,7 @@

form:list-value[7] Element

Child Relations - <form:list-value office:boolean-value="<boolean>" >  + <form:list-value office:boolean-value="#boolean" > 
@@ -6112,22 +6112,22 @@

form:listbox Element

Child Relations <form:listbox ( - ( (form:name="<string>" )? + ( (form:name="#string" )? (form:control-implementation="string]" )? - form:id="<ID>" (xforms:bind="<string>" )? - ) (form:disabled="<boolean>" )? - (form:dropdown="<boolean>" )? - (form:printable="<boolean>" )? - (form:size="<nonNegativeInteger>" )? - (form:tab-index="<nonNegativeInteger>" )? - (form:tab-stop="<boolean>" )? + form:id="#ID" (xforms:bind="#string" )? + ) (form:disabled="#boolean" )? + (form:dropdown="#boolean" )? + (form:printable="#boolean" )? + (form:size="#nonNegativeInteger" )? + (form:tab-index="#nonNegativeInteger" )? + (form:tab-stop="#boolean" )? (form:title="TEXT" )? - (form:bound-column="<string>" )? - (form:data-field="<string>" )? - (form:list-source="<string>" )? + (form:bound-column="#string" )? + (form:data-field="#string" )? + (form:list-source="#string" )? (form:list-source-type="table | query | sql | sql-pass-through | value-list | table-fields" )? - ) (form:multiple="<boolean>" )? - (form:xforms-list-source="<string>" )? + ) (form:multiple="#boolean" )? + (form:xforms-list-source="#string" )? ( (<form:properties ... >)? (<office:event-listeners ... >)? @@ -6176,24 +6176,24 @@

form:number Element

Child Relations - <form:number (form:value="<double>" )? - (form:current-value="<double>" )? - (form:min-value="<double>" )? - (form:max-value="<double>" )? + <form:number (form:value="#double" )? + (form:current-value="#double" )? + (form:min-value="#double" )? + (form:max-value="#double" )? ( - ( (form:name="<string>" )? + ( (form:name="#string" )? (form:control-implementation="string]" )? - form:id="<ID>" (xforms:bind="<string>" )? - ) (form:disabled="<boolean>" )? - (form:max-length="<nonNegativeInteger>" )? - (form:printable="<boolean>" )? - (form:readonly="<boolean>" )? - (form:tab-index="<nonNegativeInteger>" )? - (form:tab-stop="<boolean>" )? + form:id="#ID" (xforms:bind="#string" )? + ) (form:disabled="#boolean" )? + (form:max-length="#nonNegativeInteger" )? + (form:printable="#boolean" )? + (form:readonly="#boolean" )? + (form:tab-index="#nonNegativeInteger" )? + (form:tab-stop="#boolean" )? (form:title="TEXT" )? - (form:convert-empty-to-null="<boolean>" )? - (form:data-field="<string>" )? + (form:convert-empty-to-null="#boolean" )? + (form:data-field="#string" )? ) ( (<form:properties ... >)? (<office:event-listeners ... >)? @@ -6228,10 +6228,10 @@

form:option Element

Child Relations <form:option - ( (form:current-selected="<boolean>" )? - (form:selected="<boolean>" )? - (form:label="<string>" )? - (form:value="<string>" )? + ( (form:current-selected="#boolean" )? + (form:selected="#boolean" )? + (form:label="#string" )? + (form:value="#string" )? )TEXT>  @@ -6274,17 +6274,17 @@

form:password Element

Child Relations <form:password ( - ( (form:name="<string>" )? + ( (form:name="#string" )? (form:control-implementation="string]" )? - form:id="<ID>" (xforms:bind="<string>" )? - ) (form:disabled="<boolean>" )? - (form:max-length="<nonNegativeInteger>" )? - (form:printable="<boolean>" )? - (form:tab-index="<nonNegativeInteger>" )? - (form:tab-stop="<boolean>" )? + form:id="#ID" (xforms:bind="#string" )? + ) (form:disabled="#boolean" )? + (form:max-length="#nonNegativeInteger" )? + (form:printable="#boolean" )? + (form:tab-index="#nonNegativeInteger" )? + (form:tab-stop="#boolean" )? (form:title="TEXT" )? - (form:value="<string>" )? - (form:convert-empty-to-null="<boolean>" )? + (form:value="#string" )? + (form:convert-empty-to-null="#boolean" )? ) (form:echo-char="string]" )? ( (<form:properties ... >)? @@ -6377,15 +6377,15 @@

form:property Element

Child Relations - <form:property form:property-name="<string>" - (office:value-type="float" office:value="<double>" ) | - (office:value-type="percentage" office:value="<double>" ) | - (office:value-type="currency" office:value="<double>" (office:currency="<string>" )? + <form:property form:property-name="#string" + (office:value-type="float" office:value="#double" ) | + (office:value-type="percentage" office:value="#double" ) | + (office:value-type="currency" office:value="#double" (office:currency="#string" )? ) | - (office:value-type="date" office:date-value="<date> | <dateTime>" ) | - (office:value-type="time" office:time-value="<duration>" ) | - (office:value-type="boolean" office:boolean-value="<boolean>" ) | - (office:value-type="string" (office:string-value="<string>" )? + (office:value-type="date" office:date-value="#date | #dateTime" ) | + (office:value-type="time" office:time-value="#duration" ) | + (office:value-type="boolean" office:boolean-value="#boolean" ) | + (office:value-type="string" (office:string-value="#string" )? ) | office:value-type="void" >  @@ -6433,19 +6433,19 @@

form:radio Element

Child Relations <form:radio ( - ( (form:name="<string>" )? + ( (form:name="#string" )? (form:control-implementation="string]" )? - form:id="<ID>" (xforms:bind="<string>" )? - ) (form:current-selected="<boolean>" )? - (form:disabled="<boolean>" )? - (form:label="<string>" )? - (form:printable="<boolean>" )? - (form:selected="<boolean>" )? - (form:tab-index="<nonNegativeInteger>" )? - (form:tab-stop="<boolean>" )? + form:id="#ID" (xforms:bind="#string" )? + ) (form:current-selected="#boolean" )? + (form:disabled="#boolean" )? + (form:label="#string" )? + (form:printable="#boolean" )? + (form:selected="#boolean" )? + (form:tab-index="#nonNegativeInteger" )? + (form:tab-stop="#boolean" )? (form:title="TEXT" )? - (form:value="<string>" )? - (form:data-field="<string>" )? + (form:value="#string" )? + (form:data-field="#string" )? (form:visual-effect="flat | 3d" )? form:image-position="center" | EMPTY | (form:image-position="start | end | top | bottom" (form:image-align="start | center | end" )? @@ -6497,20 +6497,20 @@

form:text Element

Child Relations <form:text ( - ( (form:name="<string>" )? + ( (form:name="#string" )? (form:control-implementation="string]" )? - form:id="<ID>" (xforms:bind="<string>" )? - ) (form:current-value="<string>" )? - (form:disabled="<boolean>" )? - (form:max-length="<nonNegativeInteger>" )? - (form:printable="<boolean>" )? - (form:readonly="<boolean>" )? - (form:tab-index="<nonNegativeInteger>" )? - (form:tab-stop="<boolean>" )? + form:id="#ID" (xforms:bind="#string" )? + ) (form:current-value="#string" )? + (form:disabled="#boolean" )? + (form:max-length="#nonNegativeInteger" )? + (form:printable="#boolean" )? + (form:readonly="#boolean" )? + (form:tab-index="#nonNegativeInteger" )? + (form:tab-stop="#boolean" )? (form:title="TEXT" )? - (form:value="<string>" )? - (form:convert-empty-to-null="<boolean>" )? - (form:data-field="<string>" )? + (form:value="#string" )? + (form:convert-empty-to-null="#boolean" )? + (form:data-field="#string" )? ) ( (<form:properties ... >)? (<office:event-listeners ... >)? @@ -6560,20 +6560,20 @@

form:textarea Element

Child Relations <form:textarea ( - ( (form:name="<string>" )? + ( (form:name="#string" )? (form:control-implementation="string]" )? - form:id="<ID>" (xforms:bind="<string>" )? - ) (form:current-value="<string>" )? - (form:disabled="<boolean>" )? - (form:max-length="<nonNegativeInteger>" )? - (form:printable="<boolean>" )? - (form:readonly="<boolean>" )? - (form:tab-index="<nonNegativeInteger>" )? - (form:tab-stop="<boolean>" )? + form:id="#ID" (xforms:bind="#string" )? + ) (form:current-value="#string" )? + (form:disabled="#boolean" )? + (form:max-length="#nonNegativeInteger" )? + (form:printable="#boolean" )? + (form:readonly="#boolean" )? + (form:tab-index="#nonNegativeInteger" )? + (form:tab-stop="#boolean" )? (form:title="TEXT" )? - (form:value="<string>" )? - (form:convert-empty-to-null="<boolean>" )? - (form:data-field="<string>" )? + (form:value="#string" )? + (form:convert-empty-to-null="#boolean" )? + (form:data-field="#string" )? ) ( (<form:properties ... >)? (<office:event-listeners ... >)? @@ -6621,24 +6621,24 @@

form:time Element

Child Relations - <form:time (form:value="<time>" )? - (form:current-value="<time>" )? - (form:min-value="<time>" )? - (form:max-value="<time>" )? + <form:time (form:value="#time" )? + (form:current-value="#time" )? + (form:min-value="#time" )? + (form:max-value="#time" )? ( - ( (form:name="<string>" )? + ( (form:name="#string" )? (form:control-implementation="string]" )? - form:id="<ID>" (xforms:bind="<string>" )? - ) (form:disabled="<boolean>" )? - (form:max-length="<nonNegativeInteger>" )? - (form:printable="<boolean>" )? - (form:readonly="<boolean>" )? - (form:tab-index="<nonNegativeInteger>" )? - (form:tab-stop="<boolean>" )? + form:id="#ID" (xforms:bind="#string" )? + ) (form:disabled="#boolean" )? + (form:max-length="#nonNegativeInteger" )? + (form:printable="#boolean" )? + (form:readonly="#boolean" )? + (form:tab-index="#nonNegativeInteger" )? + (form:tab-stop="#boolean" )? (form:title="TEXT" )? - (form:convert-empty-to-null="<boolean>" )? - (form:data-field="<string>" )? + (form:convert-empty-to-null="#boolean" )? + (form:data-field="#string" )? ) ( (<form:properties ... >)? (<office:event-listeners ... >)? @@ -6687,20 +6687,20 @@

form:value-range Element

Child Relations <form:value-range ( - ( (form:name="<string>" )? + ( (form:name="#string" )? (form:control-implementation="string]" )? - form:id="<ID>" (xforms:bind="<string>" )? - ) (form:disabled="<boolean>" )? - (form:printable="<boolean>" )? - (form:tab-index="<nonNegativeInteger>" )? - (form:tab-stop="<boolean>" )? + form:id="#ID" (xforms:bind="#string" )? + ) (form:disabled="#boolean" )? + (form:printable="#boolean" )? + (form:tab-index="#nonNegativeInteger" )? + (form:tab-stop="#boolean" )? (form:title="TEXT" )? - (form:value="<string>" )? - ) (form:max-value="<string>" )? - (form:min-value="<string>" )? - (form:step-size="<positiveInteger>" )? - (form:page-step-size="<positiveInteger>" )? - (form:delay-for-repeat="<duration>" )? + (form:value="#string" )? + ) (form:max-value="#string" )? + (form:min-value="#string" )? + (form:step-size="#positiveInteger" )? + (form:page-step-size="#positiveInteger" )? + (form:delay-for-repeat="#duration" )? (form:orientation="horizontal | vertical" )? ( (<form:properties ... >)? @@ -6758,7 +6758,7 @@

meta:date-string Element

Child Relations - <meta:date-string <string>>  + <meta:date-string #string
@@ -6848,11 +6848,11 @@

number:boolean-style Element Child Relations - <number:boolean-style style:name="<NCName>" (number:language="token]" )? + <number:boolean-style style:name="#NCName" (number:language="token]" )? (number:country="token]" )? (number:title="TEXT" )? - (style:volatile="<boolean>" )? - (number:transliteration-format="<string>" )? + (style:volatile="#boolean" )? + (number:transliteration-format="#string" )? (number:transliteration-language="token]" )? (number:transliteration-country="token]" )? (number:transliteration-style="short | medium | long" )? @@ -6901,15 +6901,15 @@

number:currency-style Element< Child Relations - <number:currency-style style:name="<NCName>" (number:language="token]" )? + <number:currency-style style:name="#NCName" (number:language="token]" )? (number:country="token]" )? (number:title="TEXT" )? - (style:volatile="<boolean>" )? - (number:transliteration-format="<string>" )? + (style:volatile="#boolean" )? + (number:transliteration-format="#string" )? (number:transliteration-language="token]" )? (number:transliteration-country="token]" )? (number:transliteration-style="short | medium | long" )? - (number:automatic-order="<boolean>" )? + (number:automatic-order="#boolean" )? (<style:text-properties ... >)? (<number:text ... >)? ( @@ -7007,15 +7007,15 @@

number:date-style Element

Child Relations - <number:date-style style:name="<NCName>" (number:language="token]" )? + <number:date-style style:name="#NCName" (number:language="token]" )? (number:country="token]" )? (number:title="TEXT" )? - (style:volatile="<boolean>" )? - (number:transliteration-format="<string>" )? + (style:volatile="#boolean" )? + (number:transliteration-format="#string" )? (number:transliteration-language="token]" )? (number:transliteration-country="token]" )? (number:transliteration-style="short | medium | long" )? - (number:automatic-order="<boolean>" )? + (number:automatic-order="#boolean" )? (number:format-source="fixed | language" )? (<style:text-properties ... >)? (<number:text ... >)? @@ -7048,7 +7048,7 @@

number:day Element

Child Relations <number:day (number:style="short | long" )? - (number:calendar="gregorian | gengou | ROC | hanja_yoil | hanja | hijri | jewish | buddhist | <string>" )? + (number:calendar="gregorian | gengou | ROC | hanja_yoil | hanja | hijri | jewish | buddhist | #string" )? >  @@ -7077,7 +7077,7 @@

number:day-of-week Element

Child Relations <number:day-of-week (number:style="short | long" )? - (number:calendar="gregorian | gengou | ROC | hanja_yoil | hanja | hijri | jewish | buddhist | <string>" )? + (number:calendar="gregorian | gengou | ROC | hanja_yoil | hanja | hijri | jewish | buddhist | #string" )? >  @@ -7105,7 +7105,7 @@

number:embedded-text Element Child Relations - <number:embedded-text number:position="<integer>" TEXT>  + <number:embedded-text number:position="#integer" TEXT> 
@@ -7133,7 +7133,7 @@

number:era Element

Child Relations <number:era (number:style="short | long" )? - (number:calendar="gregorian | gengou | ROC | hanja_yoil | hanja | hijri | jewish | buddhist | <string>" )? + (number:calendar="gregorian | gengou | ROC | hanja_yoil | hanja | hijri | jewish | buddhist | #string" )? >  @@ -7164,11 +7164,11 @@

number:fraction Element

Child Relations - <number:fraction (number:min-numerator-digits="<integer>" )? - (number:min-denominator-digits="<integer>" )? - (number:denominator-value="<integer>" )? - (number:min-integer-digits="<integer>" )? - (number:grouping="<boolean>" )? + <number:fraction (number:min-numerator-digits="#integer" )? + (number:min-denominator-digits="#integer" )? + (number:denominator-value="#integer" )? + (number:min-integer-digits="#integer" )? + (number:grouping="#boolean" )? >  @@ -7254,10 +7254,10 @@

number:month Element

Child Relations - <number:month (number:textual="<boolean>" )? - (number:possessive-form="<boolean>" )? + <number:month (number:textual="#boolean" )? + (number:possessive-form="#boolean" )? (number:style="short | long" )? - (number:calendar="gregorian | gengou | ROC | hanja_yoil | hanja | hijri | jewish | buddhist | <string>" )? + (number:calendar="gregorian | gengou | ROC | hanja_yoil | hanja | hijri | jewish | buddhist | #string" )? >  @@ -7292,10 +7292,10 @@

number:number Element

Child Relations <number:number (number:decimal-replacement="TEXT" )? - (number:display-factor="<double>" )? - (number:decimal-places="<integer>" )? - (number:min-integer-digits="<integer>" )? - (number:grouping="<boolean>" )? + (number:display-factor="#double" )? + (number:decimal-places="#integer" )? + (number:min-integer-digits="#integer" )? + (number:grouping="#boolean" )? (<number:embedded-text ... >)* >  @@ -7337,11 +7337,11 @@

number:number-style Element

Child Relations - <number:number-style style:name="<NCName>" (number:language="token]" )? + <number:number-style style:name="#NCName" (number:language="token]" )? (number:country="token]" )? (number:title="TEXT" )? - (style:volatile="<boolean>" )? - (number:transliteration-format="<string>" )? + (style:volatile="#boolean" )? + (number:transliteration-format="#string" )? (number:transliteration-language="token]" )? (number:transliteration-country="token]" )? (number:transliteration-style="short | medium | long" )? @@ -7388,11 +7388,11 @@

number:percentage-style Element< Child Relations - <number:percentage-style style:name="<NCName>" (number:language="token]" )? + <number:percentage-style style:name="#NCName" (number:language="token]" )? (number:country="token]" )? (number:title="TEXT" )? - (style:volatile="<boolean>" )? - (number:transliteration-format="<string>" )? + (style:volatile="#boolean" )? + (number:transliteration-format="#string" )? (number:transliteration-language="token]" )? (number:transliteration-country="token]" )? (number:transliteration-style="short | medium | long" )? @@ -7429,7 +7429,7 @@

number:quarter Element

Child Relations <number:quarter (number:style="short | long" )? - (number:calendar="gregorian | gengou | ROC | hanja_yoil | hanja | hijri | jewish | buddhist | <string>" )? + (number:calendar="gregorian | gengou | ROC | hanja_yoil | hanja | hijri | jewish | buddhist | #string" )? >  @@ -7459,10 +7459,10 @@

number:scientific-number Elemen Child Relations - <number:scientific-number (number:min-exponent-digits="<integer>" )? - (number:decimal-places="<integer>" )? - (number:min-integer-digits="<integer>" )? - (number:grouping="<boolean>" )? + <number:scientific-number (number:min-exponent-digits="#integer" )? + (number:decimal-places="#integer" )? + (number:min-integer-digits="#integer" )? + (number:grouping="#boolean" )? >  @@ -7492,7 +7492,7 @@

number:seconds Element

Child Relations <number:seconds (number:style="short | long" )? - (number:decimal-places="<integer>" )? + (number:decimal-places="#integer" )? >  @@ -7589,11 +7589,11 @@

number:text-style Element

Child Relations - <number:text-style style:name="<NCName>" (number:language="token]" )? + <number:text-style style:name="#NCName" (number:language="token]" )? (number:country="token]" )? (number:title="TEXT" )? - (style:volatile="<boolean>" )? - (number:transliteration-format="<string>" )? + (style:volatile="#boolean" )? + (number:transliteration-format="#string" )? (number:transliteration-language="token]" )? (number:transliteration-country="token]" )? (number:transliteration-style="short | medium | long" )? @@ -7644,12 +7644,12 @@

number:time-style Element

Child Relations - <number:time-style (number:truncate-on-overflow="<boolean>" )? - style:name="<NCName>" (number:language="token]" )? + <number:time-style (number:truncate-on-overflow="#boolean" )? + style:name="#NCName" (number:language="token]" )? (number:country="token]" )? (number:title="TEXT" )? - (style:volatile="<boolean>" )? - (number:transliteration-format="<string>" )? + (style:volatile="#boolean" )? + (number:transliteration-format="#string" )? (number:transliteration-language="token]" )? (number:transliteration-country="token]" )? (number:transliteration-style="short | medium | long" )? @@ -7683,7 +7683,7 @@

number:week-of-year Element

Child Relations - <number:week-of-year (number:calendar="gregorian | gengou | ROC | hanja_yoil | hanja | hijri | jewish | buddhist | <string>" )? + <number:week-of-year (number:calendar="gregorian | gengou | ROC | hanja_yoil | hanja | hijri | jewish | buddhist | #string" )? >  @@ -7712,7 +7712,7 @@

number:year Element

Child Relations <number:year (number:style="short | long" )? - (number:calendar="gregorian | gengou | ROC | hanja_yoil | hanja | hijri | jewish | buddhist | <string>" )? + (number:calendar="gregorian | gengou | ROC | hanja_yoil | hanja | hijri | jewish | buddhist | #string" )? >  @@ -7773,7 +7773,7 @@

office:annotation Element

Child Relations - <office:annotation (office:display="<boolean>" )? + <office:annotation (office:display="#boolean" )? (draw:caption-point-x="string]" draw:caption-point-y="string]" )? (draw:corner-radius="string]" )? @@ -7784,29 +7784,29 @@

office:annotation Element

(svg:height="string]" )? ) ( - ( (draw:z-index="<nonNegativeInteger>" )? - (draw:id="<ID>" )? - (draw:layer="<string>" )? + ( (draw:z-index="#nonNegativeInteger" )? + (draw:id="#ID" )? + (draw:layer="#string" )? - ( (draw:style-name="(<NCName>)?" )? + ( (draw:style-name="(#NCName)?" )? (draw:class-names=" -START_list(<NCName>)* +START_list(#NCName)* END_list" )? ) | - ( (presentation:style-name="(<NCName>)?" )? + ( (presentation:style-name="(#NCName)?" )? (presentation:class-names=" -START_list(<NCName>)* +START_list(#NCName)* END_list" )? - ) (draw:transform="<string>" )? - (draw:name="<string>" )? + ) (draw:transform="#string" )? + (draw:name="#string" )? ( (table:end-cell-address="string]" )? (table:end-x="string]" )? (table:end-y="string]" )? - ) (table:table-background="<boolean>" )? + ) (table:table-background="#boolean" )? (text:anchor-type="page | frame | paragraph | char | as-char" )? - (text:anchor-page-number="<positiveInteger>" )? - ) (draw:text-style-name="(<NCName>)?" )? + (text:anchor-page-number="#positiveInteger" )? + ) (draw:text-style-name="(#NCName)?" )? ) (<dc:creator ... >)? (<dc:date ... >)? (<meta:date-string ... >)? @@ -7874,7 +7874,7 @@

office:binary-data Element

Child Relations - <office:binary-data <base64Binary>>  + <office:binary-data #base64Binary
@@ -8029,9 +8029,9 @@

office:dde-source Element

Child Relations - <office:dde-source (office:name="<string>" )? + <office:dde-source (office:name="#string" )? (office:conversion-mode="into-default-style-data-style | into-english-number | keep-text" )? - office:dde-application="<string>" office:dde-topic="<string>" office:dde-item="<string>" (office:automatic-update="<boolean>" )? + office:dde-application="#string" office:dde-topic="#string" office:dde-item="#string" (office:automatic-update="#boolean" )? >  @@ -8067,7 +8067,7 @@

office:document Element

Child Relations - <office:document office:mimetype="<string>" (office:version="<string>" )? + <office:document office:mimetype="#string" (office:version="#string" )? (<office:meta ... >)? (<office:settings ... >)? (<office:scripts ... >)? @@ -8104,7 +8104,7 @@

office:document-content Element< Child Relations - <office:document-content (office:version="<string>" )? + <office:document-content (office:version="#string" )? (<office:scripts ... >)? (<office:font-face-decls ... >)? (<office:automatic-styles ... >)? @@ -8134,7 +8134,7 @@

office:document-meta Element Child Relations - <office:document-meta (office:version="<string>" )? + <office:document-meta (office:version="#string" )? (<office:meta ... >)? >  @@ -8162,7 +8162,7 @@

office:document-settings Elemen Child Relations - <office:document-settings (office:version="<string>" )? + <office:document-settings (office:version="#string" )? (<office:settings ... >)? >  @@ -8193,7 +8193,7 @@

office:document-styles Element Child Relations - <office:document-styles (office:version="<string>" )? + <office:document-styles (office:version="#string" )? (<office:font-face-decls ... >)? (<office:styles ... >)? (<office:automatic-styles ... >)? @@ -8383,8 +8383,8 @@

office:forms Element

Child Relations - <office:forms (form:automatic-focus="<boolean>" )? - (form:apply-design-mode="<boolean>" )? + <office:forms (form:automatic-focus="#boolean" )? + (form:apply-design-mode="#boolean" )? (<form:form ... > | <xforms:model ... >)* >  @@ -8558,7 +8558,7 @@

office:script Element

Child Relations - <office:script script:language="<string>" (<*:* ... >)* >  + <office:script script:language="#string" (<*:* ... >)*
@@ -8657,8 +8657,8 @@

office:spreadsheet Element

Child Relations <office:spreadsheet - ( (table:structure-protected="<boolean>" )? - (table:protection-key="<string>" )? + ( (table:structure-protected="#boolean" )? + (table:protection-key="#string" )? ) ( (<table:tracked-changes ... >)? @@ -8805,7 +8805,7 @@

office:text Element

Child Relations - <office:text (text:global="<boolean>" )? + <office:text (text:global="#boolean" )? ( (<office:forms ... >)? (<text:tracked-changes ... >)? @@ -8947,7 +8947,7 @@

presentation:date-time-decl Child Relations - <presentation:date-time-decl presentation:name="<string>" presentation:source="fixed | current-date" (style:data-style-name="(<NCName>)?" )? + <presentation:date-time-decl presentation:name="#string" presentation:source="fixed | current-date" (style:data-style-name="(#NCName)?" )? TEXT>  @@ -8977,7 +8977,7 @@

presentation:dim Element

Child Relations - <presentation:dim draw:shape-id="<IDREF>" draw:color="string]" (<presentation:sound ... >)? + <presentation:dim draw:shape-id="#IDREF" draw:color="string]" (<presentation:sound ... >)? >  @@ -9015,16 +9015,16 @@

presentation:event-listener Child Relations - <presentation:event-listener script:event-name="<string>" presentation:action="none | previous-page | next-page | first-page | last-page | hide | stop | execute | show | verb | fade-out | sound" (presentation:effect="none | fade | move | stripes | open | close | dissolve | wavyline | random | lines | laser | appear | hide | move-short | checkerboard | rotate | stretch" )? + <presentation:event-listener script:event-name="#string" presentation:action="none | previous-page | next-page | first-page | last-page | hide | stop | execute | show | verb | fade-out | sound" (presentation:effect="none | fade | move | stripes | open | close | dissolve | wavyline | random | lines | laser | appear | hide | move-short | checkerboard | rotate | stretch" )? (presentation:direction="none | from-left | from-top | from-right | from-bottom | from-center | from-upper-left | from-upper-right | from-lower-left | from-lower-right | to-left | to-top | to-right | to-bottom | to-upper-left | to-upper-right | to-lower-right | to-lower-left | path | spiral-inward-left | spiral-inward-right | spiral-outward-left | spiral-outward-right | vertical | horizontal | to-center | clockwise | counter-clockwise" )? (presentation:speed="slow | medium | fast" )? (presentation:start-scale="string]" )? - ( (xlink:href="<anyURI>" )? + ( (xlink:href="#anyURI" )? (xlink:type="simple" )? (xlink:show="embed" )? (xlink:actuate="onRequest" )? - ) (presentation:verb="<nonNegativeInteger>" )? + ) (presentation:verb="#nonNegativeInteger" )? (<presentation:sound ... >)? >  @@ -9082,7 +9082,7 @@

presentation:footer-decl Elemen Child Relations - <presentation:footer-decl presentation:name="<string>" TEXT>  + <presentation:footer-decl presentation:name="#string" TEXT> 
@@ -9138,7 +9138,7 @@

presentation:header-decl Elemen Child Relations - <presentation:header-decl presentation:name="<string>" TEXT>  + <presentation:header-decl presentation:name="#string" TEXT> 
@@ -9172,10 +9172,10 @@

presentation:hide-shape Element< Child Relations - <presentation:hide-shape draw:shape-id="<IDREF>" (presentation:effect="none | fade | move | stripes | open | close | dissolve | wavyline | random | lines | laser | appear | hide | move-short | checkerboard | rotate | stretch" )? + <presentation:hide-shape draw:shape-id="#IDREF" (presentation:effect="none | fade | move | stripes | open | close | dissolve | wavyline | random | lines | laser | appear | hide | move-short | checkerboard | rotate | stretch" )? (presentation:direction="none | from-left | from-top | from-right | from-bottom | from-center | from-upper-left | from-upper-right | from-lower-left | from-lower-right | to-left | to-top | to-right | to-bottom | to-upper-left | to-upper-right | to-lower-right | to-lower-left | path | spiral-inward-left | spiral-inward-right | spiral-outward-left | spiral-outward-right | vertical | horizontal | to-center | clockwise | counter-clockwise" )? (presentation:speed="slow | medium | fast" )? - (presentation:delay="<duration>" )? + (presentation:delay="#duration" )? (presentation:start-scale="string]" )? (presentation:path-id="TEXT" )? (<presentation:sound ... >)? @@ -9213,10 +9213,10 @@

presentation:hide-text Element Child Relations - <presentation:hide-text draw:shape-id="<IDREF>" (presentation:effect="none | fade | move | stripes | open | close | dissolve | wavyline | random | lines | laser | appear | hide | move-short | checkerboard | rotate | stretch" )? + <presentation:hide-text draw:shape-id="#IDREF" (presentation:effect="none | fade | move | stripes | open | close | dissolve | wavyline | random | lines | laser | appear | hide | move-short | checkerboard | rotate | stretch" )? (presentation:direction="none | from-left | from-top | from-right | from-bottom | from-center | from-upper-left | from-upper-right | from-lower-left | from-lower-right | to-left | to-top | to-right | to-bottom | to-upper-left | to-upper-right | to-lower-right | to-lower-left | path | spiral-inward-left | spiral-inward-right | spiral-outward-left | spiral-outward-right | vertical | horizontal | to-center | clockwise | counter-clockwise" )? (presentation:speed="slow | medium | fast" )? - (presentation:delay="<duration>" )? + (presentation:delay="#duration" )? (presentation:start-scale="string]" )? (presentation:path-id="TEXT" )? (<presentation:sound ... >)? @@ -9268,11 +9268,11 @@

presentation:notes Element

Child Relations - <presentation:notes (presentation:use-header-name="<string>" )? - (presentation:use-footer-name="<string>" )? - (presentation:use-date-time-name="<string>" )? - (style:page-layout-name="(<NCName>)?" )? - (draw:style-name="(<NCName>)?" )? + <presentation:notes (presentation:use-header-name="#string" )? + (presentation:use-footer-name="#string" )? + (presentation:use-date-time-name="#string" )? + (style:page-layout-name="(#NCName)?" )? + (draw:style-name="(#NCName)?" )? (<draw:rect ... > | <draw:line ... > | <draw:polyline ... > | <draw:polygon ... > | <draw:regular-polygon ... > | <draw:path ... > | <draw:circle ... > | <draw:ellipse ... > | <draw:g ... > | <draw:page-thumbnail ... > | <draw:frame ... > | <draw:measure ... > | <draw:caption ... > | <draw:connector ... > | <draw:control ... > | <dr3d:scene ... > | <draw:custom-shape ... >)* >  @@ -9332,7 +9332,7 @@

presentation:play Element

Child Relations <presentation:play - (draw:shape-id="<IDREF>" (presentation:speed="slow | medium | fast" )? + (draw:shape-id="#IDREF" (presentation:speed="slow | medium | fast" )? )>  @@ -9372,19 +9372,19 @@

presentation:settings Element< Child Relations - <presentation:settings (presentation:start-page="<string>" )? - (presentation:show="<string>" )? - (presentation:full-screen="<boolean>" )? - (presentation:endless="<boolean>" )? - (presentation:pause="<duration>" )? - (presentation:show-logo="<boolean>" )? - (presentation:force-manual="<boolean>" )? - (presentation:mouse-visible="<boolean>" )? - (presentation:mouse-as-pen="<boolean>" )? - (presentation:start-with-navigator="<boolean>" )? + <presentation:settings (presentation:start-page="#string" )? + (presentation:show="#string" )? + (presentation:full-screen="#boolean" )? + (presentation:endless="#boolean" )? + (presentation:pause="#duration" )? + (presentation:show-logo="#boolean" )? + (presentation:force-manual="#boolean" )? + (presentation:mouse-visible="#boolean" )? + (presentation:mouse-as-pen="#boolean" )? + (presentation:start-with-navigator="#boolean" )? (presentation:animations="enabled | disabled" )? (presentation:transition-on-click="enabled | disabled" )? - (presentation:stay-on-top="<boolean>" )? + (presentation:stay-on-top="#boolean" )? (<presentation:show ... >)* >  @@ -9412,7 +9412,7 @@

presentation:show Element

Child Relations - <presentation:show presentation:name="<string>" presentation:pages="TEXT" >  + <presentation:show presentation:name="#string" presentation:pages="TEXT" > 
@@ -9446,10 +9446,10 @@

presentation:show-shape Element< Child Relations - <presentation:show-shape draw:shape-id="<IDREF>" (presentation:effect="none | fade | move | stripes | open | close | dissolve | wavyline | random | lines | laser | appear | hide | move-short | checkerboard | rotate | stretch" )? + <presentation:show-shape draw:shape-id="#IDREF" (presentation:effect="none | fade | move | stripes | open | close | dissolve | wavyline | random | lines | laser | appear | hide | move-short | checkerboard | rotate | stretch" )? (presentation:direction="none | from-left | from-top | from-right | from-bottom | from-center | from-upper-left | from-upper-right | from-lower-left | from-lower-right | to-left | to-top | to-right | to-bottom | to-upper-left | to-upper-right | to-lower-right | to-lower-left | path | spiral-inward-left | spiral-inward-right | spiral-outward-left | spiral-outward-right | vertical | horizontal | to-center | clockwise | counter-clockwise" )? (presentation:speed="slow | medium | fast" )? - (presentation:delay="<duration>" )? + (presentation:delay="#duration" )? (presentation:start-scale="string]" )? (presentation:path-id="TEXT" )? (<presentation:sound ... >)? @@ -9487,10 +9487,10 @@

presentation:show-text Element Child Relations - <presentation:show-text draw:shape-id="<IDREF>" (presentation:effect="none | fade | move | stripes | open | close | dissolve | wavyline | random | lines | laser | appear | hide | move-short | checkerboard | rotate | stretch" )? + <presentation:show-text draw:shape-id="#IDREF" (presentation:effect="none | fade | move | stripes | open | close | dissolve | wavyline | random | lines | laser | appear | hide | move-short | checkerboard | rotate | stretch" )? (presentation:direction="none | from-left | from-top | from-right | from-bottom | from-center | from-upper-left | from-upper-right | from-lower-left | from-lower-right | to-left | to-top | to-right | to-bottom | to-upper-left | to-upper-right | to-lower-right | to-lower-left | path | spiral-inward-left | spiral-inward-right | spiral-outward-left | spiral-outward-right | vertical | horizontal | to-center | clockwise | counter-clockwise" )? (presentation:speed="slow | medium | fast" )? - (presentation:delay="<duration>" )? + (presentation:delay="#duration" )? (presentation:start-scale="string]" )? (presentation:path-id="TEXT" )? (<presentation:sound ... >)? @@ -9529,8 +9529,8 @@

presentation:sound Element

Child Relations - <presentation:sound (presentation:play-full="<boolean>" )? - xlink:href="<anyURI>" (xlink:type="simple" )? + <presentation:sound (presentation:play-full="#boolean" )? + xlink:href="#anyURI" (xlink:type="simple" )? (xlink:actuate="onRequest" )? (xlink:show="new | replace" )? >  @@ -9564,8 +9564,8 @@

script:event-listener Element< Child Relations - <script:event-listener script:event-name="<string>" script:language="<string>" script:macro-name="<string>" | - (xlink:href="<anyURI>" (xlink:type="simple" )? + <script:event-listener script:event-name="#string" script:language="#string" script:macro-name="#string" | + (xlink:href="#anyURI" (xlink:type="simple" )? (xlink:actuate="onRequest" )? )>  @@ -9768,40 +9768,40 @@

style:font-face Element

Child Relations <style:font-face - ( (svg:font-family="<string>" )? + ( (svg:font-family="#string" )? (svg:font-style="normal | italic | oblique" )? (svg:font-variant="normal | small-caps" )? (svg:font-weight="normal | bold | 100 | 200 | 300 | 400 | 500 | 600 | 700 | 800 | 900" )? (svg:font-stretch="normal | ultra-condensed | extra-condensed | condensed | semi-condensed | semi-expanded | expanded | extra-expanded | ultra-expanded" )? (svg:font-size="string]" )? (svg:unicode-range="TEXT" )? - (svg:units-per-em="<integer>" )? + (svg:units-per-em="#integer" )? (svg:panose-1="TEXT" )? - (svg:stemv="<integer>" )? - (svg:stemh="<integer>" )? - (svg:slope="<integer>" )? - (svg:cap-height="<integer>" )? - (svg:x-height="<integer>" )? - (svg:accent-height="<integer>" )? - (svg:ascent="<integer>" )? - (svg:descent="<integer>" )? + (svg:stemv="#integer" )? + (svg:stemh="#integer" )? + (svg:slope="#integer" )? + (svg:cap-height="#integer" )? + (svg:x-height="#integer" )? + (svg:accent-height="#integer" )? + (svg:ascent="#integer" )? + (svg:descent="#integer" )? (svg:widths="TEXT" )? (svg:bbox="TEXT" )? - (svg:ideographic="<integer>" )? - (svg:alphabetic="<integer>" )? - (svg:mathematical="<integer>" )? - (svg:hanging="<integer>" )? - (svg:v-ideographic="<integer>" )? - (svg:v-alphabetic="<integer>" )? - (svg:v-mathematical="<integer>" )? - (svg:v-hanging="<integer>" )? - (svg:underline-position="<integer>" )? - (svg:underline-thickness="<integer>" )? - (svg:strikethrough-position="<integer>" )? - (svg:strikethrough-thickness="<integer>" )? - (svg:overline-position="<integer>" )? - (svg:overline-thickness="<integer>" )? - )style:name="<string>" (style:font-adornments="<string>" )? + (svg:ideographic="#integer" )? + (svg:alphabetic="#integer" )? + (svg:mathematical="#integer" )? + (svg:hanging="#integer" )? + (svg:v-ideographic="#integer" )? + (svg:v-alphabetic="#integer" )? + (svg:v-mathematical="#integer" )? + (svg:v-hanging="#integer" )? + (svg:underline-position="#integer" )? + (svg:underline-thickness="#integer" )? + (svg:strikethrough-position="#integer" )? + (svg:strikethrough-thickness="#integer" )? + (svg:overline-position="#integer" )? + (svg:overline-thickness="#integer" )? + )style:name="#string" (style:font-adornments="#string" )? (style:font-family-generic="roman | swiss | modern | decorative | script | system" )? (style:font-pitch="fixed | variable" )? (style:font-charset="string]" )? @@ -9857,7 +9857,7 @@

style:footer Element

Child Relations - <style:footer (style:display="<boolean>" )? + <style:footer (style:display="#boolean" )? ( ( (<text:variable-decls ... >)? @@ -9919,7 +9919,7 @@

style:footer-left Element

Child Relations - <style:footer-left (style:display="<boolean>" )? + <style:footer-left (style:display="#boolean" )? ( ( (<text:variable-decls ... >)? @@ -10035,11 +10035,11 @@

style:handout-master Element Child Relations - <style:handout-master (presentation:use-header-name="<string>" )? - (presentation:use-footer-name="<string>" )? - (presentation:use-date-time-name="<string>" )? - (presentation:presentation-page-layout-name="(<NCName>)?" )? - style:page-layout-name="(<NCName>)?" (draw:style-name="(<NCName>)?" )? + <style:handout-master (presentation:use-header-name="#string" )? + (presentation:use-footer-name="#string" )? + (presentation:use-date-time-name="#string" )? + (presentation:presentation-page-layout-name="(#NCName)?" )? + style:page-layout-name="(#NCName)?" (draw:style-name="(#NCName)?" )? (<draw:rect ... > | <draw:line ... > | <draw:polyline ... > | <draw:polygon ... > | <draw:regular-polygon ... > | <draw:path ... > | <draw:circle ... > | <draw:ellipse ... > | <draw:g ... > | <draw:page-thumbnail ... > | <draw:frame ... > | <draw:measure ... > | <draw:caption ... > | <draw:connector ... > | <draw:control ... > | <dr3d:scene ... > | <draw:custom-shape ... >)* >  @@ -10090,7 +10090,7 @@

style:header Element

Child Relations - <style:header (style:display="<boolean>" )? + <style:header (style:display="#boolean" )? ( ( (<text:variable-decls ... >)? @@ -10181,7 +10181,7 @@

style:header-left Element

Child Relations - <style:header-left (style:display="<boolean>" )? + <style:header-left (style:display="#boolean" )? ( ( (<text:variable-decls ... >)? @@ -10286,7 +10286,7 @@

style:map Element

Child Relations - <style:map style:condition="<string>" style:apply-style-name="(<NCName>)?" (style:base-cell-address="string]" )? + <style:map style:condition="#string" style:apply-style-name="(#NCName)?" (style:base-cell-address="string]" )? >  @@ -10341,9 +10341,9 @@

style:master-page Element

Child Relations - <style:master-page style:name="<NCName>" (style:display-name="<string>" )? - style:page-layout-name="(<NCName>)?" (draw:style-name="(<NCName>)?" )? - (style:next-style-name="(<NCName>)?" )? + <style:master-page style:name="#NCName" (style:display-name="#string" )? + style:page-layout-name="(#NCName)?" (draw:style-name="(#NCName)?" )? + (style:next-style-name="(#NCName)?" )? (<style:header ... > (<style:header-left ... >)? )? (<style:footer ... > (<style:footer-left ... >)? @@ -10381,7 +10381,7 @@

style:page-layout Element

Child Relations - <style:page-layout style:name="<NCName>" (style:page-usage="all | left | right | mirrored" )? + <style:page-layout style:name="#NCName" (style:page-usage="all | left | right | mirrored" )? (<style:page-layout-properties ... >)? (<style:header-style ... >)? (<style:footer-style ... >)? @@ -10470,7 +10470,7 @@

style:presentation-page-l Child Relations - <style:presentation-page-layout style:name="<NCName>" (style:display-name="<string>" )? + <style:presentation-page-layout style:name="#NCName" (style:display-name="#string" )? (<presentation:placeholder ... >)* >  @@ -10676,15 +10676,15 @@

style:style Element

Child Relations - <style:style style:name="<NCName>" (style:display-name="<string>" )? - (style:parent-style-name="(<NCName>)?" )? - (style:next-style-name="(<NCName>)?" )? - (style:list-style-name="(<NCName>)?" )? - (style:master-page-name="(<NCName>)?" )? - (style:auto-update="<boolean>" )? - (style:data-style-name="(<NCName>)?" )? - (style:class="<string>" )? - (style:default-outline-level="<positiveInteger>" )? + <style:style style:name="#NCName" (style:display-name="#string" )? + (style:parent-style-name="(#NCName)?" )? + (style:next-style-name="(#NCName)?" )? + (style:list-style-name="(#NCName)?" )? + (style:master-page-name="(#NCName)?" )? + (style:auto-update="#boolean" )? + (style:data-style-name="(#NCName)?" )? + (style:class="#string" )? + (style:default-outline-level="#positiveInteger" )? (style:family="text" (<style:text-properties ... >)? ) | @@ -10899,7 +10899,7 @@

svg:definition-src Element

Child Relations <svg:definition-src - (xlink:href="<anyURI>" (xlink:type="simple" )? + (xlink:href="#anyURI" (xlink:type="simple" )? (xlink:actuate="onRequest" )? )>  @@ -11041,7 +11041,7 @@

svg:font-face-uri Element

Child Relations <svg:font-face-uri - (xlink:href="<anyURI>" (xlink:type="simple" )? + (xlink:href="#anyURI" (xlink:type="simple" )? (xlink:actuate="onRequest" )? )(<svg:font-face-format ... >)* >  @@ -11080,9 +11080,9 @@

svg:linearGradient Element

Child Relations <svg:linearGradient ( (svg:gradientUnits="objectBoundingBox" )? - (svg:gradientTransform="<string>" )? + (svg:gradientTransform="#string" )? (svg:spreadMethod="pad | reflect | repeat" )? - )draw:name="<NCName>" (draw:display-name="<string>" )? + )draw:name="#NCName" (draw:display-name="#string" )? (svg:x1="string] | string]" )? (svg:y1="string] | string]" )? (svg:x2="string] | string]" )? @@ -11125,9 +11125,9 @@

svg:radialGradient Element

Child Relations <svg:radialGradient ( (svg:gradientUnits="objectBoundingBox" )? - (svg:gradientTransform="<string>" )? + (svg:gradientTransform="#string" )? (svg:spreadMethod="pad | reflect | repeat" )? - )draw:name="<NCName>" (draw:display-name="<string>" )? + )draw:name="#NCName" (draw:display-name="#string" )? (svg:cx="string] | string]" )? (svg:cy="string] | string]" )? (svg:r="string] | string]" )? @@ -11162,8 +11162,8 @@

svg:stop Element

Child Relations - <svg:stop svg:offset="<double> | string]" (svg:stop-color="string]" )? - (svg:stop-opacity="<double>" )? + <svg:stop svg:offset="#double | string]" (svg:stop-color="string]" )? + (svg:stop-opacity="#double" )? >  @@ -11201,12 +11201,12 @@

table:calculation-settings El Child Relations - <table:calculation-settings (table:case-sensitive="<boolean>" )? - (table:precision-as-shown="<boolean>" )? - (table:search-criteria-must-apply-to-whole-cell="<boolean>" )? - (table:automatic-find-labels="<boolean>" )? - (table:use-regular-expressions="<boolean>" )? - (table:null-year="<positiveInteger>" )? + <table:calculation-settings (table:case-sensitive="#boolean" )? + (table:precision-as-shown="#boolean" )? + (table:search-criteria-must-apply-to-whole-cell="#boolean" )? + (table:automatic-find-labels="#boolean" )? + (table:use-regular-expressions="#boolean" )? + (table:null-year="#positiveInteger" )? (<table:null-date ... >)? (<table:iteration ... >)? >  @@ -11239,7 +11239,7 @@

table:cell-address Element

Child Relations <table:cell-address - (table:column="<integer>" table:row="<integer>" table:table="<integer>" )>  + (table:column="#integer" table:row="#integer" table:table="#integer" )> 
@@ -11272,8 +11272,8 @@

table:cell-content-change Elem Child Relations - <table:cell-content-change table:id="<string>" (table:acceptance-state="accepted | rejected | pending" )? - (table:rejecting-change-id="<string>" )? + <table:cell-content-change table:id="#string" (table:acceptance-state="accepted | rejected | pending" )? + (table:rejecting-change-id="#string" )? <table:cell-address ... ><office:change-info ... > (<table:dependencies ... >)? (<table:deletions ... >)? <table:previous ... >>  @@ -11304,7 +11304,7 @@

table:cell-content-deletion Child Relations - <table:cell-content-deletion (table:id="<string>" )? + <table:cell-content-deletion (table:id="#string" )? (<table:cell-address ... >)? (<table:change-track-table-cell ... >)? >  @@ -11342,13 +11342,13 @@

table:cell-range-source Element< Child Relations - <table:cell-range-source table:name="<string>" - (table:last-column-spanned="<positiveInteger>" table:last-row-spanned="<positiveInteger>" ) + <table:cell-range-source table:name="#string" + (table:last-column-spanned="#positiveInteger" table:last-row-spanned="#positiveInteger" ) ( (xlink:type="simple" )? (xlink:actuate="onRequest" )? - xlink:href="<anyURI>" ) (table:filter-name="<string>" )? - (table:filter-options="<string>" )? - (table:refresh-delay="<duration>" )? + xlink:href="#anyURI" ) (table:filter-name="#string" )? + (table:filter-options="#string" )? + (table:refresh-delay="#duration" )? >  @@ -11375,7 +11375,7 @@

table:change-deletion Element< Child Relations - <table:change-deletion (table:id="<string>" )? + <table:change-deletion (table:id="#string" )? >  @@ -11422,20 +11422,20 @@

table:change-track-table-c Child Relations <table:change-track-table-cell (table:cell-address="string]" )? - (table:matrix-covered="<boolean>" )? + (table:matrix-covered="#boolean" )? - ( (table:formula="<string>" )? - (table:number-matrix-columns-spanned="<positiveInteger>" )? - (table:number-matrix-rows-spanned="<positiveInteger>" )? + ( (table:formula="#string" )? + (table:number-matrix-columns-spanned="#positiveInteger" )? + (table:number-matrix-rows-spanned="#positiveInteger" )? ( - (office:value-type="float" office:value="<double>" ) | - (office:value-type="percentage" office:value="<double>" ) | - (office:value-type="currency" office:value="<double>" (office:currency="<string>" )? + (office:value-type="float" office:value="#double" ) | + (office:value-type="percentage" office:value="#double" ) | + (office:value-type="currency" office:value="#double" (office:currency="#string" )? ) | - (office:value-type="date" office:date-value="<date> | <dateTime>" ) | - (office:value-type="time" office:time-value="<duration>" ) | - (office:value-type="boolean" office:boolean-value="<boolean>" ) | - (office:value-type="string" (office:string-value="<string>" )? + (office:value-type="date" office:date-value="#date | #dateTime" ) | + (office:value-type="time" office:time-value="#duration" ) | + (office:value-type="boolean" office:boolean-value="#boolean" ) | + (office:value-type="string" (office:string-value="#string" )? ))? )(<text:p ... >)* >  @@ -11471,8 +11471,8 @@

table:consolidation Element

Child Relations - <table:consolidation table:function="auto | average | count | countnums | max | min | product | stdev | stdevp | sum | var | varp | <string>" table:source-cell-range-addresses="<string>" table:target-cell-address="string]" (table:use-labels="none | row | column | both" )? - (table:link-to-source-data="<boolean>" )? + <table:consolidation table:function="auto | average | count | countnums | max | min | product | stdev | stdevp | sum | var | varp | #string" table:source-cell-range-addresses="#string" table:target-cell-address="string]" (table:use-labels="none | row | column | both" )? + (table:link-to-source-data="#boolean" )? >  @@ -11507,9 +11507,9 @@

table:content-validation Elemen Child Relations - <table:content-validation table:name="<string>" (table:condition="<string>" )? + <table:content-validation table:name="#string" (table:condition="#string" )? (table:base-cell-address="string]" )? - (table:allow-empty-cell="<boolean>" )? + (table:allow-empty-cell="#boolean" )? (table:display-list="none | unsorted | sort-ascending" )? (<table:help-message ... >)? (<table:error-message ... > | @@ -11625,21 +11625,21 @@

table:covered-table-cell Elemen Child Relations - <table:covered-table-cell (table:number-columns-repeated="<positiveInteger>" )? - (table:style-name="(<NCName>)?" )? - (table:content-validation-name="<string>" )? - (table:formula="<string>" )? + <table:covered-table-cell (table:number-columns-repeated="#positiveInteger" )? + (table:style-name="(#NCName)?" )? + (table:content-validation-name="#string" )? + (table:formula="#string" )? ( - (office:value-type="float" office:value="<double>" ) | - (office:value-type="percentage" office:value="<double>" ) | - (office:value-type="currency" office:value="<double>" (office:currency="<string>" )? + (office:value-type="float" office:value="#double" ) | + (office:value-type="percentage" office:value="#double" ) | + (office:value-type="currency" office:value="#double" (office:currency="#string" )? ) | - (office:value-type="date" office:date-value="<date> | <dateTime>" ) | - (office:value-type="time" office:time-value="<duration>" ) | - (office:value-type="boolean" office:boolean-value="<boolean>" ) | - (office:value-type="string" (office:string-value="<string>" )? + (office:value-type="date" office:date-value="#date | #dateTime" ) | + (office:value-type="time" office:time-value="#duration" ) | + (office:value-type="boolean" office:boolean-value="#boolean" ) | + (office:value-type="string" (office:string-value="#string" )? ))? - (table:protect="<boolean>" )? + (table:protect="#boolean" )? ( (<table:cell-range-source ... >)? (<office:annotation ... >)? @@ -11701,7 +11701,7 @@

table:data-pilot-display-i Child Relations - <table:data-pilot-display-info table:enabled="<boolean>" table:data-field="<string>" table:member-count="<nonNegativeInteger>" table:display-member-mode="from-top | from-bottom" >  + <table:data-pilot-display-info table:enabled="#boolean" table:data-field="#string" table:member-count="#nonNegativeInteger" table:display-member-mode="from-top | from-bottom" > 
@@ -11736,10 +11736,10 @@

table:data-pilot-field Element Child Relations - <table:data-pilot-field table:source-field-name="<string>" table:orientation="row | column | data | hidden" | - (table:orientation="page" table:selected-page="<string>" ) (table:is-data-layout-field="<string>" )? - (table:function="auto | average | count | countnums | max | min | product | stdev | stdevp | sum | var | varp | <string>" )? - (table:used-hierarchy="<integer>" )? + <table:data-pilot-field table:source-field-name="#string" table:orientation="row | column | data | hidden" | + (table:orientation="page" table:selected-page="#string" ) (table:is-data-layout-field="#string" )? + (table:function="auto | average | count | countnums | max | min | product | stdev | stdevp | sum | var | varp | #string" )? + (table:used-hierarchy="#integer" )? (<table:data-pilot-level ... >)? (<table:data-pilot-field-reference ... >)? (<table:data-pilot-groups ... >)? @@ -11773,8 +11773,8 @@

table:data-pilot-field- Child Relations - <table:data-pilot-field-reference table:field-name="<string>" - (table:member-type="named" table:member-name="<string>" ) | table:member-type="previous | next" table:type="none | member-difference | member-percentage | member-percentage-difference | running-total | row-percentage | column-percentage | total-percentage | index" >  + <table:data-pilot-field-reference table:field-name="#string" + (table:member-type="named" table:member-name="#string" ) | table:member-type="previous | next" table:type="none | member-difference | member-percentage | member-percentage-difference | running-total | row-percentage | column-percentage | total-percentage | index" > 
@@ -11801,7 +11801,7 @@

table:data-pilot-group Element Child Relations - <table:data-pilot-group table:name="<string>" (<table:data-pilot-group-member ... >)+ >  + <table:data-pilot-group table:name="#string" (<table:data-pilot-group-member ... >)+ > 
@@ -11827,7 +11827,7 @@

table:data-pilot-group-mem Child Relations - <table:data-pilot-group-member table:name="<string>" >  + <table:data-pilot-group-member table:name="#string" > 
@@ -11860,7 +11860,7 @@

table:data-pilot-groups Element< Child Relations - <table:data-pilot-groups table:source-field-name="<string>" table:date-start="<date> | <dateTime> | auto" | table:start="<double> | auto" table:date-end="<date> | <dateTime> | auto" | table:end="<double> | auto" table:step="<double>" table:grouped-by="seconds | minutes | hours | days | months | quarters | years" (<table:data-pilot-group ... >)+ >  + <table:data-pilot-groups table:source-field-name="#string" table:date-start="#date | #dateTime | auto" | table:start="#double | auto" table:date-end="#date | #dateTime | auto" | table:end="#double | auto" table:step="#double" table:grouped-by="seconds | minutes | hours | days | months | quarters | years" (<table:data-pilot-group ... >)+ > 
@@ -11887,7 +11887,7 @@

table:data-pilot-layout-inf Child Relations - <table:data-pilot-layout-info table:layout-mode="tabular-layout | outline-subtotals-top | outline-subtotals-bottom" table:add-empty-lines="<boolean>" >  + <table:data-pilot-layout-info table:layout-mode="tabular-layout | outline-subtotals-top | outline-subtotals-bottom" table:add-empty-lines="#boolean" > 
@@ -11918,7 +11918,7 @@

table:data-pilot-level Element Child Relations - <table:data-pilot-level (table:show-empty="<boolean>" )? + <table:data-pilot-level (table:show-empty="#boolean" )? (<table:data-pilot-subtotals ... >)? (<table:data-pilot-members ... >)? (<table:data-pilot-display-info ... >)? @@ -11952,8 +11952,8 @@

table:data-pilot-member Element< Child Relations - <table:data-pilot-member table:name="<string>" (table:display="<boolean>" )? - (table:show-details="<boolean>" )? + <table:data-pilot-member table:name="#string" (table:display="#boolean" )? + (table:show-details="#boolean" )? >  @@ -12010,7 +12010,7 @@

table:data-pilot-sort-info El Child Relations <table:data-pilot-sort-info - (table:sort-mode="data" table:data-field="<string>" ) | table:sort-mode="none | manual | name" table:order="ascending | descending" >  + (table:sort-mode="data" table:data-field="#string" ) | table:sort-mode="none | manual | name" table:order="ascending | descending" > 
@@ -12036,7 +12036,7 @@

table:data-pilot-subtotal Elem Child Relations - <table:data-pilot-subtotal table:function="auto | average | count | countnums | max | min | product | stdev | stdevp | sum | var | varp | <string>" >  + <table:data-pilot-subtotal table:function="auto | average | count | countnums | max | min | product | stdev | stdevp | sum | var | varp | #string" > 
@@ -12102,13 +12102,13 @@

table:data-pilot-table Element Child Relations - <table:data-pilot-table table:name="<string>" (table:application-data="<string>" )? + <table:data-pilot-table table:name="#string" (table:application-data="#string" )? (table:grand-total="none | row | column | both" )? - (table:ignore-empty-rows="<boolean>" )? - (table:identify-categories="<boolean>" )? - table:target-range-address="string]" (table:buttons="<string>" )? - (table:show-filter-button="<boolean>" )? - (table:drill-down-on-double-click="<boolean>" )? + (table:ignore-empty-rows="#boolean" )? + (table:identify-categories="#boolean" )? + table:target-range-address="string]" (table:buttons="#string" )? + (table:show-filter-button="#boolean" )? + (table:drill-down-on-double-click="#boolean" )? (<table:database-source-sql ... > | <table:database-source-query ... > | <table:database-source-table ... > | <table:source-service ... > | <table:source-cell-range ... >)? (<table:data-pilot-field ... >)+ >  @@ -12181,15 +12181,15 @@

table:database-range Element Child Relations - <table:database-range (table:name="<string>" )? - (table:is-selection="<boolean>" )? - (table:on-update-keep-styles="<boolean>" )? - (table:on-update-keep-size="<boolean>" )? - (table:has-persistent-data="<boolean>" )? + <table:database-range (table:name="#string" )? + (table:is-selection="#boolean" )? + (table:on-update-keep-styles="#boolean" )? + (table:on-update-keep-size="#boolean" )? + (table:has-persistent-data="#boolean" )? (table:orientation="column | row" )? - (table:contains-header="<boolean>" )? - (table:display-filter-buttons="<boolean>" )? - table:target-range-address="string]" (table:refresh-delay="<boolean>" )? + (table:contains-header="#boolean" )? + (table:display-filter-buttons="#boolean" )? + table:target-range-address="string]" (table:refresh-delay="#boolean" )? (<table:database-source-sql ... > | <table:database-source-query ... > | <table:database-source-table ... >)? (<table:filter ... >)? (<table:sort ... >)? @@ -12252,7 +12252,7 @@

table:database-source-query Child Relations - <table:database-source-query table:database-name="<string>" table:query-name="<string>" >  + <table:database-source-query table:database-name="#string" table:query-name="#string" > 
@@ -12281,7 +12281,7 @@

table:database-source-sql Elem Child Relations - <table:database-source-sql table:database-name="<string>" table:sql-statement="<string>" (table:parse-sql-statement="<boolean>" )? + <table:database-source-sql table:database-name="#string" table:sql-statement="#string" (table:parse-sql-statement="#boolean" )? >  @@ -12310,7 +12310,7 @@

table:database-source-table Child Relations - <table:database-source-table table:database-name="<string>" table:database-table-name="<string>" >  + <table:database-source-table table:database-name="#string" table:database-table-name="#string" > 
@@ -12403,10 +12403,10 @@

table:deletion Element

Child Relations - <table:deletion table:type="row | column | table" table:position="<integer>" (table:table="<integer>" )? - (table:multi-deletion-spanned="<integer>" )? - table:id="<string>" (table:acceptance-state="accepted | rejected | pending" )? - (table:rejecting-change-id="<string>" )? + <table:deletion table:type="row | column | table" table:position="#integer" (table:table="#integer" )? + (table:multi-deletion-spanned="#integer" )? + table:id="#string" (table:acceptance-state="accepted | rejected | pending" )? + (table:rejecting-change-id="#string" )? <office:change-info ... > (<table:dependencies ... >)? (<table:deletions ... >)? (<table:cut-offs ... >)? @@ -12495,7 +12495,7 @@

table:dependency Element

Child Relations - <table:dependency table:id="<string>" >  + <table:dependency table:id="#string" > 
@@ -12549,7 +12549,7 @@

table:error-macro Element

Child Relations - <table:error-macro (table:execute="<boolean>" )? + <table:error-macro (table:execute="#boolean" )? >  @@ -12579,8 +12579,8 @@

table:error-message Element

Child Relations - <table:error-message (table:title="<string>" )? - (table:display="<boolean>" )? + <table:error-message (table:title="#string" )? + (table:display="#boolean" )? (table:message-type="stop | warning | information" )? (<text:p ... >)* >  @@ -12618,7 +12618,7 @@

table:filter Element

<table:filter (table:target-range-address="string]" )? (table:condition-source="self | cell-range" )? (table:condition-source-range-address="string]" )? - (table:display-duplicates="<boolean>" )? + (table:display-duplicates="#boolean" )? <table:filter-condition ... > | <table:filter-and ... > | <table:filter-or ... >>  @@ -12679,7 +12679,7 @@

table:filter-condition Element Child Relations - <table:filter-condition table:field-number="<nonNegativeInteger>" table:value="<string>" table:operator="<string>" (table:case-sensitive="<string>" )? + <table:filter-condition table:field-number="#nonNegativeInteger" table:value="#string" table:operator="#string" (table:case-sensitive="#string" )? (table:data-type="text | number" )? >  @@ -12737,8 +12737,8 @@

table:help-message Element

Child Relations - <table:help-message (table:title="<string>" )? - (table:display="<boolean>" )? + <table:help-message (table:title="#string" )? + (table:display="#boolean" )? (<text:p ... >)* >  @@ -12769,8 +12769,8 @@

table:highlighted-range Element< Child Relations <table:highlighted-range (table:cell-range-address="string]" )? - table:direction="from-another-table | to-another-table | from-same-table" (table:contains-error="<boolean>" )? - | table:marked-invalid="<boolean>" >  + table:direction="from-another-table | to-another-table | from-same-table" (table:contains-error="#boolean" )? + | table:marked-invalid="#boolean" > 
@@ -12805,10 +12805,10 @@

table:insertion Element

Child Relations - <table:insertion table:type="row | column | table" table:position="<integer>" (table:count="<positiveInteger>" )? - (table:table="<integer>" )? - table:id="<string>" (table:acceptance-state="accepted | rejected | pending" )? - (table:rejecting-change-id="<string>" )? + <table:insertion table:type="row | column | table" table:position="#integer" (table:count="#positiveInteger" )? + (table:table="#integer" )? + table:id="#string" (table:acceptance-state="accepted | rejected | pending" )? + (table:rejecting-change-id="#string" )? <office:change-info ... > (<table:dependencies ... >)? (<table:deletions ... >)? >  @@ -12838,7 +12838,7 @@

table:insertion-cut-off Element< Child Relations - <table:insertion-cut-off table:id="<string>" table:position="<integer>" >  + <table:insertion-cut-off table:id="#string" table:position="#integer" > 
@@ -12867,8 +12867,8 @@

table:iteration Element

Child Relations <table:iteration (table:status="enable | disable" )? - (table:steps="<positiveInteger>" )? - (table:maximum-difference="<double>" )? + (table:steps="#positiveInteger" )? + (table:maximum-difference="#double" )? >  @@ -12960,8 +12960,8 @@

table:movement Element

Child Relations - <table:movement table:id="<string>" (table:acceptance-state="accepted | rejected | pending" )? - (table:rejecting-change-id="<string>" )? + <table:movement table:id="#string" (table:acceptance-state="accepted | rejected | pending" )? + (table:rejecting-change-id="#string" )? <table:source-range-address ... ><table:target-range-address ... ><office:change-info ... > (<table:dependencies ... >)? (<table:deletions ... >)? >  @@ -12992,8 +12992,8 @@

table:movement-cut-off Element Child Relations - <table:movement-cut-off table:position="<integer>" | - (table:start-position="<integer>" table:end-position="<integer>" )>  + <table:movement-cut-off table:position="#integer" | + (table:start-position="#integer" table:end-position="#integer" )> 
@@ -13022,7 +13022,7 @@

table:named-expression Element Child Relations <table:named-expression - (table:name="<string>" table:expression="<string>" (table:base-cell-address="string]" )? + (table:name="#string" table:expression="#string" (table:base-cell-address="string]" )? )>  @@ -13084,7 +13084,7 @@

table:named-range Element

Child Relations <table:named-range - (table:name="<string>" table:cell-range-address="string]" (table:base-cell-address="string]" )? + (table:name="#string" table:cell-range-address="string]" (table:base-cell-address="string]" )? (table:range-usable-as="none | START_list(print-range | filter | repeat-row | repeat-column)+ END_list" )? @@ -13116,7 +13116,7 @@

table:null-date Element

Child Relations <table:null-date (table:value-type="float | time | date | percentage | currency | boolean | string" )? - (table:date-value-type="<date>" )? + (table:date-value-type="#date" )? >  @@ -13144,7 +13144,7 @@

table:operation Element

Child Relations - <table:operation table:name="trace-dependents | remove-dependents | trace-precedents | remove-precedents | trace-errors" table:index="<nonNegativeInteger>" >  + <table:operation table:name="trace-dependents | remove-dependents | trace-precedents | remove-precedents | trace-errors" table:index="#nonNegativeInteger" > 
@@ -13171,7 +13171,7 @@

table:previous Element

Child Relations - <table:previous (table:id="<string>" )? + <table:previous (table:id="#string" )? <table:change-track-table-cell ... >>  @@ -13206,13 +13206,13 @@

table:scenario Element

Child Relations - <table:scenario table:scenario-ranges="<string>" table:is-active="<boolean>" (table:display-border="<boolean>" )? + <table:scenario table:scenario-ranges="#string" table:is-active="#boolean" (table:display-border="#boolean" )? (table:border-color="string]" )? - (table:copy-back="<boolean>" )? - (table:copy-styles="<boolean>" )? - (table:copy-formulas="<boolean>" )? - (table:comment="<string>" )? - (table:protected="<boolean>" )? + (table:copy-back="#boolean" )? + (table:copy-styles="#boolean" )? + (table:copy-formulas="#boolean" )? + (table:comment="#string" )? + (table:protected="#boolean" )? >  @@ -13287,12 +13287,12 @@

table:sort Element

Child Relations - <table:sort (table:bind-styles-to-content="<boolean>" )? + <table:sort (table:bind-styles-to-content="#boolean" )? (table:target-range-address="string]" )? - (table:case-sensitive="<boolean>" )? + (table:case-sensitive="#boolean" )? (table:language="token]" )? (table:country="token]" )? - (table:algorithm="<string>" )? + (table:algorithm="#string" )? (<table:sort-by ... >)+ >  @@ -13321,7 +13321,7 @@

table:sort-by Element

Child Relations - <table:sort-by table:field-number="<nonNegativeInteger>" (table:data-type="text | number | automatic | <string>" )? + <table:sort-by table:field-number="#nonNegativeInteger" (table:data-type="text | number | automatic | #string" )? (table:order="ascending | descending" )? >  @@ -13350,7 +13350,7 @@

table:sort-groups Element

Child Relations - <table:sort-groups (table:data-type="text | number | automatic | <string>" )? + <table:sort-groups (table:data-type="text | number | automatic | #string" )? (table:order="ascending | descending" )? >  @@ -13415,8 +13415,8 @@

table:source-range-address El Child Relations <table:source-range-address - (table:column="<integer>" table:row="<integer>" table:table="<integer>" ) | - (table:start-column="<integer>" table:start-row="<integer>" table:start-table="<integer>" table:end-column="<integer>" table:end-row="<integer>" table:end-table="<integer>" )>  + (table:column="#integer" table:row="#integer" table:table="#integer" ) | + (table:start-column="#integer" table:start-row="#integer" table:start-table="#integer" table:end-column="#integer" table:end-row="#integer" table:end-table="#integer" )> 
@@ -13446,8 +13446,8 @@

table:source-service Element Child Relations - <table:source-service table:name="<string>" table:source-name="<string>" table:object-name="<string>" (table:user-name="<string>" )? - (table:password="<string>" )? + <table:source-service table:name="#string" table:source-name="#string" table:object-name="#string" (table:user-name="#string" )? + (table:password="#string" )? >  @@ -13475,7 +13475,7 @@

table:subtotal-field Element Child Relations - <table:subtotal-field table:field-number="<nonNegativeInteger>" table:function="auto | average | count | countnums | max | min | product | stdev | stdevp | sum | var | varp | <string>" >  + <table:subtotal-field table:field-number="#nonNegativeInteger" table:function="auto | average | count | countnums | max | min | product | stdev | stdevp | sum | var | varp | #string" > 
@@ -13502,7 +13502,7 @@

table:subtotal-rule Element

Child Relations - <table:subtotal-rule table:group-by-field-number="<nonNegativeInteger>" (<table:subtotal-field ... >)* >  + <table:subtotal-rule table:group-by-field-number="#nonNegativeInteger" (<table:subtotal-field ... >)* > 
@@ -13532,9 +13532,9 @@

table:subtotal-rules Element Child Relations - <table:subtotal-rules (table:bind-styles-to-content="<boolean>" )? - (table:case-sensitive="<boolean>" )? - (table:page-breaks-on-group-change="<boolean>" )? + <table:subtotal-rules (table:bind-styles-to-content="#boolean" )? + (table:case-sensitive="#boolean" )? + (table:page-breaks-on-group-change="#boolean" )? (<table:sort-groups ... >)? (<table:subtotal-rule ... >)* >  @@ -13596,14 +13596,14 @@

table:table Element

Child Relations - <table:table (table:name="<string>" )? - (table:style-name="(<NCName>)?" )? + <table:table (table:name="#string" )? + (table:style-name="(#NCName)?" )? - ( (table:protected="<boolean>" )? + ( (table:protected="#boolean" )? (table:protection-key="TEXT" )? - ) (table:print="<boolean>" )? - (table:print-ranges="<string>" )? - (table:is-sub-table="<boolean>" )? + ) (table:print="#boolean" )? + (table:print-ranges="#string" )? + (table:is-sub-table="#boolean" )? (<table:table-source ... >)? (<office:dde-source ... >)? (<table:scenario ... >)? @@ -13704,27 +13704,27 @@

table:table-cell Element

Child Relations - <table:table-cell (table:number-columns-repeated="<positiveInteger>" )? - (table:style-name="(<NCName>)?" )? - (table:content-validation-name="<string>" )? - (table:formula="<string>" )? + <table:table-cell (table:number-columns-repeated="#positiveInteger" )? + (table:style-name="(#NCName)?" )? + (table:content-validation-name="#string" )? + (table:formula="#string" )? ( - (office:value-type="float" office:value="<double>" ) | - (office:value-type="percentage" office:value="<double>" ) | - (office:value-type="currency" office:value="<double>" (office:currency="<string>" )? + (office:value-type="float" office:value="#double" ) | + (office:value-type="percentage" office:value="#double" ) | + (office:value-type="currency" office:value="#double" (office:currency="#string" )? ) | - (office:value-type="date" office:date-value="<date> | <dateTime>" ) | - (office:value-type="time" office:time-value="<duration>" ) | - (office:value-type="boolean" office:boolean-value="<boolean>" ) | - (office:value-type="string" (office:string-value="<string>" )? + (office:value-type="date" office:date-value="#date | #dateTime" ) | + (office:value-type="time" office:time-value="#duration" ) | + (office:value-type="boolean" office:boolean-value="#boolean" ) | + (office:value-type="string" (office:string-value="#string" )? ))? - (table:protect="<boolean>" )? + (table:protect="#boolean" )? - ( (table:number-columns-spanned="<positiveInteger>" )? - (table:number-rows-spanned="<positiveInteger>" )? + ( (table:number-columns-spanned="#positiveInteger" )? + (table:number-rows-spanned="#positiveInteger" )? ) - ( (table:number-matrix-columns-spanned="<positiveInteger>" )? - (table:number-matrix-rows-spanned="<positiveInteger>" )? + ( (table:number-matrix-columns-spanned="#positiveInteger" )? + (table:number-matrix-rows-spanned="#positiveInteger" )? ) ( (<table:cell-range-source ... >)? (<office:annotation ... >)? @@ -13761,10 +13761,10 @@

table:table-column Element

Child Relations - <table:table-column (table:number-columns-repeated="<positiveInteger>" )? - (table:style-name="(<NCName>)?" )? + <table:table-column (table:number-columns-repeated="#positiveInteger" )? + (table:style-name="(#NCName)?" )? (table:visibility="visible | collapse | filter" )? - (table:default-cell-style-name="(<NCName>)?" )? + (table:default-cell-style-name="(#NCName)?" )? >  @@ -13796,7 +13796,7 @@

table:table-column-group Elemen Child Relations - <table:table-column-group (table:display="<boolean>" )? + <table:table-column-group (table:display="#boolean" )? (<table:table-column-group ... > | (<table:table-columns ... > | (<table:table-column ... >)+ (<table:table-header-columns ... > (<table:table-columns ... > | (<table:table-column ... >)+ )? )? @@ -13917,9 +13917,9 @@

table:table-row Element

Child Relations - <table:table-row (table:number-rows-repeated="<positiveInteger>" )? - (table:style-name="(<NCName>)?" )? - (table:default-cell-style-name="(<NCName>)?" )? + <table:table-row (table:number-rows-repeated="#positiveInteger" )? + (table:style-name="(#NCName)?" )? + (table:default-cell-style-name="(#NCName)?" )? (table:visibility="visible | collapse | filter" )? (<table:table-cell ... > | <table:covered-table-cell ... >)+ >  @@ -13952,7 +13952,7 @@

table:table-row-group Element< Child Relations - <table:table-row-group (table:display="<boolean>" )? + <table:table-row-group (table:display="#boolean" )? (<table:table-row-group ... > | (<table:table-rows ... > | (<table:table-row ... >)+ (<table:table-header-rows ... > (<table:table-rows ... > | (<table:table-row ... >)+ )? )? @@ -14019,13 +14019,13 @@

table:table-source Element

Child Relations <table:table-source (table:mode="copy-all | copy-results-only" )? - (table:table-name="<string>" )? + (table:table-name="#string" )? ( (xlink:type="simple" )? (xlink:actuate="onRequest" )? - xlink:href="<anyURI>" ) (table:filter-name="<string>" )? - (table:filter-options="<string>" )? - (table:refresh-delay="<duration>" )? + xlink:href="#anyURI" ) (table:filter-name="#string" )? + (table:filter-options="#string" )? + (table:refresh-delay="#duration" )? >  @@ -14061,8 +14061,8 @@

table:target-range-address El Child Relations <table:target-range-address - (table:column="<integer>" table:row="<integer>" table:table="<integer>" ) | - (table:start-column="<integer>" table:start-row="<integer>" table:start-table="<integer>" table:end-column="<integer>" table:end-row="<integer>" table:end-table="<integer>" )>  + (table:column="#integer" table:row="#integer" table:table="#integer" ) | + (table:start-column="#integer" table:start-row="#integer" table:start-table="#integer" table:end-column="#integer" table:end-row="#integer" table:end-table="#integer" )> 
@@ -14092,7 +14092,7 @@

table:tracked-changes Element< Child Relations - <table:tracked-changes (table:track-changes="<boolean>" )? + <table:tracked-changes (table:track-changes="#boolean" )? (<table:cell-content-change ... > | <table:insertion ... > | <table:deletion ... > | <table:movement ... >)* >  @@ -14256,16 +14256,16 @@

text:a Element

Child Relations - <text:a (office:name="<string>" )? + <text:a (office:name="#string" )? - (xlink:href="<anyURI>" (xlink:type="simple" )? + (xlink:href="#anyURI" (xlink:type="simple" )? (xlink:actuate="onRequest" )? ) - ( (office:target-frame-name="_self | _blank | _parent | _top | <string>" )? + ( (office:target-frame-name="_self | _blank | _parent | _top | #string" )? (xlink:show="new | replace" )? ) - ( (text:style-name="(<NCName>)?" )? - (text:visited-style-name="(<NCName>)?" )? + ( (text:style-name="(#NCName)?" )? + (text:visited-style-name="(#NCName)?" )? ) (<office:event-listeners ... >)? (TEXT | <text:s ... > | <text:tab ... > | <text:line-break ... > | <text:span ... > | <text:a ... > | <text:bookmark ... > | <text:bookmark-start ... > | <text:bookmark-end ... > | <text:reference-mark ... > | <text:reference-mark-start ... > | <text:reference-mark-end ... > | <text:note ... > | <text:ruby ... > | <office:annotation ... > | <text:change ... > | <text:change-start ... > | <text:change-end ... > | <draw:rect ... > | <draw:line ... > | <draw:polyline ... > | <draw:polygon ... > | <draw:regular-polygon ... > | <draw:path ... > | <draw:circle ... > | <draw:ellipse ... > | <draw:g ... > | <draw:page-thumbnail ... > | <draw:frame ... > | <draw:measure ... > | <draw:caption ... > | <draw:connector ... > | <draw:control ... > | <dr3d:scene ... > | <draw:custom-shape ... > | <draw:a ... > | <text:date ... > | <text:time ... > | <text:page-number ... > | <text:page-continuation ... > | <text:sender-firstname ... > | <text:sender-lastname ... > | <text:sender-initials ... > | <text:sender-title ... > | <text:sender-position ... > | <text:sender-email ... > | <text:sender-phone-private ... > | <text:sender-fax ... > | <text:sender-company ... > | <text:sender-phone-work ... > | <text:sender-street ... > | <text:sender-city ... > | <text:sender-postal-code ... > | <text:sender-country ... > | <text:sender-state-or-province ... > | <text:author-name ... > | <text:author-initials ... > | <text:chapter ... > | <text:file-name ... > | <text:template-name ... > | <text:sheet-name ... > | <text:variable-set ... > | <text:variable-get ... > | <text:variable-input ... > | <text:user-field-get ... > | <text:user-field-input ... > | <text:sequence ... > | <text:expression ... > | <text:text-input ... > | <text:initial-creator ... > | <text:creation-date ... > | <text:creation-time ... > | <text:description ... > | <text:user-defined ... > | <text:print-time ... > | <text:print-date ... > | <text:printed-by ... > | <text:title ... > | <text:subject ... > | <text:keywords ... > | <text:editing-cycles ... > | <text:editing-duration ... > | <text:modification-time ... > | <text:modification-date ... > | <text:creator ... > | <CHOICE_NAME_CLASS ... > | <text:database-display ... > | <text:database-next ... > | <text:database-row-select ... > | <text:database-row-number ... > | <text:database-name ... > | <text:page-variable-set ... > | <text:page-variable-get ... > | <text:placeholder ... > | <text:conditional-text ... > | <text:hidden-text ... > | <CHOICE_NAME_CLASS ... > | <text:note-ref ... > | <text:sequence-ref ... > | <text:script ... > | <text:execute-macro ... > | <text:hidden-paragraph ... > | <text:dde-connection ... > | <text:measure ... > | <text:table-formula ... > | <text:toc-mark-start ... > | <text:toc-mark-end ... > | <text:toc-mark ... > | <text:user-index-mark-start ... > | <text:user-index-mark-end ... > | <text:user-index-mark ... > | <text:alphabetical-index-mark-start ... > | <text:alphabetical-index-mark-end ... > | <text:alphabetical-index-mark ... > | <text:bibliography-mark ... > | <presentation:header ... > | <presentation:footer ... > | <presentation:date-time ... >)* >  @@ -14310,9 +14310,9 @@

text:alphabetical-index Element< Child Relations - <text:alphabetical-index (text:style-name="(<NCName>)?" )? - text:name="<string>" (text:protected="<boolean>" )? - (text:protection-key="<string>" )? + <text:alphabetical-index (text:style-name="(#NCName)?" )? + text:name="#string" (text:protected="#boolean" )? + (text:protection-key="#string" )? <text:alphabetical-index-source ... ><text:index-body ... >>  @@ -14348,7 +14348,7 @@

text:alphabetical Child Relations - <text:alphabetical-index-auto-mark-file xlink:href="<anyURI>" (xlink:type="simple" )? + <text:alphabetical-index-auto-mark-file xlink:href="#anyURI" (xlink:type="simple" )? >  @@ -14381,7 +14381,7 @@

text:alphabetical Child Relations - <text:alphabetical-index-entry-template text:outline-level="1 | 2 | 3 | separator" text:style-name="(<NCName>)?" (<text:index-entry-chapter ... > | <text:index-entry-page-number ... > | <text:index-entry-text ... > | <text:index-entry-span ... > | <text:index-entry-tab-stop ... >)* >  + <text:alphabetical-index-entry-template text:outline-level="1 | 2 | 3 | separator" text:style-name="(#NCName)?" (<text:index-entry-chapter ... > | <text:index-entry-page-number ... > | <text:index-entry-text ... > | <text:index-entry-span ... > | <text:index-entry-tab-stop ... >)* > 
@@ -14417,14 +14417,14 @@

text:alphabetical-index-mar Child Relations - <text:alphabetical-index-mark text:string-value="<string>" - ( (text:key1="<string>" )? - (text:key2="<string>" )? + <text:alphabetical-index-mark text:string-value="#string" + ( (text:key1="#string" )? + (text:key2="#string" )? ) - ( (text:string-value-phonetic="<string>" )? - (text:key1-phonetic="<string>" )? - (text:key2-phonetic="<string>" )? - ) (text:main-entry="<boolean>" )? + ( (text:string-value-phonetic="#string" )? + (text:key1-phonetic="#string" )? + (text:key2-phonetic="#string" )? + ) (text:main-entry="#boolean" )? >  @@ -14455,7 +14455,7 @@

text:alphabetical-index Child Relations - <text:alphabetical-index-mark-end text:id="<string>" >  + <text:alphabetical-index-mark-end text:id="#string" > 
@@ -14491,14 +14491,14 @@

text:alphabetical-ind Child Relations - <text:alphabetical-index-mark-start text:id="<string>" - ( (text:key1="<string>" )? - (text:key2="<string>" )? + <text:alphabetical-index-mark-start text:id="#string" + ( (text:key1="#string" )? + (text:key2="#string" )? ) - ( (text:string-value-phonetic="<string>" )? - (text:key1-phonetic="<string>" )? - (text:key2-phonetic="<string>" )? - ) (text:main-entry="<boolean>" )? + ( (text:string-value-phonetic="#string" )? + (text:key1-phonetic="#string" )? + (text:key2-phonetic="#string" )? + ) (text:main-entry="#boolean" )? >  @@ -14542,20 +14542,20 @@

text:alphabetical-index-s Child Relations <text:alphabetical-index-source ( (text:index-scope="document | chapter" )? - (text:relative-tab-stop-position="<boolean>" )? - ) (text:ignore-case="<boolean>" )? - (text:main-entry-style-name="(<NCName>)?" )? - (text:alphabetical-separators="<boolean>" )? + (text:relative-tab-stop-position="#boolean" )? + ) (text:ignore-case="#boolean" )? + (text:main-entry-style-name="(#NCName)?" )? + (text:alphabetical-separators="#boolean" )? - ( (text:combine-entries="<boolean>" )? - (text:combine-entries-with-dash="<boolean>" )? - (text:combine-entries-with-pp="<boolean>" )? - ) (text:use-keys-as-entries="<boolean>" )? - (text:capitalize-entries="<boolean>" )? - (text:comma-separated="<boolean>" )? + ( (text:combine-entries="#boolean" )? + (text:combine-entries-with-dash="#boolean" )? + (text:combine-entries-with-pp="#boolean" )? + ) (text:use-keys-as-entries="#boolean" )? + (text:capitalize-entries="#boolean" )? + (text:comma-separated="#boolean" )? (fo:language="token]" )? (fo:country="token]" )? - (text:sort-algorithm="<string>" )? + (text:sort-algorithm="#string" )? (<text:index-title-template ... >)? (<text:alphabetical-index-entry-template ... >)* >  @@ -14588,7 +14588,7 @@

text:author-initials Element Child Relations - <text:author-initials (text:fixed="<boolean>" )? + <text:author-initials (text:fixed="#boolean" )? TEXT>  @@ -14620,7 +14620,7 @@

text:author-name Element

Child Relations - <text:author-name (text:fixed="<boolean>" )? + <text:author-name (text:fixed="#boolean" )? TEXT>  @@ -14664,9 +14664,9 @@

text:bibliography Element

Child Relations - <text:bibliography (text:style-name="(<NCName>)?" )? - text:name="<string>" (text:protected="<boolean>" )? - (text:protection-key="<string>" )? + <text:bibliography (text:style-name="(#NCName)?" )? + text:name="#string" (text:protected="#boolean" )? + (text:protection-key="#string" )? <text:bibliography-source ... ><text:index-body ... >>  @@ -14701,14 +14701,14 @@

text:bibliography-config Child Relations <text:bibliography-configuration - ( (text:prefix="<string>" )? - (text:suffix="<string>" )? - ) (text:numbered-entries="<boolean>" )? + ( (text:prefix="#string" )? + (text:suffix="#string" )? + ) (text:numbered-entries="#boolean" )? - ( (text:sort-by-position="<boolean>" )? + ( (text:sort-by-position="#boolean" )? (fo:language="token]" )? (fo:country="token]" )? - (text:sort-algorithm="<string>" )? + (text:sort-algorithm="#string" )? )(<text:sort-key ... >)* >  @@ -14739,7 +14739,7 @@

text:bibliography-entry Child Relations - <text:bibliography-entry-template text:bibliography-type="article | book | booklet | conference | custom1 | custom2 | custom3 | custom4 | custom5 | email | inbook | incollection | inproceedings | journal | manual | mastersthesis | misc | phdthesis | proceedings | techreport | unpublished | www" text:style-name="(<NCName>)?" (<text:index-entry-span ... > | <text:index-entry-tab-stop ... > | <text:index-entry-bibliography ... >)* >  + <text:bibliography-entry-template text:bibliography-type="article | book | booklet | conference | custom1 | custom2 | custom3 | custom4 | custom5 | email | inbook | incollection | inproceedings | journal | manual | mastersthesis | misc | phdthesis | proceedings | techreport | unpublished | www" text:style-name="(#NCName)?" (<text:index-entry-span ... > | <text:index-entry-tab-stop ... > | <text:index-entry-bibliography ... >)* > 
@@ -14801,7 +14801,7 @@

text:bibliography-mark Element Child Relations - <text:bibliography-mark text:bibliography-type="article | book | booklet | conference | custom1 | custom2 | custom3 | custom4 | custom5 | email | inbook | incollection | inproceedings | journal | manual | mastersthesis | misc | phdthesis | proceedings | techreport | unpublished | www" (CHOICE_NAME_CLASS="<string>" )* TEXT>  + <text:bibliography-mark text:bibliography-type="article | book | booklet | conference | custom1 | custom2 | custom3 | custom4 | custom5 | email | inbook | incollection | inproceedings | journal | manual | mastersthesis | misc | phdthesis | proceedings | techreport | unpublished | www" (CHOICE_NAME_CLASS="#string" )* TEXT> 
@@ -14859,7 +14859,7 @@

text:bookmark Element

Child Relations - <text:bookmark text:name="<string>" >  + <text:bookmark text:name="#string" > 
@@ -14889,7 +14889,7 @@

text:bookmark-end Element

Child Relations - <text:bookmark-end text:name="<string>" >  + <text:bookmark-end text:name="#string" > 
@@ -14921,7 +14921,7 @@

text:bookmark-ref Element

Child Relations - <CHOICE_NAME_CLASS TEXT (text:ref-name="<string>" )? + <CHOICE_NAME_CLASS TEXT (text:ref-name="#string" )? (text:reference-format="page | chapter | direction | text" )? >  @@ -14953,7 +14953,7 @@

text:bookmark-start Element

Child Relations - <text:bookmark-start text:name="<string>" >  + <text:bookmark-start text:name="#string" > 
@@ -14996,7 +14996,7 @@

text:change Element

Child Relations - <text:change text:change-id="<IDREF>" >  + <text:change text:change-id="#IDREF" > 
@@ -15039,7 +15039,7 @@

text:change-end Element

Child Relations - <text:change-end text:change-id="<IDREF>" >  + <text:change-end text:change-id="#IDREF" > 
@@ -15082,7 +15082,7 @@

text:change-start Element

Child Relations - <text:change-start text:change-id="<IDREF>" >  + <text:change-start text:change-id="#IDREF" > 
@@ -15111,7 +15111,7 @@

text:changed-region Element

Child Relations - <text:changed-region text:id="<ID>" <text:insertion ... > | <text:deletion ... > | <text:format-change ... >>  + <text:changed-region text:id="#ID" <text:insertion ... > | <text:deletion ... > | <text:format-change ... >> 
@@ -15143,7 +15143,7 @@

text:chapter Element

Child Relations - <text:chapter text:display="name | number | number-and-name | plain-number-and-name | plain-number" text:outline-level="<nonNegativeInteger>" TEXT>  + <text:chapter text:display="name | number | number-and-name | plain-number-and-name | plain-number" text:outline-level="#nonNegativeInteger" TEXT> 
@@ -15176,8 +15176,8 @@

text:character-count Element Child Relations - <CHOICE_NAME_CLASS ( (style:num-format="(1 | i | I | <string>)?" | - (style:num-format="a | A" (style:num-letter-sync="<boolean>" )? + <CHOICE_NAME_CLASS ( (style:num-format="(1 | i | I | #string)?" | + (style:num-format="a | A" (style:num-letter-sync="#boolean" )? ))? )? TEXT>  @@ -15214,7 +15214,7 @@

text:conditional-text Element< Child Relations - <text:conditional-text text:condition="<string>" text:string-value-if-true="<string>" text:string-value-if-false="<string>" (text:current-value="<boolean>" )? + <text:conditional-text text:condition="#string" text:string-value-if-true="#string" text:string-value-if-false="#string" (text:current-value="#boolean" )? TEXT>  @@ -15248,9 +15248,9 @@

text:creation-date Element

Child Relations - <text:creation-date (text:fixed="<boolean>" )? - (style:data-style-name="(<NCName>)?" )? - (text:date-value="<date> | <dateTime>" )? + <text:creation-date (text:fixed="#boolean" )? + (style:data-style-name="(#NCName)?" )? + (text:date-value="#date | #dateTime" )? TEXT>  @@ -15284,9 +15284,9 @@

text:creation-time Element

Child Relations - <text:creation-time (text:fixed="<boolean>" )? - (style:data-style-name="(<NCName>)?" )? - (text:time-value="<time> | <dateTime>" )? + <text:creation-time (text:fixed="#boolean" )? + (style:data-style-name="(#NCName)?" )? + (text:time-value="#time | #dateTime" )? TEXT>  @@ -15318,7 +15318,7 @@

text:creator Element

Child Relations - <text:creator (text:fixed="<boolean>" )? + <text:creator (text:fixed="#boolean" )? TEXT>  @@ -15356,9 +15356,9 @@

text:database-display Element< Child Relations <text:database-display - (text:table-name="<string>" (text:table-type="table | query | command" )? - text:database-name="<string>" | EMPTY | <form:connection-resource ... >) (style:data-style-name="(<NCName>)?" )? - text:column-name="<string>" TEXT>  + (text:table-name="#string" (text:table-type="table | query | command" )? + text:database-name="#string" | EMPTY | <form:connection-resource ... >) (style:data-style-name="(#NCName)?" )? + text:column-name="#string" TEXT> 
@@ -15393,8 +15393,8 @@

text:database-name Element

Child Relations <text:database-name - (text:table-name="<string>" (text:table-type="table | query | command" )? - text:database-name="<string>" | EMPTY | <form:connection-resource ... >)TEXT>  + (text:table-name="#string" (text:table-type="table | query | command" )? + text:database-name="#string" | EMPTY | <form:connection-resource ... >)TEXT> 
@@ -15429,8 +15429,8 @@

text:database-next Element

Child Relations <text:database-next - (text:table-name="<string>" (text:table-type="table | query | command" )? - text:database-name="<string>" | EMPTY | <form:connection-resource ... >) (text:condition="<string>" )? + (text:table-name="#string" (text:table-type="table | query | command" )? + text:database-name="#string" | EMPTY | <form:connection-resource ... >) (text:condition="#string" )? >  @@ -15470,12 +15470,12 @@

text:database-row-number Elemen Child Relations <text:database-row-number - (text:table-name="<string>" (text:table-type="table | query | command" )? - text:database-name="<string>" | EMPTY | <form:connection-resource ... >) ( (style:num-format="(1 | i | I | <string>)?" | - (style:num-format="a | A" (style:num-letter-sync="<boolean>" )? + (text:table-name="#string" (text:table-type="table | query | command" )? + text:database-name="#string" | EMPTY | <form:connection-resource ... >) ( (style:num-format="(1 | i | I | #string)?" | + (style:num-format="a | A" (style:num-letter-sync="#boolean" )? ))? )? - (text:value="<nonNegativeInteger>" )? + (text:value="#nonNegativeInteger" )? TEXT>  @@ -15512,9 +15512,9 @@

text:database-row-select Elemen Child Relations <text:database-row-select - (text:table-name="<string>" (text:table-type="table | query | command" )? - text:database-name="<string>" | EMPTY | <form:connection-resource ... >) (text:condition="<string>" )? - (text:row-number="<nonNegativeInteger>" )? + (text:table-name="#string" (text:table-type="table | query | command" )? + text:database-name="#string" | EMPTY | <form:connection-resource ... >) (text:condition="#string" )? + (text:row-number="#nonNegativeInteger" )? >  @@ -15549,10 +15549,10 @@

text:date Element

Child Relations - <text:date (text:fixed="<boolean>" )? - (style:data-style-name="(<NCName>)?" )? - (text:date-value="<date> | <dateTime>" )? - (text:date-adjust="<duration>" )? + <text:date (text:fixed="#boolean" )? + (style:data-style-name="(#NCName)?" )? + (text:date-value="#date | #dateTime" )? + (text:date-adjust="#duration" )? TEXT>  @@ -15584,7 +15584,7 @@

text:dde-connection Element

Child Relations - <text:dde-connection text:connection-name="<string>" TEXT>  + <text:dde-connection text:connection-name="#string" TEXT> 
@@ -15614,7 +15614,7 @@

text:dde-connection-decl Elemen Child Relations - <text:dde-connection-decl office:name="<string>" office:dde-application="<string>" office:dde-topic="<string>" office:dde-item="<string>" (office:automatic-update="<boolean>" )? + <text:dde-connection-decl office:name="#string" office:dde-application="#string" office:dde-topic="#string" office:dde-item="#string" (office:automatic-update="#boolean" )? >  @@ -15740,7 +15740,7 @@

text:description Element

Child Relations - <text:description (text:fixed="<boolean>" )? + <text:description (text:fixed="#boolean" )? TEXT>  @@ -15772,7 +15772,7 @@

text:editing-cycles Element

Child Relations - <text:editing-cycles (text:fixed="<boolean>" )? + <text:editing-cycles (text:fixed="#boolean" )? TEXT>  @@ -15806,9 +15806,9 @@

text:editing-duration Element< Child Relations - <text:editing-duration (text:fixed="<boolean>" )? - (style:data-style-name="(<NCName>)?" )? - (text:duration="<duration>" )? + <text:editing-duration (text:fixed="#boolean" )? + (style:data-style-name="(#NCName)?" )? + (text:duration="#duration" )? TEXT>  @@ -15841,7 +15841,7 @@

text:execute-macro Element

Child Relations - <text:execute-macro (text:name="<string>" )? + <text:execute-macro (text:name="#string" )? (<office:event-listeners ... >)? TEXT>  @@ -15889,19 +15889,19 @@

text:expression Element

Child Relations - <text:expression (text:formula="<string>" )? + <text:expression (text:formula="#string" )? ( - (office:value-type="float" office:value="<double>" ) | - (office:value-type="percentage" office:value="<double>" ) | - (office:value-type="currency" office:value="<double>" (office:currency="<string>" )? + (office:value-type="float" office:value="#double" ) | + (office:value-type="percentage" office:value="#double" ) | + (office:value-type="currency" office:value="#double" (office:currency="#string" )? ) | - (office:value-type="date" office:date-value="<date> | <dateTime>" ) | - (office:value-type="time" office:time-value="<duration>" ) | - (office:value-type="boolean" office:boolean-value="<boolean>" ) | - (office:value-type="string" (office:string-value="<string>" )? + (office:value-type="date" office:date-value="#date | #dateTime" ) | + (office:value-type="time" office:time-value="#duration" ) | + (office:value-type="boolean" office:boolean-value="#boolean" ) | + (office:value-type="string" (office:string-value="#string" )? ))? (text:display="value | formula" )? - (style:data-style-name="(<NCName>)?" )? + (style:data-style-name="(#NCName)?" )? TEXT>  @@ -15935,7 +15935,7 @@

text:file-name Element

Child Relations <text:file-name (text:display="full | path | name | name-and-extension" )? - (text:fixed="<boolean>" )? + (text:fixed="#boolean" )? TEXT>  @@ -16136,16 +16136,16 @@

text:h Element

Child Relations - <text:h text:outline-level="<positiveInteger>" (text:restart-numbering="<boolean>" )? - (text:start-value="<nonNegativeInteger>" )? - (text:is-list-header="<boolean>" )? + <text:h text:outline-level="#positiveInteger" (text:restart-numbering="#boolean" )? + (text:start-value="#nonNegativeInteger" )? + (text:is-list-header="#boolean" )? - ( (text:style-name="(<NCName>)?" )? + ( (text:style-name="(#NCName)?" )? (text:class-names=" -START_list(<NCName>)* +START_list(#NCName)* END_list" )? - (text:cond-style-name="(<NCName>)?" )? - ) (text:id="<string>" )? + (text:cond-style-name="(#NCName)?" )? + ) (text:id="#string" )? (<text:number ... >)? (TEXT | <text:s ... > | <text:tab ... > | <text:line-break ... > | <text:span ... > | <text:a ... > | <text:bookmark ... > | <text:bookmark-start ... > | <text:bookmark-end ... > | <text:reference-mark ... > | <text:reference-mark-start ... > | <text:reference-mark-end ... > | <text:note ... > | <text:ruby ... > | <office:annotation ... > | <text:change ... > | <text:change-start ... > | <text:change-end ... > | <draw:rect ... > | <draw:line ... > | <draw:polyline ... > | <draw:polygon ... > | <draw:regular-polygon ... > | <draw:path ... > | <draw:circle ... > | <draw:ellipse ... > | <draw:g ... > | <draw:page-thumbnail ... > | <draw:frame ... > | <draw:measure ... > | <draw:caption ... > | <draw:connector ... > | <draw:control ... > | <dr3d:scene ... > | <draw:custom-shape ... > | <draw:a ... > | <text:date ... > | <text:time ... > | <text:page-number ... > | <text:page-continuation ... > | <text:sender-firstname ... > | <text:sender-lastname ... > | <text:sender-initials ... > | <text:sender-title ... > | <text:sender-position ... > | <text:sender-email ... > | <text:sender-phone-private ... > | <text:sender-fax ... > | <text:sender-company ... > | <text:sender-phone-work ... > | <text:sender-street ... > | <text:sender-city ... > | <text:sender-postal-code ... > | <text:sender-country ... > | <text:sender-state-or-province ... > | <text:author-name ... > | <text:author-initials ... > | <text:chapter ... > | <text:file-name ... > | <text:template-name ... > | <text:sheet-name ... > | <text:variable-set ... > | <text:variable-get ... > | <text:variable-input ... > | <text:user-field-get ... > | <text:user-field-input ... > | <text:sequence ... > | <text:expression ... > | <text:text-input ... > | <text:initial-creator ... > | <text:creation-date ... > | <text:creation-time ... > | <text:description ... > | <text:user-defined ... > | <text:print-time ... > | <text:print-date ... > | <text:printed-by ... > | <text:title ... > | <text:subject ... > | <text:keywords ... > | <text:editing-cycles ... > | <text:editing-duration ... > | <text:modification-time ... > | <text:modification-date ... > | <text:creator ... > | <CHOICE_NAME_CLASS ... > | <text:database-display ... > | <text:database-next ... > | <text:database-row-select ... > | <text:database-row-number ... > | <text:database-name ... > | <text:page-variable-set ... > | <text:page-variable-get ... > | <text:placeholder ... > | <text:conditional-text ... > | <text:hidden-text ... > | <CHOICE_NAME_CLASS ... > | <text:note-ref ... > | <text:sequence-ref ... > | <text:script ... > | <text:execute-macro ... > | <text:hidden-paragraph ... > | <text:dde-connection ... > | <text:measure ... > | <text:table-formula ... > | <text:toc-mark-start ... > | <text:toc-mark-end ... > | <text:toc-mark ... > | <text:user-index-mark-start ... > | <text:user-index-mark-end ... > | <text:user-index-mark ... > | <text:alphabetical-index-mark-start ... > | <text:alphabetical-index-mark-end ... > | <text:alphabetical-index-mark ... > | <text:bibliography-mark ... > | <presentation:header ... > | <presentation:footer ... > | <presentation:date-time ... >)* >  @@ -16179,7 +16179,7 @@

text:hidden-paragraph Element< Child Relations - <text:hidden-paragraph text:condition="<string>" (text:is-hidden="<boolean>" )? + <text:hidden-paragraph text:condition="#string" (text:is-hidden="#boolean" )? TEXT>  @@ -16213,7 +16213,7 @@

text:hidden-text Element

Child Relations - <text:hidden-text text:condition="<string>" text:string-value="<string>" (text:is-hidden="<boolean>" )? + <text:hidden-text text:condition="#string" text:string-value="#string" (text:is-hidden="#boolean" )? TEXT>  @@ -16257,9 +16257,9 @@

text:illustration-index Element< Child Relations - <text:illustration-index (text:style-name="(<NCName>)?" )? - text:name="<string>" (text:protected="<boolean>" )? - (text:protection-key="<string>" )? + <text:illustration-index (text:style-name="(#NCName)?" )? + text:name="#string" (text:protected="#boolean" )? + (text:protection-key="#string" )? <text:illustration-index-source ... ><text:index-body ... >>  @@ -16291,7 +16291,7 @@

text:illustration Child Relations <text:illustration-index-entry-template - (text:style-name="(<NCName>)?" (<text:index-entry-page-number ... > | <text:index-entry-text ... > | <text:index-entry-span ... > | <text:index-entry-tab-stop ... >)* )>  + (text:style-name="(#NCName)?" (<text:index-entry-page-number ... > | <text:index-entry-text ... > | <text:index-entry-span ... > | <text:index-entry-tab-stop ... >)* )> 
@@ -16324,9 +16324,9 @@

text:illustration-index-s Child Relations <text:illustration-index-source (text:index-scope="document | chapter" )? - (text:relative-tab-stop-position="<boolean>" )? - (text:use-caption="<boolean>" )? - (text:caption-sequence-name="<string>" )? + (text:relative-tab-stop-position="#boolean" )? + (text:use-caption="#boolean" )? + (text:caption-sequence-name="#string" )? (text:caption-sequence-format="text | category-and-value | caption" )? (<text:index-title-template ... >)? (<text:illustration-index-entry-template ... >)? @@ -16363,8 +16363,8 @@

text:image-count Element

Child Relations - <CHOICE_NAME_CLASS ( (style:num-format="(1 | i | I | <string>)?" | - (style:num-format="a | A" (style:num-letter-sync="<boolean>" )? + <CHOICE_NAME_CLASS ( (style:num-format="(1 | i | I | #string)?" | + (style:num-format="a | A" (style:num-letter-sync="#boolean" )? ))? )? TEXT>  @@ -16460,7 +16460,7 @@

text:index-entry-bibliogra Child Relations - <text:index-entry-bibliography (text:style-name="(<NCName>)?" )? + <text:index-entry-bibliography (text:style-name="(#NCName)?" )? text:bibliography-data-field="address | annote | author | bibliography-type | booktitle | chapter | custom1 | custom2 | custom3 | custom4 | custom5 | edition | editor | howpublished | identifier | institution | isbn | issn | journal | month | note | number | organizations | pages | publisher | report-type | school | series | title | url | volume | year" >  @@ -16490,7 +16490,7 @@

text:index-entry-chapter Elemen Child Relations - <text:index-entry-chapter (text:style-name="(<NCName>)?" )? + <text:index-entry-chapter (text:style-name="(#NCName)?" )? (text:display="name | number | number-and-name" )? >  @@ -16518,7 +16518,7 @@

text:index-entry-link-end Elem Child Relations - <text:index-entry-link-end (text:style-name="(<NCName>)?" )? + <text:index-entry-link-end (text:style-name="(#NCName)?" )? >  @@ -16545,7 +16545,7 @@

text:index-entry-link-start Child Relations - <text:index-entry-link-start (text:style-name="(<NCName>)?" )? + <text:index-entry-link-start (text:style-name="(#NCName)?" )? >  @@ -16577,7 +16577,7 @@

text:index-entry-page-numbe Child Relations - <text:index-entry-page-number (text:style-name="(<NCName>)?" )? + <text:index-entry-page-number (text:style-name="(#NCName)?" )? >  @@ -16611,7 +16611,7 @@

text:index-entry-span Element< Child Relations - <text:index-entry-span (text:style-name="(<NCName>)?" )? + <text:index-entry-span (text:style-name="(#NCName)?" )? TEXT>  @@ -16648,7 +16648,7 @@

text:index-entry-tab-stop Elem Child Relations - <text:index-entry-tab-stop (text:style-name="(<NCName>)?" )? + <text:index-entry-tab-stop (text:style-name="(#NCName)?" )? (style:leader-char="string]" )? style:type="right" | (style:type="left" style:position="string]" )>  @@ -16682,7 +16682,7 @@

text:index-entry-text Element< Child Relations - <text:index-entry-text (text:style-name="(<NCName>)?" )? + <text:index-entry-text (text:style-name="(#NCName)?" )? >  @@ -16709,7 +16709,7 @@

text:index-source-style Element< Child Relations - <text:index-source-style text:style-name="<NCName>" >  + <text:index-source-style text:style-name="#NCName" > 
@@ -16737,7 +16737,7 @@

text:index-source-styles Elemen Child Relations - <text:index-source-styles text:outline-level="<positiveInteger>" (<text:index-source-style ... >)* >  + <text:index-source-styles text:outline-level="#positiveInteger" (<text:index-source-style ... >)* > 
@@ -16806,9 +16806,9 @@

text:index-title Element

Child Relations - <text:index-title (text:style-name="(<NCName>)?" )? - text:name="<string>" (text:protected="<boolean>" )? - (text:protection-key="<string>" )? + <text:index-title (text:style-name="(#NCName)?" )? + text:name="#string" (text:protected="#boolean" )? + (text:protection-key="#string" )? (<text:h ... > | <text:p ... > | <text:list ... > | <text:numbered-paragraph ... > | <table:table ... > | <draw:a ... > | <text:section ... > | <text:table-of-content ... > | <text:illustration-index ... > | <text:table-index ... > | <text:object-index ... > | <text:user-index ... > | <text:alphabetical-index ... > | <text:bibliography ... > | <draw:rect ... > | <draw:line ... > | <draw:polyline ... > | <draw:polygon ... > | <draw:regular-polygon ... > | <draw:path ... > | <draw:circle ... > | <draw:ellipse ... > | <draw:g ... > | <draw:page-thumbnail ... > | <draw:frame ... > | <draw:measure ... > | <draw:caption ... > | <draw:connector ... > | <draw:control ... > | <dr3d:scene ... > | <draw:custom-shape ... > | <text:change ... > | <text:change-start ... > | <text:change-end ... > | <text:index-title ... >)* >  @@ -16842,7 +16842,7 @@

text:index-title-template Elem Child Relations - <text:index-title-template (text:style-name="(<NCName>)?" )? + <text:index-title-template (text:style-name="(#NCName)?" )? TEXT>  @@ -16874,7 +16874,7 @@

text:initial-creator Element Child Relations - <text:initial-creator (text:fixed="<boolean>" )? + <text:initial-creator (text:fixed="#boolean" )? TEXT>  @@ -16932,7 +16932,7 @@

text:keywords Element

Child Relations - <text:keywords (text:fixed="<boolean>" )? + <text:keywords (text:fixed="#boolean" )? TEXT>  @@ -16999,18 +16999,18 @@

text:linenumbering-conf Child Relations - <text:linenumbering-configuration (text:number-lines="<boolean>" )? - ( (style:num-format="(1 | i | I | <string>)?" | - (style:num-format="a | A" (style:num-letter-sync="<boolean>" )? + <text:linenumbering-configuration (text:number-lines="#boolean" )? + ( (style:num-format="(1 | i | I | #string)?" | + (style:num-format="a | A" (style:num-letter-sync="#boolean" )? ))? )? - (text:style-name="(<NCName>)?" )? - (text:increment="<nonNegativeInteger>" )? + (text:style-name="(#NCName)?" )? + (text:increment="#nonNegativeInteger" )? (text:number-position="left | rigth | inner | outer" )? (text:offset="string]" )? - (text:count-empty-lines="<boolean>" )? - (text:count-in-text-boxes="<boolean>" )? - (text:restart-on-page="<boolean>" )? + (text:count-empty-lines="#boolean" )? + (text:count-in-text-boxes="#boolean" )? + (text:restart-on-page="#boolean" )? (<text:linenumbering-separator ... >)? >  @@ -17039,7 +17039,7 @@

text:linenumbering-separato Child Relations - <text:linenumbering-separator (text:increment="<nonNegativeInteger>" )? + <text:linenumbering-separator (text:increment="#nonNegativeInteger" )? TEXT>  @@ -17097,8 +17097,8 @@

text:list Element

Child Relations - <text:list (text:style-name="(<NCName>)?" )? - (text:continue-numbering="<boolean>" )? + <text:list (text:style-name="(#NCName)?" )? + (text:continue-numbering="#boolean" )? (<text:list-header ... >)? (<text:list-item ... >)* >  @@ -17161,7 +17161,7 @@

text:list-item Element

Child Relations - <text:list-item (text:start-value="<nonNegativeInteger>" )? + <text:list-item (text:start-value="#nonNegativeInteger" )? ( (<text:number ... >)? (<text:p ... > | <text:h ... > | <text:list ... >)* )>  @@ -17197,10 +17197,10 @@

text:list-level-style-bulle Child Relations - <text:list-level-style-bullet text:level="<positiveInteger>" (text:style-name="(<NCName>)?" )? + <text:list-level-style-bullet text:level="#positiveInteger" (text:style-name="(#NCName)?" )? text:bullet-char="string]" - ( (style:num-prefix="<string>" )? - (style:num-suffix="<string>" )? + ( (style:num-prefix="#string" )? + (style:num-suffix="#string" )? ) (text:bullet-relative-size="string]" )? (<style:list-level-properties ... >)? (<style:text-properties ... >)? @@ -17236,8 +17236,8 @@

text:list-level-style-image Child Relations - <text:list-level-style-image text:level="<positiveInteger>" - (xlink:href="<anyURI>" (xlink:type="simple" )? + <text:list-level-style-image text:level="#positiveInteger" + (xlink:href="#anyURI" (xlink:type="simple" )? (xlink:show="embed" )? (xlink:actuate="onLoad" )? ) | <office:binary-data ... > (<style:list-level-properties ... >)? @@ -17277,16 +17277,16 @@

text:list-level-style-numbe Child Relations - <text:list-level-style-number text:level="<positiveInteger>" (text:style-name="(<NCName>)?" )? + <text:list-level-style-number text:level="#positiveInteger" (text:style-name="(#NCName)?" )? - ( (style:num-format="(1 | i | I | <string>)?" | - (style:num-format="a | A" (style:num-letter-sync="<boolean>" )? + ( (style:num-format="(1 | i | I | #string)?" | + (style:num-format="a | A" (style:num-letter-sync="#boolean" )? ))? - ( (style:num-prefix="<string>" )? - (style:num-suffix="<string>" )? - )) (text:display-levels="<positiveInteger>" )? - (text:start-value="<positiveInteger>" )? + ( (style:num-prefix="#string" )? + (style:num-suffix="#string" )? + )) (text:display-levels="#positiveInteger" )? + (text:start-value="#positiveInteger" )? (<style:list-level-properties ... >)? (<style:text-properties ... >)? >  @@ -17321,8 +17321,8 @@

text:list-style Element

Child Relations - <text:list-style style:name="<NCName>" (style:display-name="<string>" )? - (text:consecutive-numbering="<boolean>" )? + <text:list-style style:name="#NCName" (style:display-name="#string" )? + (text:consecutive-numbering="#boolean" )? (<text:list-level-style-number ... > | <text:list-level-style-bullet ... > | <text:list-level-style-image ... >)* >  @@ -17387,9 +17387,9 @@

text:modification-date Element Child Relations - <text:modification-date (text:fixed="<boolean>" )? - (style:data-style-name="(<NCName>)?" )? - (text:date-value="<date>" )? + <text:modification-date (text:fixed="#boolean" )? + (style:data-style-name="(#NCName)?" )? + (text:date-value="#date" )? TEXT>  @@ -17423,9 +17423,9 @@

text:modification-time Element Child Relations - <text:modification-time (text:fixed="<boolean>" )? - (style:data-style-name="(<NCName>)?" )? - (text:time-value="<time>" )? + <text:modification-time (text:fixed="#boolean" )? + (style:data-style-name="(#NCName)?" )? + (text:time-value="#time" )? TEXT>  @@ -17459,7 +17459,7 @@

text:note Element

Child Relations - <text:note text:note-class="footnote | endnote" (text:id="<string>" )? + <text:note text:note-class="footnote | endnote" (text:id="#string" )? <text:note-citation ... ><text:note-body ... >>  @@ -17546,7 +17546,7 @@

text:note-citation Element

Child Relations - <text:note-citation (text:label="<string>" )? + <text:note-citation (text:label="#string" )? TEXT>  @@ -17632,7 +17632,7 @@

text:note-ref Element

Child Relations - <text:note-ref TEXT (text:ref-name="<string>" )? + <text:note-ref TEXT (text:ref-name="#string" )? text:note-class="footnote | endnote" (text:reference-format="page | chapter | direction | text" )? >  @@ -17674,17 +17674,17 @@

text:notes-configuration Elemen Child Relations - <text:notes-configuration text:note-class="footnote | endnote" (text:citation-style-name="(<NCName>)?" )? - (text:citation-body-style-name="(<NCName>)?" )? - (text:default-style-name="(<NCName>)?" )? - (text:master-page-name="(<NCName>)?" )? - (text:start-value="<nonNegativeInteger>" )? + <text:notes-configuration text:note-class="footnote | endnote" (text:citation-style-name="(#NCName)?" )? + (text:citation-body-style-name="(#NCName)?" )? + (text:default-style-name="(#NCName)?" )? + (text:master-page-name="(#NCName)?" )? + (text:start-value="#nonNegativeInteger" )? ( - ( (style:num-prefix="<string>" )? - (style:num-suffix="<string>" )? - ) ( (style:num-format="(1 | i | I | <string>)?" | - (style:num-format="a | A" (style:num-letter-sync="<boolean>" )? + ( (style:num-prefix="#string" )? + (style:num-suffix="#string" )? + ) ( (style:num-format="(1 | i | I | #string)?" | + (style:num-format="a | A" (style:num-letter-sync="#boolean" )? ))? )? ) (text:start-numbering-at="document | chapter | page" )? @@ -17719,7 +17719,7 @@

text:number Element

Child Relations - <text:number <string>>  + <text:number #string
@@ -17759,10 +17759,10 @@

text:numbered-paragraph Element< Child Relations - <text:numbered-paragraph (text:level="<positiveInteger>" )? - (text:style-name="(<NCName>)?" )? - (text:continue-numbering="<boolean>" )? - (text:start-value="<nonNegativeInteger>" )? + <text:numbered-paragraph (text:level="#positiveInteger" )? + (text:style-name="(#NCName)?" )? + (text:continue-numbering="#boolean" )? + (text:start-value="#nonNegativeInteger" )? (<text:number ... >)? <text:p ... > | <text:h ... >>  @@ -17797,8 +17797,8 @@

text:object-count Element

Child Relations - <CHOICE_NAME_CLASS ( (style:num-format="(1 | i | I | <string>)?" | - (style:num-format="a | A" (style:num-letter-sync="<boolean>" )? + <CHOICE_NAME_CLASS ( (style:num-format="(1 | i | I | #string)?" | + (style:num-format="a | A" (style:num-letter-sync="#boolean" )? ))? )? TEXT>  @@ -17844,9 +17844,9 @@

text:object-index Element

Child Relations - <text:object-index (text:style-name="(<NCName>)?" )? - text:name="<string>" (text:protected="<boolean>" )? - (text:protection-key="<string>" )? + <text:object-index (text:style-name="(#NCName)?" )? + text:name="#string" (text:protected="#boolean" )? + (text:protection-key="#string" )? <text:object-index-source ... ><text:index-body ... >>  @@ -17878,7 +17878,7 @@

text:object-index-entry Child Relations <text:object-index-entry-template - (text:style-name="(<NCName>)?" (<text:index-entry-page-number ... > | <text:index-entry-text ... > | <text:index-entry-span ... > | <text:index-entry-tab-stop ... >)* )>  + (text:style-name="(#NCName)?" (<text:index-entry-page-number ... > | <text:index-entry-text ... > | <text:index-entry-span ... > | <text:index-entry-tab-stop ... >)* )> 
@@ -17913,12 +17913,12 @@

text:object-index-source Elemen Child Relations <text:object-index-source (text:index-scope="document | chapter" )? - (text:relative-tab-stop-position="<boolean>" )? - (text:use-spreadsheet-objects="<boolean>" )? - (text:use-math-objects="<boolean>" )? - (text:use-draw-objects="<boolean>" )? - (text:use-chart-objects="<boolean>" )? - (text:use-other-objects="<boolean>" )? + (text:relative-tab-stop-position="#boolean" )? + (text:use-spreadsheet-objects="#boolean" )? + (text:use-math-objects="#boolean" )? + (text:use-draw-objects="#boolean" )? + (text:use-chart-objects="#boolean" )? + (text:use-other-objects="#boolean" )? (<text:index-title-template ... >)? (<text:object-index-entry-template ... >)? >  @@ -17957,16 +17957,16 @@

text:outline-level-style Elemen Child Relations - <text:outline-level-style text:level="<positiveInteger>" (text:style-name="(<NCName>)?" )? + <text:outline-level-style text:level="#positiveInteger" (text:style-name="(#NCName)?" )? - ( (style:num-format="(1 | i | I | <string>)?" | - (style:num-format="a | A" (style:num-letter-sync="<boolean>" )? + ( (style:num-format="(1 | i | I | #string)?" | + (style:num-format="a | A" (style:num-letter-sync="#boolean" )? ))? - ( (style:num-prefix="<string>" )? - (style:num-suffix="<string>" )? - )) (text:display-levels="<positiveInteger>" )? - (text:start-value="<positiveInteger>" )? + ( (style:num-prefix="#string" )? + (style:num-suffix="#string" )? + )) (text:display-levels="#positiveInteger" )? + (text:start-value="#positiveInteger" )? (<style:list-level-properties ... >)? (<style:text-properties ... >)? >  @@ -18190,12 +18190,12 @@

text:p Element

Child Relations <text:p - ( (text:style-name="(<NCName>)?" )? + ( (text:style-name="(#NCName)?" )? (text:class-names=" -START_list(<NCName>)* +START_list(#NCName)* END_list" )? - (text:cond-style-name="(<NCName>)?" )? - ) (text:id="<string>" )? + (text:cond-style-name="(#NCName)?" )? + ) (text:id="#string" )? (TEXT | <text:s ... > | <text:tab ... > | <text:line-break ... > | <text:span ... > | <text:a ... > | <text:bookmark ... > | <text:bookmark-start ... > | <text:bookmark-end ... > | <text:reference-mark ... > | <text:reference-mark-start ... > | <text:reference-mark-end ... > | <text:note ... > | <text:ruby ... > | <office:annotation ... > | <text:change ... > | <text:change-start ... > | <text:change-end ... > | <draw:rect ... > | <draw:line ... > | <draw:polyline ... > | <draw:polygon ... > | <draw:regular-polygon ... > | <draw:path ... > | <draw:circle ... > | <draw:ellipse ... > | <draw:g ... > | <draw:page-thumbnail ... > | <draw:frame ... > | <draw:measure ... > | <draw:caption ... > | <draw:connector ... > | <draw:control ... > | <dr3d:scene ... > | <draw:custom-shape ... > | <draw:a ... > | <text:date ... > | <text:time ... > | <text:page-number ... > | <text:page-continuation ... > | <text:sender-firstname ... > | <text:sender-lastname ... > | <text:sender-initials ... > | <text:sender-title ... > | <text:sender-position ... > | <text:sender-email ... > | <text:sender-phone-private ... > | <text:sender-fax ... > | <text:sender-company ... > | <text:sender-phone-work ... > | <text:sender-street ... > | <text:sender-city ... > | <text:sender-postal-code ... > | <text:sender-country ... > | <text:sender-state-or-province ... > | <text:author-name ... > | <text:author-initials ... > | <text:chapter ... > | <text:file-name ... > | <text:template-name ... > | <text:sheet-name ... > | <text:variable-set ... > | <text:variable-get ... > | <text:variable-input ... > | <text:user-field-get ... > | <text:user-field-input ... > | <text:sequence ... > | <text:expression ... > | <text:text-input ... > | <text:initial-creator ... > | <text:creation-date ... > | <text:creation-time ... > | <text:description ... > | <text:user-defined ... > | <text:print-time ... > | <text:print-date ... > | <text:printed-by ... > | <text:title ... > | <text:subject ... > | <text:keywords ... > | <text:editing-cycles ... > | <text:editing-duration ... > | <text:modification-time ... > | <text:modification-date ... > | <text:creator ... > | <CHOICE_NAME_CLASS ... > | <text:database-display ... > | <text:database-next ... > | <text:database-row-select ... > | <text:database-row-number ... > | <text:database-name ... > | <text:page-variable-set ... > | <text:page-variable-get ... > | <text:placeholder ... > | <text:conditional-text ... > | <text:hidden-text ... > | <CHOICE_NAME_CLASS ... > | <text:note-ref ... > | <text:sequence-ref ... > | <text:script ... > | <text:execute-macro ... > | <text:hidden-paragraph ... > | <text:dde-connection ... > | <text:measure ... > | <text:table-formula ... > | <text:toc-mark-start ... > | <text:toc-mark-end ... > | <text:toc-mark ... > | <text:user-index-mark-start ... > | <text:user-index-mark-end ... > | <text:user-index-mark ... > | <text:alphabetical-index-mark-start ... > | <text:alphabetical-index-mark-end ... > | <text:alphabetical-index-mark ... > | <text:bibliography-mark ... > | <presentation:header ... > | <presentation:footer ... > | <presentation:date-time ... >)* >  @@ -18222,7 +18222,7 @@

text:page Element

Child Relations - <text:page text:master-page-name="(<NCName>)?" >  + <text:page text:master-page-name="(#NCName)?" > 
@@ -18254,7 +18254,7 @@

text:page-continuation Element Child Relations - <text:page-continuation text:select-page="previous | next" (text:string-value="<string>" )? + <text:page-continuation text:select-page="previous | next" (text:string-value="#string" )? TEXT>  @@ -18288,8 +18288,8 @@

text:page-count Element

Child Relations - <CHOICE_NAME_CLASS ( (style:num-format="(1 | i | I | <string>)?" | - (style:num-format="a | A" (style:num-letter-sync="<boolean>" )? + <CHOICE_NAME_CLASS ( (style:num-format="(1 | i | I | #string)?" | + (style:num-format="a | A" (style:num-letter-sync="#boolean" )? ))? )? TEXT>  @@ -18328,12 +18328,12 @@

text:page-number Element

Child Relations - <text:page-number ( (style:num-format="(1 | i | I | <string>)?" | - (style:num-format="a | A" (style:num-letter-sync="<boolean>" )? + <text:page-number ( (style:num-format="(1 | i | I | #string)?" | + (style:num-format="a | A" (style:num-letter-sync="#boolean" )? ))? )? - (text:fixed="<boolean>" )? - (text:page-adjust="<integer>" )? + (text:fixed="#boolean" )? + (text:page-adjust="#integer" )? (text:select-page="previous | current | next" )? TEXT>  @@ -18394,8 +18394,8 @@

text:page-variable-get Element Child Relations - <text:page-variable-get ( (style:num-format="(1 | i | I | <string>)?" | - (style:num-format="a | A" (style:num-letter-sync="<boolean>" )? + <text:page-variable-get ( (style:num-format="(1 | i | I | #string)?" | + (style:num-format="a | A" (style:num-letter-sync="#boolean" )? ))? )? TEXT>  @@ -18430,8 +18430,8 @@

text:page-variable-set Element Child Relations - <text:page-variable-set (text:active="<boolean>" )? - (text:page-adjust="<integer>" )? + <text:page-variable-set (text:active="#boolean" )? + (text:page-adjust="#integer" )? TEXT>  @@ -18465,8 +18465,8 @@

text:paragraph-count Element Child Relations - <CHOICE_NAME_CLASS ( (style:num-format="(1 | i | I | <string>)?" | - (style:num-format="a | A" (style:num-letter-sync="<boolean>" )? + <CHOICE_NAME_CLASS ( (style:num-format="(1 | i | I | #string)?" | + (style:num-format="a | A" (style:num-letter-sync="#boolean" )? ))? )? TEXT>  @@ -18535,9 +18535,9 @@

text:print-date Element

Child Relations - <text:print-date (text:fixed="<boolean>" )? - (style:data-style-name="(<NCName>)?" )? - (text:date-value="<date>" )? + <text:print-date (text:fixed="#boolean" )? + (style:data-style-name="(#NCName)?" )? + (text:date-value="#date" )? TEXT>  @@ -18571,9 +18571,9 @@

text:print-time Element

Child Relations - <text:print-time (text:fixed="<boolean>" )? - (style:data-style-name="(<NCName>)?" )? - (text:time-value="<time>" )? + <text:print-time (text:fixed="#boolean" )? + (style:data-style-name="(#NCName)?" )? + (text:time-value="#time" )? TEXT>  @@ -18605,7 +18605,7 @@

text:printed-by Element

Child Relations - <text:printed-by (text:fixed="<boolean>" )? + <text:printed-by (text:fixed="#boolean" )? TEXT>  @@ -18636,7 +18636,7 @@

text:reference-mark Element

Child Relations - <text:reference-mark text:name="<string>" >  + <text:reference-mark text:name="#string" > 
@@ -18666,7 +18666,7 @@

text:reference-mark-end Element< Child Relations - <text:reference-mark-end text:name="<string>" >  + <text:reference-mark-end text:name="#string" > 
@@ -18696,7 +18696,7 @@

text:reference-mark-start Elem Child Relations - <text:reference-mark-start text:name="<string>" >  + <text:reference-mark-start text:name="#string" > 
@@ -18728,7 +18728,7 @@

text:reference-ref Element

Child Relations - <CHOICE_NAME_CLASS TEXT (text:ref-name="<string>" )? + <CHOICE_NAME_CLASS TEXT (text:ref-name="#string" )? (text:reference-format="page | chapter | direction | text" )? >  @@ -18762,7 +18762,7 @@

text:ruby Element

Child Relations - <text:ruby (text:style-name="(<NCName>)?" )? + <text:ruby (text:style-name="(#NCName)?" )? <text:ruby-base ... ><text:ruby-text ... >>  @@ -18940,7 +18940,7 @@

text:ruby-text Element

Child Relations - <text:ruby-text (text:style-name="(<NCName>)?" )? + <text:ruby-text (text:style-name="(#NCName)?" )? TEXT>  @@ -18971,7 +18971,7 @@

text:s Element

Child Relations - <text:s (text:c="<nonNegativeInteger>" )? + <text:s (text:c="#nonNegativeInteger" )? >  @@ -19006,8 +19006,8 @@

text:script Element

Child Relations <text:script - (xlink:href="<anyURI>" (xlink:type="simple" )? - ) | TEXT (script:language="<string>" )? + (xlink:href="#anyURI" (xlink:type="simple" )? + ) | TEXT (script:language="#string" )? >  @@ -19088,11 +19088,11 @@

text:section Element

Child Relations - <text:section (text:style-name="(<NCName>)?" )? - text:name="<string>" (text:protected="<boolean>" )? - (text:protection-key="<string>" )? + <text:section (text:style-name="(#NCName)?" )? + text:name="#string" (text:protected="#boolean" )? + (text:protection-key="#string" )? (text:display="true | none" | - (text:display="condition" text:condition="<string>" ))? + (text:display="condition" text:condition="#string" ))? (<text:section-source ... > | <office:dde-source ... >)? (<text:h ... > | <text:p ... > | <text:list ... > | <text:numbered-paragraph ... > | <table:table ... > | <draw:a ... > | <text:section ... > | <text:table-of-content ... > | <text:illustration-index ... > | <text:table-index ... > | <text:object-index ... > | <text:user-index ... > | <text:alphabetical-index ... > | <text:bibliography ... > | <draw:rect ... > | <draw:line ... > | <draw:polyline ... > | <draw:polygon ... > | <draw:regular-polygon ... > | <draw:path ... > | <draw:circle ... > | <draw:ellipse ... > | <draw:g ... > | <draw:page-thumbnail ... > | <draw:frame ... > | <draw:measure ... > | <draw:caption ... > | <draw:connector ... > | <draw:control ... > | <dr3d:scene ... > | <draw:custom-shape ... > | <text:change ... > | <text:change-start ... > | <text:change-end ... >)* >  @@ -19124,11 +19124,11 @@

text:section-source Element

Child Relations - <text:section-source (xlink:href="<anyURI>" (xlink:type="simple" )? + <text:section-source (xlink:href="#anyURI" (xlink:type="simple" )? (xlink:show="embed" )? )? - (text:section-name="<string>" )? - (text:filter-name="<string>" )? + (text:section-name="#string" )? + (text:filter-name="#string" )? >  @@ -19160,7 +19160,7 @@

text:sender-city Element

Child Relations - <text:sender-city (text:fixed="<boolean>" )? + <text:sender-city (text:fixed="#boolean" )? TEXT>  @@ -19192,7 +19192,7 @@

text:sender-company Element

Child Relations - <text:sender-company (text:fixed="<boolean>" )? + <text:sender-company (text:fixed="#boolean" )? TEXT>  @@ -19224,7 +19224,7 @@

text:sender-country Element

Child Relations - <text:sender-country (text:fixed="<boolean>" )? + <text:sender-country (text:fixed="#boolean" )? TEXT>  @@ -19256,7 +19256,7 @@

text:sender-email Element

Child Relations - <text:sender-email (text:fixed="<boolean>" )? + <text:sender-email (text:fixed="#boolean" )? TEXT>  @@ -19288,7 +19288,7 @@

text:sender-fax Element

Child Relations - <text:sender-fax (text:fixed="<boolean>" )? + <text:sender-fax (text:fixed="#boolean" )? TEXT>  @@ -19320,7 +19320,7 @@

text:sender-firstname Element< Child Relations - <text:sender-firstname (text:fixed="<boolean>" )? + <text:sender-firstname (text:fixed="#boolean" )? TEXT>  @@ -19352,7 +19352,7 @@

text:sender-initials Element Child Relations - <text:sender-initials (text:fixed="<boolean>" )? + <text:sender-initials (text:fixed="#boolean" )? TEXT>  @@ -19384,7 +19384,7 @@

text:sender-lastname Element Child Relations - <text:sender-lastname (text:fixed="<boolean>" )? + <text:sender-lastname (text:fixed="#boolean" )? TEXT>  @@ -19416,7 +19416,7 @@

text:sender-phone-private Elem Child Relations - <text:sender-phone-private (text:fixed="<boolean>" )? + <text:sender-phone-private (text:fixed="#boolean" )? TEXT>  @@ -19448,7 +19448,7 @@

text:sender-phone-work Element Child Relations - <text:sender-phone-work (text:fixed="<boolean>" )? + <text:sender-phone-work (text:fixed="#boolean" )? TEXT>  @@ -19480,7 +19480,7 @@

text:sender-position Element Child Relations - <text:sender-position (text:fixed="<boolean>" )? + <text:sender-position (text:fixed="#boolean" )? TEXT>  @@ -19512,7 +19512,7 @@

text:sender-postal-code Element< Child Relations - <text:sender-postal-code (text:fixed="<boolean>" )? + <text:sender-postal-code (text:fixed="#boolean" )? TEXT>  @@ -19544,7 +19544,7 @@

text:sender-state-or-provi Child Relations - <text:sender-state-or-province (text:fixed="<boolean>" )? + <text:sender-state-or-province (text:fixed="#boolean" )? TEXT>  @@ -19576,7 +19576,7 @@

text:sender-street Element

Child Relations - <text:sender-street (text:fixed="<boolean>" )? + <text:sender-street (text:fixed="#boolean" )? TEXT>  @@ -19608,7 +19608,7 @@

text:sender-title Element

Child Relations - <text:sender-title (text:fixed="<boolean>" )? + <text:sender-title (text:fixed="#boolean" )? TEXT>  @@ -19645,12 +19645,12 @@

text:sequence Element

Child Relations - <text:sequence text:name="<string>" (text:formula="<string>" )? - ( (style:num-format="(1 | i | I | <string>)?" | - (style:num-format="a | A" (style:num-letter-sync="<boolean>" )? + <text:sequence text:name="#string" (text:formula="#string" )? + ( (style:num-format="(1 | i | I | #string)?" | + (style:num-format="a | A" (style:num-letter-sync="#boolean" )? ))? )? - (text:ref-name="<string>" )? + (text:ref-name="#string" )? TEXT>  @@ -19679,7 +19679,7 @@

text:sequence-decl Element

Child Relations - <text:sequence-decl text:name="<string>" text:display-outline-level="<nonNegativeInteger>" (text:separation-character="string]" )? + <text:sequence-decl text:name="#string" text:display-outline-level="#nonNegativeInteger" (text:separation-character="string]" )? >  @@ -19746,7 +19746,7 @@

text:sequence-ref Element

Child Relations - <text:sequence-ref TEXT (text:ref-name="<string>" )? + <text:sequence-ref TEXT (text:ref-name="#string" )? (text:reference-format="page | chapter | direction | text | category-and-value | caption | value" )? >  @@ -19806,7 +19806,7 @@

text:sort-key Element

Child Relations <text:sort-key - (text:key="address | annote | author | bibliography-type | booktitle | chapter | custom1 | custom2 | custom3 | custom4 | custom5 | edition | editor | howpublished | identifier | institution | isbn | issn | journal | month | note | number | organizations | pages | publisher | report-type | school | series | title | url | volume | year" (text:sort-ascending="<boolean>" )? + (text:key="address | annote | author | bibliography-type | booktitle | chapter | custom1 | custom2 | custom3 | custom4 | custom5 | edition | editor | howpublished | identifier | institution | isbn | issn | journal | month | note | number | organizations | pages | publisher | report-type | school | series | title | url | volume | year" (text:sort-ascending="#boolean" )? )>  @@ -19963,9 +19963,9 @@

text:span Element

Child Relations - <text:span (text:style-name="(<NCName>)?" )? + <text:span (text:style-name="(#NCName)?" )? (text:class-names=" -START_list(<NCName>)* +START_list(#NCName)* END_list" )? (TEXT | <text:s ... > | <text:tab ... > | <text:line-break ... > | <text:span ... > | <text:a ... > | <text:bookmark ... > | <text:bookmark-start ... > | <text:bookmark-end ... > | <text:reference-mark ... > | <text:reference-mark-start ... > | <text:reference-mark-end ... > | <text:note ... > | <text:ruby ... > | <office:annotation ... > | <text:change ... > | <text:change-start ... > | <text:change-end ... > | <draw:rect ... > | <draw:line ... > | <draw:polyline ... > | <draw:polygon ... > | <draw:regular-polygon ... > | <draw:path ... > | <draw:circle ... > | <draw:ellipse ... > | <draw:g ... > | <draw:page-thumbnail ... > | <draw:frame ... > | <draw:measure ... > | <draw:caption ... > | <draw:connector ... > | <draw:control ... > | <dr3d:scene ... > | <draw:custom-shape ... > | <draw:a ... > | <text:date ... > | <text:time ... > | <text:page-number ... > | <text:page-continuation ... > | <text:sender-firstname ... > | <text:sender-lastname ... > | <text:sender-initials ... > | <text:sender-title ... > | <text:sender-position ... > | <text:sender-email ... > | <text:sender-phone-private ... > | <text:sender-fax ... > | <text:sender-company ... > | <text:sender-phone-work ... > | <text:sender-street ... > | <text:sender-city ... > | <text:sender-postal-code ... > | <text:sender-country ... > | <text:sender-state-or-province ... > | <text:author-name ... > | <text:author-initials ... > | <text:chapter ... > | <text:file-name ... > | <text:template-name ... > | <text:sheet-name ... > | <text:variable-set ... > | <text:variable-get ... > | <text:variable-input ... > | <text:user-field-get ... > | <text:user-field-input ... > | <text:sequence ... > | <text:expression ... > | <text:text-input ... > | <text:initial-creator ... > | <text:creation-date ... > | <text:creation-time ... > | <text:description ... > | <text:user-defined ... > | <text:print-time ... > | <text:print-date ... > | <text:printed-by ... > | <text:title ... > | <text:subject ... > | <text:keywords ... > | <text:editing-cycles ... > | <text:editing-duration ... > | <text:modification-time ... > | <text:modification-date ... > | <text:creator ... > | <CHOICE_NAME_CLASS ... > | <text:database-display ... > | <text:database-next ... > | <text:database-row-select ... > | <text:database-row-number ... > | <text:database-name ... > | <text:page-variable-set ... > | <text:page-variable-get ... > | <text:placeholder ... > | <text:conditional-text ... > | <text:hidden-text ... > | <CHOICE_NAME_CLASS ... > | <text:note-ref ... > | <text:sequence-ref ... > | <text:script ... > | <text:execute-macro ... > | <text:hidden-paragraph ... > | <text:dde-connection ... > | <text:measure ... > | <text:table-formula ... > | <text:toc-mark-start ... > | <text:toc-mark-end ... > | <text:toc-mark ... > | <text:user-index-mark-start ... > | <text:user-index-mark-end ... > | <text:user-index-mark ... > | <text:alphabetical-index-mark-start ... > | <text:alphabetical-index-mark-end ... > | <text:alphabetical-index-mark ... > | <text:bibliography-mark ... > | <presentation:header ... > | <presentation:footer ... > | <presentation:date-time ... >)* >  @@ -19998,7 +19998,7 @@

text:subject Element

Child Relations - <text:subject (text:fixed="<boolean>" )? + <text:subject (text:fixed="#boolean" )? TEXT>  @@ -20029,7 +20029,7 @@

text:tab Element

Child Relations - <text:tab (text:tab-ref="<nonNegativeInteger>" )? + <text:tab (text:tab-ref="#nonNegativeInteger" )? >  @@ -20063,8 +20063,8 @@

text:table-count Element

Child Relations - <CHOICE_NAME_CLASS ( (style:num-format="(1 | i | I | <string>)?" | - (style:num-format="a | A" (style:num-letter-sync="<boolean>" )? + <CHOICE_NAME_CLASS ( (style:num-format="(1 | i | I | #string)?" | + (style:num-format="a | A" (style:num-letter-sync="#boolean" )? ))? )? TEXT>  @@ -20100,9 +20100,9 @@

text:table-formula Element

Child Relations - <text:table-formula (text:formula="<string>" )? + <text:table-formula (text:formula="#string" )? (text:display="value | formula" )? - (style:data-style-name="(<NCName>)?" )? + (style:data-style-name="(#NCName)?" )? TEXT>  @@ -20146,9 +20146,9 @@

text:table-index Element

Child Relations - <text:table-index (text:style-name="(<NCName>)?" )? - text:name="<string>" (text:protected="<boolean>" )? - (text:protection-key="<string>" )? + <text:table-index (text:style-name="(#NCName)?" )? + text:name="#string" (text:protected="#boolean" )? + (text:protection-key="#string" )? <text:table-index-source ... ><text:index-body ... >>  @@ -20180,7 +20180,7 @@

text:table-index-entry-t Child Relations <text:table-index-entry-template - (text:style-name="(<NCName>)?" (<text:index-entry-page-number ... > | <text:index-entry-text ... > | <text:index-entry-span ... > | <text:index-entry-tab-stop ... >)* )>  + (text:style-name="(#NCName)?" (<text:index-entry-page-number ... > | <text:index-entry-text ... > | <text:index-entry-span ... > | <text:index-entry-tab-stop ... >)* )> 
@@ -20213,9 +20213,9 @@

text:table-index-source Element< Child Relations <text:table-index-source (text:index-scope="document | chapter" )? - (text:relative-tab-stop-position="<boolean>" )? - (text:use-caption="<boolean>" )? - (text:caption-sequence-name="<string>" )? + (text:relative-tab-stop-position="#boolean" )? + (text:use-caption="#boolean" )? + (text:caption-sequence-name="#string" )? (text:caption-sequence-format="text | category-and-value | caption" )? (<text:index-title-template ... >)? (<text:table-index-entry-template ... >)? @@ -20262,9 +20262,9 @@

text:table-of-content Element< Child Relations - <text:table-of-content (text:style-name="(<NCName>)?" )? - text:name="<string>" (text:protected="<boolean>" )? - (text:protection-key="<string>" )? + <text:table-of-content (text:style-name="(#NCName)?" )? + text:name="#string" (text:protected="#boolean" )? + (text:protection-key="#string" )? <text:table-of-content-source ... ><text:index-body ... >>  @@ -20299,7 +20299,7 @@

text:table-of-conte Child Relations - <text:table-of-content-entry-template text:outline-level="<positiveInteger>" text:style-name="(<NCName>)?" (<text:index-entry-chapter ... > | <text:index-entry-page-number ... > | <text:index-entry-text ... > | <text:index-entry-span ... > | <text:index-entry-tab-stop ... > | <text:index-entry-link-start ... > | <text:index-entry-link-end ... >)* >  + <text:table-of-content-entry-template text:outline-level="#positiveInteger" text:style-name="(#NCName)?" (<text:index-entry-chapter ... > | <text:index-entry-page-number ... > | <text:index-entry-text ... > | <text:index-entry-span ... > | <text:index-entry-tab-stop ... > | <text:index-entry-link-start ... > | <text:index-entry-link-end ... >)* > 
@@ -20333,12 +20333,12 @@

text:table-of-content-sourc Child Relations - <text:table-of-content-source (text:outline-level="<positiveInteger>" )? - (text:use-outline-level="<boolean>" )? - (text:use-index-marks="<boolean>" )? - (text:use-index-source-styles="<boolean>" )? + <text:table-of-content-source (text:outline-level="#positiveInteger" )? + (text:use-outline-level="#boolean" )? + (text:use-index-marks="#boolean" )? + (text:use-index-source-styles="#boolean" )? (text:index-scope="document | chapter" )? - (text:relative-tab-stop-position="<boolean>" )? + (text:relative-tab-stop-position="#boolean" )? (<text:index-title-template ... >)? (<text:table-of-content-entry-template ... >)* (<text:index-source-styles ... >)* >  @@ -20438,10 +20438,10 @@

text:time Element

Child Relations - <text:time (text:fixed="<boolean>" )? - (style:data-style-name="(<NCName>)?" )? - (text:time-value="<time> | <dateTime>" )? - (text:time-adjust="<duration>" )? + <text:time (text:fixed="#boolean" )? + (style:data-style-name="(#NCName)?" )? + (text:time-value="#time | #dateTime" )? + (text:time-adjust="#duration" )? TEXT>  @@ -20473,7 +20473,7 @@

text:title Element

Child Relations - <text:title (text:fixed="<boolean>" )? + <text:title (text:fixed="#boolean" )? TEXT>  @@ -20505,7 +20505,7 @@

text:toc-mark Element

Child Relations - <text:toc-mark text:string-value="<string>" (text:outline-level="<positiveInteger>" )? + <text:toc-mark text:string-value="#string" (text:outline-level="#positiveInteger" )? >  @@ -20536,7 +20536,7 @@

text:toc-mark-end Element

Child Relations - <text:toc-mark-end text:id="<string>" >  + <text:toc-mark-end text:id="#string" > 
@@ -20568,7 +20568,7 @@

text:toc-mark-start Element

Child Relations <text:toc-mark-start - (text:id="<string>" (text:outline-level="<positiveInteger>" )? + (text:id="#string" (text:outline-level="#positiveInteger" )? )>  @@ -20596,7 +20596,7 @@

text:tracked-changes Element Child Relations - <text:tracked-changes (text:track-changes="<boolean>" )? + <text:tracked-changes (text:track-changes="#boolean" )? (<text:changed-region ... >)* >  @@ -20635,13 +20635,13 @@

text:user-defined Element

Child Relations - <text:user-defined (text:fixed="<boolean>" )? - text:name="<string>" (style:data-style-name="(<NCName>)?" )? - (office:value="<double>" )? - (office:date-value="<date> | <dateTime>" )? - (office:time-value="<duration>" )? - (office:boolean-value="<boolean>" )? - (office:string-value="<string>" )? + <text:user-defined (text:fixed="#boolean" )? + text:name="#string" (style:data-style-name="(#NCName)?" )? + (office:value="#double" )? + (office:date-value="#date | #dateTime" )? + (office:time-value="#duration" )? + (office:boolean-value="#boolean" )? + (office:string-value="#string" )? TEXT>  @@ -20682,17 +20682,17 @@

text:user-field-decl Element Child Relations - <text:user-field-decl text:name="<string>" ( (text:formula="<string>" )? + <text:user-field-decl text:name="#string" ( (text:formula="#string" )? )? - (office:value-type="float" office:value="<double>" ) | - (office:value-type="percentage" office:value="<double>" ) | - (office:value-type="currency" office:value="<double>" (office:currency="<string>" )? + (office:value-type="float" office:value="#double" ) | + (office:value-type="percentage" office:value="#double" ) | + (office:value-type="currency" office:value="#double" (office:currency="#string" )? ) | - (office:value-type="date" office:date-value="<date> | <dateTime>" ) | - (office:value-type="time" office:time-value="<duration>" ) | - (office:value-type="boolean" office:boolean-value="<boolean>" ) | - (office:value-type="string" (office:string-value="<string>" )? + (office:value-type="date" office:date-value="#date | #dateTime" ) | + (office:value-type="time" office:time-value="#duration" ) | + (office:value-type="boolean" office:boolean-value="#boolean" ) | + (office:value-type="string" (office:string-value="#string" )? )>  @@ -20760,8 +20760,8 @@

text:user-field-get Element

Child Relations - <text:user-field-get text:name="<string>" (text:display="value | formula | none" )? - (style:data-style-name="(<NCName>)?" )? + <text:user-field-get text:name="#string" (text:display="value | formula | none" )? + (style:data-style-name="(#NCName)?" )? TEXT>  @@ -20795,8 +20795,8 @@

text:user-field-input Element< Child Relations - <text:user-field-input text:name="<string>" (text:description="TEXT" )? - (style:data-style-name="(<NCName>)?" )? + <text:user-field-input text:name="#string" (text:description="TEXT" )? + (style:data-style-name="(#NCName)?" )? TEXT>  @@ -20840,9 +20840,9 @@

text:user-index Element

Child Relations - <text:user-index (text:style-name="(<NCName>)?" )? - text:name="<string>" (text:protected="<boolean>" )? - (text:protection-key="<string>" )? + <text:user-index (text:style-name="(#NCName)?" )? + text:name="#string" (text:protected="#boolean" )? + (text:protection-key="#string" )? <text:user-index-source ... ><text:index-body ... >>  @@ -20875,7 +20875,7 @@

text:user-index-entry-tem Child Relations - <text:user-index-entry-template text:outline-level="<positiveInteger>" text:style-name="(<NCName>)?" (<text:index-entry-chapter ... > | <text:index-entry-page-number ... > | <text:index-entry-text ... > | <text:index-entry-span ... > | <text:index-entry-tab-stop ... >)* >  + <text:user-index-entry-template text:outline-level="#positiveInteger" text:style-name="(#NCName)?" (<text:index-entry-chapter ... > | <text:index-entry-page-number ... > | <text:index-entry-text ... > | <text:index-entry-span ... > | <text:index-entry-tab-stop ... >)* > 
@@ -20907,8 +20907,8 @@

text:user-index-mark Element Child Relations - <text:user-index-mark text:string-value="<string>" (text:outline-level="<positiveInteger>" )? - text:index-name="<string>" >  + <text:user-index-mark text:string-value="#string" (text:outline-level="#positiveInteger" )? + text:index-name="#string" > 
@@ -20939,7 +20939,7 @@

text:user-index-mark-end Elemen Child Relations - <text:user-index-mark-end text:id="<string>" (text:outline-level="<positiveInteger>" )? + <text:user-index-mark-end text:id="#string" (text:outline-level="#positiveInteger" )? >  @@ -20972,8 +20972,8 @@

text:user-index-mark-start El Child Relations - <text:user-index-mark-start text:id="<string>" (text:outline-level="<positiveInteger>" )? - text:index-name="<string>" >  + <text:user-index-mark-start text:id="#string" (text:outline-level="#positiveInteger" )? + text:index-name="#string" > 
@@ -21012,14 +21012,14 @@

text:user-index-source ElementChild Relations <text:user-index-source ( (text:index-scope="document | chapter" )? - (text:relative-tab-stop-position="<boolean>" )? - text:index-name="<string>" ) - ( (text:use-index-marks="<boolean>" )? - (text:use-graphics="<boolean>" )? - (text:use-tables="<boolean>" )? - (text:use-floating-frames="<boolean>" )? - (text:use-objects="<boolean>" )? - ) (text:copy-outline-levels="<boolean>" )? + (text:relative-tab-stop-position="#boolean" )? + text:index-name="#string" ) + ( (text:use-index-marks="#boolean" )? + (text:use-graphics="#boolean" )? + (text:use-tables="#boolean" )? + (text:use-floating-frames="#boolean" )? + (text:use-objects="#boolean" )? + ) (text:copy-outline-levels="#boolean" )? (<text:index-title-template ... >)? (<text:user-index-entry-template ... >)* (<text:index-source-styles ... >)* >  @@ -21048,7 +21048,7 @@

text:variable-decl Element

Child Relations - <text:variable-decl text:name="<string>" office:value-type="float | time | date | percentage | currency | boolean | string" >  + <text:variable-decl text:name="#string" office:value-type="float | time | date | percentage | currency | boolean | string" > 
@@ -21115,8 +21115,8 @@

text:variable-get Element

Child Relations - <text:variable-get text:name="<string>" (text:display="value | formula" )? - (style:data-style-name="(<NCName>)?" )? + <text:variable-get text:name="#string" (text:display="value | formula" )? + (style:data-style-name="(#NCName)?" )? TEXT>  @@ -21152,9 +21152,9 @@

text:variable-input Element

Child Relations - <text:variable-input text:name="<string>" (text:description="TEXT" )? + <text:variable-input text:name="#string" (text:description="TEXT" )? office:value-type="float | time | date | percentage | currency | boolean | string" (text:display="value | none" )? - (style:data-style-name="(<NCName>)?" )? + (style:data-style-name="(#NCName)?" )? TEXT>  @@ -21202,18 +21202,18 @@

text:variable-set Element

Child Relations - <text:variable-set text:name="<string>" (text:formula="<string>" )? + <text:variable-set text:name="#string" (text:formula="#string" )? - (office:value-type="float" office:value="<double>" ) | - (office:value-type="percentage" office:value="<double>" ) | - (office:value-type="currency" office:value="<double>" (office:currency="<string>" )? + (office:value-type="float" office:value="#double" ) | + (office:value-type="percentage" office:value="#double" ) | + (office:value-type="currency" office:value="#double" (office:currency="#string" )? ) | - (office:value-type="date" office:date-value="<date> | <dateTime>" ) | - (office:value-type="time" office:time-value="<duration>" ) | - (office:value-type="boolean" office:boolean-value="<boolean>" ) | - (office:value-type="string" (office:string-value="<string>" )? + (office:value-type="date" office:date-value="#date | #dateTime" ) | + (office:value-type="time" office:time-value="#duration" ) | + (office:value-type="boolean" office:boolean-value="#boolean" ) | + (office:value-type="string" (office:string-value="#string" )? ) (text:display="value | none" )? - (style:data-style-name="(<NCName>)?" )? + (style:data-style-name="(#NCName)?" )? TEXT>  @@ -21247,8 +21247,8 @@

text:word-count Element

Child Relations - <CHOICE_NAME_CLASS ( (style:num-format="(1 | i | I | <string>)?" | - (style:num-format="a | A" (style:num-letter-sync="<boolean>" )? + <CHOICE_NAME_CLASS ( (style:num-format="(1 | i | I | #string)?" | + (style:num-format="a | A" (style:num-letter-sync="#boolean" )? ))? )? TEXT>  @@ -21304,7 +21304,7 @@

anim:audio-level Attribute

RNG Relations - anim:audio-level="<double>"   + anim:audio-level="#double"  
@@ -21381,7 +21381,7 @@

anim:command Attribute

RNG Relations - anim:command="<string>"   + anim:command="#string"  
@@ -21410,7 +21410,7 @@

anim:formula Attribute

RNG Relations - anim:formula="<string>"   + anim:formula="#string"  
@@ -21439,7 +21439,7 @@

anim:id Attribute

RNG Relations - anim:id="<ID>"   + anim:id="#ID"  
@@ -21464,7 +21464,7 @@

anim:iterate-interval Attribute< RNG Relations - anim:iterate-interval="<duration>"   + anim:iterate-interval="#duration"  
@@ -21489,7 +21489,7 @@

anim:iterate-type Attribute

RNG Relations - anim:iterate-type="<string>"   + anim:iterate-type="#string"  
@@ -21544,7 +21544,7 @@

anim:sub-item Attribute

RNG Relations - anim:sub-item="<string>"   + anim:sub-item="#string"  
@@ -21593,7 +21593,7 @@

chart:attached-axis Attribute< RNG Relations - chart:attached-axis="<string>"   + chart:attached-axis="#string"  
@@ -21672,7 +21672,7 @@

chart:column-mapping Attribute RNG Relations - chart:column-mapping="<string>"   + chart:column-mapping="#string"  
@@ -21862,7 +21862,7 @@

chart:name Attribute

RNG Relations - chart:name="<string>"   + chart:name="#string"  
@@ -21887,7 +21887,7 @@

chart:repeated Attribute

RNG Relations - chart:repeated="<nonNegativeInteger>"   + chart:repeated="#nonNegativeInteger"  
@@ -21912,7 +21912,7 @@

chart:row-mapping Attribute

RNG Relations - chart:row-mapping="<string>"   + chart:row-mapping="#string"  
@@ -21954,7 +21954,7 @@

chart:style-name Attribute

RNG Relations - chart:style-name="(<NCName>)?"   + chart:style-name="(#NCName)?"  
@@ -22008,7 +22008,7 @@

config:name Attribute

RNG Relations - config:name="<string>"   + config:name="#string"  
@@ -22193,7 +22193,7 @@

dr3d:enabled Attribute

RNG Relations - dr3d:enabled="<boolean>"   + dr3d:enabled="#boolean"  
@@ -22246,7 +22246,7 @@

dr3d:lighting-mode Attribute RNG Relations - dr3d:lighting-mode="<boolean>"   + dr3d:lighting-mode="#boolean"  
@@ -22380,7 +22380,7 @@

dr3d:shadow-slant Attribute

RNG Relations - dr3d:shadow-slant="<nonNegativeInteger>"   + dr3d:shadow-slant="#nonNegativeInteger"  
@@ -22431,7 +22431,7 @@

dr3d:specular Attribute

RNG Relations - dr3d:specular="<boolean>"   + dr3d:specular="#boolean"  
@@ -22596,7 +22596,7 @@

draw:angle Attribute

RNG Relations - draw:angle="<integer>"   + draw:angle="#integer"  
@@ -22723,7 +22723,7 @@

draw:chain-next-name Attribute RNG Relations - draw:chain-next-name="<string>"   + draw:chain-next-name="#string"  
@@ -22794,7 +22794,7 @@

draw:class-names Attribute

RNG Relations draw:class-names=" -START_list(<NCName>)* +START_list(#NCName)* END_list"   @@ -22923,7 +22923,7 @@

draw:concentric- RNG Relations - draw:concentric-gradient-fill-allowed="<boolean>"   + draw:concentric-gradient-fill-allowed="#boolean"  
@@ -22948,7 +22948,7 @@

draw:control Attribute

RNG Relations - draw:control="<IDREF>"   + draw:control="#IDREF"  
@@ -22973,7 +22973,7 @@

draw:copy-of Attribute

RNG Relations - draw:copy-of="<string>"   + draw:copy-of="#string"  
@@ -23026,7 +23026,7 @@

draw:corners Attribute

RNG Relations - draw:corners="<positiveInteger>"   + draw:corners="#positiveInteger"  
@@ -23103,7 +23103,7 @@

draw:data Attribute

RNG Relations - draw:data="<string>"   + draw:data="#string"  
@@ -23163,7 +23163,7 @@

draw:display-name Attribute

RNG Relations - draw:display-name="<string>"   + draw:display-name="#string"  
@@ -23214,7 +23214,7 @@

draw:dots1 Attribute

RNG Relations - draw:dots1="<integer>"   + draw:dots1="#integer"  
@@ -23264,7 +23264,7 @@

draw:dots2 Attribute

RNG Relations - draw:dots2="<integer>"   + draw:dots2="#integer"  
@@ -23340,7 +23340,7 @@

draw:end-angle Attribute

RNG Relations - draw:end-angle="<double>"   + draw:end-angle="#double"  
@@ -23390,7 +23390,7 @@

draw:end-glue-point Attribute< RNG Relations - draw:end-glue-point="<nonNegativeInteger>"   + draw:end-glue-point="#nonNegativeInteger"  
@@ -23440,7 +23440,7 @@

draw:end-shape Attribute

RNG Relations - draw:end-shape="<IDREF>"   + draw:end-shape="#IDREF"  
@@ -23490,7 +23490,7 @@

draw:enhanced-path Attribute RNG Relations - draw:enhanced-path="<string>"   + draw:enhanced-path="#string"  
@@ -23516,7 +23516,7 @@

draw:extrusion Attribute

RNG Relations - draw:extrusion="<boolean>"   + draw:extrusion="#boolean"  
@@ -23542,7 +23542,7 @@

draw:extrusion-allowed Attribut RNG Relations - draw:extrusion-allowed="<boolean>"   + draw:extrusion-allowed="#boolean"  
@@ -23593,7 +23593,7 @@

draw:extrusion-color Attribute RNG Relations - draw:extrusion-color="<boolean>"   + draw:extrusion-color="#boolean"  
@@ -23620,7 +23620,7 @@

draw:extrusion-depth Attribute RNG Relations draw:extrusion-depth=" -START_liststring]<double> +START_liststring]#double END_list"   @@ -23697,7 +23697,7 @@

draw:extrusion-first- RNG Relations - draw:extrusion-first-light-harsh="<boolean>"   + draw:extrusion-first-light-harsh="#boolean"  
@@ -23748,7 +23748,7 @@

draw:extrusion-light-face At RNG Relations - draw:extrusion-light-face="<boolean>"   + draw:extrusion-light-face="#boolean"  
@@ -23774,7 +23774,7 @@

draw:extrusion-metal Attribute RNG Relations - draw:extrusion-metal="<boolean>"   + draw:extrusion-metal="#boolean"  
@@ -23799,7 +23799,7 @@

draw:extrusion- RNG Relations - draw:extrusion-number-of-line-segments="<integer>"   + draw:extrusion-number-of-line-segments="#integer"  
@@ -23825,7 +23825,7 @@

draw:extrusion-origin Attribute< RNG Relations draw:extrusion-origin=" -START_list<double><double> +START_list#double#double END_list"   @@ -23852,7 +23852,7 @@

draw:extrusion-rotation- RNG Relations draw:extrusion-rotation-angle=" -START_list<double><double> +START_list#double#double END_list"   @@ -23929,7 +23929,7 @@

draw:extrusion-secon RNG Relations - draw:extrusion-second-light-harsh="<boolean>"   + draw:extrusion-second-light-harsh="#boolean"  
@@ -24005,7 +24005,7 @@

draw:extrusion-skew Attribute< RNG Relations draw:extrusion-skew=" -START_list<double><double> +START_list#double#double END_list"   @@ -24056,7 +24056,7 @@

draw:extrusion-viewpoint Attr RNG Relations - draw:extrusion-viewpoint="<string>"   + draw:extrusion-viewpoint="#string"  
@@ -24081,7 +24081,7 @@

draw:filter-name Attribute

RNG Relations - draw:filter-name="<string>"   + draw:filter-name="#string"  
@@ -24106,7 +24106,7 @@

draw:formula Attribute

RNG Relations - draw:formula="<string>"   + draw:formula="#string"  
@@ -24131,7 +24131,7 @@

draw:frame-name Attribute

RNG Relations - draw:frame-name="<string>"   + draw:frame-name="#string"  
@@ -24207,7 +24207,7 @@

draw:glue-points Attribute

RNG Relations - draw:glue-points="<string>"   + draw:glue-points="#string"  
@@ -24233,7 +24233,7 @@

draw:handle-mirror-horiz RNG Relations - draw:handle-mirror-horizontal="<boolean>"   + draw:handle-mirror-horizontal="#boolean"  
@@ -24259,7 +24259,7 @@

draw:handle-mirror-vertica RNG Relations - draw:handle-mirror-vertical="<boolean>"   + draw:handle-mirror-vertical="#boolean"  
@@ -24284,7 +24284,7 @@

draw:handle-polar Attribute

RNG Relations - draw:handle-polar="<string>"   + draw:handle-polar="#string"  
@@ -24309,7 +24309,7 @@

draw:handle-position Attribute RNG Relations - draw:handle-position="<string>"   + draw:handle-position="#string"  
@@ -24334,7 +24334,7 @@

draw:handle-radius-ra RNG Relations - draw:handle-radius-range-maximum="<string>"   + draw:handle-radius-range-maximum="#string"  
@@ -24359,7 +24359,7 @@

draw:handle-radius-ra RNG Relations - draw:handle-radius-range-minimum="<string>"   + draw:handle-radius-range-minimum="#string"  
@@ -24384,7 +24384,7 @@

draw:handle-range-x-maximu RNG Relations - draw:handle-range-x-maximum="<string>"   + draw:handle-range-x-maximum="#string"  
@@ -24409,7 +24409,7 @@

draw:handle-range-x-minimu RNG Relations - draw:handle-range-x-minimum="<string>"   + draw:handle-range-x-minimum="#string"  
@@ -24434,7 +24434,7 @@

draw:handle-range-y-maximu RNG Relations - draw:handle-range-y-maximum="<string>"   + draw:handle-range-y-maximum="#string"  
@@ -24459,7 +24459,7 @@

draw:handle-range-y-minimu RNG Relations - draw:handle-range-y-minimum="<string>"   + draw:handle-range-y-minimum="#string"  
@@ -24485,7 +24485,7 @@

draw:handle-switched Attribute RNG Relations - draw:handle-switched="<boolean>"   + draw:handle-switched="#boolean"  
@@ -24511,7 +24511,7 @@

draw:id[1] Attribute

RNG Relations - draw:id="<nonNegativeInteger>"   + draw:id="#nonNegativeInteger"  
@@ -24559,7 +24559,7 @@

draw:id[2] Attribute

RNG Relations - draw:id="<ID>"   + draw:id="#ID"  
@@ -24633,7 +24633,7 @@

draw:layer Attribute

RNG Relations - draw:layer="<string>"   + draw:layer="#string"  
@@ -24685,7 +24685,7 @@

draw:master-page-name Attribute< RNG Relations - draw:master-page-name="(<NCName>)?"   + draw:master-page-name="(#NCName)?"  
@@ -24711,7 +24711,7 @@

draw:may-script Attribute

RNG Relations - draw:may-script="<boolean>"   + draw:may-script="#boolean"  
@@ -24761,7 +24761,7 @@

draw:mirror-horizontal Attribut RNG Relations - draw:mirror-horizontal="<boolean>"   + draw:mirror-horizontal="#boolean"  
@@ -24787,7 +24787,7 @@

draw:mirror-vertical Attribute RNG Relations - draw:mirror-vertical="<boolean>"   + draw:mirror-vertical="#boolean"  
@@ -24812,7 +24812,7 @@

draw:modifiers Attribute

RNG Relations - draw:modifiers="<string>"   + draw:modifiers="#string"  
@@ -24857,7 +24857,7 @@

draw:name[1] Attribute

RNG Relations - draw:name="<string>"   + draw:name="#string"  
@@ -24890,7 +24890,7 @@

draw:name[2] Attribute

RNG Relations - draw:name="<NCName>"   + draw:name="#NCName"  
@@ -24967,7 +24967,7 @@

draw:notify-on-update- RNG Relations - draw:notify-on-update-of-ranges="<string>"   + draw:notify-on-update-of-ranges="#string"  
@@ -25016,7 +25016,7 @@

draw:page-number Attribute

RNG Relations - draw:page-number="<positiveInteger>"   + draw:page-number="#positiveInteger"  
@@ -25041,7 +25041,7 @@

draw:path-stretchpoint-x Attr RNG Relations - draw:path-stretchpoint-x="<double>"   + draw:path-stretchpoint-x="#double"  
@@ -25066,7 +25066,7 @@

draw:path-stretchpoint-y Attr RNG Relations - draw:path-stretchpoint-y="<double>"   + draw:path-stretchpoint-y="#double"  
@@ -25120,7 +25120,7 @@

draw:protected Attribute

RNG Relations - draw:protected="<boolean>"   + draw:protected="#boolean"  
@@ -25147,7 +25147,7 @@

draw:recreate-on-edit Attribute< RNG Relations - draw:recreate-on-edit="<boolean>"   + draw:recreate-on-edit="#boolean"  
@@ -25172,7 +25172,7 @@

draw:rotation Attribute

RNG Relations - draw:rotation="<integer>"   + draw:rotation="#integer"  
@@ -25202,7 +25202,7 @@

draw:shape-id Attribute

RNG Relations - draw:shape-id="<IDREF>"   + draw:shape-id="#IDREF"  
@@ -25278,7 +25278,7 @@

draw:start-angle Attribute

RNG Relations - draw:start-angle="<double>"   + draw:start-angle="#double"  
@@ -25328,7 +25328,7 @@

draw:start-glue-point Attribute< RNG Relations - draw:start-glue-point="<nonNegativeInteger>"   + draw:start-glue-point="#nonNegativeInteger"  
@@ -25378,7 +25378,7 @@

draw:start-shape Attribute

RNG Relations - draw:start-shape="<IDREF>"   + draw:start-shape="#IDREF"  
@@ -25515,7 +25515,7 @@

draw:style-name Attribute

RNG Relations - draw:style-name="(<NCName>)?"   + draw:style-name="(#NCName)?"  
@@ -25540,7 +25540,7 @@

draw:text-areas Attribute

RNG Relations - draw:text-areas="<string>"   + draw:text-areas="#string"  
@@ -25566,7 +25566,7 @@

draw:text-path Attribute

RNG Relations - draw:text-path="<boolean>"   + draw:text-path="#boolean"  
@@ -25592,7 +25592,7 @@

draw:text-path-allowed Attribut RNG Relations - draw:text-path-allowed="<boolean>"   + draw:text-path-allowed="#boolean"  
@@ -25645,7 +25645,7 @@

draw:text-path-same RNG Relations - draw:text-path-same-letter-heights="<boolean>"   + draw:text-path-same-letter-heights="#boolean"  
@@ -25696,7 +25696,7 @@

draw:text-rotate-angle Attribut RNG Relations - draw:text-rotate-angle="<double>"   + draw:text-rotate-angle="#double"  
@@ -25735,7 +25735,7 @@

draw:text-style-name Attribute RNG Relations - draw:text-style-name="(<NCName>)?"   + draw:text-style-name="(#NCName)?"  
@@ -25775,7 +25775,7 @@

draw:transform Attribute

RNG Relations - draw:transform="<string>"   + draw:transform="#string"  
@@ -25831,7 +25831,7 @@

draw:type[2] Attribute

RNG Relations - draw:type="non-primitive | <string>"   + draw:type="non-primitive | #string"  
@@ -25901,7 +25901,7 @@

draw:z-index Attribute

RNG Relations - draw:z-index="<nonNegativeInteger>"   + draw:z-index="#nonNegativeInteger"  
@@ -26083,7 +26083,7 @@

form:allow-deletes Attribute RNG Relations - form:allow-deletes="<boolean>"   + form:allow-deletes="#boolean"  
@@ -26109,7 +26109,7 @@

form:allow-inserts Attribute RNG Relations - form:allow-inserts="<boolean>"   + form:allow-inserts="#boolean"  
@@ -26135,7 +26135,7 @@

form:allow-updates Attribute RNG Relations - form:allow-updates="<boolean>"   + form:allow-updates="#boolean"  
@@ -26161,7 +26161,7 @@

form:apply-design-mode Attribut RNG Relations - form:apply-design-mode="<boolean>"   + form:apply-design-mode="#boolean"  
@@ -26187,7 +26187,7 @@

form:apply-filter Attribute

RNG Relations - form:apply-filter="<boolean>"   + form:apply-filter="#boolean"  
@@ -26213,7 +26213,7 @@

form:auto-complete Attribute RNG Relations - form:auto-complete="<boolean>"   + form:auto-complete="#boolean"  
@@ -26239,7 +26239,7 @@

form:automatic-focus Attribute RNG Relations - form:automatic-focus="<boolean>"   + form:automatic-focus="#boolean"  
@@ -26264,7 +26264,7 @@

form:bound-column Attribute

RNG Relations - form:bound-column="<string>"   + form:bound-column="#string"  
@@ -26424,7 +26424,7 @@

form:convert-empty-to-null RNG Relations - form:convert-empty-to-null="<boolean>"   + form:convert-empty-to-null="#boolean"  
@@ -26451,7 +26451,7 @@

form:current-selected Attribute< RNG Relations - form:current-selected="<boolean>"   + form:current-selected="#boolean"  
@@ -26504,7 +26504,7 @@

form:current-value[1] Attribute RNG Relations - form:current-value="<time>"   + form:current-value="#time"  
@@ -26530,7 +26530,7 @@

form:current-value[2] Attribute RNG Relations - form:current-value="<date>"   + form:current-value="#date"  
@@ -26556,7 +26556,7 @@

form:current-value[3] Attribute RNG Relations - form:current-value="<double>"   + form:current-value="#double"  
@@ -26586,7 +26586,7 @@

form:current-value[4] Attribute RNG Relations - form:current-value="<string>"   + form:current-value="#string"  
@@ -26621,7 +26621,7 @@

form:data-field Attribute

RNG Relations - form:data-field="<string>"   + form:data-field="#string"  
@@ -26647,7 +26647,7 @@

form:datasource Attribute

RNG Relations - form:datasource="<anyURI> | <string>"   + form:datasource="#anyURI | #string"  
@@ -26673,7 +26673,7 @@

form:default-button Attribute< RNG Relations - form:default-button="<boolean>"   + form:default-button="#boolean"  
@@ -26698,7 +26698,7 @@

form:delay-for-repeat Attribute< RNG Relations - form:delay-for-repeat="<duration>"   + form:delay-for-repeat="#duration"  
@@ -26723,7 +26723,7 @@

form:detail-fields Attribute RNG Relations - form:detail-fields="<string>"   + form:detail-fields="#string"  
@@ -26767,7 +26767,7 @@

form:disabled Attribute

RNG Relations - form:disabled="<boolean>"   + form:disabled="#boolean"  
@@ -26794,7 +26794,7 @@

form:dropdown Attribute

RNG Relations - form:dropdown="<boolean>"   + form:dropdown="#boolean"  
@@ -26844,7 +26844,7 @@

form:enctype Attribute

RNG Relations - form:enctype="<string>"   + form:enctype="#string"  
@@ -26870,7 +26870,7 @@

form:escape-processing Attribut RNG Relations - form:escape-processing="<boolean>"   + form:escape-processing="#boolean"  
@@ -26895,7 +26895,7 @@

form:filter Attribute

RNG Relations - form:filter="<string>"   + form:filter="#string"  
@@ -26921,7 +26921,7 @@

form:focus-on-click Attribute< RNG Relations - form:focus-on-click="<boolean>"   + form:focus-on-click="#boolean"  
@@ -26947,7 +26947,7 @@

form:for Attribute

RNG Relations - form:for="<string>"   + form:for="#string"  
@@ -26992,7 +26992,7 @@

form:id Attribute

RNG Relations - form:id="<ID>"   + form:id="#ID"  
@@ -27018,7 +27018,7 @@

form:ignore-result Attribute RNG Relations - form:ignore-result="<boolean>"   + form:ignore-result="#boolean"  
@@ -27074,7 +27074,7 @@

form:image-data Attribute

RNG Relations - form:image-data="<anyURI>"   + form:image-data="#anyURI"  
@@ -27159,7 +27159,7 @@

form:is-tristate Attribute

RNG Relations - form:is-tristate="<boolean>"   + form:is-tristate="#boolean"  
@@ -27191,7 +27191,7 @@

form:label Attribute

RNG Relations - form:label="<string>"   + form:label="#string"  
@@ -27217,7 +27217,7 @@

form:list-source Attribute

RNG Relations - form:list-source="<string>"   + form:list-source="#string"  
@@ -27273,7 +27273,7 @@

form:master-fields Attribute RNG Relations - form:master-fields="<string>"   + form:master-fields="#string"  
@@ -27306,7 +27306,7 @@

form:max-length Attribute

RNG Relations - form:max-length="<nonNegativeInteger>"   + form:max-length="#nonNegativeInteger"  
@@ -27332,7 +27332,7 @@

form:max-value[1] Attribute

RNG Relations - form:max-value="<time>"   + form:max-value="#time"  
@@ -27358,7 +27358,7 @@

form:max-value[2] Attribute

RNG Relations - form:max-value="<double>"   + form:max-value="#double"  
@@ -27385,7 +27385,7 @@

form:max-value[3] Attribute

RNG Relations - form:max-value="<string>"   + form:max-value="#string"  
@@ -27411,7 +27411,7 @@

form:max-value[4] Attribute

RNG Relations - form:max-value="<date>"   + form:max-value="#date"  
@@ -27438,7 +27438,7 @@

form:method Attribute

RNG Relations - form:method="get | post | <string>"   + form:method="get | post | #string"  
@@ -27465,7 +27465,7 @@

form:min-value[1] Attribute

RNG Relations - form:min-value="<string>"   + form:min-value="#string"  
@@ -27491,7 +27491,7 @@

form:min-value[2] Attribute

RNG Relations - form:min-value="<double>"   + form:min-value="#double"  
@@ -27517,7 +27517,7 @@

form:min-value[3] Attribute

RNG Relations - form:min-value="<time>"   + form:min-value="#time"  
@@ -27543,7 +27543,7 @@

form:min-value[4] Attribute

RNG Relations - form:min-value="<date>"   + form:min-value="#date"  
@@ -27569,7 +27569,7 @@

form:multi-line Attribute

RNG Relations - form:multi-line="<boolean>"   + form:multi-line="#boolean"  
@@ -27595,7 +27595,7 @@

form:multiple Attribute

RNG Relations - form:multiple="<boolean>"   + form:multiple="#boolean"  
@@ -27642,7 +27642,7 @@

form:name Attribute

RNG Relations - form:name="<string>"   + form:name="#string"  
@@ -27694,7 +27694,7 @@

form:order Attribute

RNG Relations - form:order="<string>"   + form:order="#string"  
@@ -27745,7 +27745,7 @@

form:page-step-size Attribute< RNG Relations - form:page-step-size="<positiveInteger>"   + form:page-step-size="#positiveInteger"  
@@ -27789,7 +27789,7 @@

form:printable Attribute

RNG Relations - form:printable="<boolean>"   + form:printable="#boolean"  
@@ -27815,7 +27815,7 @@

form:property-name Attribute RNG Relations - form:property-name="<string>"   + form:property-name="#string"  
@@ -27849,7 +27849,7 @@

form:readonly Attribute

RNG Relations - form:readonly="<boolean>"   + form:readonly="#boolean"  
@@ -27876,7 +27876,7 @@

form:selected Attribute

RNG Relations - form:selected="<boolean>"   + form:selected="#boolean"  
@@ -27902,7 +27902,7 @@

form:size Attribute

RNG Relations - form:size="<nonNegativeInteger>"   + form:size="#nonNegativeInteger"  
@@ -27954,7 +27954,7 @@

form:step-size Attribute

RNG Relations - form:step-size="<positiveInteger>"   + form:step-size="#positiveInteger"  
@@ -28021,7 +28021,7 @@

form:tab-index Attribute

RNG Relations - form:tab-index="<nonNegativeInteger>"   + form:tab-index="#nonNegativeInteger"  
@@ -28062,7 +28062,7 @@

form:tab-stop Attribute

RNG Relations - form:tab-stop="<boolean>"   + form:tab-stop="#boolean"  
@@ -28087,7 +28087,7 @@

form:text-style-name Attribute RNG Relations - form:text-style-name="(<NCName>)?"   + form:text-style-name="(#NCName)?"  
@@ -28155,7 +28155,7 @@

form:toggle Attribute

RNG Relations - form:toggle="<boolean>"   + form:toggle="#boolean"  
@@ -28181,7 +28181,7 @@

form:validation Attribute

RNG Relations - form:validation="<boolean>"   + form:validation="#boolean"  
@@ -28207,7 +28207,7 @@

form:value[1] Attribute

RNG Relations - form:value="<double>"   + form:value="#double"  
@@ -28233,7 +28233,7 @@

form:value[2] Attribute

RNG Relations - form:value="<date>"   + form:value="#date"  
@@ -28259,7 +28259,7 @@

form:value[3] Attribute

RNG Relations - form:value="<time>"   + form:value="#time"  
@@ -28297,7 +28297,7 @@

form:value[4] Attribute

RNG Relations - form:value="<string>"   + form:value="#string"  
@@ -28349,7 +28349,7 @@

form:xforms-list-source Attrib RNG Relations - form:xforms-list-source="<string>"   + form:xforms-list-source="#string"  
@@ -28374,7 +28374,7 @@

form:xforms-submission Attribut RNG Relations - form:xforms-submission="<string>"   + form:xforms-submission="#string"  
@@ -28425,7 +28425,7 @@

number:automatic-order Attribut RNG Relations - number:automatic-order="<boolean>"   + number:automatic-order="#boolean"  
@@ -28464,7 +28464,7 @@

number:calendar Attribute

RNG Relations - number:calendar="gregorian | gengou | ROC | hanja_yoil | hanja | hijri | jewish | buddhist | <string>"   + number:calendar="gregorian | gengou | ROC | hanja_yoil | hanja | hijri | jewish | buddhist | #string"  
@@ -28523,7 +28523,7 @@

number:decimal-places Attribute< RNG Relations - number:decimal-places="<integer>"   + number:decimal-places="#integer"  
@@ -28572,7 +28572,7 @@

number:denominator-value Attr RNG Relations - number:denominator-value="<integer>"   + number:denominator-value="#integer"  
@@ -28597,7 +28597,7 @@

number:display-factor Attribute< RNG Relations - number:display-factor="<double>"   + number:display-factor="#double"  
@@ -28652,7 +28652,7 @@

number:grouping Attribute

RNG Relations - number:grouping="<boolean>"   + number:grouping="#boolean"  
@@ -28709,7 +28709,7 @@

number:min-denominator-d RNG Relations - number:min-denominator-digits="<integer>"   + number:min-denominator-digits="#integer"  
@@ -28734,7 +28734,7 @@

number:min-exponent-digits RNG Relations - number:min-exponent-digits="<integer>"   + number:min-exponent-digits="#integer"  
@@ -28761,7 +28761,7 @@

number:min-integer-digits At RNG Relations - number:min-integer-digits="<integer>"   + number:min-integer-digits="#integer"  
@@ -28786,7 +28786,7 @@

number:min-numerator-digit RNG Relations - number:min-numerator-digits="<integer>"   + number:min-numerator-digits="#integer"  
@@ -28811,7 +28811,7 @@

number:position Attribute

RNG Relations - number:position="<integer>"   + number:position="#integer"  
@@ -28837,7 +28837,7 @@

number:possessive-form Attribut RNG Relations - number:possessive-form="<boolean>"   + number:possessive-form="#boolean"  
@@ -28897,7 +28897,7 @@

number:textual Attribute

RNG Relations - number:textual="<boolean>"   + number:textual="#boolean"  
@@ -28989,7 +28989,7 @@

number:transliteration-f RNG Relations - number:transliteration-format="<string>"   + number:transliteration-format="#string"  
@@ -29079,7 +29079,7 @@

number:truncate-on-overflo RNG Relations - number:truncate-on-overflow="<boolean>"   + number:truncate-on-overflow="#boolean"  
@@ -29106,7 +29106,7 @@

office:automatic-update Attrib RNG Relations - office:automatic-update="<boolean>"   + office:automatic-update="#boolean"  
@@ -29140,7 +29140,7 @@

office:boolean-value Attribute RNG Relations - office:boolean-value="<boolean>"   + office:boolean-value="#boolean"  
@@ -29199,7 +29199,7 @@

office:currency Attribute

RNG Relations - office:currency="<string>"   + office:currency="#string"  
@@ -29233,7 +29233,7 @@

office:date-value Attribute

RNG Relations - office:date-value="<date> | <dateTime>"   + office:date-value="#date | #dateTime"  
@@ -29259,7 +29259,7 @@

office:dde-application Attribut RNG Relations - office:dde-application="<string>"   + office:dde-application="#string"  
@@ -29285,7 +29285,7 @@

office:dde-item Attribute

RNG Relations - office:dde-item="<string>"   + office:dde-item="#string"  
@@ -29311,7 +29311,7 @@

office:dde-topic Attribute

RNG Relations - office:dde-topic="<string>"   + office:dde-topic="#string"  
@@ -29337,7 +29337,7 @@

office:display Attribute

RNG Relations - office:display="<boolean>"   + office:display="#boolean"  
@@ -29362,7 +29362,7 @@

office:mimetype Attribute

RNG Relations - office:mimetype="<string>"   + office:mimetype="#string"  
@@ -29393,7 +29393,7 @@

office:name Attribute

RNG Relations - office:name="<string>"   + office:name="#string"  
@@ -29419,7 +29419,7 @@

office:server-map Attribute

RNG Relations - office:server-map="<boolean>"   + office:server-map="#boolean"  
@@ -29452,7 +29452,7 @@

office:string-value Attribute< RNG Relations - office:string-value="<string>"   + office:string-value="#string"  
@@ -29483,7 +29483,7 @@

office:target-frame Attribute< RNG Relations - office:target-frame="_self | _blank | _parent | _top | <string>"   + office:target-frame="_self | _blank | _parent | _top | #string"  
@@ -29516,7 +29516,7 @@

office:target-frame-name Attr RNG Relations - office:target-frame-name="_self | _blank | _parent | _top | <string>"   + office:target-frame-name="_self | _blank | _parent | _top | #string"  
@@ -29549,7 +29549,7 @@

office:time-value Attribute

RNG Relations - office:time-value="<duration>"   + office:time-value="#duration"  
@@ -29584,7 +29584,7 @@

office:value Attribute

RNG Relations - office:value="<double>"   + office:value="#double"  
@@ -29904,7 +29904,7 @@

office:version Attribute

RNG Relations - office:version="<string>"   + office:version="#string"  
@@ -30054,7 +30054,7 @@

presentation:class-names Attr RNG Relations presentation:class-names=" -START_list(<NCName>)* +START_list(#NCName)* END_list"   @@ -30083,7 +30083,7 @@

presentation:delay Attribute RNG Relations - presentation:delay="<duration>"   + presentation:delay="#duration"  
@@ -30210,7 +30210,7 @@

presentation:endless Attribute RNG Relations - presentation:endless="<boolean>"   + presentation:endless="#boolean"  
@@ -30236,7 +30236,7 @@

presentation:force-manual At RNG Relations - presentation:force-manual="<boolean>"   + presentation:force-manual="#boolean"  
@@ -30262,7 +30262,7 @@

presentation:full-screen Attr RNG Relations - presentation:full-screen="<boolean>"   + presentation:full-screen="#boolean"  
@@ -30291,7 +30291,7 @@

presentation:group-id Attribute< RNG Relations - presentation:group-id="<string>"   + presentation:group-id="#string"  
@@ -30320,7 +30320,7 @@

presentation:master-elemen RNG Relations - presentation:master-element="<IDREF>"   + presentation:master-element="#IDREF"  
@@ -30346,7 +30346,7 @@

presentation:mouse-as-pen At RNG Relations - presentation:mouse-as-pen="<boolean>"   + presentation:mouse-as-pen="#boolean"  
@@ -30372,7 +30372,7 @@

presentation:mouse-visible RNG Relations - presentation:mouse-visible="<boolean>"   + presentation:mouse-visible="#boolean"  
@@ -30400,7 +30400,7 @@

presentation:name Attribute

RNG Relations - presentation:name="<string>"   + presentation:name="#string"  
@@ -30551,7 +30551,7 @@

presentation:pause Attribute RNG Relations - presentation:pause="<duration>"   + presentation:pause="#duration"  
@@ -30578,7 +30578,7 @@

presentation:placeholder Attr RNG Relations - presentation:placeholder="<boolean>"   + presentation:placeholder="#boolean"  
@@ -30604,7 +30604,7 @@

presentation:play-full Attribut RNG Relations - presentation:play-full="<boolean>"   + presentation:play-full="#boolean"  
@@ -30630,7 +30630,7 @@

presentatio RNG Relations - presentation:presentation-page-layout-name="(<NCName>)?"   + presentation:presentation-page-layout-name="(#NCName)?"  
@@ -30694,7 +30694,7 @@

presentation:preset-id Attribut RNG Relations - presentation:preset-id="<string>"   + presentation:preset-id="#string"  
@@ -30723,7 +30723,7 @@

presentation:preset-sub-t RNG Relations - presentation:preset-sub-type="<string>"   + presentation:preset-sub-type="#string"  
@@ -30748,7 +30748,7 @@

presentation:show Attribute

RNG Relations - presentation:show="<string>"   + presentation:show="#string"  
@@ -30774,7 +30774,7 @@

presentation:show-logo Attribut RNG Relations - presentation:show-logo="<boolean>"   + presentation:show-logo="#boolean"  
@@ -30857,7 +30857,7 @@

presentation:start-page Attrib RNG Relations - presentation:start-page="<string>"   + presentation:start-page="#string"  
@@ -30912,7 +30912,7 @@

presentation:start-w RNG Relations - presentation:start-with-navigator="<boolean>"   + presentation:start-with-navigator="#boolean"  
@@ -30938,7 +30938,7 @@

presentation:stay-on-top Attr RNG Relations - presentation:stay-on-top="<boolean>"   + presentation:stay-on-top="#boolean"  
@@ -30984,7 +30984,7 @@

presentation:style-name Attrib RNG Relations - presentation:style-name="(<NCName>)?"   + presentation:style-name="(#NCName)?"  
@@ -31037,7 +31037,7 @@

presentation:use-date- RNG Relations - presentation:use-date-time-name="<string>"   + presentation:use-date-time-name="#string"  
@@ -31064,7 +31064,7 @@

presentation:use-footer-n RNG Relations - presentation:use-footer-name="<string>"   + presentation:use-footer-name="#string"  
@@ -31091,7 +31091,7 @@

presentation:use-header-n RNG Relations - presentation:use-header-name="<string>"   + presentation:use-header-name="#string"  
@@ -31118,7 +31118,7 @@

presentation:user-transf RNG Relations - presentation:user-transformed="<boolean>"   + presentation:user-transformed="#boolean"  
@@ -31143,7 +31143,7 @@

presentation:verb Attribute

RNG Relations - presentation:verb="<nonNegativeInteger>"   + presentation:verb="#nonNegativeInteger"  
@@ -31169,7 +31169,7 @@

script:event-name Attribute

RNG Relations - script:event-name="<string>"   + script:event-name="#string"  
@@ -31196,7 +31196,7 @@

script:language Attribute

RNG Relations - script:language="<string>"   + script:language="#string"  
@@ -31221,7 +31221,7 @@

script:macro-name Attribute

RNG Relations - script:macro-name="<string>"   + script:macro-name="#string"  
@@ -31248,7 +31248,7 @@

smil:accelerate Attribute

RNG Relations - smil:accelerate="<double>"   + smil:accelerate="#double"  
@@ -31339,7 +31339,7 @@

smil:attributeName Attribute RNG Relations - smil:attributeName="<string>"   + smil:attributeName="#string"  
@@ -31367,7 +31367,7 @@

smil:autoReverse Attribute

RNG Relations - smil:autoReverse="<boolean>"   + smil:autoReverse="#boolean"  
@@ -31396,7 +31396,7 @@

smil:begin Attribute

RNG Relations - smil:begin="<string>"   + smil:begin="#string"  
@@ -31425,7 +31425,7 @@

smil:by Attribute

RNG Relations - smil:by="<string>"   + smil:by="#string"  
@@ -31483,7 +31483,7 @@

smil:decelerate Attribute

RNG Relations - smil:decelerate="<double>"   + smil:decelerate="#double"  
@@ -31537,7 +31537,7 @@

smil:dur Attribute

RNG Relations - smil:dur="<string>"   + smil:dur="#string"  
@@ -31566,7 +31566,7 @@

smil:end Attribute

RNG Relations - smil:end="<string>"   + smil:end="#string"  
@@ -31721,7 +31721,7 @@

smil:from Attribute

RNG Relations - smil:from="<string>"   + smil:from="#string"  
@@ -31748,7 +31748,7 @@

smil:keySplines Attribute

RNG Relations - smil:keySplines="<string>"   + smil:keySplines="#string"  
@@ -31775,7 +31775,7 @@

smil:keyTimes Attribute

RNG Relations - smil:keyTimes="<string>"   + smil:keyTimes="#string"  
@@ -31830,7 +31830,7 @@

smil:repeatCount Attribute

RNG Relations - smil:repeatCount="<nonNegativeInteger>"   + smil:repeatCount="#nonNegativeInteger"  
@@ -31859,7 +31859,7 @@

smil:repeatDur Attribute

RNG Relations - smil:repeatDur="<string>"   + smil:repeatDur="#string"  
@@ -31944,7 +31944,7 @@

smil:subtype Attribute

RNG Relations - smil:subtype="<string>"   + smil:subtype="#string"  
@@ -31976,7 +31976,7 @@

smil:targetElement Attribute RNG Relations - smil:targetElement="<IDREF>"   + smil:targetElement="#IDREF"  
@@ -32006,7 +32006,7 @@

smil:to Attribute

RNG Relations - smil:to="<string>"   + smil:to="#string"  
@@ -32031,7 +32031,7 @@

smil:type Attribute

RNG Relations - smil:type="<string>"   + smil:type="#string"  
@@ -32060,7 +32060,7 @@

smil:values Attribute

RNG Relations - smil:values="<string>"   + smil:values="#string"  
@@ -32085,7 +32085,7 @@

style:apply-style-name Attribut RNG Relations - style:apply-style-name="(<NCName>)?"   + style:apply-style-name="(#NCName)?"  
@@ -32111,7 +32111,7 @@

style:auto-update Attribute

RNG Relations - style:auto-update="<boolean>"   + style:auto-update="#boolean"  
@@ -32161,7 +32161,7 @@

style:class Attribute

RNG Relations - style:class="<string>"   + style:class="#string"  
@@ -32186,7 +32186,7 @@

style:condition Attribute

RNG Relations - style:condition="<string>"   + style:condition="#string"  
@@ -32230,7 +32230,7 @@

style:data-style-name Attribute< RNG Relations - style:data-style-name="(<NCName>)?"   + style:data-style-name="(#NCName)?"  
@@ -32255,7 +32255,7 @@

style:default-outline-leve RNG Relations - style:default-outline-level="<positiveInteger>"   + style:default-outline-level="#positiveInteger"  
@@ -32284,7 +32284,7 @@

style:display Attribute

RNG Relations - style:display="<boolean>"   + style:display="#boolean"  
@@ -32312,7 +32312,7 @@

style:display-name Attribute RNG Relations - style:display-name="<string>"   + style:display-name="#string"  
@@ -32635,7 +32635,7 @@

style:font-adornments Attribute< RNG Relations - style:font-adornments="<string>"   + style:font-adornments="#string"  
@@ -32820,7 +32820,7 @@

style:legend-expan RNG Relations - style:legend-expansion-aspect-ratio="<double>"   + style:legend-expansion-aspect-ratio="#double"  
@@ -32845,7 +32845,7 @@

style:list-style-name Attribute< RNG Relations - style:list-style-name="(<NCName>)?"   + style:list-style-name="(#NCName)?"  
@@ -32870,7 +32870,7 @@

style:master-page-name Attribut RNG Relations - style:master-page-name="(<NCName>)?"   + style:master-page-name="(#NCName)?"  
@@ -32907,7 +32907,7 @@

style:name[1] Attribute

RNG Relations - style:name="<NCName>"   + style:name="#NCName"  
@@ -32933,7 +32933,7 @@

style:name[2] Attribute

RNG Relations - style:name="<string>"   + style:name="#string"  
@@ -32959,7 +32959,7 @@

style:next-style-name Attribute< RNG Relations - style:next-style-name="(<NCName>)?"   + style:next-style-name="(#NCName)?"  
@@ -33002,7 +33002,7 @@

style:num-format[1] Attribute

RNG Relations - style:num-format="(1 | i | I | <string>)?"   + style:num-format="(1 | i | I | #string)?"  
@@ -33083,7 +33083,7 @@

style:num-letter-sync Attribute< RNG Relations - style:num-letter-sync="<boolean>"   + style:num-letter-sync="#boolean"  
@@ -33111,7 +33111,7 @@

style:num-prefix Attribute

RNG Relations - style:num-prefix="<string>"   + style:num-prefix="#string"  
@@ -33139,7 +33139,7 @@

style:num-suffix Attribute

RNG Relations - style:num-suffix="<string>"   + style:num-suffix="#string"  
@@ -33166,7 +33166,7 @@

style:page-layout-name Attribut RNG Relations - style:page-layout-name="(<NCName>)?"   + style:page-layout-name="(#NCName)?"  
@@ -33219,7 +33219,7 @@

style:parent-style-name Attrib RNG Relations - style:parent-style-name="(<NCName>)?"   + style:parent-style-name="(#NCName)?"  
@@ -33382,7 +33382,7 @@

style:volatile Attribute

RNG Relations - style:volatile="<boolean>"   + style:volatile="#boolean"  
@@ -33407,7 +33407,7 @@

svg:accent-height Attribute

RNG Relations - svg:accent-height="<integer>"   + svg:accent-height="#integer"  
@@ -33432,7 +33432,7 @@

svg:alphabetic Attribute

RNG Relations - svg:alphabetic="<integer>"   + svg:alphabetic="#integer"  
@@ -33457,7 +33457,7 @@

svg:ascent Attribute

RNG Relations - svg:ascent="<integer>"   + svg:ascent="#integer"  
@@ -33506,7 +33506,7 @@

svg:cap-height Attribute

RNG Relations - svg:cap-height="<integer>"   + svg:cap-height="#integer"  
@@ -33645,7 +33645,7 @@

svg:d Attribute

RNG Relations - svg:d="<string>"   + svg:d="#string"  
@@ -33670,7 +33670,7 @@

svg:descent Attribute

RNG Relations - svg:descent="<integer>"   + svg:descent="#integer"  
@@ -33695,7 +33695,7 @@

svg:font-family Attribute

RNG Relations - svg:font-family="<string>"   + svg:font-family="#string"  
@@ -33919,7 +33919,7 @@

svg:gradientTransform Attribute< RNG Relations - svg:gradientTransform="<string>"   + svg:gradientTransform="#string"  
@@ -33970,7 +33970,7 @@

svg:hanging Attribute

RNG Relations - svg:hanging="<integer>"   + svg:hanging="#integer"  
@@ -34068,7 +34068,7 @@

svg:ideographic Attribute

RNG Relations - svg:ideographic="<integer>"   + svg:ideographic="#integer"  
@@ -34093,7 +34093,7 @@

svg:mathematical Attribute

RNG Relations - svg:mathematical="<integer>"   + svg:mathematical="#integer"  
@@ -34119,7 +34119,7 @@

svg:offset Attribute

RNG Relations - svg:offset="<double> | string]"   + svg:offset="#double | string]"  
@@ -34144,7 +34144,7 @@

svg:origin Attribute

RNG Relations - svg:origin="<string>"   + svg:origin="#string"  
@@ -34169,7 +34169,7 @@

svg:overline-position Attribute< RNG Relations - svg:overline-position="<integer>"   + svg:overline-position="#integer"  
@@ -34194,7 +34194,7 @@

svg:overline-thickness Attribut RNG Relations - svg:overline-thickness="<integer>"   + svg:overline-thickness="#integer"  
@@ -34243,7 +34243,7 @@

svg:path Attribute

RNG Relations - svg:path="<string>"   + svg:path="#string"  
@@ -34372,7 +34372,7 @@

svg:slope Attribute

RNG Relations - svg:slope="<integer>"   + svg:slope="#integer"  
@@ -34425,7 +34425,7 @@

svg:stemh Attribute

RNG Relations - svg:stemh="<integer>"   + svg:stemh="#integer"  
@@ -34450,7 +34450,7 @@

svg:stemv Attribute

RNG Relations - svg:stemv="<integer>"   + svg:stemv="#integer"  
@@ -34500,7 +34500,7 @@

svg:stop-opacity Attribute

RNG Relations - svg:stop-opacity="<double>"   + svg:stop-opacity="#double"  
@@ -34525,7 +34525,7 @@

svg:strikethrough-position RNG Relations - svg:strikethrough-position="<integer>"   + svg:strikethrough-position="#integer"  
@@ -34550,7 +34550,7 @@

svg:strikethrough-thicknes RNG Relations - svg:strikethrough-thickness="<integer>"   + svg:strikethrough-thickness="#integer"  
@@ -34628,7 +34628,7 @@

svg:underline-position Attribut RNG Relations - svg:underline-position="<integer>"   + svg:underline-position="#integer"  
@@ -34653,7 +34653,7 @@

svg:underline-thickness Attrib RNG Relations - svg:underline-thickness="<integer>"   + svg:underline-thickness="#integer"  
@@ -34702,7 +34702,7 @@

svg:units-per-em Attribute

RNG Relations - svg:units-per-em="<integer>"   + svg:units-per-em="#integer"  
@@ -34727,7 +34727,7 @@

svg:v-alphabetic Attribute

RNG Relations - svg:v-alphabetic="<integer>"   + svg:v-alphabetic="#integer"  
@@ -34752,7 +34752,7 @@

svg:v-hanging Attribute

RNG Relations - svg:v-hanging="<integer>"   + svg:v-hanging="#integer"  
@@ -34777,7 +34777,7 @@

svg:v-ideographic Attribute

RNG Relations - svg:v-ideographic="<integer>"   + svg:v-ideographic="#integer"  
@@ -34802,7 +34802,7 @@

svg:v-mathematical Attribute RNG Relations - svg:v-mathematical="<integer>"   + svg:v-mathematical="#integer"  
@@ -34837,7 +34837,7 @@

svg:viewBox Attribute

RNG Relations svg:viewBox=" -START_list<integer><integer><integer><integer> +START_list#integer#integer#integer#integer END_list"   @@ -35036,7 +35036,7 @@

svg:x-height Attribute

RNG Relations - svg:x-height="<integer>"   + svg:x-height="#integer"  
@@ -35387,7 +35387,7 @@

table:add-empty-lines Attribute< RNG Relations - table:add-empty-lines="<boolean>"   + table:add-empty-lines="#boolean"  
@@ -35412,7 +35412,7 @@

table:algorithm Attribute

RNG Relations - table:algorithm="<string>"   + table:algorithm="#string"  
@@ -35438,7 +35438,7 @@

table:allow-empty-cell Attribut RNG Relations - table:allow-empty-cell="<boolean>"   + table:allow-empty-cell="#boolean"  
@@ -35463,7 +35463,7 @@

table:application-data Attribut RNG Relations - table:application-data="<string>"   + table:application-data="#string"  
@@ -35489,7 +35489,7 @@

table:automatic-find-label RNG Relations - table:automatic-find-labels="<boolean>"   + table:automatic-find-labels="#boolean"  
@@ -35543,7 +35543,7 @@

table:bind-styles-to-cont RNG Relations - table:bind-styles-to-content="<boolean>"   + table:bind-styles-to-content="#boolean"  
@@ -35593,7 +35593,7 @@

table:buttons Attribute

RNG Relations - table:buttons="<string>"   + table:buttons="#string"  
@@ -35622,7 +35622,7 @@

table:case-sensitive[1] Attribute RNG Relations - table:case-sensitive="<boolean>"   + table:case-sensitive="#boolean"  
@@ -35648,7 +35648,7 @@

table:case-sensitive[2] Attribute RNG Relations - table:case-sensitive="<string>"   + table:case-sensitive="#string"  
@@ -35757,7 +35757,7 @@

table:column Attribute

RNG Relations - table:column="<integer>"   + table:column="#integer"  
@@ -35782,7 +35782,7 @@

table:comment Attribute

RNG Relations - table:comment="<string>"   + table:comment="#string"  
@@ -35807,7 +35807,7 @@

table:condition Attribute

RNG Relations - table:condition="<string>"   + table:condition="#string"  
@@ -35884,7 +35884,7 @@

table:contains-error Attribute RNG Relations - table:contains-error="<boolean>"   + table:contains-error="#boolean"  
@@ -35910,7 +35910,7 @@

table:contains-header Attribute< RNG Relations - table:contains-header="<boolean>"   + table:contains-header="#boolean"  
@@ -35936,7 +35936,7 @@

table:content-validation RNG Relations - table:content-validation-name="<string>"   + table:content-validation-name="#string"  
@@ -35962,7 +35962,7 @@

table:copy-back Attribute

RNG Relations - table:copy-back="<boolean>"   + table:copy-back="#boolean"  
@@ -35988,7 +35988,7 @@

table:copy-formulas Attribute< RNG Relations - table:copy-formulas="<boolean>"   + table:copy-formulas="#boolean"  
@@ -36014,7 +36014,7 @@

table:copy-styles Attribute

RNG Relations - table:copy-styles="<boolean>"   + table:copy-styles="#boolean"  
@@ -36039,7 +36039,7 @@

table:count Attribute

RNG Relations - table:count="<positiveInteger>"   + table:count="#positiveInteger"  
@@ -36115,7 +36115,7 @@

table:data-field Attribute

RNG Relations - table:data-field="<string>"   + table:data-field="#string"  
@@ -36145,7 +36145,7 @@

table:data-type[1] Attribute

RNG Relations - table:data-type="text | number | automatic | <string>"   + table:data-type="text | number | automatic | #string"  
@@ -36199,7 +36199,7 @@

table:database-name Attribute< RNG Relations - table:database-name="<string>"   + table:database-name="#string"  
@@ -36224,7 +36224,7 @@

table:database-table-name At RNG Relations - table:database-table-name="<string>"   + table:database-table-name="#string"  
@@ -36251,7 +36251,7 @@

table:date-end Attribute

RNG Relations - table:date-end="<date> | <dateTime> | auto"   + table:date-end="#date | #dateTime | auto"  
@@ -36278,7 +36278,7 @@

table:date-start Attribute

RNG Relations - table:date-start="<date> | <dateTime> | auto"   + table:date-start="#date | #dateTime | auto"  
@@ -36303,7 +36303,7 @@

table:date-value-type Attribute< RNG Relations - table:date-value-type="<date>"   + table:date-value-type="#date"  
@@ -36329,7 +36329,7 @@

table:default-cell-style RNG Relations - table:default-cell-style-name="(<NCName>)?"   + table:default-cell-style-name="(#NCName)?"  
@@ -36386,7 +36386,7 @@

table:display Attribute

RNG Relations - table:display="<boolean>"   + table:display="#boolean"  
@@ -36412,7 +36412,7 @@

table:display-border Attribute RNG Relations - table:display-border="<boolean>"   + table:display-border="#boolean"  
@@ -36438,7 +36438,7 @@

table:display-duplicates Attr RNG Relations - table:display-duplicates="<boolean>"   + table:display-duplicates="#boolean"  
@@ -36464,7 +36464,7 @@

table:display-filter-butt RNG Relations - table:display-filter-buttons="<boolean>"   + table:display-filter-buttons="#boolean"  
@@ -36543,7 +36543,7 @@

table:drill-down-on-d RNG Relations - table:drill-down-on-double-click="<boolean>"   + table:drill-down-on-double-click="#boolean"  
@@ -36569,7 +36569,7 @@

table:enabled Attribute

RNG Relations - table:enabled="<boolean>"   + table:enabled="#boolean"  
@@ -36595,7 +36595,7 @@

table:end Attribute

RNG Relations - table:end="<double> | auto"   + table:end="#double | auto"  
@@ -36663,7 +36663,7 @@

table:end-column Attribute

RNG Relations - table:end-column="<integer>"   + table:end-column="#integer"  
@@ -36688,7 +36688,7 @@

table:end-position Attribute RNG Relations - table:end-position="<integer>"   + table:end-position="#integer"  
@@ -36714,7 +36714,7 @@

table:end-row Attribute

RNG Relations - table:end-row="<integer>"   + table:end-row="#integer"  
@@ -36740,7 +36740,7 @@

table:end-table Attribute

RNG Relations - table:end-table="<integer>"   + table:end-table="#integer"  
@@ -36850,7 +36850,7 @@

table:execute Attribute

RNG Relations - table:execute="<boolean>"   + table:execute="#boolean"  
@@ -36875,7 +36875,7 @@

table:expression Attribute

RNG Relations - table:expression="<string>"   + table:expression="#string"  
@@ -36900,7 +36900,7 @@

table:field-name Attribute

RNG Relations - table:field-name="<string>"   + table:field-name="#string"  
@@ -36927,7 +36927,7 @@

table:field-number Attribute RNG Relations - table:field-number="<nonNegativeInteger>"   + table:field-number="#nonNegativeInteger"  
@@ -36953,7 +36953,7 @@

table:filter-name Attribute

RNG Relations - table:filter-name="<string>"   + table:filter-name="#string"  
@@ -36979,7 +36979,7 @@

table:filter-options Attribute RNG Relations - table:filter-options="<string>"   + table:filter-options="#string"  
@@ -37006,7 +37006,7 @@

table:formula Attribute

RNG Relations - table:formula="<string>"   + table:formula="#string"  
@@ -37046,7 +37046,7 @@

table:function Attribute

RNG Relations - table:function="auto | average | count | countnums | max | min | product | stdev | stdevp | sum | var | varp | <string>"   + table:function="auto | average | count | countnums | max | min | product | stdev | stdevp | sum | var | varp | #string"  
@@ -37099,7 +37099,7 @@

table:group-by-field-numbe RNG Relations - table:group-by-field-number="<nonNegativeInteger>"   + table:group-by-field-number="#nonNegativeInteger"  
@@ -37156,7 +37156,7 @@

table:has-persistent-data At RNG Relations - table:has-persistent-data="<boolean>"   + table:has-persistent-data="#boolean"  
@@ -37189,7 +37189,7 @@

table:id Attribute

RNG Relations - table:id="<string>"   + table:id="#string"  
@@ -37215,7 +37215,7 @@

table:identify-categories At RNG Relations - table:identify-categories="<boolean>"   + table:identify-categories="#boolean"  
@@ -37241,7 +37241,7 @@

table:ignore-empty-rows Attrib RNG Relations - table:ignore-empty-rows="<boolean>"   + table:ignore-empty-rows="#boolean"  
@@ -37266,7 +37266,7 @@

table:index Attribute

RNG Relations - table:index="<nonNegativeInteger>"   + table:index="#nonNegativeInteger"  
@@ -37292,7 +37292,7 @@

table:is-active Attribute

RNG Relations - table:is-active="<boolean>"   + table:is-active="#boolean"  
@@ -37317,7 +37317,7 @@

table:is-data-layout-field RNG Relations - table:is-data-layout-field="<string>"   + table:is-data-layout-field="#string"  
@@ -37343,7 +37343,7 @@

table:is-selection Attribute RNG Relations - table:is-selection="<boolean>"   + table:is-selection="#boolean"  
@@ -37369,7 +37369,7 @@

table:is-sub-table Attribute RNG Relations - table:is-sub-table="<boolean>"   + table:is-sub-table="#boolean"  
@@ -37444,7 +37444,7 @@

table:last-column-spanned At RNG Relations - table:last-column-spanned="<positiveInteger>"   + table:last-column-spanned="#positiveInteger"  
@@ -37469,7 +37469,7 @@

table:last-row-spanned Attribut RNG Relations - table:last-row-spanned="<positiveInteger>"   + table:last-row-spanned="#positiveInteger"  
@@ -37522,7 +37522,7 @@

table:link-to-source-data At RNG Relations - table:link-to-source-data="<boolean>"   + table:link-to-source-data="#boolean"  
@@ -37548,7 +37548,7 @@

table:marked-invalid Attribute RNG Relations - table:marked-invalid="<boolean>"   + table:marked-invalid="#boolean"  
@@ -37574,7 +37574,7 @@

table:matrix-covered Attribute RNG Relations - table:matrix-covered="<boolean>"   + table:matrix-covered="#boolean"  
@@ -37599,7 +37599,7 @@

table:maximum-difference Attr RNG Relations - table:maximum-difference="<double>"   + table:maximum-difference="#double"  
@@ -37624,7 +37624,7 @@

table:member-count Attribute RNG Relations - table:member-count="<nonNegativeInteger>"   + table:member-count="#nonNegativeInteger"  
@@ -37649,7 +37649,7 @@

table:member-name Attribute

RNG Relations - table:member-name="<string>"   + table:member-name="#string"  
@@ -37780,7 +37780,7 @@

table:multi-deletion-span RNG Relations - table:multi-deletion-spanned="<integer>"   + table:multi-deletion-spanned="#integer"  
@@ -37816,7 +37816,7 @@

table:name[1] Attribute

RNG Relations - table:name="<string>"   + table:name="#string"  
@@ -37871,7 +37871,7 @@

table:null-year Attribute

RNG Relations - table:null-year="<positiveInteger>"   + table:null-year="#positiveInteger"  
@@ -37898,7 +37898,7 @@

table:number-columns-rep RNG Relations - table:number-columns-repeated="<positiveInteger>"   + table:number-columns-repeated="#positiveInteger"  
@@ -37923,7 +37923,7 @@

table:number-columns-span RNG Relations - table:number-columns-spanned="<positiveInteger>"   + table:number-columns-spanned="#positiveInteger"  
@@ -37949,7 +37949,7 @@

table:number-matri RNG Relations - table:number-matrix-columns-spanned="<positiveInteger>"   + table:number-matrix-columns-spanned="#positiveInteger"  
@@ -37975,7 +37975,7 @@

table:number-matrix-r RNG Relations - table:number-matrix-rows-spanned="<positiveInteger>"   + table:number-matrix-rows-spanned="#positiveInteger"  
@@ -38000,7 +38000,7 @@

table:number-rows-repeated RNG Relations - table:number-rows-repeated="<positiveInteger>"   + table:number-rows-repeated="#positiveInteger"  
@@ -38025,7 +38025,7 @@

table:number-rows-spanned At RNG Relations - table:number-rows-spanned="<positiveInteger>"   + table:number-rows-spanned="#positiveInteger"  
@@ -38050,7 +38050,7 @@

table:object-name Attribute

RNG Relations - table:object-name="<string>"   + table:object-name="#string"  
@@ -38076,7 +38076,7 @@

table:on-update-keep-size At RNG Relations - table:on-update-keep-size="<boolean>"   + table:on-update-keep-size="#boolean"  
@@ -38102,7 +38102,7 @@

table:on-update-keep-style RNG Relations - table:on-update-keep-styles="<boolean>"   + table:on-update-keep-styles="#boolean"  
@@ -38127,7 +38127,7 @@

table:operator Attribute

RNG Relations - table:operator="<string>"   + table:operator="#string"  
@@ -38264,7 +38264,7 @@

table:page-breaks-on RNG Relations - table:page-breaks-on-group-change="<boolean>"   + table:page-breaks-on-group-change="#boolean"  
@@ -38290,7 +38290,7 @@

table:parse-sql-statement At RNG Relations - table:parse-sql-statement="<boolean>"   + table:parse-sql-statement="#boolean"  
@@ -38315,7 +38315,7 @@

table:password Attribute

RNG Relations - table:password="<string>"   + table:password="#string"  
@@ -38343,7 +38343,7 @@

table:position Attribute

RNG Relations - table:position="<integer>"   + table:position="#integer"  
@@ -38369,7 +38369,7 @@

table:precision-as-shown Attr RNG Relations - table:precision-as-shown="<boolean>"   + table:precision-as-shown="#boolean"  
@@ -38395,7 +38395,7 @@

table:print Attribute

RNG Relations - table:print="<boolean>"   + table:print="#boolean"  
@@ -38420,7 +38420,7 @@

table:print-ranges Attribute RNG Relations - table:print-ranges="<string>"   + table:print-ranges="#string"  
@@ -38447,7 +38447,7 @@

table:protect Attribute

RNG Relations - table:protect="<boolean>"   + table:protect="#boolean"  
@@ -38474,7 +38474,7 @@

table:protected Attribute

RNG Relations - table:protected="<boolean>"   + table:protected="#boolean"  
@@ -38500,7 +38500,7 @@

table:protection-key[1] Attribute RNG Relations - table:protection-key="<string>"   + table:protection-key="#string"  
@@ -38550,7 +38550,7 @@

table:query-name Attribute

RNG Relations - table:query-name="<string>"   + table:query-name="#string"  
@@ -38608,7 +38608,7 @@

table:refresh-delay[1] Attribute RNG Relations - table:refresh-delay="<duration>"   + table:refresh-delay="#duration"  
@@ -38635,7 +38635,7 @@

table:refresh-delay[2] Attribute RNG Relations - table:refresh-delay="<boolean>"   + table:refresh-delay="#boolean"  
@@ -38663,7 +38663,7 @@

table:rejecting-change-id At RNG Relations - table:rejecting-change-id="<string>"   + table:rejecting-change-id="#string"  
@@ -38690,7 +38690,7 @@

table:row Attribute

RNG Relations - table:row="<integer>"   + table:row="#integer"  
@@ -38715,7 +38715,7 @@

table:scenario-ranges Attribute< RNG Relations - table:scenario-ranges="<string>"   + table:scenario-ranges="#string"  
@@ -38741,7 +38741,7 @@

table:s RNG Relations - table:search-criteria-must-apply-to-whole-cell="<boolean>"   + table:search-criteria-must-apply-to-whole-cell="#boolean"  
@@ -38766,7 +38766,7 @@

table:selected-page Attribute< RNG Relations - table:selected-page="<string>"   + table:selected-page="#string"  
@@ -38792,7 +38792,7 @@

table:show-details Attribute RNG Relations - table:show-details="<boolean>"   + table:show-details="#boolean"  
@@ -38818,7 +38818,7 @@

table:show-empty Attribute

RNG Relations - table:show-empty="<boolean>"   + table:show-empty="#boolean"  
@@ -38844,7 +38844,7 @@

table:show-filter-button Attr RNG Relations - table:show-filter-button="<boolean>"   + table:show-filter-button="#boolean"  
@@ -38923,7 +38923,7 @@

table:source-cell-ra RNG Relations - table:source-cell-range-addresses="<string>"   + table:source-cell-range-addresses="#string"  
@@ -38949,7 +38949,7 @@

table:source-field-name Attrib RNG Relations - table:source-field-name="<string>"   + table:source-field-name="#string"  
@@ -38974,7 +38974,7 @@

table:source-name Attribute

RNG Relations - table:source-name="<string>"   + table:source-name="#string"  
@@ -38999,7 +38999,7 @@

table:sql-statement Attribute< RNG Relations - table:sql-statement="<string>"   + table:sql-statement="#string"  
@@ -39025,7 +39025,7 @@

table:start Attribute

RNG Relations - table:start="<double> | auto"   + table:start="#double | auto"  
@@ -39051,7 +39051,7 @@

table:start-column Attribute RNG Relations - table:start-column="<integer>"   + table:start-column="#integer"  
@@ -39076,7 +39076,7 @@

table:start-position Attribute RNG Relations - table:start-position="<integer>"   + table:start-position="#integer"  
@@ -39102,7 +39102,7 @@

table:start-row Attribute

RNG Relations - table:start-row="<integer>"   + table:start-row="#integer"  
@@ -39128,7 +39128,7 @@

table:start-table Attribute

RNG Relations - table:start-table="<integer>"   + table:start-table="#integer"  
@@ -39179,7 +39179,7 @@

table:step Attribute

RNG Relations - table:step="<double>"   + table:step="#double"  
@@ -39204,7 +39204,7 @@

table:steps Attribute

RNG Relations - table:steps="<positiveInteger>"   + table:steps="#positiveInteger"  
@@ -39230,7 +39230,7 @@

table:structure-protected At RNG Relations - table:structure-protected="<boolean>"   + table:structure-protected="#boolean"  
@@ -39259,7 +39259,7 @@

table:style-name Attribute

RNG Relations - table:style-name="(<NCName>)?"   + table:style-name="(#NCName)?"  
@@ -39288,7 +39288,7 @@

table:table Attribute

RNG Relations - table:table="<integer>"   + table:table="#integer"  
@@ -39331,7 +39331,7 @@

table:table-background Attribut RNG Relations - table:table-background="<boolean>"   + table:table-background="#boolean"  
@@ -39356,7 +39356,7 @@

table:table-name Attribute

RNG Relations - table:table-name="<string>"   + table:table-name="#string"  
@@ -39435,7 +39435,7 @@

table:title Attribute

RNG Relations - table:title="<string>"   + table:title="#string"  
@@ -39461,7 +39461,7 @@

table:track-changes Attribute< RNG Relations - table:track-changes="<boolean>"   + table:track-changes="#boolean"  
@@ -39578,7 +39578,7 @@

table:use-regular-expres RNG Relations - table:use-regular-expressions="<boolean>"   + table:use-regular-expressions="#boolean"  
@@ -39603,7 +39603,7 @@

table:used-hierarchy Attribute RNG Relations - table:used-hierarchy="<integer>"   + table:used-hierarchy="#integer"  
@@ -39628,7 +39628,7 @@

table:user-name Attribute

RNG Relations - table:user-name="<string>"   + table:user-name="#string"  
@@ -39653,7 +39653,7 @@

table:value Attribute

RNG Relations - table:value="<string>"   + table:value="#string"  
@@ -39738,7 +39738,7 @@

text:active Attribute

RNG Relations - text:active="<boolean>"   + text:active="#boolean"  
@@ -39763,7 +39763,7 @@

text:address Attribute

RNG Relations - CHOICE_NAME_CLASS="<string>"   + CHOICE_NAME_CLASS="#string"  
@@ -39789,7 +39789,7 @@

text:alphabetical-separat RNG Relations - text:alphabetical-separators="<boolean>"   + text:alphabetical-separators="#boolean"  
@@ -39831,7 +39831,7 @@

text:anchor-page-number Attrib RNG Relations - text:anchor-page-number="<positiveInteger>"   + text:anchor-page-number="#positiveInteger"  
@@ -39902,7 +39902,7 @@

text:annote Attribute

RNG Relations - CHOICE_NAME_CLASS="<string>"   + CHOICE_NAME_CLASS="#string"  
@@ -39927,7 +39927,7 @@

text:author Attribute

RNG Relations - CHOICE_NAME_CLASS="<string>"   + CHOICE_NAME_CLASS="#string"  
@@ -40055,7 +40055,7 @@

text:booktitle Attribute

RNG Relations - CHOICE_NAME_CLASS="<string>"   + CHOICE_NAME_CLASS="#string"  
@@ -40130,7 +40130,7 @@

text:c Attribute

RNG Relations - text:c="<nonNegativeInteger>"   + text:c="#nonNegativeInteger"  
@@ -40156,7 +40156,7 @@

text:capitalize-entries Attrib RNG Relations - text:capitalize-entries="<boolean>"   + text:capitalize-entries="#boolean"  
@@ -40210,7 +40210,7 @@

text:caption-sequence-name RNG Relations - text:caption-sequence-name="<string>"   + text:caption-sequence-name="#string"  
@@ -40237,7 +40237,7 @@

text:change-id Attribute

RNG Relations - text:change-id="<IDREF>"   + text:change-id="#IDREF"  
@@ -40262,7 +40262,7 @@

text:chapter Attribute

RNG Relations - CHOICE_NAME_CLASS="<string>"   + CHOICE_NAME_CLASS="#string"  
@@ -40287,7 +40287,7 @@

text:citation-body-style RNG Relations - text:citation-body-style-name="(<NCName>)?"   + text:citation-body-style-name="(#NCName)?"  
@@ -40312,7 +40312,7 @@

text:citation-style-name Attr RNG Relations - text:citation-style-name="(<NCName>)?"   + text:citation-style-name="(#NCName)?"  
@@ -40340,7 +40340,7 @@

text:class-names Attribute

RNG Relations text:class-names=" -START_list(<NCName>)* +START_list(#NCName)* END_list"   @@ -40366,7 +40366,7 @@

text:column-name Attribute

RNG Relations - text:column-name="<string>"   + text:column-name="#string"  
@@ -40392,7 +40392,7 @@

text:combine-entries Attribute RNG Relations - text:combine-entries="<boolean>"   + text:combine-entries="#boolean"  
@@ -40418,7 +40418,7 @@

text:combine-entries-wi RNG Relations - text:combine-entries-with-dash="<boolean>"   + text:combine-entries-with-dash="#boolean"  
@@ -40444,7 +40444,7 @@

text:combine-entries-with RNG Relations - text:combine-entries-with-pp="<boolean>"   + text:combine-entries-with-pp="#boolean"  
@@ -40470,7 +40470,7 @@

text:comma-separated Attribute RNG Relations - text:comma-separated="<boolean>"   + text:comma-separated="#boolean"  
@@ -40496,7 +40496,7 @@

text:cond-style-name Attribute RNG Relations - text:cond-style-name="(<NCName>)?"   + text:cond-style-name="(#NCName)?"  
@@ -40526,7 +40526,7 @@

text:condition Attribute

RNG Relations - text:condition="<string>"   + text:condition="#string"  
@@ -40551,7 +40551,7 @@

text:connection-name Attribute RNG Relations - text:connection-name="<string>"   + text:connection-name="#string"  
@@ -40577,7 +40577,7 @@

text:consecutive-numbering RNG Relations - text:consecutive-numbering="<boolean>"   + text:consecutive-numbering="#boolean"  
@@ -40604,7 +40604,7 @@

text:continue-numbering Attrib RNG Relations - text:continue-numbering="<boolean>"   + text:continue-numbering="#boolean"  
@@ -40630,7 +40630,7 @@

text:copy-outline-levels Attr RNG Relations - text:copy-outline-levels="<boolean>"   + text:copy-outline-levels="#boolean"  
@@ -40656,7 +40656,7 @@

text:count-empty-lines Attribut RNG Relations - text:count-empty-lines="<boolean>"   + text:count-empty-lines="#boolean"  
@@ -40682,7 +40682,7 @@

text:count-in-text-boxes Attr RNG Relations - text:count-in-text-boxes="<boolean>"   + text:count-in-text-boxes="#boolean"  
@@ -40708,7 +40708,7 @@

text:current-value Attribute RNG Relations - text:current-value="<boolean>"   + text:current-value="#boolean"  
@@ -40733,7 +40733,7 @@

text:custom1 Attribute

RNG Relations - CHOICE_NAME_CLASS="<string>"   + CHOICE_NAME_CLASS="#string"  
@@ -40758,7 +40758,7 @@

text:custom2 Attribute

RNG Relations - CHOICE_NAME_CLASS="<string>"   + CHOICE_NAME_CLASS="#string"  
@@ -40783,7 +40783,7 @@

text:custom3 Attribute

RNG Relations - CHOICE_NAME_CLASS="<string>"   + CHOICE_NAME_CLASS="#string"  
@@ -40808,7 +40808,7 @@

text:custom4 Attribute

RNG Relations - CHOICE_NAME_CLASS="<string>"   + CHOICE_NAME_CLASS="#string"  
@@ -40833,7 +40833,7 @@

text:custom5 Attribute

RNG Relations - CHOICE_NAME_CLASS="<string>"   + CHOICE_NAME_CLASS="#string"  
@@ -40862,7 +40862,7 @@

text:database-name Attribute RNG Relations - text:database-name="<string>"   + text:database-name="#string"  
@@ -40887,7 +40887,7 @@

text:date-adjust Attribute

RNG Relations - text:date-adjust="<duration>"   + text:date-adjust="#duration"  
@@ -40915,7 +40915,7 @@

text:date-value[1] Attribute

RNG Relations - text:date-value="<date> | <dateTime>"   + text:date-value="#date | #dateTime"  
@@ -40942,7 +40942,7 @@

text:date-value[2] Attribute

RNG Relations - text:date-value="<date>"   + text:date-value="#date"  
@@ -40967,7 +40967,7 @@

text:default-style-name Attrib RNG Relations - text:default-style-name="(<NCName>)?"   + text:default-style-name="(#NCName)?"  
@@ -41276,7 +41276,7 @@

text:display-levels Attribute< RNG Relations - text:display-levels="<positiveInteger>"   + text:display-levels="#positiveInteger"  
@@ -41301,7 +41301,7 @@

text:display-outline-level RNG Relations - text:display-outline-level="<nonNegativeInteger>"   + text:display-outline-level="#nonNegativeInteger"  
@@ -41326,7 +41326,7 @@

text:duration Attribute

RNG Relations - text:duration="<duration>"   + text:duration="#duration"  
@@ -41351,7 +41351,7 @@

text:edition Attribute

RNG Relations - CHOICE_NAME_CLASS="<string>"   + CHOICE_NAME_CLASS="#string"  
@@ -41376,7 +41376,7 @@

text:editor Attribute

RNG Relations - CHOICE_NAME_CLASS="<string>"   + CHOICE_NAME_CLASS="#string"  
@@ -41401,7 +41401,7 @@

text:filter-name Attribute

RNG Relations - text:filter-name="<string>"   + text:filter-name="#string"  
@@ -41463,7 +41463,7 @@

text:fixed Attribute

RNG Relations - text:fixed="<boolean>"   + text:fixed="#boolean"  
@@ -41520,7 +41520,7 @@

text:formula Attribute

RNG Relations - text:formula="<string>"   + text:formula="#string"  
@@ -41546,7 +41546,7 @@

text:global Attribute

RNG Relations - text:global="<boolean>"   + text:global="#boolean"  
@@ -41571,7 +41571,7 @@

text:howpublished Attribute

RNG Relations - CHOICE_NAME_CLASS="<string>"   + CHOICE_NAME_CLASS="#string"  
@@ -41605,7 +41605,7 @@

text:id[1] Attribute

RNG Relations - text:id="<string>"   + text:id="#string"  
@@ -41631,7 +41631,7 @@

text:id[2] Attribute

RNG Relations - text:id="<ID>"   + text:id="#ID"  
@@ -41656,7 +41656,7 @@

text:identifier Attribute

RNG Relations - CHOICE_NAME_CLASS="<string>"   + CHOICE_NAME_CLASS="#string"  
@@ -41682,7 +41682,7 @@

text:ignore-case Attribute

RNG Relations - text:ignore-case="<boolean>"   + text:ignore-case="#boolean"  
@@ -41708,7 +41708,7 @@

text:increment Attribute

RNG Relations - text:increment="<nonNegativeInteger>"   + text:increment="#nonNegativeInteger"  
@@ -41735,7 +41735,7 @@

text:index-name Attribute

RNG Relations - text:index-name="<string>"   + text:index-name="#string"  
@@ -41791,7 +41791,7 @@

text:institution Attribute

RNG Relations - CHOICE_NAME_CLASS="<string>"   + CHOICE_NAME_CLASS="#string"  
@@ -41818,7 +41818,7 @@

text:is-hidden Attribute

RNG Relations - text:is-hidden="<boolean>"   + text:is-hidden="#boolean"  
@@ -41844,7 +41844,7 @@

text:is-list-header Attribute< RNG Relations - text:is-list-header="<boolean>"   + text:is-list-header="#boolean"  
@@ -41869,7 +41869,7 @@

text:isbn Attribute

RNG Relations - CHOICE_NAME_CLASS="<string>"   + CHOICE_NAME_CLASS="#string"  
@@ -41894,7 +41894,7 @@

text:issn Attribute

RNG Relations - CHOICE_NAME_CLASS="<string>"   + CHOICE_NAME_CLASS="#string"  
@@ -41919,7 +41919,7 @@

text:journal Attribute

RNG Relations - CHOICE_NAME_CLASS="<string>"   + CHOICE_NAME_CLASS="#string"  
@@ -42001,7 +42001,7 @@

text:key1 Attribute

RNG Relations - text:key1="<string>"   + text:key1="#string"  
@@ -42027,7 +42027,7 @@

text:key1-phonetic Attribute RNG Relations - text:key1-phonetic="<string>"   + text:key1-phonetic="#string"  
@@ -42053,7 +42053,7 @@

text:key2 Attribute

RNG Relations - text:key2="<string>"   + text:key2="#string"  
@@ -42079,7 +42079,7 @@

text:key2-phonetic Attribute RNG Relations - text:key2-phonetic="<string>"   + text:key2-phonetic="#string"  
@@ -42131,7 +42131,7 @@

text:label Attribute

RNG Relations - text:label="<string>"   + text:label="#string"  
@@ -42160,7 +42160,7 @@

text:level Attribute

RNG Relations - text:level="<positiveInteger>"   + text:level="#positiveInteger"  
@@ -42187,7 +42187,7 @@

text:main-entry Attribute

RNG Relations - text:main-entry="<boolean>"   + text:main-entry="#boolean"  
@@ -42212,7 +42212,7 @@

text:main-entry-style-name RNG Relations - text:main-entry-style-name="(<NCName>)?"   + text:main-entry-style-name="(#NCName)?"  
@@ -42238,7 +42238,7 @@

text:master-page-name Attribute< RNG Relations - text:master-page-name="(<NCName>)?"   + text:master-page-name="(#NCName)?"  
@@ -42263,7 +42263,7 @@

text:month Attribute

RNG Relations - CHOICE_NAME_CLASS="<string>"   + CHOICE_NAME_CLASS="#string"  
@@ -42313,7 +42313,7 @@

text:name Attribute

RNG Relations - text:name="<string>"   + text:name="#string"  
@@ -42338,7 +42338,7 @@

text:note Attribute

RNG Relations - CHOICE_NAME_CLASS="<string>"   + CHOICE_NAME_CLASS="#string"  
@@ -42391,7 +42391,7 @@

text:number Attribute

RNG Relations - CHOICE_NAME_CLASS="<string>"   + CHOICE_NAME_CLASS="#string"  
@@ -42417,7 +42417,7 @@

text:number-lines Attribute

RNG Relations - text:number-lines="<boolean>"   + text:number-lines="#boolean"  
@@ -42471,7 +42471,7 @@

text:numbered-entries Attribute< RNG Relations - text:numbered-entries="<boolean>"   + text:numbered-entries="#boolean"  
@@ -42521,7 +42521,7 @@

text:organizations Attribute RNG Relations - CHOICE_NAME_CLASS="<string>"   + CHOICE_NAME_CLASS="#string"  
@@ -42547,7 +42547,7 @@

text:outline-level[1] Attribute RNG Relations - text:outline-level="<nonNegativeInteger>"   + text:outline-level="#nonNegativeInteger"  
@@ -42611,7 +42611,7 @@

text:outline-level[3] Attribute RNG Relations - text:outline-level="<positiveInteger>"   + text:outline-level="#positiveInteger"  
@@ -42637,7 +42637,7 @@

text:page-adjust Attribute

RNG Relations - text:page-adjust="<integer>"   + text:page-adjust="#integer"  
@@ -42662,7 +42662,7 @@

text:pages Attribute

RNG Relations - CHOICE_NAME_CLASS="<string>"   + CHOICE_NAME_CLASS="#string"  
@@ -42716,7 +42716,7 @@

text:prefix Attribute

RNG Relations - text:prefix="<string>"   + text:prefix="#string"  
@@ -42750,7 +42750,7 @@

text:protected Attribute

RNG Relations - text:protected="<boolean>"   + text:protected="#boolean"  
@@ -42783,7 +42783,7 @@

text:protection-key Attribute< RNG Relations - text:protection-key="<string>"   + text:protection-key="#string"  
@@ -42808,7 +42808,7 @@

text:publisher Attribute

RNG Relations - CHOICE_NAME_CLASS="<string>"   + CHOICE_NAME_CLASS="#string"  
@@ -42837,7 +42837,7 @@

text:ref-name Attribute

RNG Relations - text:ref-name="<string>"   + text:ref-name="#string"  
@@ -42931,7 +42931,7 @@

text:relative-tab-stop RNG Relations - text:relative-tab-stop-position="<boolean>"   + text:relative-tab-stop-position="#boolean"  
@@ -42956,7 +42956,7 @@

text:report-type Attribute

RNG Relations - CHOICE_NAME_CLASS="<string>"   + CHOICE_NAME_CLASS="#string"  
@@ -42982,7 +42982,7 @@

text:restart-numbering Attribut RNG Relations - text:restart-numbering="<boolean>"   + text:restart-numbering="#boolean"  
@@ -43008,7 +43008,7 @@

text:restart-on-page Attribute RNG Relations - text:restart-on-page="<boolean>"   + text:restart-on-page="#boolean"  
@@ -43033,7 +43033,7 @@

text:row-number Attribute

RNG Relations - text:row-number="<nonNegativeInteger>"   + text:row-number="#nonNegativeInteger"  
@@ -43058,7 +43058,7 @@

text:school Attribute

RNG Relations - CHOICE_NAME_CLASS="<string>"   + CHOICE_NAME_CLASS="#string"  
@@ -43083,7 +43083,7 @@

text:section-name Attribute

RNG Relations - text:section-name="<string>"   + text:section-name="#string"  
@@ -43188,7 +43188,7 @@

text:series Attribute

RNG Relations - CHOICE_NAME_CLASS="<string>"   + CHOICE_NAME_CLASS="#string"  
@@ -43214,7 +43214,7 @@

text:sort-algorithm Attribute< RNG Relations - text:sort-algorithm="<string>"   + text:sort-algorithm="#string"  
@@ -43240,7 +43240,7 @@

text:sort-ascending Attribute< RNG Relations - text:sort-ascending="<boolean>"   + text:sort-ascending="#boolean"  
@@ -43266,7 +43266,7 @@

text:sort-by-position Attribute< RNG Relations - text:sort-by-position="<boolean>"   + text:sort-by-position="#boolean"  
@@ -43322,7 +43322,7 @@

text:start-value[1] Attribute

RNG Relations - text:start-value="<nonNegativeInteger>"   + text:start-value="#nonNegativeInteger"  
@@ -43349,7 +43349,7 @@

text:start-value[2] Attribute

RNG Relations - text:start-value="<positiveInteger>"   + text:start-value="#positiveInteger"  
@@ -43378,7 +43378,7 @@

text:string-value Attribute

RNG Relations - text:string-value="<string>"   + text:string-value="#string"  
@@ -43403,7 +43403,7 @@

text:string-value-if-false RNG Relations - text:string-value-if-false="<string>"   + text:string-value-if-false="#string"  
@@ -43428,7 +43428,7 @@

text:string-value-if-true At RNG Relations - text:string-value-if-true="<string>"   + text:string-value-if-true="#string"  
@@ -43454,7 +43454,7 @@

text:string-value-phonetic RNG Relations - text:string-value-phonetic="<string>"   + text:string-value-phonetic="#string"  
@@ -43516,7 +43516,7 @@

text:style-name Attribute

RNG Relations - text:style-name="(<NCName>)?"   + text:style-name="(#NCName)?"  
@@ -43541,7 +43541,7 @@

text:suffix Attribute

RNG Relations - text:suffix="<string>"   + text:suffix="#string"  
@@ -43566,7 +43566,7 @@

text:tab-ref Attribute

RNG Relations - text:tab-ref="<nonNegativeInteger>"   + text:tab-ref="#nonNegativeInteger"  
@@ -43595,7 +43595,7 @@

text:table-name Attribute

RNG Relations - text:table-name="<string>"   + text:table-name="#string"  
@@ -43651,7 +43651,7 @@

text:time-adjust Attribute

RNG Relations - text:time-adjust="<duration>"   + text:time-adjust="#duration"  
@@ -43679,7 +43679,7 @@

text:time-value[1] Attribute

RNG Relations - text:time-value="<time> | <dateTime>"   + text:time-value="#time | #dateTime"  
@@ -43706,7 +43706,7 @@

text:time-value[2] Attribute

RNG Relations - text:time-value="<time>"   + text:time-value="#time"  
@@ -43731,7 +43731,7 @@

text:title Attribute

RNG Relations - CHOICE_NAME_CLASS="<string>"   + CHOICE_NAME_CLASS="#string"  
@@ -43757,7 +43757,7 @@

text:track-changes Attribute RNG Relations - text:track-changes="<boolean>"   + text:track-changes="#boolean"  
@@ -43782,7 +43782,7 @@

text:url Attribute

RNG Relations - CHOICE_NAME_CLASS="<string>"   + CHOICE_NAME_CLASS="#string"  
@@ -43809,7 +43809,7 @@

text:use-caption Attribute

RNG Relations - text:use-caption="<boolean>"   + text:use-caption="#boolean"  
@@ -43835,7 +43835,7 @@

text:use-chart-objects Attribut RNG Relations - text:use-chart-objects="<boolean>"   + text:use-chart-objects="#boolean"  
@@ -43861,7 +43861,7 @@

text:use-draw-objects Attribute< RNG Relations - text:use-draw-objects="<boolean>"   + text:use-draw-objects="#boolean"  
@@ -43887,7 +43887,7 @@

text:use-floating-frames Attr RNG Relations - text:use-floating-frames="<boolean>"   + text:use-floating-frames="#boolean"  
@@ -43913,7 +43913,7 @@

text:use-graphics Attribute

RNG Relations - text:use-graphics="<boolean>"   + text:use-graphics="#boolean"  
@@ -43940,7 +43940,7 @@

text:use-index-marks Attribute RNG Relations - text:use-index-marks="<boolean>"   + text:use-index-marks="#boolean"  
@@ -43966,7 +43966,7 @@

text:use-index-source-sty RNG Relations - text:use-index-source-styles="<boolean>"   + text:use-index-source-styles="#boolean"  
@@ -43992,7 +43992,7 @@

text:use-keys-as-entries Attr RNG Relations - text:use-keys-as-entries="<boolean>"   + text:use-keys-as-entries="#boolean"  
@@ -44018,7 +44018,7 @@

text:use-math-objects Attribute< RNG Relations - text:use-math-objects="<boolean>"   + text:use-math-objects="#boolean"  
@@ -44044,7 +44044,7 @@

text:use-objects Attribute

RNG Relations - text:use-objects="<boolean>"   + text:use-objects="#boolean"  
@@ -44070,7 +44070,7 @@

text:use-other-objects Attribut RNG Relations - text:use-other-objects="<boolean>"   + text:use-other-objects="#boolean"  
@@ -44096,7 +44096,7 @@

text:use-outline-level Attribut RNG Relations - text:use-outline-level="<boolean>"   + text:use-outline-level="#boolean"  
@@ -44122,7 +44122,7 @@

text:use-spreadsheet-obje RNG Relations - text:use-spreadsheet-objects="<boolean>"   + text:use-spreadsheet-objects="#boolean"  
@@ -44148,7 +44148,7 @@

text:use-tables Attribute

RNG Relations - text:use-tables="<boolean>"   + text:use-tables="#boolean"  
@@ -44173,7 +44173,7 @@

text:value Attribute

RNG Relations - text:value="<nonNegativeInteger>"   + text:value="#nonNegativeInteger"  
@@ -44198,7 +44198,7 @@

text:visited-style-name Attrib RNG Relations - text:visited-style-name="(<NCName>)?"   + text:visited-style-name="(#NCName)?"  
@@ -44223,7 +44223,7 @@

text:volume Attribute

RNG Relations - CHOICE_NAME_CLASS="<string>"   + CHOICE_NAME_CLASS="#string"  
@@ -44248,7 +44248,7 @@

text:year Attribute

RNG Relations - CHOICE_NAME_CLASS="<string>"   + CHOICE_NAME_CLASS="#string"  
@@ -44293,7 +44293,7 @@

xforms:bind Attribute

RNG Relations - xforms:bind="<string>"   + xforms:bind="#string"  
@@ -44413,7 +44413,7 @@

xlink:href Attribute

RNG Relations - xlink:href="<anyURI>"   + xlink:href="#anyURI"  
diff --git a/generator/schema2template/src/test/resources/test-reference/odf/generation/odf-reference/odf-schema-1.1/OdfReference.html b/generator/schema2template/src/test/resources/test-reference/odf/generation/odf-reference/odf-schema-1.1/OdfReference.html index 3420b79b69..a9b2000136 100644 --- a/generator/schema2template/src/test/resources/test-reference/odf/generation/odf-reference/odf-schema-1.1/OdfReference.html +++ b/generator/schema2template/src/test/resources/test-reference/odf/generation/odf-reference/odf-schema-1.1/OdfReference.html @@ -80,32 +80,32 @@

anim:animate Element

Child Relations - <anim:animate (smil:targetElement="<IDREF>" )? - (anim:sub-item="<string>" )? - smil:attributeName="<string>" (smil:values="<string>" )? - (anim:formula="<string>" )? + <anim:animate (smil:targetElement="#IDREF" )? + (anim:sub-item="#string" )? + smil:attributeName="#string" (smil:values="#string" )? + (anim:formula="#string" )? - ( (smil:to="<string>" )? - (smil:from="<string>" )? - (smil:by="<string>" )? + ( (smil:to="#string" )? + (smil:from="#string" )? + (smil:by="#string" )? ) (smil:calcMode="discrete | linear | paced | spline" )? - (smil:keyTimes="<string>" )? - (smil:keySplines="<string>" )? + (smil:keyTimes="#string" )? + (smil:keySplines="#string" )? ( - ( (smil:begin="<string>" )? - (smil:end="<string>" )? - (smil:dur="<string>" )? + ( (smil:begin="#string" )? + (smil:end="#string" )? + (smil:dur="#string" )? - ( (smil:repeatDur="<string>" )? - (smil:repeatCount="<nonNegativeInteger> | indefinite" )? + ( (smil:repeatDur="#string" )? + (smil:repeatCount="#nonNegativeInteger | indefinite" )? )) (smil:restart="never | always | whenNotActive | default" )? (smil:restartDefault="never | always | whenNotActive | inherit" )? (smil:fill="remove | freeze | hold | auto | default | transition" )? (smil:fillDefault="remove | freeze | hold | transition | auto | inherit" )? - (smil:accelerate="<double>" )? - (smil:decelerate="<double>" )? - (smil:autoReverse="<boolean>" )? + (smil:accelerate="#double" )? + (smil:decelerate="#double" )? + (smil:autoReverse="#boolean" )? ) (smil:accumulate="none | sum" )? (smil:additive="replace | sum" )? >  @@ -163,36 +163,36 @@

anim:animateColor Element

Child Relations - <anim:animateColor (smil:targetElement="<IDREF>" )? - (anim:sub-item="<string>" )? - smil:attributeName="<string>" (smil:accumulate="none | sum" )? + <anim:animateColor (smil:targetElement="#IDREF" )? + (anim:sub-item="#string" )? + smil:attributeName="#string" (smil:accumulate="none | sum" )? (smil:additive="replace | sum" )? - (smil:values="<string>" )? - (anim:formula="<string>" )? + (smil:values="#string" )? + (anim:formula="#string" )? - ( (smil:to="<string>" )? - (smil:from="<string>" )? - (smil:by="<string>" )? + ( (smil:to="#string" )? + (smil:from="#string" )? + (smil:by="#string" )? ) (smil:calcMode="discrete | linear | paced | spline" )? - (smil:keyTimes="<string>" )? - (smil:keySplines="<string>" )? + (smil:keyTimes="#string" )? + (smil:keySplines="#string" )? (anim:color-interpolation="rgb | hsl" )? (anim:color-interpolation-direction="clockwise | counter-clockwise" )? ( - ( (smil:begin="<string>" )? - (smil:end="<string>" )? - (smil:dur="<string>" )? + ( (smil:begin="#string" )? + (smil:end="#string" )? + (smil:dur="#string" )? - ( (smil:repeatDur="<string>" )? - (smil:repeatCount="<nonNegativeInteger> | indefinite" )? + ( (smil:repeatDur="#string" )? + (smil:repeatCount="#nonNegativeInteger | indefinite" )? )) (smil:restart="never | always | whenNotActive | default" )? (smil:restartDefault="never | always | whenNotActive | inherit" )? (smil:fill="remove | freeze | hold | auto | default | transition" )? (smil:fillDefault="remove | freeze | hold | transition | auto | inherit" )? - (smil:accelerate="<double>" )? - (smil:decelerate="<double>" )? - (smil:autoReverse="<boolean>" )? + (smil:accelerate="#double" )? + (smil:decelerate="#double" )? + (smil:autoReverse="#boolean" )? )>  @@ -248,36 +248,36 @@

anim:animateMotion Element

Child Relations - <anim:animateMotion (svg:path="<string>" )? - (svg:origin="<string>" )? + <anim:animateMotion (svg:path="#string" )? + (svg:origin="#string" )? (smil:calcMode="discrete | linear | paced | spline" )? - (smil:targetElement="<IDREF>" )? - (anim:sub-item="<string>" )? - smil:attributeName="<string>" (smil:accumulate="none | sum" )? + (smil:targetElement="#IDREF" )? + (anim:sub-item="#string" )? + smil:attributeName="#string" (smil:accumulate="none | sum" )? (smil:additive="replace | sum" )? - (smil:values="<string>" )? - (anim:formula="<string>" )? + (smil:values="#string" )? + (anim:formula="#string" )? - ( (smil:to="<string>" )? - (smil:from="<string>" )? - (smil:by="<string>" )? + ( (smil:to="#string" )? + (smil:from="#string" )? + (smil:by="#string" )? ) ( - ( (smil:begin="<string>" )? - (smil:end="<string>" )? - (smil:dur="<string>" )? + ( (smil:begin="#string" )? + (smil:end="#string" )? + (smil:dur="#string" )? - ( (smil:repeatDur="<string>" )? - (smil:repeatCount="<nonNegativeInteger> | indefinite" )? + ( (smil:repeatDur="#string" )? + (smil:repeatCount="#nonNegativeInteger | indefinite" )? )) (smil:restart="never | always | whenNotActive | default" )? (smil:restartDefault="never | always | whenNotActive | inherit" )? (smil:fill="remove | freeze | hold | auto | default | transition" )? (smil:fillDefault="remove | freeze | hold | transition | auto | inherit" )? - (smil:accelerate="<double>" )? - (smil:decelerate="<double>" )? - (smil:autoReverse="<boolean>" )? - ) (smil:keyTimes="<string>" )? - (smil:keySplines="<string>" )? + (smil:accelerate="#double" )? + (smil:decelerate="#double" )? + (smil:autoReverse="#boolean" )? + ) (smil:keyTimes="#string" )? + (smil:keySplines="#string" )? >  @@ -329,31 +329,31 @@

anim:animateTransform Element< Child Relations - <anim:animateTransform (smil:targetElement="<IDREF>" )? - (anim:sub-item="<string>" )? - smil:attributeName="<string>" (smil:accumulate="none | sum" )? + <anim:animateTransform (smil:targetElement="#IDREF" )? + (anim:sub-item="#string" )? + smil:attributeName="#string" (smil:accumulate="none | sum" )? (smil:additive="replace | sum" )? - (smil:values="<string>" )? - (anim:formula="<string>" )? + (smil:values="#string" )? + (anim:formula="#string" )? - ( (smil:to="<string>" )? - (smil:from="<string>" )? - (smil:by="<string>" )? + ( (smil:to="#string" )? + (smil:from="#string" )? + (smil:by="#string" )? )svg:type="translate | scale | rotate | skewX | skewY" ( - ( (smil:begin="<string>" )? - (smil:end="<string>" )? - (smil:dur="<string>" )? + ( (smil:begin="#string" )? + (smil:end="#string" )? + (smil:dur="#string" )? - ( (smil:repeatDur="<string>" )? - (smil:repeatCount="<nonNegativeInteger> | indefinite" )? + ( (smil:repeatDur="#string" )? + (smil:repeatCount="#nonNegativeInteger | indefinite" )? )) (smil:restart="never | always | whenNotActive | default" )? (smil:restartDefault="never | always | whenNotActive | inherit" )? (smil:fill="remove | freeze | hold | auto | default | transition" )? (smil:fillDefault="remove | freeze | hold | transition | auto | inherit" )? - (smil:accelerate="<double>" )? - (smil:decelerate="<double>" )? - (smil:autoReverse="<boolean>" )? + (smil:accelerate="#double" )? + (smil:decelerate="#double" )? + (smil:autoReverse="#boolean" )? )>  @@ -397,21 +397,21 @@

anim:audio Element

Child Relations <anim:audio (presentation:node-type="default | on-click | with-previous | after-previous | timing-root | main-sequence | interactive-sequence" )? - (presentation:preset-id="<string>" )? - (presentation:preset-sub-type="<string>" )? + (presentation:preset-id="#string" )? + (presentation:preset-sub-type="#string" )? (presentation:preset-class="custom | entrance | exit | emphasis | motion-path | ole-action | media-call" )? - (presentation:master-element="<IDREF>" )? - (presentation:group-id="<string>" )? - (anim:id="<ID>" )? - (xlink:href="<anyURI>" )? - (anim:audio-level="<double>" )? + (presentation:master-element="#IDREF" )? + (presentation:group-id="#string" )? + (anim:id="#ID" )? + (xlink:href="#anyURI" )? + (anim:audio-level="#double" )? - ( (smil:begin="<string>" )? - (smil:end="<string>" )? - (smil:dur="<string>" )? + ( (smil:begin="#string" )? + (smil:end="#string" )? + (smil:dur="#string" )? - ( (smil:repeatDur="<string>" )? - (smil:repeatCount="<nonNegativeInteger> | indefinite" )? + ( (smil:repeatDur="#string" )? + (smil:repeatCount="#nonNegativeInteger | indefinite" )? ))>  @@ -454,16 +454,16 @@

anim:command Element

Child Relations <anim:command (presentation:node-type="default | on-click | with-previous | after-previous | timing-root | main-sequence | interactive-sequence" )? - (presentation:preset-id="<string>" )? - (presentation:preset-sub-type="<string>" )? + (presentation:preset-id="#string" )? + (presentation:preset-sub-type="#string" )? (presentation:preset-class="custom | entrance | exit | emphasis | motion-path | ole-action | media-call" )? - (presentation:master-element="<IDREF>" )? - (presentation:group-id="<string>" )? - (anim:id="<ID>" )? - anim:command="<string>" (smil:begin="<string>" )? - (smil:end="<string>" )? - (smil:targetElement="<IDREF>" )? - (anim:sub-item="<string>" )? + (presentation:master-element="#IDREF" )? + (presentation:group-id="#string" )? + (anim:id="#ID" )? + anim:command="#string" (smil:begin="#string" )? + (smil:end="#string" )? + (smil:targetElement="#IDREF" )? + (anim:sub-item="#string" )? (<anim:param ... >)* >  @@ -528,31 +528,31 @@

anim:iterate Element

Child Relations <anim:iterate (presentation:node-type="default | on-click | with-previous | after-previous | timing-root | main-sequence | interactive-sequence" )? - (presentation:preset-id="<string>" )? - (presentation:preset-sub-type="<string>" )? + (presentation:preset-id="#string" )? + (presentation:preset-sub-type="#string" )? (presentation:preset-class="custom | entrance | exit | emphasis | motion-path | ole-action | media-call" )? - (presentation:master-element="<IDREF>" )? - (presentation:group-id="<string>" )? - (anim:id="<ID>" )? - (smil:targetElement="<IDREF>" )? - (anim:sub-item="<string>" )? - (anim:iterate-type="<string>" )? - (anim:iterate-interval="<duration>" )? + (presentation:master-element="#IDREF" )? + (presentation:group-id="#string" )? + (anim:id="#ID" )? + (smil:targetElement="#IDREF" )? + (anim:sub-item="#string" )? + (anim:iterate-type="#string" )? + (anim:iterate-interval="#duration" )? ( - ( (smil:begin="<string>" )? - (smil:end="<string>" )? - (smil:dur="<string>" )? + ( (smil:begin="#string" )? + (smil:end="#string" )? + (smil:dur="#string" )? - ( (smil:repeatDur="<string>" )? - (smil:repeatCount="<nonNegativeInteger> | indefinite" )? + ( (smil:repeatDur="#string" )? + (smil:repeatCount="#nonNegativeInteger | indefinite" )? )) (smil:restart="never | always | whenNotActive | default" )? (smil:restartDefault="never | always | whenNotActive | inherit" )? (smil:fill="remove | freeze | hold | auto | default | transition" )? (smil:fillDefault="remove | freeze | hold | transition | auto | inherit" )? - (smil:accelerate="<double>" )? - (smil:decelerate="<double>" )? - (smil:autoReverse="<boolean>" )? + (smil:accelerate="#double" )? + (smil:decelerate="#double" )? + (smil:autoReverse="#boolean" )? ) (smil:endsync="first | last | all | media" )? (<anim:animate ... > | <anim:set ... > | <anim:animateMotion ... > | <anim:animateColor ... > | <anim:animateTransform ... > | <anim:transitionFilter ... > | <anim:par ... > | <anim:seq ... > | <anim:iterate ... > | <anim:audio ... > | <anim:command ... >)* >  @@ -614,27 +614,27 @@

anim:par Element

Child Relations <anim:par (presentation:node-type="default | on-click | with-previous | after-previous | timing-root | main-sequence | interactive-sequence" )? - (presentation:preset-id="<string>" )? - (presentation:preset-sub-type="<string>" )? + (presentation:preset-id="#string" )? + (presentation:preset-sub-type="#string" )? (presentation:preset-class="custom | entrance | exit | emphasis | motion-path | ole-action | media-call" )? - (presentation:master-element="<IDREF>" )? - (presentation:group-id="<string>" )? - (anim:id="<ID>" )? + (presentation:master-element="#IDREF" )? + (presentation:group-id="#string" )? + (anim:id="#ID" )? ( - ( (smil:begin="<string>" )? - (smil:end="<string>" )? - (smil:dur="<string>" )? + ( (smil:begin="#string" )? + (smil:end="#string" )? + (smil:dur="#string" )? - ( (smil:repeatDur="<string>" )? - (smil:repeatCount="<nonNegativeInteger> | indefinite" )? + ( (smil:repeatDur="#string" )? + (smil:repeatCount="#nonNegativeInteger | indefinite" )? )) (smil:restart="never | always | whenNotActive | default" )? (smil:restartDefault="never | always | whenNotActive | inherit" )? (smil:fill="remove | freeze | hold | auto | default | transition" )? (smil:fillDefault="remove | freeze | hold | transition | auto | inherit" )? - (smil:accelerate="<double>" )? - (smil:decelerate="<double>" )? - (smil:autoReverse="<boolean>" )? + (smil:accelerate="#double" )? + (smil:decelerate="#double" )? + (smil:autoReverse="#boolean" )? ) (smil:endsync="first | last | all | media" )? (<anim:animate ... > | <anim:set ... > | <anim:animateMotion ... > | <anim:animateColor ... > | <anim:animateTransform ... > | <anim:transitionFilter ... > | <anim:par ... > | <anim:seq ... > | <anim:iterate ... > | <anim:audio ... > | <anim:command ... >)* >  @@ -723,28 +723,28 @@

anim:seq Element

Child Relations <anim:seq (presentation:node-type="default | on-click | with-previous | after-previous | timing-root | main-sequence | interactive-sequence" )? - (presentation:preset-id="<string>" )? - (presentation:preset-sub-type="<string>" )? + (presentation:preset-id="#string" )? + (presentation:preset-sub-type="#string" )? (presentation:preset-class="custom | entrance | exit | emphasis | motion-path | ole-action | media-call" )? - (presentation:master-element="<IDREF>" )? - (presentation:group-id="<string>" )? - (anim:id="<ID>" )? + (presentation:master-element="#IDREF" )? + (presentation:group-id="#string" )? + (anim:id="#ID" )? (smil:endsync="first | last | all | media" )? ( - ( (smil:begin="<string>" )? - (smil:end="<string>" )? - (smil:dur="<string>" )? + ( (smil:begin="#string" )? + (smil:end="#string" )? + (smil:dur="#string" )? - ( (smil:repeatDur="<string>" )? - (smil:repeatCount="<nonNegativeInteger> | indefinite" )? + ( (smil:repeatDur="#string" )? + (smil:repeatCount="#nonNegativeInteger | indefinite" )? )) (smil:restart="never | always | whenNotActive | default" )? (smil:restartDefault="never | always | whenNotActive | inherit" )? (smil:fill="remove | freeze | hold | auto | default | transition" )? (smil:fillDefault="remove | freeze | hold | transition | auto | inherit" )? - (smil:accelerate="<double>" )? - (smil:decelerate="<double>" )? - (smil:autoReverse="<boolean>" )? + (smil:accelerate="#double" )? + (smil:decelerate="#double" )? + (smil:autoReverse="#boolean" )? )(<anim:animate ... > | <anim:set ... > | <anim:animateMotion ... > | <anim:animateColor ... > | <anim:animateTransform ... > | <anim:transitionFilter ... > | <anim:par ... > | <anim:seq ... > | <anim:iterate ... > | <anim:audio ... > | <anim:command ... >)* >  @@ -791,24 +791,24 @@

anim:set Element

Child Relations - <anim:set (smil:targetElement="<IDREF>" )? - (anim:sub-item="<string>" )? - smil:attributeName="<string>" (smil:to="<string>" )? + <anim:set (smil:targetElement="#IDREF" )? + (anim:sub-item="#string" )? + smil:attributeName="#string" (smil:to="#string" )? ( - ( (smil:begin="<string>" )? - (smil:end="<string>" )? - (smil:dur="<string>" )? + ( (smil:begin="#string" )? + (smil:end="#string" )? + (smil:dur="#string" )? - ( (smil:repeatDur="<string>" )? - (smil:repeatCount="<nonNegativeInteger> | indefinite" )? + ( (smil:repeatDur="#string" )? + (smil:repeatCount="#nonNegativeInteger | indefinite" )? )) (smil:restart="never | always | whenNotActive | default" )? (smil:restartDefault="never | always | whenNotActive | inherit" )? (smil:fill="remove | freeze | hold | auto | default | transition" )? (smil:fillDefault="remove | freeze | hold | transition | auto | inherit" )? - (smil:accelerate="<double>" )? - (smil:decelerate="<double>" )? - (smil:autoReverse="<boolean>" )? + (smil:accelerate="#double" )? + (smil:decelerate="#double" )? + (smil:autoReverse="#boolean" )? ) (smil:accumulate="none | sum" )? (smil:additive="replace | sum" )? >  @@ -866,36 +866,36 @@

anim:transitionFilter Element< Child Relations - <anim:transitionFilter (smil:targetElement="<IDREF>" )? - (anim:sub-item="<string>" )? + <anim:transitionFilter (smil:targetElement="#IDREF" )? + (anim:sub-item="#string" )? (smil:accumulate="none | sum" )? (smil:additive="replace | sum" )? - (smil:values="<string>" )? - (anim:formula="<string>" )? + (smil:values="#string" )? + (anim:formula="#string" )? - ( (smil:to="<string>" )? - (smil:from="<string>" )? - (smil:by="<string>" )? + ( (smil:to="#string" )? + (smil:from="#string" )? + (smil:by="#string" )? ) (smil:calcMode="discrete | linear | paced | spline" )? - smil:type="<string>" (smil:subtype="<string>" )? + smil:type="#string" (smil:subtype="#string" )? (smil:direction="forward | reverse" )? (smil:fadeColor="forward | reverse" )? (smil:mode="in | out" )? ( - ( (smil:begin="<string>" )? - (smil:end="<string>" )? - (smil:dur="<string>" )? + ( (smil:begin="#string" )? + (smil:end="#string" )? + (smil:dur="#string" )? - ( (smil:repeatDur="<string>" )? - (smil:repeatCount="<nonNegativeInteger> | indefinite" )? + ( (smil:repeatDur="#string" )? + (smil:repeatCount="#nonNegativeInteger | indefinite" )? )) (smil:restart="never | always | whenNotActive | default" )? (smil:restartDefault="never | always | whenNotActive | inherit" )? (smil:fill="remove | freeze | hold | auto | default | transition" )? (smil:fillDefault="remove | freeze | hold | transition | auto | inherit" )? - (smil:accelerate="<double>" )? - (smil:decelerate="<double>" )? - (smil:autoReverse="<boolean>" )? + (smil:accelerate="#double" )? + (smil:decelerate="#double" )? + (smil:autoReverse="#boolean" )? )>  @@ -927,8 +927,8 @@

chart:axis Element

Child Relations - <chart:axis chart:dimension="x | y | z" (chart:name="<string>" )? - (chart:style-name="(<NCName>)?" )? + <chart:axis chart:dimension="x | y | z" (chart:name="#string" )? + (chart:style-name="(#NCName)?" )? (<chart:title ... >)? (<chart:categories ... >)? (<chart:grid ... >)* >  @@ -998,9 +998,9 @@

chart:chart Element

<chart:chart chart:class="string]" ( (svg:width="string]" )? (svg:height="string]" )? - ) (chart:column-mapping="<string>" )? - (chart:row-mapping="<string>" )? - (chart:style-name="(<NCName>)?" )? + ) (chart:column-mapping="#string" )? + (chart:row-mapping="#string" )? + (chart:style-name="(#NCName)?" )? (<chart:title ... >)? (<chart:subtitle ... >)? (<chart:footer ... >)? @@ -1033,8 +1033,8 @@

chart:data-point Element

Child Relations - <chart:data-point (chart:repeated="<nonNegativeInteger>" )? - (chart:style-name="(<NCName>)?" )? + <chart:data-point (chart:repeated="#nonNegativeInteger" )? + (chart:style-name="(#NCName)?" )? >  @@ -1088,7 +1088,7 @@

chart:error-indicator Element< Child Relations - <chart:error-indicator (chart:style-name="(<NCName>)?" )? + <chart:error-indicator (chart:style-name="(#NCName)?" )? >  @@ -1117,7 +1117,7 @@

chart:floor Element

Child Relations <chart:floor (svg:width="string]" )? - (chart:style-name="(<NCName>)?" )? + (chart:style-name="(#NCName)?" )? >  @@ -1152,7 +1152,7 @@

chart:footer Element

( (svg:x="string]" )? (svg:y="string]" )? - ) (chart:style-name="(<NCName>)?" )? + ) (chart:style-name="(#NCName)?" )? (<text:p ... >)? >  @@ -1182,7 +1182,7 @@

chart:grid Element

Child Relations <chart:grid (chart:class="major | minor" )? - (chart:style-name="(<NCName>)?" )? + (chart:style-name="(#NCName)?" )? >  @@ -1224,8 +1224,8 @@

chart:legend Element

( (svg:x="string]" )? (svg:y="string]" )? ) (style:legend-expansion="wide | high | balanced" | - (style:legend-expansion="custom" style:legend-expansion-aspect-ratio="<double>" ))? - (chart:style-name="(<NCName>)?" )? + (style:legend-expansion="custom" style:legend-expansion-aspect-ratio="#double" ))? + (chart:style-name="(#NCName)?" )? >  @@ -1252,7 +1252,7 @@

chart:mean-value Element

Child Relations - <chart:mean-value (chart:style-name="(<NCName>)?" )? + <chart:mean-value (chart:style-name="(#NCName)?" )? >  @@ -1311,7 +1311,7 @@

chart:plot-area Element

) ( (svg:width="string]" )? (svg:height="string]" )? - )) (chart:style-name="(<NCName>)?" )? + )) (chart:style-name="(#NCName)?" )? (table:cell-range-address="string]" )? (chart:data-source-has-labels="none | row | column | both" )? @@ -1322,10 +1322,10 @@

chart:plot-area Element

) (dr3d:projection="parallel | perspective" )? (dr3d:distance="string]" )? (dr3d:focal-length="string]" )? - (dr3d:shadow-slant="<nonNegativeInteger>" )? + (dr3d:shadow-slant="#nonNegativeInteger" )? (dr3d:shade-mode="flat | phong | gouraud | draft" )? (dr3d:ambient-color="string]" )? - (dr3d:lighting-mode="<boolean>" )? + (dr3d:lighting-mode="#boolean" )? (dr3d:transform="TEXT" )? )(<dr3d:light ... >)* (<chart:axis ... >)* (<chart:series ... >)* (<chart:stock-gain-marker ... >)? (<chart:stock-loss-marker ... >)? @@ -1358,7 +1358,7 @@

chart:regression-curve Element Child Relations - <chart:regression-curve (chart:style-name="(<NCName>)?" )? + <chart:regression-curve (chart:style-name="(#NCName)?" )? >  @@ -1397,8 +1397,8 @@

chart:series Element

<chart:series (chart:values-cell-range-address="string]" )? (chart:label-cell-address="string]" )? (chart:class="string]" )? - (chart:attached-axis="<string>" )? - (chart:style-name="(<NCName>)?" )? + (chart:attached-axis="#string" )? + (chart:style-name="(#NCName)?" )? (<chart:domain ... >)* (<chart:mean-value ... >)? (<chart:regression-curve ... >)? (<chart:error-indicator ... >)? @@ -1428,7 +1428,7 @@

chart:stock-gain-marker Element< Child Relations - <chart:stock-gain-marker (chart:style-name="(<NCName>)?" )? + <chart:stock-gain-marker (chart:style-name="(#NCName)?" )? >  @@ -1455,7 +1455,7 @@

chart:stock-loss-marker Element< Child Relations - <chart:stock-loss-marker (chart:style-name="(<NCName>)?" )? + <chart:stock-loss-marker (chart:style-name="(#NCName)?" )? >  @@ -1482,7 +1482,7 @@

chart:stock-range-line Element Child Relations - <chart:stock-range-line (chart:style-name="(<NCName>)?" )? + <chart:stock-range-line (chart:style-name="(#NCName)?" )? >  @@ -1517,7 +1517,7 @@

chart:subtitle Element

( (svg:x="string]" )? (svg:y="string]" )? - ) (chart:style-name="(<NCName>)?" )? + ) (chart:style-name="(#NCName)?" )? (<text:p ... >)? >  @@ -1554,7 +1554,7 @@

chart:title Element

( (svg:x="string]" )? (svg:y="string]" )? - ) (chart:style-name="(<NCName>)?" )? + ) (chart:style-name="(#NCName)?" )? (<text:p ... >)? >  @@ -1584,7 +1584,7 @@

chart:wall Element

Child Relations <chart:wall (svg:width="string]" )? - (chart:style-name="(<NCName>)?" )? + (chart:style-name="(#NCName)?" )? >  @@ -1614,7 +1614,7 @@

config:config-item Element

Child Relations - <config:config-item config:name="<string>" config:type="boolean | short | int | long | double | string | datetime | base64Binary" TEXT>  + <config:config-item config:name="#string" config:type="boolean | short | int | long | double | string | datetime | base64Binary" TEXT> 
@@ -1645,7 +1645,7 @@

config:config-item-map-entr Child Relations - <config:config-item-map-entry (config:name="<string>" )? + <config:config-item-map-entry (config:name="#string" )? (<config:config-item ... > | <config:config-item-set ... > | <config:config-item-map-named ... > | <config:config-item-map-indexed ... >)+ >  @@ -1674,7 +1674,7 @@

config:config-item-map-in Child Relations - <config:config-item-map-indexed config:name="<string>" (<config:config-item-map-entry ... >)+ >  + <config:config-item-map-indexed config:name="#string" (<config:config-item-map-entry ... >)+ > 
@@ -1702,7 +1702,7 @@

config:config-item-map-name Child Relations - <config:config-item-map-named config:name="<string>" (<config:config-item-map-entry ... >)+ >  + <config:config-item-map-named config:name="#string" (<config:config-item-map-entry ... >)+ > 
@@ -1734,7 +1734,7 @@

config:config-item-set Element Child Relations - <config:config-item-set config:name="<string>" (<config:config-item ... > | <config:config-item-set ... > | <config:config-item-map-named ... > | <config:config-item-map-indexed ... >)+ >  + <config:config-item-set config:name="#string" (<config:config-item ... > | <config:config-item-set ... > | <config:config-item-map-named ... > | <config:config-item-map-indexed ... >)+ > 
@@ -1760,7 +1760,7 @@

dc:creator Element

Child Relations - <dc:creator <string>>  + <dc:creator #string
@@ -1786,7 +1786,7 @@

dc:date Element

Child Relations - <dc:date <dateTime>>  + <dc:date #dateTime
@@ -1824,18 +1824,18 @@

dr3d:cube Element

<dr3d:cube ( (dr3d:min-edge="string]" )? (dr3d:max-edge="string]" )? - ) (draw:z-index="<nonNegativeInteger>" )? - (draw:id="<ID>" )? - (draw:layer="<string>" )? + ) (draw:z-index="#nonNegativeInteger" )? + (draw:id="#ID" )? + (draw:layer="#string" )? - ( (draw:style-name="(<NCName>)?" )? + ( (draw:style-name="(#NCName)?" )? (draw:class-names=" -START_list(<NCName>)* +START_list(#NCName)* END_list" )? ) | - ( (presentation:style-name="(<NCName>)?" )? + ( (presentation:style-name="(#NCName)?" )? (presentation:class-names=" -START_list(<NCName>)* +START_list(#NCName)* END_list" )? ) (dr3d:transform="TEXT" )? >  @@ -1873,20 +1873,20 @@

dr3d:extrude Element

Child Relations - <dr3d:extrude svg:d="<string>" svg:viewBox=" -START_list<integer><integer><integer><integer> -END_list" (draw:id="<ID>" )? - (draw:z-index="<nonNegativeInteger>" )? - (draw:layer="<string>" )? + <dr3d:extrude svg:d="#string" svg:viewBox=" +START_list#integer#integer#integer#integer +END_list" (draw:id="#ID" )? + (draw:z-index="#nonNegativeInteger" )? + (draw:layer="#string" )? - ( (draw:style-name="(<NCName>)?" )? + ( (draw:style-name="(#NCName)?" )? (draw:class-names=" -START_list(<NCName>)* +START_list(#NCName)* END_list" )? ) | - ( (presentation:style-name="(<NCName>)?" )? + ( (presentation:style-name="(#NCName)?" )? (presentation:class-names=" -START_list(<NCName>)* +START_list(#NCName)* END_list" )? ) (dr3d:transform="TEXT" )? >  @@ -1920,8 +1920,8 @@

dr3d:light Element

Child Relations <dr3d:light (dr3d:diffuse-color="string]" )? - dr3d:direction="string]" (dr3d:enabled="<boolean>" )? - (dr3d:specular="<boolean>" )? + dr3d:direction="string]" (dr3d:enabled="#boolean" )? + (dr3d:specular="#boolean" )? >  @@ -1958,19 +1958,19 @@

dr3d:rotate Element

Child Relations <dr3d:rotate svg:viewBox=" -START_list<integer><integer><integer><integer> -END_list" svg:d="<string>" (draw:z-index="<nonNegativeInteger>" )? - (draw:id="<ID>" )? - (draw:layer="<string>" )? +START_list#integer#integer#integer#integer +END_list" svg:d="#string" (draw:z-index="#nonNegativeInteger" )? + (draw:id="#ID" )? + (draw:layer="#string" )? - ( (draw:style-name="(<NCName>)?" )? + ( (draw:style-name="(#NCName)?" )? (draw:class-names=" -START_list(<NCName>)* +START_list(#NCName)* END_list" )? ) | - ( (presentation:style-name="(<NCName>)?" )? + ( (presentation:style-name="(#NCName)?" )? (presentation:class-names=" -START_list(<NCName>)* +START_list(#NCName)* END_list" )? ) (dr3d:transform="TEXT" )? >  @@ -2062,10 +2062,10 @@

dr3d:scene Element

) (dr3d:projection="parallel | perspective" )? (dr3d:distance="string]" )? (dr3d:focal-length="string]" )? - (dr3d:shadow-slant="<nonNegativeInteger>" )? + (dr3d:shadow-slant="#nonNegativeInteger" )? (dr3d:shade-mode="flat | phong | gouraud | draft" )? (dr3d:ambient-color="string]" )? - (dr3d:lighting-mode="<boolean>" )? + (dr3d:lighting-mode="#boolean" )? ( (svg:x="string]" )? (svg:y="string]" )? @@ -2073,27 +2073,27 @@

dr3d:scene Element

( (svg:width="string]" )? (svg:height="string]" )? ) - ( (draw:style-name="(<NCName>)?" )? + ( (draw:style-name="(#NCName)?" )? (draw:class-names=" -START_list(<NCName>)* +START_list(#NCName)* END_list" )? ) | - ( (presentation:style-name="(<NCName>)?" )? + ( (presentation:style-name="(#NCName)?" )? (presentation:class-names=" -START_list(<NCName>)* +START_list(#NCName)* END_list" )? - ) (draw:z-index="<nonNegativeInteger>" )? - (draw:id="<ID>" )? - (draw:layer="<string>" )? + ) (draw:z-index="#nonNegativeInteger" )? + (draw:id="#ID" )? + (draw:layer="#string" )? ( (table:end-cell-address="string]" )? (table:end-x="string]" )? (table:end-y="string]" )? - ) (table:table-background="<boolean>" )? + ) (table:table-background="#boolean" )? (text:anchor-type="page | frame | paragraph | char | as-char" )? - (text:anchor-page-number="<positiveInteger>" )? + (text:anchor-page-number="#positiveInteger" )? (dr3d:transform="TEXT" )? - (draw:caption-id="<IDREF>" )? + (draw:caption-id="#IDREF" )? (<svg:title ... >)? (<svg:desc ... >)? (<dr3d:light ... >)* (<dr3d:scene ... > | <dr3d:extrude ... > | <dr3d:sphere ... > | <dr3d:rotate ... > | <dr3d:cube ... >)* >  @@ -2133,18 +2133,18 @@

dr3d:sphere Element

Child Relations <dr3d:sphere (dr3d:center="string]" )? (dr3d:size="string]" )? - (draw:z-index="<nonNegativeInteger>" )? - (draw:id="<ID>" )? - (draw:layer="<string>" )? + (draw:z-index="#nonNegativeInteger" )? + (draw:id="#ID" )? + (draw:layer="#string" )? - ( (draw:style-name="(<NCName>)?" )? + ( (draw:style-name="(#NCName)?" )? (draw:class-names=" -START_list(<NCName>)* +START_list(#NCName)* END_list" )? ) | - ( (presentation:style-name="(<NCName>)?" )? + ( (presentation:style-name="(#NCName)?" )? (presentation:class-names=" -START_list(<NCName>)* +START_list(#NCName)* END_list" )? ) (dr3d:transform="TEXT" )? >  @@ -2195,14 +2195,14 @@

draw:a Element

Child Relations <draw:a - (xlink:href="<anyURI>" (xlink:type="simple" )? + (xlink:href="#anyURI" (xlink:type="simple" )? (xlink:actuate="onRequest" )? ) - ( (office:target-frame-name="_self | _blank | _parent | _top | <string>" )? + ( (office:target-frame-name="_self | _blank | _parent | _top | #string" )? (xlink:show="new | replace" )? - ) (office:name="<string>" )? - (office:title="<string>" )? - (office:server-map="<boolean>" )? + ) (office:name="#string" )? + (office:title="#string" )? + (office:server-map="#boolean" )? <draw:frame ... >>  @@ -2240,9 +2240,9 @@

draw:applet Element

<draw:applet (draw:code="TEXT" )? (draw:object="TEXT" )? (draw:archive="TEXT" )? - (draw:may-script="<boolean>" )? + (draw:may-script="#boolean" )? ( - (xlink:href="<anyURI>" (xlink:type="simple" )? + (xlink:href="#anyURI" (xlink:type="simple" )? (xlink:show="embed" )? (xlink:actuate="onLoad" )? ))? @@ -2284,11 +2284,11 @@

draw:area-circle Element

Child Relations <draw:area-circle - ( (xlink:href="<anyURI>" )? + ( (xlink:href="#anyURI" )? (xlink:type="simple" )? - (office:target-frame-name="_self | _blank | _parent | _top | <string>" )? + (office:target-frame-name="_self | _blank | _parent | _top | #string" )? (xlink:show="new | replace" )? - ) (office:name="<string>" )? + ) (office:name="#string" )? (draw:nohref="nohref" )? svg:cx="string]" svg:cy="string]" svg:r="string]" (<svg:title ... >)? (<svg:desc ... >)? @@ -2334,14 +2334,14 @@

draw:area-polygon Element

Child Relations <draw:area-polygon - ( (xlink:href="<anyURI>" )? + ( (xlink:href="#anyURI" )? (xlink:type="simple" )? - (office:target-frame-name="_self | _blank | _parent | _top | <string>" )? + (office:target-frame-name="_self | _blank | _parent | _top | #string" )? (xlink:show="new | replace" )? - ) (office:name="<string>" )? + ) (office:name="#string" )? (draw:nohref="nohref" )? svg:x="string]" svg:y="string]" svg:width="string]" svg:height="string]" svg:viewBox=" -START_list<integer><integer><integer><integer> +START_list#integer#integer#integer#integer END_list" draw:points="string]" (<svg:title ... >)? (<svg:desc ... >)? (<office:event-listeners ... >)? @@ -2384,11 +2384,11 @@

draw:area-rectangle Element

Child Relations <draw:area-rectangle - ( (xlink:href="<anyURI>" )? + ( (xlink:href="#anyURI" )? (xlink:type="simple" )? - (office:target-frame-name="_self | _blank | _parent | _top | <string>" )? + (office:target-frame-name="_self | _blank | _parent | _top | #string" )? (xlink:show="new | replace" )? - ) (office:name="<string>" )? + ) (office:name="#string" )? (draw:nohref="nohref" )? svg:x="string]" svg:y="string]" svg:width="string]" svg:height="string]" (<svg:title ... >)? (<svg:desc ... >)? @@ -2477,30 +2477,30 @@

draw:caption Element

(svg:height="string]" )? ) ( - ( (draw:z-index="<nonNegativeInteger>" )? - (draw:id="<ID>" )? - (draw:layer="<string>" )? + ( (draw:z-index="#nonNegativeInteger" )? + (draw:id="#ID" )? + (draw:layer="#string" )? - ( (draw:style-name="(<NCName>)?" )? + ( (draw:style-name="(#NCName)?" )? (draw:class-names=" -START_list(<NCName>)* +START_list(#NCName)* END_list" )? ) | - ( (presentation:style-name="(<NCName>)?" )? + ( (presentation:style-name="(#NCName)?" )? (presentation:class-names=" -START_list(<NCName>)* +START_list(#NCName)* END_list" )? - ) (draw:transform="<string>" )? - (draw:name="<string>" )? + ) (draw:transform="#string" )? + (draw:name="#string" )? ( (table:end-cell-address="string]" )? (table:end-x="string]" )? (table:end-y="string]" )? - ) (table:table-background="<boolean>" )? + ) (table:table-background="#boolean" )? (text:anchor-type="page | frame | paragraph | char | as-char" )? - (text:anchor-page-number="<positiveInteger>" )? - ) (draw:text-style-name="(<NCName>)?" )? - ) (draw:caption-id="<IDREF>" )? + (text:anchor-page-number="#positiveInteger" )? + ) (draw:text-style-name="(#NCName)?" )? + ) (draw:caption-id="#IDREF" )? (<svg:title ... >)? (<svg:desc ... >)? (<office:event-listeners ... >)? @@ -2584,8 +2584,8 @@

draw:circle Element

<draw:circle (svg:r="string]" )? (svg:cx="string]" svg:cy="string]" )? (draw:kind="full | section | cut | arc" )? - (draw:start-angle="<double>" )? - (draw:end-angle="<double>" )? + (draw:start-angle="#double" )? + (draw:end-angle="#double" )? ( (svg:x="string]" )? (svg:y="string]" )? @@ -2594,30 +2594,30 @@

draw:circle Element

(svg:height="string]" )? ) ( - ( (draw:z-index="<nonNegativeInteger>" )? - (draw:id="<ID>" )? - (draw:layer="<string>" )? + ( (draw:z-index="#nonNegativeInteger" )? + (draw:id="#ID" )? + (draw:layer="#string" )? - ( (draw:style-name="(<NCName>)?" )? + ( (draw:style-name="(#NCName)?" )? (draw:class-names=" -START_list(<NCName>)* +START_list(#NCName)* END_list" )? ) | - ( (presentation:style-name="(<NCName>)?" )? + ( (presentation:style-name="(#NCName)?" )? (presentation:class-names=" -START_list(<NCName>)* +START_list(#NCName)* END_list" )? - ) (draw:transform="<string>" )? - (draw:name="<string>" )? + ) (draw:transform="#string" )? + (draw:name="#string" )? ( (table:end-cell-address="string]" )? (table:end-x="string]" )? (table:end-y="string]" )? - ) (table:table-background="<boolean>" )? + ) (table:table-background="#boolean" )? (text:anchor-type="page | frame | paragraph | char | as-char" )? - (text:anchor-page-number="<positiveInteger>" )? - ) (draw:text-style-name="(<NCName>)?" )? - ) (draw:caption-id="<IDREF>" )? + (text:anchor-page-number="#positiveInteger" )? + ) (draw:text-style-name="(#NCName)?" )? + ) (draw:caption-id="#IDREF" )? (<svg:title ... >)? (<svg:desc ... >)? (<office:event-listeners ... >)? @@ -2700,40 +2700,40 @@

draw:connector Element

Child Relations <draw:connector (draw:type="standard | lines | line | curve" )? (svg:x1="string]" svg:y1="string]" )? - (draw:start-shape="<IDREF>" )? - (draw:start-glue-point="<nonNegativeInteger>" )? + (draw:start-shape="#IDREF" )? + (draw:start-glue-point="#nonNegativeInteger" )? (svg:x2="string]" svg:y2="string]" )? - (draw:end-shape="<IDREF>" )? - (draw:end-glue-point="<nonNegativeInteger>" )? + (draw:end-shape="#IDREF" )? + (draw:end-glue-point="#nonNegativeInteger" )? (draw:line-skew=" START_liststring](string](string])?)? END_list" )? ( - ( (draw:z-index="<nonNegativeInteger>" )? - (draw:id="<ID>" )? - (draw:layer="<string>" )? + ( (draw:z-index="#nonNegativeInteger" )? + (draw:id="#ID" )? + (draw:layer="#string" )? - ( (draw:style-name="(<NCName>)?" )? + ( (draw:style-name="(#NCName)?" )? (draw:class-names=" -START_list(<NCName>)* +START_list(#NCName)* END_list" )? ) | - ( (presentation:style-name="(<NCName>)?" )? + ( (presentation:style-name="(#NCName)?" )? (presentation:class-names=" -START_list(<NCName>)* +START_list(#NCName)* END_list" )? - ) (draw:transform="<string>" )? - (draw:name="<string>" )? + ) (draw:transform="#string" )? + (draw:name="#string" )? ( (table:end-cell-address="string]" )? (table:end-x="string]" )? (table:end-y="string]" )? - ) (table:table-background="<boolean>" )? + ) (table:table-background="#boolean" )? (text:anchor-type="page | frame | paragraph | char | as-char" )? - (text:anchor-page-number="<positiveInteger>" )? - ) (draw:text-style-name="(<NCName>)?" )? - ) (draw:caption-id="<IDREF>" )? + (text:anchor-page-number="#positiveInteger" )? + ) (draw:text-style-name="(#NCName)?" )? + ) (draw:caption-id="#IDREF" )? (<svg:title ... >)? (<svg:desc ... >)? (<office:event-listeners ... >)? @@ -2767,12 +2767,12 @@

draw:contour-path Element

Child Relations - <draw:contour-path draw:recreate-on-edit="<boolean>" + <draw:contour-path draw:recreate-on-edit="#boolean" ( (svg:width="string]" )? (svg:height="string]" )? )svg:viewBox=" -START_list<integer><integer><integer><integer> -END_list" svg:d="<string>" >  +START_list#integer#integer#integer#integer +END_list" svg:d="#string" > 
@@ -2802,11 +2802,11 @@

draw:contour-polygon Element Child Relations - <draw:contour-polygon draw:recreate-on-edit="<boolean>" + <draw:contour-polygon draw:recreate-on-edit="#boolean" ( (svg:width="string]" )? (svg:height="string]" )? )svg:viewBox=" -START_list<integer><integer><integer><integer> +START_list#integer#integer#integer#integer END_list" draw:points="string]" >  @@ -2876,7 +2876,7 @@

draw:control Element

Child Relations - <draw:control draw:control="<IDREF>" + <draw:control draw:control="#IDREF" ( (svg:x="string]" )? (svg:y="string]" )? ) @@ -2884,30 +2884,30 @@

draw:control Element

(svg:height="string]" )? ) ( - ( (draw:z-index="<nonNegativeInteger>" )? - (draw:id="<ID>" )? - (draw:layer="<string>" )? + ( (draw:z-index="#nonNegativeInteger" )? + (draw:id="#ID" )? + (draw:layer="#string" )? - ( (draw:style-name="(<NCName>)?" )? + ( (draw:style-name="(#NCName)?" )? (draw:class-names=" -START_list(<NCName>)* +START_list(#NCName)* END_list" )? ) | - ( (presentation:style-name="(<NCName>)?" )? + ( (presentation:style-name="(#NCName)?" )? (presentation:class-names=" -START_list(<NCName>)* +START_list(#NCName)* END_list" )? - ) (draw:transform="<string>" )? - (draw:name="<string>" )? + ) (draw:transform="#string" )? + (draw:name="#string" )? ( (table:end-cell-address="string]" )? (table:end-x="string]" )? (table:end-y="string]" )? - ) (table:table-background="<boolean>" )? + ) (table:table-background="#boolean" )? (text:anchor-type="page | frame | paragraph | char | as-char" )? - (text:anchor-page-number="<positiveInteger>" )? - ) (draw:text-style-name="(<NCName>)?" )? - ) (draw:caption-id="<IDREF>" )? + (text:anchor-page-number="#positiveInteger" )? + ) (draw:text-style-name="(#NCName)?" )? + ) (draw:caption-id="#IDREF" )? (<svg:title ... >)? (<svg:desc ... >)? (<draw:glue-point ... >)* >  @@ -2985,7 +2985,7 @@

draw:custom-shape Element

Child Relations <draw:custom-shape (draw:engine="string]" )? - (draw:data="<string>" )? + (draw:data="#string" )? ( (svg:x="string]" )? (svg:y="string]" )? @@ -2994,30 +2994,30 @@

draw:custom-shape Element

(svg:height="string]" )? ) ( - ( (draw:z-index="<nonNegativeInteger>" )? - (draw:id="<ID>" )? - (draw:layer="<string>" )? + ( (draw:z-index="#nonNegativeInteger" )? + (draw:id="#ID" )? + (draw:layer="#string" )? - ( (draw:style-name="(<NCName>)?" )? + ( (draw:style-name="(#NCName)?" )? (draw:class-names=" -START_list(<NCName>)* +START_list(#NCName)* END_list" )? ) | - ( (presentation:style-name="(<NCName>)?" )? + ( (presentation:style-name="(#NCName)?" )? (presentation:class-names=" -START_list(<NCName>)* +START_list(#NCName)* END_list" )? - ) (draw:transform="<string>" )? - (draw:name="<string>" )? + ) (draw:transform="#string" )? + (draw:name="#string" )? ( (table:end-cell-address="string]" )? (table:end-x="string]" )? (table:end-y="string]" )? - ) (table:table-background="<boolean>" )? + ) (table:table-background="#boolean" )? (text:anchor-type="page | frame | paragraph | char | as-char" )? - (text:anchor-page-number="<positiveInteger>" )? - ) (draw:text-style-name="(<NCName>)?" )? - ) (draw:caption-id="<IDREF>" )? + (text:anchor-page-number="#positiveInteger" )? + ) (draw:text-style-name="(#NCName)?" )? + ) (draw:caption-id="#IDREF" )? (<svg:title ... >)? (<svg:desc ... >)? (<office:event-listeners ... >)? @@ -3102,8 +3102,8 @@

draw:ellipse Element

Child Relations <draw:ellipse (svg:cx="string]" svg:cy="string]" )? (draw:kind="full | section | cut | arc" )? - (draw:start-angle="<double>" )? - (draw:end-angle="<double>" )? + (draw:start-angle="#double" )? + (draw:end-angle="#double" )? (svg:rx="string]" svg:ry="string]" )? ( (svg:x="string]" )? @@ -3113,30 +3113,30 @@

draw:ellipse Element

(svg:height="string]" )? ) ( - ( (draw:z-index="<nonNegativeInteger>" )? - (draw:id="<ID>" )? - (draw:layer="<string>" )? + ( (draw:z-index="#nonNegativeInteger" )? + (draw:id="#ID" )? + (draw:layer="#string" )? - ( (draw:style-name="(<NCName>)?" )? + ( (draw:style-name="(#NCName)?" )? (draw:class-names=" -START_list(<NCName>)* +START_list(#NCName)* END_list" )? ) | - ( (presentation:style-name="(<NCName>)?" )? + ( (presentation:style-name="(#NCName)?" )? (presentation:class-names=" -START_list(<NCName>)* +START_list(#NCName)* END_list" )? - ) (draw:transform="<string>" )? - (draw:name="<string>" )? + ) (draw:transform="#string" )? + (draw:name="#string" )? ( (table:end-cell-address="string]" )? (table:end-x="string]" )? (table:end-y="string]" )? - ) (table:table-background="<boolean>" )? + ) (table:table-background="#boolean" )? (text:anchor-type="page | frame | paragraph | char | as-char" )? - (text:anchor-page-number="<positiveInteger>" )? - ) (draw:text-style-name="(<NCName>)?" )? - ) (draw:caption-id="<IDREF>" )? + (text:anchor-page-number="#positiveInteger" )? + ) (draw:text-style-name="(#NCName)?" )? + ) (draw:caption-id="#IDREF" )? (<svg:title ... >)? (<svg:desc ... >)? (<office:event-listeners ... >)? @@ -3210,61 +3210,61 @@

draw:enhanced-geometry Element Child Relations - <draw:enhanced-geometry (draw:type="non-primitive | <string>" )? + <draw:enhanced-geometry (draw:type="non-primitive | #string" )? (svg:viewBox=" -START_list<integer><integer><integer><integer> +START_list#integer#integer#integer#integer END_list" )? - ( (draw:mirror-vertical="<boolean>" )? - (draw:mirror-horizontal="<boolean>" )? - ) (draw:text-rotate-angle="<double>" )? - (draw:extrusion-allowed="<boolean>" )? - (draw:text-path-allowed="<boolean>" )? - (draw:concentric-gradient-fill-allowed="<boolean>" )? - (draw:extrusion="<boolean>" )? + ( (draw:mirror-vertical="#boolean" )? + (draw:mirror-horizontal="#boolean" )? + ) (draw:text-rotate-angle="#double" )? + (draw:extrusion-allowed="#boolean" )? + (draw:text-path-allowed="#boolean" )? + (draw:concentric-gradient-fill-allowed="#boolean" )? + (draw:extrusion="#boolean" )? (draw:extrusion-brightness="string]" )? (draw:extrusion-depth=" -START_liststring]<double> +START_liststring]#double END_list" )? (draw:extrusion-diffusion="string]" )? - (draw:extrusion-number-of-line-segments="<integer>" )? - (draw:extrusion-light-face="<boolean>" )? - (draw:extrusion-first-light-harsh="<boolean>" )? - (draw:extrusion-second-light-harsh="<boolean>" )? + (draw:extrusion-number-of-line-segments="#integer" )? + (draw:extrusion-light-face="#boolean" )? + (draw:extrusion-first-light-harsh="#boolean" )? + (draw:extrusion-second-light-harsh="#boolean" )? (draw:extrusion-first-light-level="string]" )? (draw:extrusion-second-light-level="string]" )? (draw:extrusion-first-light-direction="string]" )? (draw:extrusion-second-light-direction="string]" )? - (draw:extrusion-metal="<boolean>" )? + (draw:extrusion-metal="#boolean" )? (dr3d:shade-mode="flat | phong | gouraud | draft" )? (draw:extrusion-rotation-angle=" -START_list<double><double> +START_list#double#double END_list" )? (draw:extrusion-rotation-center="string]" )? (draw:extrusion-shininess="string]" )? (draw:extrusion-skew=" -START_list<double><double> +START_list#double#double END_list" )? (draw:extrusion-specularity="string]" )? (dr3d:projection="parallel | perspective" )? - (draw:extrusion-viewpoint="<string>" )? + (draw:extrusion-viewpoint="#string" )? (draw:extrusion-origin=" -START_list<double><double> +START_list#double#double END_list" )? - (draw:extrusion-color="<boolean>" )? - (draw:enhanced-path="<string>" )? + (draw:extrusion-color="#boolean" )? + (draw:enhanced-path="#string" )? - ( (draw:path-stretchpoint-x="<double>" )? - (draw:path-stretchpoint-y="<double>" )? - ) (draw:text-areas="<string>" )? - (draw:glue-points="<string>" )? + ( (draw:path-stretchpoint-x="#double" )? + (draw:path-stretchpoint-y="#double" )? + ) (draw:text-areas="#string" )? + (draw:glue-points="#string" )? (draw:glue-point-type="none | segments | rectangle" )? (draw:glue-point-leaving-directions="TEXT" )? - (draw:text-path="<boolean>" )? + (draw:text-path="#boolean" )? (draw:text-path-mode="normal | path | shape" )? (draw:text-path-scale="path | shape" )? - (draw:text-path-same-letter-heights="<boolean>" )? - (draw:modifiers="<string>" )? + (draw:text-path-same-letter-heights="#boolean" )? + (draw:modifiers="#string" )? (<draw:equation ... >)* (<draw:handle ... >)* >  @@ -3292,8 +3292,8 @@

draw:equation Element

Child Relations - <draw:equation (draw:name="<string>" )? - (draw:formula="<string>" )? + <draw:equation (draw:name="#string" )? + (draw:formula="#string" )? >  @@ -3327,11 +3327,11 @@

draw:fill-image Element

Child Relations - <draw:fill-image draw:name="<NCName>" (draw:display-name="<string>" )? + <draw:fill-image draw:name="#NCName" (draw:display-name="#string" )? ( (svg:width="string]" )? (svg:height="string]" )? - )xlink:href="<anyURI>" (xlink:type="simple" )? + )xlink:href="#anyURI" (xlink:type="simple" )? (xlink:show="embed" )? (xlink:actuate="onLoad" )? >  @@ -3364,9 +3364,9 @@

draw:floating-frame Element

Child Relations - <draw:floating-frame (draw:frame-name="<string>" )? + <draw:floating-frame (draw:frame-name="#string" )? - (xlink:href="<anyURI>" (xlink:type="simple" )? + (xlink:href="#anyURI" (xlink:type="simple" )? (xlink:show="embed" )? (xlink:actuate="onLoad" )? )>  @@ -3458,29 +3458,29 @@

draw:frame Element

Child Relations <draw:frame ( - ( (draw:z-index="<nonNegativeInteger>" )? - (draw:id="<ID>" )? - (draw:layer="<string>" )? + ( (draw:z-index="#nonNegativeInteger" )? + (draw:id="#ID" )? + (draw:layer="#string" )? - ( (draw:style-name="(<NCName>)?" )? + ( (draw:style-name="(#NCName)?" )? (draw:class-names=" -START_list(<NCName>)* +START_list(#NCName)* END_list" )? ) | - ( (presentation:style-name="(<NCName>)?" )? + ( (presentation:style-name="(#NCName)?" )? (presentation:class-names=" -START_list(<NCName>)* +START_list(#NCName)* END_list" )? - ) (draw:transform="<string>" )? - (draw:name="<string>" )? + ) (draw:transform="#string" )? + (draw:name="#string" )? ( (table:end-cell-address="string]" )? (table:end-x="string]" )? (table:end-y="string]" )? - ) (table:table-background="<boolean>" )? + ) (table:table-background="#boolean" )? (text:anchor-type="page | frame | paragraph | char | as-char" )? - (text:anchor-page-number="<positiveInteger>" )? - ) (draw:text-style-name="(<NCName>)?" )? + (text:anchor-page-number="#positiveInteger" )? + ) (draw:text-style-name="(#NCName)?" )? ) ( (svg:x="string]" )? (svg:y="string]" )? @@ -3490,11 +3490,11 @@

draw:frame Element

(svg:height="string]" )? ) (style:rel-width="string] | scale | scale-min" )? (style:rel-height="string] | scale | scale-min" )? - ) (draw:caption-id="<IDREF>" )? + ) (draw:caption-id="#IDREF" )? (presentation:class="title | outline | subtitle | text | graphic | object | chart | table | orgchart | page | notes | handout | header | footer | date-time | page-number" )? - (presentation:placeholder="<boolean>" )? - (presentation:user-transformed="<boolean>" )? - (draw:copy-of="<string>" )? + (presentation:placeholder="#boolean" )? + (presentation:user-transformed="#boolean" )? + (draw:copy-of="#string" )? (<draw:text-box ... > | <draw:image ... > | <draw:object ... > | <draw:object-ole ... > | <draw:applet ... > | <draw:floating-frame ... > | <draw:plugin ... >)* (<office:event-listeners ... >)? (<draw:glue-point ... >)* (<draw:image-map ... >)? (<svg:title ... >)? @@ -3581,27 +3581,27 @@

draw:g Element

Child Relations <draw:g (svg:y="string]" )? - (draw:z-index="<nonNegativeInteger>" )? - (draw:name="<string>" )? - (draw:id="<ID>" )? + (draw:z-index="#nonNegativeInteger" )? + (draw:name="#string" )? + (draw:id="#ID" )? - ( (draw:style-name="(<NCName>)?" )? + ( (draw:style-name="(#NCName)?" )? (draw:class-names=" -START_list(<NCName>)* +START_list(#NCName)* END_list" )? ) | - ( (presentation:style-name="(<NCName>)?" )? + ( (presentation:style-name="(#NCName)?" )? (presentation:class-names=" -START_list(<NCName>)* +START_list(#NCName)* END_list" )? ) ( (table:end-cell-address="string]" )? (table:end-x="string]" )? (table:end-y="string]" )? - ) (table:table-background="<boolean>" )? + ) (table:table-background="#boolean" )? (text:anchor-type="page | frame | paragraph | char | as-char" )? - (text:anchor-page-number="<positiveInteger>" )? - (draw:caption-id="<IDREF>" )? + (text:anchor-page-number="#positiveInteger" )? + (draw:caption-id="#IDREF" )? (<svg:title ... >)? (<svg:desc ... >)? (<office:event-listeners ... >)? @@ -3648,7 +3648,7 @@

draw:glue-point Element

Child Relations - <draw:glue-point draw:id="<nonNegativeInteger>" + <draw:glue-point draw:id="#nonNegativeInteger" (svg:x="string] | string]" svg:y="string] | string]" ) (draw:align="top-left | top | top-right | left | center | right | bottom-left | bottom-right" )? >  @@ -3686,12 +3686,12 @@

draw:gradient Element

Child Relations - <draw:gradient (draw:name="<NCName>" )? - (draw:display-name="<string>" )? + <draw:gradient (draw:name="#NCName" )? + (draw:display-name="#string" )? draw:style="linear | axial | radial | ellipsoid | square | rectangular" ( (draw:cx="string]" )? (draw:cy="string]" )? - ) (draw:angle="<integer>" )? + ) (draw:angle="#integer" )? (draw:border="string]" )? ( (draw:start-color="string]" )? @@ -3735,16 +3735,16 @@

draw:handle Element

Child Relations - <draw:handle (draw:handle-mirror-vertical="<boolean>" )? - (draw:handle-mirror-horizontal="<boolean>" )? - (draw:handle-switched="<boolean>" )? - draw:handle-position="<string>" (draw:handle-range-x-minimum="<string>" )? - (draw:handle-range-x-maximum="<string>" )? - (draw:handle-range-y-minimum="<string>" )? - (draw:handle-range-y-maximum="<string>" )? - (draw:handle-polar="<string>" )? - (draw:handle-radius-range-minimum="<string>" )? - (draw:handle-radius-range-maximum="<string>" )? + <draw:handle (draw:handle-mirror-vertical="#boolean" )? + (draw:handle-mirror-horizontal="#boolean" )? + (draw:handle-switched="#boolean" )? + draw:handle-position="#string" (draw:handle-range-x-minimum="#string" )? + (draw:handle-range-x-maximum="#string" )? + (draw:handle-range-y-minimum="#string" )? + (draw:handle-range-y-maximum="#string" )? + (draw:handle-polar="#string" )? + (draw:handle-radius-range-minimum="#string" )? + (draw:handle-radius-range-maximum="#string" )? >  @@ -3776,10 +3776,10 @@

draw:hatch Element

Child Relations - <draw:hatch draw:name="<NCName>" (draw:display-name="<string>" )? + <draw:hatch draw:name="#NCName" (draw:display-name="#string" )? draw:style="single | double | triple" (draw:color="string]" )? (draw:distance="string]" )? - (draw:rotation="<integer>" )? + (draw:rotation="#integer" )? >  @@ -3813,9 +3813,9 @@

draw:image Element

Child Relations - <draw:image (draw:filter-name="<string>" )? + <draw:image (draw:filter-name="#string" )? - (xlink:href="<anyURI>" (xlink:type="simple" )? + (xlink:href="#anyURI" (xlink:type="simple" )? (xlink:show="embed" )? (xlink:actuate="onLoad" )? ) | <office:binary-data ... >(<text:p ... > | <text:list ... >)* >  @@ -3876,7 +3876,7 @@

draw:layer Element

Child Relations - <draw:layer draw:name="<string>" (draw:protected="<boolean>" )? + <draw:layer draw:name="#string" (draw:protected="#boolean" )? (draw:display="always | screen | printer | none" )? (<svg:title ... >)? (<svg:desc ... >)? @@ -3981,30 +3981,30 @@

draw:line Element

(svg:x1="string]" svg:y1="string]" ) (svg:x2="string]" svg:y2="string]" ) ( - ( (draw:z-index="<nonNegativeInteger>" )? - (draw:id="<ID>" )? - (draw:layer="<string>" )? + ( (draw:z-index="#nonNegativeInteger" )? + (draw:id="#ID" )? + (draw:layer="#string" )? - ( (draw:style-name="(<NCName>)?" )? + ( (draw:style-name="(#NCName)?" )? (draw:class-names=" -START_list(<NCName>)* +START_list(#NCName)* END_list" )? ) | - ( (presentation:style-name="(<NCName>)?" )? + ( (presentation:style-name="(#NCName)?" )? (presentation:class-names=" -START_list(<NCName>)* +START_list(#NCName)* END_list" )? - ) (draw:transform="<string>" )? - (draw:name="<string>" )? + ) (draw:transform="#string" )? + (draw:name="#string" )? ( (table:end-cell-address="string]" )? (table:end-x="string]" )? (table:end-y="string]" )? - ) (table:table-background="<boolean>" )? + ) (table:table-background="#boolean" )? (text:anchor-type="page | frame | paragraph | char | as-char" )? - (text:anchor-page-number="<positiveInteger>" )? - ) (draw:text-style-name="(<NCName>)?" )? - ) (draw:caption-id="<IDREF>" )? + (text:anchor-page-number="#positiveInteger" )? + ) (draw:text-style-name="(#NCName)?" )? + ) (draw:caption-id="#IDREF" )? (<svg:title ... >)? (<svg:desc ... >)? (<office:event-listeners ... >)? @@ -4037,10 +4037,10 @@

draw:marker Element

Child Relations - <draw:marker draw:name="<NCName>" (draw:display-name="<string>" )? + <draw:marker draw:name="#NCName" (draw:display-name="#string" )? svg:viewBox=" -START_list<integer><integer><integer><integer> -END_list" svg:d="<string>" >  +START_list#integer#integer#integer#integer +END_list" svg:d="#string" > 
@@ -4115,30 +4115,30 @@

draw:measure Element

(svg:x1="string]" svg:y1="string]" ) (svg:x2="string]" svg:y2="string]" ) ( - ( (draw:z-index="<nonNegativeInteger>" )? - (draw:id="<ID>" )? - (draw:layer="<string>" )? + ( (draw:z-index="#nonNegativeInteger" )? + (draw:id="#ID" )? + (draw:layer="#string" )? - ( (draw:style-name="(<NCName>)?" )? + ( (draw:style-name="(#NCName)?" )? (draw:class-names=" -START_list(<NCName>)* +START_list(#NCName)* END_list" )? ) | - ( (presentation:style-name="(<NCName>)?" )? + ( (presentation:style-name="(#NCName)?" )? (presentation:class-names=" -START_list(<NCName>)* +START_list(#NCName)* END_list" )? - ) (draw:transform="<string>" )? - (draw:name="<string>" )? + ) (draw:transform="#string" )? + (draw:name="#string" )? ( (table:end-cell-address="string]" )? (table:end-x="string]" )? (table:end-y="string]" )? - ) (table:table-background="<boolean>" )? + ) (table:table-background="#boolean" )? (text:anchor-type="page | frame | paragraph | char | as-char" )? - (text:anchor-page-number="<positiveInteger>" )? - ) (draw:text-style-name="(<NCName>)?" )? - ) (draw:caption-id="<IDREF>" )? + (text:anchor-page-number="#positiveInteger" )? + ) (draw:text-style-name="(#NCName)?" )? + ) (draw:caption-id="#IDREF" )? (<svg:title ... >)? (<svg:desc ... >)? (<office:event-listeners ... >)? @@ -4174,9 +4174,9 @@

draw:object Element

Child Relations - <draw:object (draw:notify-on-update-of-ranges="<string>" )? + <draw:object (draw:notify-on-update-of-ranges="#string" )? - (xlink:href="<anyURI>" (xlink:type="simple" )? + (xlink:href="#anyURI" (xlink:type="simple" )? (xlink:show="embed" )? (xlink:actuate="onLoad" )? ) | <office:document ... > | <math:math ... >>  @@ -4212,7 +4212,7 @@

draw:object-ole Element

Child Relations <draw:object-ole (draw:class-id="TEXT" )? - (xlink:href="<anyURI>" (xlink:type="simple" )? + (xlink:href="#anyURI" (xlink:type="simple" )? (xlink:show="embed" )? (xlink:actuate="onLoad" )? ) | <office:binary-data ... >>  @@ -4249,12 +4249,12 @@

draw:opacity Element

Child Relations - <draw:opacity (draw:name="<NCName>" )? - (draw:display-name="<string>" )? + <draw:opacity (draw:name="#NCName" )? + (draw:display-name="#string" )? draw:style="linear | axial | radial | ellipsoid | square | rectangular" ( (draw:cx="string]" )? (draw:cy="string]" )? - ) (draw:angle="<integer>" )? + ) (draw:angle="#integer" )? (draw:border="string]" )? ( (draw:start="string]" )? @@ -4325,14 +4325,14 @@

draw:page Element

Child Relations - <draw:page (presentation:use-header-name="<string>" )? - (presentation:use-footer-name="<string>" )? - (presentation:use-date-time-name="<string>" )? - (draw:name="<string>" )? - (draw:style-name="(<NCName>)?" )? - draw:master-page-name="(<NCName>)?" (presentation:presentation-page-layout-name="(<NCName>)?" )? - (draw:id="<ID>" )? - (draw:nav-order="<IDREFS>" )? + <draw:page (presentation:use-header-name="#string" )? + (presentation:use-footer-name="#string" )? + (presentation:use-date-time-name="#string" )? + (draw:name="#string" )? + (draw:style-name="(#NCName)?" )? + draw:master-page-name="(#NCName)?" (presentation:presentation-page-layout-name="(#NCName)?" )? + (draw:id="#ID" )? + (draw:nav-order="#IDREFS" )? ( (<office:forms ... >)? )? (<draw:rect ... > | <draw:line ... > | <draw:polyline ... > | <draw:polygon ... > | <draw:regular-polygon ... > | <draw:path ... > | <draw:circle ... > | <draw:ellipse ... > | <draw:g ... > | <draw:page-thumbnail ... > | <draw:frame ... > | <draw:measure ... > | <draw:caption ... > | <draw:connector ... > | <draw:control ... > | <dr3d:scene ... > | <draw:custom-shape ... >)* (<presentation:animations ... > | <anim:animate ... > | <anim:set ... > | <anim:animateMotion ... > | <anim:animateColor ... > | <anim:animateTransform ... > | <anim:transitionFilter ... > | <anim:par ... > | <anim:seq ... > | <anim:iterate ... > | <anim:audio ... > | <anim:command ... >)? @@ -4407,7 +4407,7 @@

draw:page-thumbnail Element

Child Relations - <draw:page-thumbnail (draw:page-number="<positiveInteger>" )? + <draw:page-thumbnail (draw:page-number="#positiveInteger" )? ( (svg:x="string]" )? (svg:y="string]" )? @@ -4415,32 +4415,32 @@

draw:page-thumbnail Element

( (svg:width="string]" )? (svg:height="string]" )? ) (presentation:class="title | outline | subtitle | text | graphic | object | chart | table | orgchart | page | notes | handout | header | footer | date-time | page-number" )? - (presentation:placeholder="<boolean>" )? - (presentation:user-transformed="<boolean>" )? + (presentation:placeholder="#boolean" )? + (presentation:user-transformed="#boolean" )? - ( (draw:z-index="<nonNegativeInteger>" )? - (draw:id="<ID>" )? - (draw:layer="<string>" )? + ( (draw:z-index="#nonNegativeInteger" )? + (draw:id="#ID" )? + (draw:layer="#string" )? - ( (draw:style-name="(<NCName>)?" )? + ( (draw:style-name="(#NCName)?" )? (draw:class-names=" -START_list(<NCName>)* +START_list(#NCName)* END_list" )? ) | - ( (presentation:style-name="(<NCName>)?" )? + ( (presentation:style-name="(#NCName)?" )? (presentation:class-names=" -START_list(<NCName>)* +START_list(#NCName)* END_list" )? - ) (draw:transform="<string>" )? - (draw:name="<string>" )? + ) (draw:transform="#string" )? + (draw:name="#string" )? ( (table:end-cell-address="string]" )? (table:end-x="string]" )? (table:end-y="string]" )? - ) (table:table-background="<boolean>" )? + ) (table:table-background="#boolean" )? (text:anchor-type="page | frame | paragraph | char | as-char" )? - (text:anchor-page-number="<positiveInteger>" )? - ) (draw:caption-id="<IDREF>" )? + (text:anchor-page-number="#positiveInteger" )? + ) (draw:caption-id="#IDREF" )? (<svg:title ... >)? (<svg:desc ... >)? >  @@ -4546,40 +4546,40 @@

draw:path Element

Child Relations - <draw:path svg:d="<string>" + <draw:path svg:d="#string" ( (svg:x="string]" )? (svg:y="string]" )? ) ( (svg:width="string]" )? (svg:height="string]" )? )svg:viewBox=" -START_list<integer><integer><integer><integer> +START_list#integer#integer#integer#integer END_list" ( - ( (draw:z-index="<nonNegativeInteger>" )? - (draw:id="<ID>" )? - (draw:layer="<string>" )? + ( (draw:z-index="#nonNegativeInteger" )? + (draw:id="#ID" )? + (draw:layer="#string" )? - ( (draw:style-name="(<NCName>)?" )? + ( (draw:style-name="(#NCName)?" )? (draw:class-names=" -START_list(<NCName>)* +START_list(#NCName)* END_list" )? ) | - ( (presentation:style-name="(<NCName>)?" )? + ( (presentation:style-name="(#NCName)?" )? (presentation:class-names=" -START_list(<NCName>)* +START_list(#NCName)* END_list" )? - ) (draw:transform="<string>" )? - (draw:name="<string>" )? + ) (draw:transform="#string" )? + (draw:name="#string" )? ( (table:end-cell-address="string]" )? (table:end-x="string]" )? (table:end-y="string]" )? - ) (table:table-background="<boolean>" )? + ) (table:table-background="#boolean" )? (text:anchor-type="page | frame | paragraph | char | as-char" )? - (text:anchor-page-number="<positiveInteger>" )? - ) (draw:text-style-name="(<NCName>)?" )? - ) (draw:caption-id="<IDREF>" )? + (text:anchor-page-number="#positiveInteger" )? + ) (draw:text-style-name="(#NCName)?" )? + ) (draw:caption-id="#IDREF" )? (<svg:title ... >)? (<svg:desc ... >)? (<office:event-listeners ... >)? @@ -4616,7 +4616,7 @@

draw:plugin Element

Child Relations <draw:plugin (draw:mime-type="TEXT" )? - (xlink:href="<anyURI>" (xlink:type="simple" )? + (xlink:href="#anyURI" (xlink:type="simple" )? (xlink:show="embed" )? (xlink:actuate="onLoad" )? )(<draw:param ... >)* >  @@ -4699,33 +4699,33 @@

draw:polygon Element

( (svg:width="string]" )? (svg:height="string]" )? )svg:viewBox=" -START_list<integer><integer><integer><integer> +START_list#integer#integer#integer#integer END_list" ( - ( (draw:z-index="<nonNegativeInteger>" )? - (draw:id="<ID>" )? - (draw:layer="<string>" )? + ( (draw:z-index="#nonNegativeInteger" )? + (draw:id="#ID" )? + (draw:layer="#string" )? - ( (draw:style-name="(<NCName>)?" )? + ( (draw:style-name="(#NCName)?" )? (draw:class-names=" -START_list(<NCName>)* +START_list(#NCName)* END_list" )? ) | - ( (presentation:style-name="(<NCName>)?" )? + ( (presentation:style-name="(#NCName)?" )? (presentation:class-names=" -START_list(<NCName>)* +START_list(#NCName)* END_list" )? - ) (draw:transform="<string>" )? - (draw:name="<string>" )? + ) (draw:transform="#string" )? + (draw:name="#string" )? ( (table:end-cell-address="string]" )? (table:end-x="string]" )? (table:end-y="string]" )? - ) (table:table-background="<boolean>" )? + ) (table:table-background="#boolean" )? (text:anchor-type="page | frame | paragraph | char | as-char" )? - (text:anchor-page-number="<positiveInteger>" )? - ) (draw:text-style-name="(<NCName>)?" )? - ) (draw:caption-id="<IDREF>" )? + (text:anchor-page-number="#positiveInteger" )? + ) (draw:text-style-name="(#NCName)?" )? + ) (draw:caption-id="#IDREF" )? (<svg:title ... >)? (<svg:desc ... >)? (<office:event-listeners ... >)? @@ -4809,33 +4809,33 @@

draw:polyline Element

( (svg:width="string]" )? (svg:height="string]" )? )svg:viewBox=" -START_list<integer><integer><integer><integer> +START_list#integer#integer#integer#integer END_list" ( - ( (draw:z-index="<nonNegativeInteger>" )? - (draw:id="<ID>" )? - (draw:layer="<string>" )? + ( (draw:z-index="#nonNegativeInteger" )? + (draw:id="#ID" )? + (draw:layer="#string" )? - ( (draw:style-name="(<NCName>)?" )? + ( (draw:style-name="(#NCName)?" )? (draw:class-names=" -START_list(<NCName>)* +START_list(#NCName)* END_list" )? ) | - ( (presentation:style-name="(<NCName>)?" )? + ( (presentation:style-name="(#NCName)?" )? (presentation:class-names=" -START_list(<NCName>)* +START_list(#NCName)* END_list" )? - ) (draw:transform="<string>" )? - (draw:name="<string>" )? + ) (draw:transform="#string" )? + (draw:name="#string" )? ( (table:end-cell-address="string]" )? (table:end-x="string]" )? (table:end-y="string]" )? - ) (table:table-background="<boolean>" )? + ) (table:table-background="#boolean" )? (text:anchor-type="page | frame | paragraph | char | as-char" )? - (text:anchor-page-number="<positiveInteger>" )? - ) (draw:text-style-name="(<NCName>)?" )? - ) (draw:caption-id="<IDREF>" )? + (text:anchor-page-number="#positiveInteger" )? + ) (draw:text-style-name="(#NCName)?" )? + ) (draw:caption-id="#IDREF" )? (<svg:title ... >)? (<svg:desc ... >)? (<office:event-listeners ... >)? @@ -4920,30 +4920,30 @@

draw:rect Element

(svg:height="string]" )? ) ( - ( (draw:z-index="<nonNegativeInteger>" )? - (draw:id="<ID>" )? - (draw:layer="<string>" )? + ( (draw:z-index="#nonNegativeInteger" )? + (draw:id="#ID" )? + (draw:layer="#string" )? - ( (draw:style-name="(<NCName>)?" )? + ( (draw:style-name="(#NCName)?" )? (draw:class-names=" -START_list(<NCName>)* +START_list(#NCName)* END_list" )? ) | - ( (presentation:style-name="(<NCName>)?" )? + ( (presentation:style-name="(#NCName)?" )? (presentation:class-names=" -START_list(<NCName>)* +START_list(#NCName)* END_list" )? - ) (draw:transform="<string>" )? - (draw:name="<string>" )? + ) (draw:transform="#string" )? + (draw:name="#string" )? ( (table:end-cell-address="string]" )? (table:end-x="string]" )? (table:end-y="string]" )? - ) (table:table-background="<boolean>" )? + ) (table:table-background="#boolean" )? (text:anchor-type="page | frame | paragraph | char | as-char" )? - (text:anchor-page-number="<positiveInteger>" )? - ) (draw:text-style-name="(<NCName>)?" )? - ) (draw:caption-id="<IDREF>" )? + (text:anchor-page-number="#positiveInteger" )? + ) (draw:text-style-name="(#NCName)?" )? + ) (draw:caption-id="#IDREF" )? (<svg:title ... >)? (<svg:desc ... >)? (<office:event-listeners ... >)? @@ -5023,7 +5023,7 @@

draw:regular-polygon Element Child Relations <draw:regular-polygon draw:concave="false" | - (draw:concave="true" draw:sharpness="string]" )draw:corners="<positiveInteger>" + (draw:concave="true" draw:sharpness="string]" )draw:corners="#positiveInteger" ( (svg:x="string]" )? (svg:y="string]" )? ) @@ -5031,30 +5031,30 @@

draw:regular-polygon Element<nonNegativeInteger>" )? - (draw:id="<ID>" )? - (draw:layer="<string>" )? + ( (draw:z-index="#nonNegativeInteger" )? + (draw:id="#ID" )? + (draw:layer="#string" )? - ( (draw:style-name="(<NCName>)?" )? + ( (draw:style-name="(#NCName)?" )? (draw:class-names=" -START_list(<NCName>)* +START_list(#NCName)* END_list" )? ) | - ( (presentation:style-name="(<NCName>)?" )? + ( (presentation:style-name="(#NCName)?" )? (presentation:class-names=" -START_list(<NCName>)* +START_list(#NCName)* END_list" )? - ) (draw:transform="<string>" )? - (draw:name="<string>" )? + ) (draw:transform="#string" )? + (draw:name="#string" )? ( (table:end-cell-address="string]" )? (table:end-x="string]" )? (table:end-y="string]" )? - ) (table:table-background="<boolean>" )? + ) (table:table-background="#boolean" )? (text:anchor-type="page | frame | paragraph | char | as-char" )? - (text:anchor-page-number="<positiveInteger>" )? - ) (draw:text-style-name="(<NCName>)?" )? - ) (draw:caption-id="<IDREF>" )? + (text:anchor-page-number="#positiveInteger" )? + ) (draw:text-style-name="(#NCName)?" )? + ) (draw:caption-id="#IDREF" )? (<svg:title ... >)? (<svg:desc ... >)? (<office:event-listeners ... >)? @@ -5091,12 +5091,12 @@

draw:stroke-dash Element

Child Relations - <draw:stroke-dash draw:name="<NCName>" (draw:display-name="<string>" )? + <draw:stroke-dash draw:name="#NCName" (draw:display-name="#string" )? (draw:style="rect | round" )? - ( (draw:dots1="<integer>" )? + ( (draw:dots1="#integer" )? (draw:dots1-length="string]" )? - (draw:dots2="<integer>" )? + (draw:dots2="#integer" )? (draw:dots2-length="string]" )? ) (draw:distance="string]" )? >  @@ -5166,7 +5166,7 @@

draw:text-box Element

Child Relations - <draw:text-box (draw:chain-next-name="<string>" )? + <draw:text-box (draw:chain-next-name="#string" )? (draw:corner-radius="string]" )? ( (fo:min-height="string] | string]" )? @@ -5174,7 +5174,7 @@

draw:text-box Element

) ( (fo:max-height="string] | string]" )? (fo:max-width="string] | string]" )? - ) (text:id="<string>" )? + ) (text:id="#string" )? (<text:h ... > | <text:p ... > | <text:list ... > | <text:numbered-paragraph ... > | <table:table ... > | <draw:a ... > | <text:section ... > | <text:soft-page-break ... > | <text:table-of-content ... > | <text:illustration-index ... > | <text:table-index ... > | <text:object-index ... > | <text:user-index ... > | <text:alphabetical-index ... > | <text:bibliography ... > | <draw:rect ... > | <draw:line ... > | <draw:polyline ... > | <draw:polygon ... > | <draw:regular-polygon ... > | <draw:path ... > | <draw:circle ... > | <draw:ellipse ... > | <draw:g ... > | <draw:page-thumbnail ... > | <draw:frame ... > | <draw:measure ... > | <draw:caption ... > | <draw:connector ... > | <draw:control ... > | <dr3d:scene ... > | <draw:custom-shape ... > | <text:change ... > | <text:change-start ... > | <text:change-end ... >)* >  @@ -5226,26 +5226,26 @@

form:button Element

Child Relations <form:button ( - ( (form:name="<string>" )? + ( (form:name="#string" )? (form:control-implementation="string]" )? - form:id="<ID>" (xforms:bind="<string>" )? + form:id="#ID" (xforms:bind="#string" )? ) (form:button-type="submit | reset | push | url" )? - (form:disabled="<boolean>" )? - (form:label="<string>" )? - (form:image-data="<anyURI>" )? - (form:printable="<boolean>" )? - (form:tab-index="<nonNegativeInteger>" )? - (form:tab-stop="<boolean>" )? - (office:target-frame="_self | _blank | _parent | _top | <string>" )? - (xlink:href="<anyURI>" )? + (form:disabled="#boolean" )? + (form:label="#string" )? + (form:image-data="#anyURI" )? + (form:printable="#boolean" )? + (form:tab-index="#nonNegativeInteger" )? + (form:tab-stop="#boolean" )? + (office:target-frame="_self | _blank | _parent | _top | #string" )? + (xlink:href="#anyURI" )? (form:title="TEXT" )? - (form:value="<string>" )? + (form:value="#string" )? form:image-position="center" | EMPTY | (form:image-position="start | end | top | bottom" (form:image-align="start | center | end" )? - )) (form:default-button="<boolean>" )? - (form:toggle="<boolean>" )? - (form:focus-on-click="<boolean>" )? - (form:xforms-submission="<string>" )? + )) (form:default-button="#boolean" )? + (form:toggle="#boolean" )? + (form:focus-on-click="#boolean" )? + (form:xforms-submission="#string" )? ( (<form:properties ... >)? (<office:event-listeners ... >)? @@ -5298,22 +5298,22 @@

form:checkbox Element

Child Relations <form:checkbox ( - ( (form:name="<string>" )? + ( (form:name="#string" )? (form:control-implementation="string]" )? - form:id="<ID>" (xforms:bind="<string>" )? - ) (form:disabled="<boolean>" )? - (form:label="<string>" )? - (form:printable="<boolean>" )? - (form:tab-index="<nonNegativeInteger>" )? - (form:tab-stop="<boolean>" )? + form:id="#ID" (xforms:bind="#string" )? + ) (form:disabled="#boolean" )? + (form:label="#string" )? + (form:printable="#boolean" )? + (form:tab-index="#nonNegativeInteger" )? + (form:tab-stop="#boolean" )? (form:title="TEXT" )? - (form:value="<string>" )? - (form:data-field="<string>" )? + (form:value="#string" )? + (form:data-field="#string" )? (form:visual-effect="flat | 3d" )? form:image-position="center" | EMPTY | (form:image-position="start | end | top | bottom" (form:image-align="start | center | end" )? )) (form:current-state="unchecked | checked | unknown" )? - (form:is-tristate="<boolean>" )? + (form:is-tristate="#boolean" )? (form:state="unchecked | checked | unknown" )? ( (<form:properties ... >)? @@ -5356,10 +5356,10 @@

form:column Element

Child Relations <form:column - ( (form:name="<string>" )? + ( (form:name="#string" )? (form:control-implementation="string]" )? - (form:label="<string>" )? - (form:text-style-name="(<NCName>)?" )? + (form:label="#string" )? + (form:text-style-name="(#NCName)?" )? )(<form:text ... > | <form:textarea ... > | <form:formatted-text ... > | <form:number ... > | <form:date ... > | <form:combobox ... > | <form:listbox ... > | <form:checkbox ... >)+ >  @@ -5411,25 +5411,25 @@

form:combobox Element

Child Relations <form:combobox ( - ( (form:name="<string>" )? + ( (form:name="#string" )? (form:control-implementation="string]" )? - form:id="<ID>" (xforms:bind="<string>" )? - ) (form:current-value="<string>" )? - (form:disabled="<boolean>" )? - (form:dropdown="<boolean>" )? - (form:max-length="<nonNegativeInteger>" )? - (form:printable="<boolean>" )? - (form:readonly="<boolean>" )? - (form:size="<nonNegativeInteger>" )? - (form:tab-index="<nonNegativeInteger>" )? - (form:tab-stop="<boolean>" )? + form:id="#ID" (xforms:bind="#string" )? + ) (form:current-value="#string" )? + (form:disabled="#boolean" )? + (form:dropdown="#boolean" )? + (form:max-length="#nonNegativeInteger" )? + (form:printable="#boolean" )? + (form:readonly="#boolean" )? + (form:size="#nonNegativeInteger" )? + (form:tab-index="#nonNegativeInteger" )? + (form:tab-stop="#boolean" )? (form:title="TEXT" )? - (form:value="<string>" )? - (form:convert-empty-to-null="<boolean>" )? - (form:data-field="<string>" )? - (form:list-source="<string>" )? + (form:value="#string" )? + (form:convert-empty-to-null="#boolean" )? + (form:data-field="#string" )? + (form:list-source="#string" )? (form:list-source-type="table | query | sql | sql-pass-through | value-list | table-fields" )? - ) (form:auto-complete="<boolean>" )? + ) (form:auto-complete="#boolean" )? ( (<form:properties ... >)? (<office:event-listeners ... >)? @@ -5464,7 +5464,7 @@

form:connection-resource Elemen Child Relations - <form:connection-resource xlink:href="<anyURI>" >  + <form:connection-resource xlink:href="#anyURI" > 
@@ -5509,24 +5509,24 @@

form:date Element

Child Relations - <form:date (form:value="<date>" )? - (form:current-value="<date>" )? - (form:min-value="<date>" )? - (form:max-value="<date>" )? + <form:date (form:value="#date" )? + (form:current-value="#date" )? + (form:min-value="#date" )? + (form:max-value="#date" )? ( - ( (form:name="<string>" )? + ( (form:name="#string" )? (form:control-implementation="string]" )? - form:id="<ID>" (xforms:bind="<string>" )? - ) (form:disabled="<boolean>" )? - (form:max-length="<nonNegativeInteger>" )? - (form:printable="<boolean>" )? - (form:readonly="<boolean>" )? - (form:tab-index="<nonNegativeInteger>" )? - (form:tab-stop="<boolean>" )? + form:id="#ID" (xforms:bind="#string" )? + ) (form:disabled="#boolean" )? + (form:max-length="#nonNegativeInteger" )? + (form:printable="#boolean" )? + (form:readonly="#boolean" )? + (form:tab-index="#nonNegativeInteger" )? + (form:tab-stop="#boolean" )? (form:title="TEXT" )? - (form:convert-empty-to-null="<boolean>" )? - (form:data-field="<string>" )? + (form:convert-empty-to-null="#boolean" )? + (form:data-field="#string" )? ) ( (<form:properties ... >)? (<office:event-listeners ... >)? @@ -5572,18 +5572,18 @@

form:file Element

Child Relations <form:file ( - ( (form:name="<string>" )? + ( (form:name="#string" )? (form:control-implementation="string]" )? - form:id="<ID>" (xforms:bind="<string>" )? - ) (form:current-value="<string>" )? - (form:disabled="<boolean>" )? - (form:max-length="<nonNegativeInteger>" )? - (form:printable="<boolean>" )? - (form:readonly="<boolean>" )? - (form:tab-index="<nonNegativeInteger>" )? - (form:tab-stop="<boolean>" )? + form:id="#ID" (xforms:bind="#string" )? + ) (form:current-value="#string" )? + (form:disabled="#boolean" )? + (form:max-length="#nonNegativeInteger" )? + (form:printable="#boolean" )? + (form:readonly="#boolean" )? + (form:tab-index="#nonNegativeInteger" )? + (form:tab-stop="#boolean" )? (form:title="TEXT" )? - (form:value="<string>" )? + (form:value="#string" )? ) ( (<form:properties ... >)? (<office:event-listeners ... >)? @@ -5626,15 +5626,15 @@

form:fixed-text Element

Child Relations <form:fixed-text ( - ( (form:name="<string>" )? + ( (form:name="#string" )? (form:control-implementation="string]" )? - form:id="<ID>" (xforms:bind="<string>" )? - ) (form:for="<string>" )? - (form:disabled="<boolean>" )? - (form:label="<string>" )? - (form:printable="<boolean>" )? + form:id="#ID" (xforms:bind="#string" )? + ) (form:for="#string" )? + (form:disabled="#boolean" )? + (form:label="#string" )? + (form:printable="#boolean" )? (form:title="TEXT" )? - ) (form:multi-line="<boolean>" )? + ) (form:multi-line="#boolean" )? ( (<form:properties ... >)? (<office:event-listeners ... >)? @@ -5712,28 +5712,28 @@

form:form Element

Child Relations - <form:form (form:name="<string>" )? + <form:form (form:name="#string" )? (form:control-implementation="string]" )? - (xlink:href="<anyURI>" (xlink:type="simple" )? + (xlink:href="#anyURI" (xlink:type="simple" )? (xlink:actuate="onRequest" )? )? - (office:target-frame="_self | _blank | _parent | _top | <string>" )? - (form:method="get | post | <string>" )? - (form:enctype="<string>" )? - (form:allow-deletes="<boolean>" )? - (form:allow-inserts="<boolean>" )? - (form:allow-updates="<boolean>" )? - (form:apply-filter="<boolean>" )? + (office:target-frame="_self | _blank | _parent | _top | #string" )? + (form:method="get | post | #string" )? + (form:enctype="#string" )? + (form:allow-deletes="#boolean" )? + (form:allow-inserts="#boolean" )? + (form:allow-updates="#boolean" )? + (form:apply-filter="#boolean" )? (form:command-type="table | query | command" )? (form:command="TEXT" )? - (form:datasource="<anyURI> | <string>" )? - (form:master-fields="<string>" )? - (form:detail-fields="<string>" )? - (form:escape-processing="<boolean>" )? - (form:filter="<string>" )? - (form:ignore-result="<boolean>" )? + (form:datasource="#anyURI | #string" )? + (form:master-fields="#string" )? + (form:detail-fields="#string" )? + (form:escape-processing="#boolean" )? + (form:filter="#string" )? + (form:ignore-result="#boolean" )? (form:navigation-mode="none | current | parent" )? - (form:order="<string>" )? + (form:order="#string" )? (form:tab-cycle="records | current | page" )? (<form:properties ... >)? (<office:event-listeners ... >)? @@ -5786,23 +5786,23 @@

form:formatted-text Element

Child Relations <form:formatted-text ( - ( (form:name="<string>" )? + ( (form:name="#string" )? (form:control-implementation="string]" )? - form:id="<ID>" (xforms:bind="<string>" )? - ) (form:current-value="<string>" )? - (form:disabled="<boolean>" )? - (form:max-length="<nonNegativeInteger>" )? - (form:printable="<boolean>" )? - (form:readonly="<boolean>" )? - (form:tab-index="<nonNegativeInteger>" )? - (form:tab-stop="<boolean>" )? + form:id="#ID" (xforms:bind="#string" )? + ) (form:current-value="#string" )? + (form:disabled="#boolean" )? + (form:max-length="#nonNegativeInteger" )? + (form:printable="#boolean" )? + (form:readonly="#boolean" )? + (form:tab-index="#nonNegativeInteger" )? + (form:tab-stop="#boolean" )? (form:title="TEXT" )? - (form:value="<string>" )? - (form:convert-empty-to-null="<boolean>" )? - (form:data-field="<string>" )? - ) (form:max-value="<string>" )? - (form:min-value="<string>" )? - (form:validation="<boolean>" )? + (form:value="#string" )? + (form:convert-empty-to-null="#boolean" )? + (form:data-field="#string" )? + ) (form:max-value="#string" )? + (form:min-value="#string" )? + (form:validation="#boolean" )? ( (<form:properties ... >)? (<office:event-listeners ... >)? @@ -5844,13 +5844,13 @@

form:frame Element

Child Relations <form:frame ( - ( (form:name="<string>" )? + ( (form:name="#string" )? (form:control-implementation="string]" )? - form:id="<ID>" (xforms:bind="<string>" )? - ) (form:disabled="<boolean>" )? - (form:for="<string>" )? - (form:label="<string>" )? - (form:printable="<boolean>" )? + form:id="#ID" (xforms:bind="#string" )? + ) (form:disabled="#boolean" )? + (form:for="#string" )? + (form:label="#string" )? + (form:printable="#boolean" )? (form:title="TEXT" )? ) ( (<form:properties ... >)? @@ -5887,9 +5887,9 @@

form:generic-control Element Child Relations <form:generic-control - ( (form:name="<string>" )? + ( (form:name="#string" )? (form:control-implementation="string]" )? - form:id="<ID>" (xforms:bind="<string>" )? + form:id="#ID" (xforms:bind="#string" )? ) ( (<form:properties ... >)? (<office:event-listeners ... >)? @@ -5932,13 +5932,13 @@

form:grid Element

Child Relations <form:grid ( - ( (form:name="<string>" )? + ( (form:name="#string" )? (form:control-implementation="string]" )? - form:id="<ID>" (xforms:bind="<string>" )? - ) (form:disabled="<boolean>" )? - (form:printable="<boolean>" )? - (form:tab-index="<nonNegativeInteger>" )? - (form:tab-stop="<boolean>" )? + form:id="#ID" (xforms:bind="#string" )? + ) (form:disabled="#boolean" )? + (form:printable="#boolean" )? + (form:tab-index="#nonNegativeInteger" )? + (form:tab-stop="#boolean" )? (form:title="TEXT" )? ) ( (<form:properties ... >)? @@ -5977,10 +5977,10 @@

form:hidden Element

Child Relations <form:hidden ( - ( (form:name="<string>" )? + ( (form:name="#string" )? (form:control-implementation="string]" )? - form:id="<ID>" (xforms:bind="<string>" )? - ) (form:value="<string>" )? + form:id="#ID" (xforms:bind="#string" )? + ) (form:value="#string" )? ) ( (<form:properties ... >)? (<office:event-listeners ... >)? @@ -6027,19 +6027,19 @@

form:image Element

Child Relations <form:image ( - ( (form:name="<string>" )? + ( (form:name="#string" )? (form:control-implementation="string]" )? - form:id="<ID>" (xforms:bind="<string>" )? + form:id="#ID" (xforms:bind="#string" )? ) (form:button-type="submit | reset | push | url" )? - (form:disabled="<boolean>" )? - (form:image-data="<anyURI>" )? - (form:printable="<boolean>" )? - (form:tab-index="<nonNegativeInteger>" )? - (form:tab-stop="<boolean>" )? - (office:target-frame="_self | _blank | _parent | _top | <string>" )? - (xlink:href="<anyURI>" )? + (form:disabled="#boolean" )? + (form:image-data="#anyURI" )? + (form:printable="#boolean" )? + (form:tab-index="#nonNegativeInteger" )? + (form:tab-stop="#boolean" )? + (office:target-frame="_self | _blank | _parent | _top | #string" )? + (xlink:href="#anyURI" )? (form:title="TEXT" )? - (form:value="<string>" )? + (form:value="#string" )? ) ( (<form:properties ... >)? (<office:event-listeners ... >)? @@ -6082,15 +6082,15 @@

form:image-frame Element

Child Relations <form:image-frame ( - ( (form:name="<string>" )? + ( (form:name="#string" )? (form:control-implementation="string]" )? - form:id="<ID>" (xforms:bind="<string>" )? - ) (form:disabled="<boolean>" )? - (form:image-data="<anyURI>" )? - (form:printable="<boolean>" )? - (form:readonly="<boolean>" )? + form:id="#ID" (xforms:bind="#string" )? + ) (form:disabled="#boolean" )? + (form:image-data="#anyURI" )? + (form:printable="#boolean" )? + (form:readonly="#boolean" )? (form:title="TEXT" )? - (form:data-field="<string>" )? + (form:data-field="#string" )? ) ( (<form:properties ... >)? (<office:event-listeners ... >)? @@ -6121,7 +6121,7 @@

form:item Element

Child Relations - <form:item (form:label="<string>" )? + <form:item (form:label="#string" )? TEXT>  @@ -6163,7 +6163,7 @@

form:list-property Element

Child Relations - <form:list-property form:property-name="<string>" + <form:list-property form:property-name="#string" (office:value-type="float" (<form:list-value ... >)* ) | (office:value-type="percentage" (<form:list-value ... >)* ) | (office:value-type="currency" (<form:list-value ... >)* ) | @@ -6198,7 +6198,7 @@

form:list-value[1] Element

Child Relations - <form:list-value office:value="<double>" (office:currency="<string>" )? + <form:list-value office:value="#double" (office:currency="#string" )? >  @@ -6226,7 +6226,7 @@

form:list-value[2] Element

Child Relations - <form:list-value office:date-value="<date> | <dateTime>" >  + <form:list-value office:date-value="#date | #dateTime" > 
@@ -6253,7 +6253,7 @@

form:list-value[3] Element

Child Relations - <form:list-value office:string-value="<string>" >  + <form:list-value office:string-value="#string" > 
@@ -6280,7 +6280,7 @@

form:list-value[4] Element

Child Relations - <form:list-value office:time-value="<duration>" >  + <form:list-value office:time-value="#duration" > 
@@ -6307,7 +6307,7 @@

form:list-value[5] Element

Child Relations - <form:list-value office:value="<double>" >  + <form:list-value office:value="#double" > 
@@ -6334,7 +6334,7 @@

form:list-value[6] Element

Child Relations - <form:list-value office:boolean-value="<boolean>" >  + <form:list-value office:boolean-value="#boolean" > 
@@ -6361,7 +6361,7 @@

form:list-value[7] Element

Child Relations - <form:list-value office:value="<double>" >  + <form:list-value office:value="#double" > 
@@ -6409,22 +6409,22 @@

form:listbox Element

Child Relations <form:listbox ( - ( (form:name="<string>" )? + ( (form:name="#string" )? (form:control-implementation="string]" )? - form:id="<ID>" (xforms:bind="<string>" )? - ) (form:disabled="<boolean>" )? - (form:dropdown="<boolean>" )? - (form:printable="<boolean>" )? - (form:size="<nonNegativeInteger>" )? - (form:tab-index="<nonNegativeInteger>" )? - (form:tab-stop="<boolean>" )? + form:id="#ID" (xforms:bind="#string" )? + ) (form:disabled="#boolean" )? + (form:dropdown="#boolean" )? + (form:printable="#boolean" )? + (form:size="#nonNegativeInteger" )? + (form:tab-index="#nonNegativeInteger" )? + (form:tab-stop="#boolean" )? (form:title="TEXT" )? - (form:bound-column="<string>" )? - (form:data-field="<string>" )? - (form:list-source="<string>" )? + (form:bound-column="#string" )? + (form:data-field="#string" )? + (form:list-source="#string" )? (form:list-source-type="table | query | sql | sql-pass-through | value-list | table-fields" )? - ) (form:multiple="<boolean>" )? - (form:xforms-list-source="<string>" )? + ) (form:multiple="#boolean" )? + (form:xforms-list-source="#string" )? ( (<form:properties ... >)? (<office:event-listeners ... >)? @@ -6473,24 +6473,24 @@

form:number Element

Child Relations - <form:number (form:value="<double>" )? - (form:current-value="<double>" )? - (form:min-value="<double>" )? - (form:max-value="<double>" )? + <form:number (form:value="#double" )? + (form:current-value="#double" )? + (form:min-value="#double" )? + (form:max-value="#double" )? ( - ( (form:name="<string>" )? + ( (form:name="#string" )? (form:control-implementation="string]" )? - form:id="<ID>" (xforms:bind="<string>" )? - ) (form:disabled="<boolean>" )? - (form:max-length="<nonNegativeInteger>" )? - (form:printable="<boolean>" )? - (form:readonly="<boolean>" )? - (form:tab-index="<nonNegativeInteger>" )? - (form:tab-stop="<boolean>" )? + form:id="#ID" (xforms:bind="#string" )? + ) (form:disabled="#boolean" )? + (form:max-length="#nonNegativeInteger" )? + (form:printable="#boolean" )? + (form:readonly="#boolean" )? + (form:tab-index="#nonNegativeInteger" )? + (form:tab-stop="#boolean" )? (form:title="TEXT" )? - (form:convert-empty-to-null="<boolean>" )? - (form:data-field="<string>" )? + (form:convert-empty-to-null="#boolean" )? + (form:data-field="#string" )? ) ( (<form:properties ... >)? (<office:event-listeners ... >)? @@ -6525,10 +6525,10 @@

form:option Element

Child Relations <form:option - ( (form:current-selected="<boolean>" )? - (form:selected="<boolean>" )? - (form:label="<string>" )? - (form:value="<string>" )? + ( (form:current-selected="#boolean" )? + (form:selected="#boolean" )? + (form:label="#string" )? + (form:value="#string" )? )TEXT>  @@ -6571,17 +6571,17 @@

form:password Element

Child Relations <form:password ( - ( (form:name="<string>" )? + ( (form:name="#string" )? (form:control-implementation="string]" )? - form:id="<ID>" (xforms:bind="<string>" )? - ) (form:disabled="<boolean>" )? - (form:max-length="<nonNegativeInteger>" )? - (form:printable="<boolean>" )? - (form:tab-index="<nonNegativeInteger>" )? - (form:tab-stop="<boolean>" )? + form:id="#ID" (xforms:bind="#string" )? + ) (form:disabled="#boolean" )? + (form:max-length="#nonNegativeInteger" )? + (form:printable="#boolean" )? + (form:tab-index="#nonNegativeInteger" )? + (form:tab-stop="#boolean" )? (form:title="TEXT" )? - (form:value="<string>" )? - (form:convert-empty-to-null="<boolean>" )? + (form:value="#string" )? + (form:convert-empty-to-null="#boolean" )? ) (form:echo-char="string]" )? ( (<form:properties ... >)? @@ -6674,15 +6674,15 @@

form:property Element

Child Relations - <form:property form:property-name="<string>" - (office:value-type="float" office:value="<double>" ) | - (office:value-type="percentage" office:value="<double>" ) | - (office:value-type="currency" office:value="<double>" (office:currency="<string>" )? + <form:property form:property-name="#string" + (office:value-type="float" office:value="#double" ) | + (office:value-type="percentage" office:value="#double" ) | + (office:value-type="currency" office:value="#double" (office:currency="#string" )? ) | - (office:value-type="date" office:date-value="<date> | <dateTime>" ) | - (office:value-type="time" office:time-value="<duration>" ) | - (office:value-type="boolean" office:boolean-value="<boolean>" ) | - (office:value-type="string" (office:string-value="<string>" )? + (office:value-type="date" office:date-value="#date | #dateTime" ) | + (office:value-type="time" office:time-value="#duration" ) | + (office:value-type="boolean" office:boolean-value="#boolean" ) | + (office:value-type="string" (office:string-value="#string" )? ) | office:value-type="void" >  @@ -6730,19 +6730,19 @@

form:radio Element

Child Relations <form:radio ( - ( (form:name="<string>" )? + ( (form:name="#string" )? (form:control-implementation="string]" )? - form:id="<ID>" (xforms:bind="<string>" )? - ) (form:current-selected="<boolean>" )? - (form:disabled="<boolean>" )? - (form:label="<string>" )? - (form:printable="<boolean>" )? - (form:selected="<boolean>" )? - (form:tab-index="<nonNegativeInteger>" )? - (form:tab-stop="<boolean>" )? + form:id="#ID" (xforms:bind="#string" )? + ) (form:current-selected="#boolean" )? + (form:disabled="#boolean" )? + (form:label="#string" )? + (form:printable="#boolean" )? + (form:selected="#boolean" )? + (form:tab-index="#nonNegativeInteger" )? + (form:tab-stop="#boolean" )? (form:title="TEXT" )? - (form:value="<string>" )? - (form:data-field="<string>" )? + (form:value="#string" )? + (form:data-field="#string" )? (form:visual-effect="flat | 3d" )? form:image-position="center" | EMPTY | (form:image-position="start | end | top | bottom" (form:image-align="start | center | end" )? @@ -6794,20 +6794,20 @@

form:text Element

Child Relations <form:text ( - ( (form:name="<string>" )? + ( (form:name="#string" )? (form:control-implementation="string]" )? - form:id="<ID>" (xforms:bind="<string>" )? - ) (form:current-value="<string>" )? - (form:disabled="<boolean>" )? - (form:max-length="<nonNegativeInteger>" )? - (form:printable="<boolean>" )? - (form:readonly="<boolean>" )? - (form:tab-index="<nonNegativeInteger>" )? - (form:tab-stop="<boolean>" )? + form:id="#ID" (xforms:bind="#string" )? + ) (form:current-value="#string" )? + (form:disabled="#boolean" )? + (form:max-length="#nonNegativeInteger" )? + (form:printable="#boolean" )? + (form:readonly="#boolean" )? + (form:tab-index="#nonNegativeInteger" )? + (form:tab-stop="#boolean" )? (form:title="TEXT" )? - (form:value="<string>" )? - (form:convert-empty-to-null="<boolean>" )? - (form:data-field="<string>" )? + (form:value="#string" )? + (form:convert-empty-to-null="#boolean" )? + (form:data-field="#string" )? ) ( (<form:properties ... >)? (<office:event-listeners ... >)? @@ -6857,20 +6857,20 @@

form:textarea Element

Child Relations <form:textarea ( - ( (form:name="<string>" )? + ( (form:name="#string" )? (form:control-implementation="string]" )? - form:id="<ID>" (xforms:bind="<string>" )? - ) (form:current-value="<string>" )? - (form:disabled="<boolean>" )? - (form:max-length="<nonNegativeInteger>" )? - (form:printable="<boolean>" )? - (form:readonly="<boolean>" )? - (form:tab-index="<nonNegativeInteger>" )? - (form:tab-stop="<boolean>" )? + form:id="#ID" (xforms:bind="#string" )? + ) (form:current-value="#string" )? + (form:disabled="#boolean" )? + (form:max-length="#nonNegativeInteger" )? + (form:printable="#boolean" )? + (form:readonly="#boolean" )? + (form:tab-index="#nonNegativeInteger" )? + (form:tab-stop="#boolean" )? (form:title="TEXT" )? - (form:value="<string>" )? - (form:convert-empty-to-null="<boolean>" )? - (form:data-field="<string>" )? + (form:value="#string" )? + (form:convert-empty-to-null="#boolean" )? + (form:data-field="#string" )? ) ( (<form:properties ... >)? (<office:event-listeners ... >)? @@ -6918,24 +6918,24 @@

form:time Element

Child Relations - <form:time (form:value="<time>" )? - (form:current-value="<time>" )? - (form:min-value="<time>" )? - (form:max-value="<time>" )? + <form:time (form:value="#time" )? + (form:current-value="#time" )? + (form:min-value="#time" )? + (form:max-value="#time" )? ( - ( (form:name="<string>" )? + ( (form:name="#string" )? (form:control-implementation="string]" )? - form:id="<ID>" (xforms:bind="<string>" )? - ) (form:disabled="<boolean>" )? - (form:max-length="<nonNegativeInteger>" )? - (form:printable="<boolean>" )? - (form:readonly="<boolean>" )? - (form:tab-index="<nonNegativeInteger>" )? - (form:tab-stop="<boolean>" )? + form:id="#ID" (xforms:bind="#string" )? + ) (form:disabled="#boolean" )? + (form:max-length="#nonNegativeInteger" )? + (form:printable="#boolean" )? + (form:readonly="#boolean" )? + (form:tab-index="#nonNegativeInteger" )? + (form:tab-stop="#boolean" )? (form:title="TEXT" )? - (form:convert-empty-to-null="<boolean>" )? - (form:data-field="<string>" )? + (form:convert-empty-to-null="#boolean" )? + (form:data-field="#string" )? ) ( (<form:properties ... >)? (<office:event-listeners ... >)? @@ -6984,20 +6984,20 @@

form:value-range Element

Child Relations <form:value-range ( - ( (form:name="<string>" )? + ( (form:name="#string" )? (form:control-implementation="string]" )? - form:id="<ID>" (xforms:bind="<string>" )? - ) (form:disabled="<boolean>" )? - (form:printable="<boolean>" )? - (form:tab-index="<nonNegativeInteger>" )? - (form:tab-stop="<boolean>" )? + form:id="#ID" (xforms:bind="#string" )? + ) (form:disabled="#boolean" )? + (form:printable="#boolean" )? + (form:tab-index="#nonNegativeInteger" )? + (form:tab-stop="#boolean" )? (form:title="TEXT" )? - (form:value="<string>" )? - ) (form:max-value="<string>" )? - (form:min-value="<string>" )? - (form:step-size="<positiveInteger>" )? - (form:page-step-size="<positiveInteger>" )? - (form:delay-for-repeat="<duration>" )? + (form:value="#string" )? + ) (form:max-value="#string" )? + (form:min-value="#string" )? + (form:step-size="#positiveInteger" )? + (form:page-step-size="#positiveInteger" )? + (form:delay-for-repeat="#duration" )? (form:orientation="horizontal | vertical" )? ( (<form:properties ... >)? @@ -7055,7 +7055,7 @@

meta:date-string Element

Child Relations - <meta:date-string <string>>  + <meta:date-string #string
@@ -7145,11 +7145,11 @@

number:boolean-style Element Child Relations - <number:boolean-style style:name="<NCName>" (number:language="token]" )? + <number:boolean-style style:name="#NCName" (number:language="token]" )? (number:country="token]" )? (number:title="TEXT" )? - (style:volatile="<boolean>" )? - (number:transliteration-format="<string>" )? + (style:volatile="#boolean" )? + (number:transliteration-format="#string" )? (number:transliteration-language="token]" )? (number:transliteration-country="token]" )? (number:transliteration-style="short | medium | long" )? @@ -7198,15 +7198,15 @@

number:currency-style Element< Child Relations - <number:currency-style style:name="<NCName>" (number:language="token]" )? + <number:currency-style style:name="#NCName" (number:language="token]" )? (number:country="token]" )? (number:title="TEXT" )? - (style:volatile="<boolean>" )? - (number:transliteration-format="<string>" )? + (style:volatile="#boolean" )? + (number:transliteration-format="#string" )? (number:transliteration-language="token]" )? (number:transliteration-country="token]" )? (number:transliteration-style="short | medium | long" )? - (number:automatic-order="<boolean>" )? + (number:automatic-order="#boolean" )? (<style:text-properties ... >)? (<number:text ... >)? ( @@ -7304,15 +7304,15 @@

number:date-style Element

Child Relations - <number:date-style style:name="<NCName>" (number:language="token]" )? + <number:date-style style:name="#NCName" (number:language="token]" )? (number:country="token]" )? (number:title="TEXT" )? - (style:volatile="<boolean>" )? - (number:transliteration-format="<string>" )? + (style:volatile="#boolean" )? + (number:transliteration-format="#string" )? (number:transliteration-language="token]" )? (number:transliteration-country="token]" )? (number:transliteration-style="short | medium | long" )? - (number:automatic-order="<boolean>" )? + (number:automatic-order="#boolean" )? (number:format-source="fixed | language" )? (<style:text-properties ... >)? (<number:text ... >)? @@ -7345,7 +7345,7 @@

number:day Element

Child Relations <number:day (number:style="short | long" )? - (number:calendar="gregorian | gengou | ROC | hanja_yoil | hanja | hijri | jewish | buddhist | <string>" )? + (number:calendar="gregorian | gengou | ROC | hanja_yoil | hanja | hijri | jewish | buddhist | #string" )? >  @@ -7374,7 +7374,7 @@

number:day-of-week Element

Child Relations <number:day-of-week (number:style="short | long" )? - (number:calendar="gregorian | gengou | ROC | hanja_yoil | hanja | hijri | jewish | buddhist | <string>" )? + (number:calendar="gregorian | gengou | ROC | hanja_yoil | hanja | hijri | jewish | buddhist | #string" )? >  @@ -7402,7 +7402,7 @@

number:embedded-text Element Child Relations - <number:embedded-text number:position="<integer>" TEXT>  + <number:embedded-text number:position="#integer" TEXT> 
@@ -7430,7 +7430,7 @@

number:era Element

Child Relations <number:era (number:style="short | long" )? - (number:calendar="gregorian | gengou | ROC | hanja_yoil | hanja | hijri | jewish | buddhist | <string>" )? + (number:calendar="gregorian | gengou | ROC | hanja_yoil | hanja | hijri | jewish | buddhist | #string" )? >  @@ -7461,11 +7461,11 @@

number:fraction Element

Child Relations - <number:fraction (number:min-numerator-digits="<integer>" )? - (number:min-denominator-digits="<integer>" )? - (number:denominator-value="<integer>" )? - (number:min-integer-digits="<integer>" )? - (number:grouping="<boolean>" )? + <number:fraction (number:min-numerator-digits="#integer" )? + (number:min-denominator-digits="#integer" )? + (number:denominator-value="#integer" )? + (number:min-integer-digits="#integer" )? + (number:grouping="#boolean" )? >  @@ -7551,10 +7551,10 @@

number:month Element

Child Relations - <number:month (number:textual="<boolean>" )? - (number:possessive-form="<boolean>" )? + <number:month (number:textual="#boolean" )? + (number:possessive-form="#boolean" )? (number:style="short | long" )? - (number:calendar="gregorian | gengou | ROC | hanja_yoil | hanja | hijri | jewish | buddhist | <string>" )? + (number:calendar="gregorian | gengou | ROC | hanja_yoil | hanja | hijri | jewish | buddhist | #string" )? >  @@ -7589,10 +7589,10 @@

number:number Element

Child Relations <number:number (number:decimal-replacement="TEXT" )? - (number:display-factor="<double>" )? - (number:decimal-places="<integer>" )? - (number:min-integer-digits="<integer>" )? - (number:grouping="<boolean>" )? + (number:display-factor="#double" )? + (number:decimal-places="#integer" )? + (number:min-integer-digits="#integer" )? + (number:grouping="#boolean" )? (<number:embedded-text ... >)* >  @@ -7634,11 +7634,11 @@

number:number-style Element

Child Relations - <number:number-style style:name="<NCName>" (number:language="token]" )? + <number:number-style style:name="#NCName" (number:language="token]" )? (number:country="token]" )? (number:title="TEXT" )? - (style:volatile="<boolean>" )? - (number:transliteration-format="<string>" )? + (style:volatile="#boolean" )? + (number:transliteration-format="#string" )? (number:transliteration-language="token]" )? (number:transliteration-country="token]" )? (number:transliteration-style="short | medium | long" )? @@ -7685,11 +7685,11 @@

number:percentage-style Element< Child Relations - <number:percentage-style style:name="<NCName>" (number:language="token]" )? + <number:percentage-style style:name="#NCName" (number:language="token]" )? (number:country="token]" )? (number:title="TEXT" )? - (style:volatile="<boolean>" )? - (number:transliteration-format="<string>" )? + (style:volatile="#boolean" )? + (number:transliteration-format="#string" )? (number:transliteration-language="token]" )? (number:transliteration-country="token]" )? (number:transliteration-style="short | medium | long" )? @@ -7726,7 +7726,7 @@

number:quarter Element

Child Relations <number:quarter (number:style="short | long" )? - (number:calendar="gregorian | gengou | ROC | hanja_yoil | hanja | hijri | jewish | buddhist | <string>" )? + (number:calendar="gregorian | gengou | ROC | hanja_yoil | hanja | hijri | jewish | buddhist | #string" )? >  @@ -7756,10 +7756,10 @@

number:scientific-number Elemen Child Relations - <number:scientific-number (number:min-exponent-digits="<integer>" )? - (number:decimal-places="<integer>" )? - (number:min-integer-digits="<integer>" )? - (number:grouping="<boolean>" )? + <number:scientific-number (number:min-exponent-digits="#integer" )? + (number:decimal-places="#integer" )? + (number:min-integer-digits="#integer" )? + (number:grouping="#boolean" )? >  @@ -7789,7 +7789,7 @@

number:seconds Element

Child Relations <number:seconds (number:style="short | long" )? - (number:decimal-places="<integer>" )? + (number:decimal-places="#integer" )? >  @@ -7886,11 +7886,11 @@

number:text-style Element

Child Relations - <number:text-style style:name="<NCName>" (number:language="token]" )? + <number:text-style style:name="#NCName" (number:language="token]" )? (number:country="token]" )? (number:title="TEXT" )? - (style:volatile="<boolean>" )? - (number:transliteration-format="<string>" )? + (style:volatile="#boolean" )? + (number:transliteration-format="#string" )? (number:transliteration-language="token]" )? (number:transliteration-country="token]" )? (number:transliteration-style="short | medium | long" )? @@ -7941,12 +7941,12 @@

number:time-style Element

Child Relations - <number:time-style (number:truncate-on-overflow="<boolean>" )? - style:name="<NCName>" (number:language="token]" )? + <number:time-style (number:truncate-on-overflow="#boolean" )? + style:name="#NCName" (number:language="token]" )? (number:country="token]" )? (number:title="TEXT" )? - (style:volatile="<boolean>" )? - (number:transliteration-format="<string>" )? + (style:volatile="#boolean" )? + (number:transliteration-format="#string" )? (number:transliteration-language="token]" )? (number:transliteration-country="token]" )? (number:transliteration-style="short | medium | long" )? @@ -7980,7 +7980,7 @@

number:week-of-year Element

Child Relations - <number:week-of-year (number:calendar="gregorian | gengou | ROC | hanja_yoil | hanja | hijri | jewish | buddhist | <string>" )? + <number:week-of-year (number:calendar="gregorian | gengou | ROC | hanja_yoil | hanja | hijri | jewish | buddhist | #string" )? >  @@ -8009,7 +8009,7 @@

number:year Element

Child Relations <number:year (number:style="short | long" )? - (number:calendar="gregorian | gengou | ROC | hanja_yoil | hanja | hijri | jewish | buddhist | <string>" )? + (number:calendar="gregorian | gengou | ROC | hanja_yoil | hanja | hijri | jewish | buddhist | #string" )? >  @@ -8070,7 +8070,7 @@

office:annotation Element

Child Relations - <office:annotation (office:display="<boolean>" )? + <office:annotation (office:display="#boolean" )? (draw:caption-point-x="string]" draw:caption-point-y="string]" )? (draw:corner-radius="string]" )? @@ -8081,29 +8081,29 @@

office:annotation Element

(svg:height="string]" )? ) ( - ( (draw:z-index="<nonNegativeInteger>" )? - (draw:id="<ID>" )? - (draw:layer="<string>" )? + ( (draw:z-index="#nonNegativeInteger" )? + (draw:id="#ID" )? + (draw:layer="#string" )? - ( (draw:style-name="(<NCName>)?" )? + ( (draw:style-name="(#NCName)?" )? (draw:class-names=" -START_list(<NCName>)* +START_list(#NCName)* END_list" )? ) | - ( (presentation:style-name="(<NCName>)?" )? + ( (presentation:style-name="(#NCName)?" )? (presentation:class-names=" -START_list(<NCName>)* +START_list(#NCName)* END_list" )? - ) (draw:transform="<string>" )? - (draw:name="<string>" )? + ) (draw:transform="#string" )? + (draw:name="#string" )? ( (table:end-cell-address="string]" )? (table:end-x="string]" )? (table:end-y="string]" )? - ) (table:table-background="<boolean>" )? + ) (table:table-background="#boolean" )? (text:anchor-type="page | frame | paragraph | char | as-char" )? - (text:anchor-page-number="<positiveInteger>" )? - ) (draw:text-style-name="(<NCName>)?" )? + (text:anchor-page-number="#positiveInteger" )? + ) (draw:text-style-name="(#NCName)?" )? ) (<dc:creator ... >)? (<dc:date ... >)? (<meta:date-string ... >)? @@ -8171,7 +8171,7 @@

office:binary-data Element

Child Relations - <office:binary-data <base64Binary>>  + <office:binary-data #base64Binary
@@ -8326,9 +8326,9 @@

office:dde-source Element

Child Relations - <office:dde-source (office:name="<string>" )? + <office:dde-source (office:name="#string" )? (office:conversion-mode="into-default-style-data-style | into-english-number | keep-text" )? - office:dde-application="<string>" office:dde-topic="<string>" office:dde-item="<string>" (office:automatic-update="<boolean>" )? + office:dde-application="#string" office:dde-topic="#string" office:dde-item="#string" (office:automatic-update="#boolean" )? >  @@ -8364,7 +8364,7 @@

office:document Element

Child Relations - <office:document office:mimetype="<string>" (office:version="<string>" )? + <office:document office:mimetype="#string" (office:version="#string" )? (<office:meta ... >)? (<office:settings ... >)? (<office:scripts ... >)? @@ -8401,7 +8401,7 @@

office:document-content Element< Child Relations - <office:document-content (office:version="<string>" )? + <office:document-content (office:version="#string" )? (<office:scripts ... >)? (<office:font-face-decls ... >)? (<office:automatic-styles ... >)? @@ -8431,7 +8431,7 @@

office:document-meta Element Child Relations - <office:document-meta (office:version="<string>" )? + <office:document-meta (office:version="#string" )? (<office:meta ... >)? >  @@ -8459,7 +8459,7 @@

office:document-settings Elemen Child Relations - <office:document-settings (office:version="<string>" )? + <office:document-settings (office:version="#string" )? (<office:settings ... >)? >  @@ -8490,7 +8490,7 @@

office:document-styles Element Child Relations - <office:document-styles (office:version="<string>" )? + <office:document-styles (office:version="#string" )? (<office:font-face-decls ... >)? (<office:styles ... >)? (<office:automatic-styles ... >)? @@ -8681,8 +8681,8 @@

office:forms Element

Child Relations - <office:forms (form:automatic-focus="<boolean>" )? - (form:apply-design-mode="<boolean>" )? + <office:forms (form:automatic-focus="#boolean" )? + (form:apply-design-mode="#boolean" )? (<form:form ... > | <xforms:model ... >)* >  @@ -8856,7 +8856,7 @@

office:script Element

Child Relations - <office:script script:language="<string>" (<*:* ... >)* >  + <office:script script:language="#string" (<*:* ... >)*
@@ -8955,8 +8955,8 @@

office:spreadsheet Element

Child Relations <office:spreadsheet - ( (table:structure-protected="<boolean>" )? - (table:protection-key="<string>" )? + ( (table:structure-protected="#boolean" )? + (table:protection-key="#string" )? ) ( (<table:tracked-changes ... >)? @@ -9105,8 +9105,8 @@

office:text Element

Child Relations - <office:text (text:global="<boolean>" )? - (text:use-soft-page-breaks="<boolean>" )? + <office:text (text:global="#boolean" )? + (text:use-soft-page-breaks="#boolean" )? ( (<office:forms ... >)? (<text:tracked-changes ... >)? @@ -9248,7 +9248,7 @@

presentation:date-time-decl Child Relations - <presentation:date-time-decl presentation:name="<string>" presentation:source="fixed | current-date" (style:data-style-name="(<NCName>)?" )? + <presentation:date-time-decl presentation:name="#string" presentation:source="fixed | current-date" (style:data-style-name="(#NCName)?" )? TEXT>  @@ -9278,7 +9278,7 @@

presentation:dim Element

Child Relations - <presentation:dim draw:shape-id="<IDREF>" draw:color="string]" (<presentation:sound ... >)? + <presentation:dim draw:shape-id="#IDREF" draw:color="string]" (<presentation:sound ... >)? >  @@ -9316,16 +9316,16 @@

presentation:event-listener Child Relations - <presentation:event-listener script:event-name="<string>" presentation:action="none | previous-page | next-page | first-page | last-page | hide | stop | execute | show | verb | fade-out | sound" (presentation:effect="none | fade | move | stripes | open | close | dissolve | wavyline | random | lines | laser | appear | hide | move-short | checkerboard | rotate | stretch" )? + <presentation:event-listener script:event-name="#string" presentation:action="none | previous-page | next-page | first-page | last-page | hide | stop | execute | show | verb | fade-out | sound" (presentation:effect="none | fade | move | stripes | open | close | dissolve | wavyline | random | lines | laser | appear | hide | move-short | checkerboard | rotate | stretch" )? (presentation:direction="none | from-left | from-top | from-right | from-bottom | from-center | from-upper-left | from-upper-right | from-lower-left | from-lower-right | to-left | to-top | to-right | to-bottom | to-upper-left | to-upper-right | to-lower-right | to-lower-left | path | spiral-inward-left | spiral-inward-right | spiral-outward-left | spiral-outward-right | vertical | horizontal | to-center | clockwise | counter-clockwise" )? (presentation:speed="slow | medium | fast" )? (presentation:start-scale="string]" )? - ( (xlink:href="<anyURI>" )? + ( (xlink:href="#anyURI" )? (xlink:type="simple" )? (xlink:show="embed" )? (xlink:actuate="onRequest" )? - ) (presentation:verb="<nonNegativeInteger>" )? + ) (presentation:verb="#nonNegativeInteger" )? (<presentation:sound ... >)? >  @@ -9383,7 +9383,7 @@

presentation:footer-decl Elemen Child Relations - <presentation:footer-decl presentation:name="<string>" TEXT>  + <presentation:footer-decl presentation:name="#string" TEXT> 
@@ -9439,7 +9439,7 @@

presentation:header-decl Elemen Child Relations - <presentation:header-decl presentation:name="<string>" TEXT>  + <presentation:header-decl presentation:name="#string" TEXT> 
@@ -9473,10 +9473,10 @@

presentation:hide-shape Element< Child Relations - <presentation:hide-shape draw:shape-id="<IDREF>" (presentation:effect="none | fade | move | stripes | open | close | dissolve | wavyline | random | lines | laser | appear | hide | move-short | checkerboard | rotate | stretch" )? + <presentation:hide-shape draw:shape-id="#IDREF" (presentation:effect="none | fade | move | stripes | open | close | dissolve | wavyline | random | lines | laser | appear | hide | move-short | checkerboard | rotate | stretch" )? (presentation:direction="none | from-left | from-top | from-right | from-bottom | from-center | from-upper-left | from-upper-right | from-lower-left | from-lower-right | to-left | to-top | to-right | to-bottom | to-upper-left | to-upper-right | to-lower-right | to-lower-left | path | spiral-inward-left | spiral-inward-right | spiral-outward-left | spiral-outward-right | vertical | horizontal | to-center | clockwise | counter-clockwise" )? (presentation:speed="slow | medium | fast" )? - (presentation:delay="<duration>" )? + (presentation:delay="#duration" )? (presentation:start-scale="string]" )? (presentation:path-id="TEXT" )? (<presentation:sound ... >)? @@ -9514,10 +9514,10 @@

presentation:hide-text Element Child Relations - <presentation:hide-text draw:shape-id="<IDREF>" (presentation:effect="none | fade | move | stripes | open | close | dissolve | wavyline | random | lines | laser | appear | hide | move-short | checkerboard | rotate | stretch" )? + <presentation:hide-text draw:shape-id="#IDREF" (presentation:effect="none | fade | move | stripes | open | close | dissolve | wavyline | random | lines | laser | appear | hide | move-short | checkerboard | rotate | stretch" )? (presentation:direction="none | from-left | from-top | from-right | from-bottom | from-center | from-upper-left | from-upper-right | from-lower-left | from-lower-right | to-left | to-top | to-right | to-bottom | to-upper-left | to-upper-right | to-lower-right | to-lower-left | path | spiral-inward-left | spiral-inward-right | spiral-outward-left | spiral-outward-right | vertical | horizontal | to-center | clockwise | counter-clockwise" )? (presentation:speed="slow | medium | fast" )? - (presentation:delay="<duration>" )? + (presentation:delay="#duration" )? (presentation:start-scale="string]" )? (presentation:path-id="TEXT" )? (<presentation:sound ... >)? @@ -9570,11 +9570,11 @@

presentation:notes Element

Child Relations - <presentation:notes (presentation:use-header-name="<string>" )? - (presentation:use-footer-name="<string>" )? - (presentation:use-date-time-name="<string>" )? - (style:page-layout-name="(<NCName>)?" )? - (draw:style-name="(<NCName>)?" )? + <presentation:notes (presentation:use-header-name="#string" )? + (presentation:use-footer-name="#string" )? + (presentation:use-date-time-name="#string" )? + (style:page-layout-name="(#NCName)?" )? + (draw:style-name="(#NCName)?" )? (<office:forms ... >)? (<draw:rect ... > | <draw:line ... > | <draw:polyline ... > | <draw:polygon ... > | <draw:regular-polygon ... > | <draw:path ... > | <draw:circle ... > | <draw:ellipse ... > | <draw:g ... > | <draw:page-thumbnail ... > | <draw:frame ... > | <draw:measure ... > | <draw:caption ... > | <draw:connector ... > | <draw:control ... > | <dr3d:scene ... > | <draw:custom-shape ... >)* >  @@ -9635,7 +9635,7 @@

presentation:play Element

Child Relations <presentation:play - (draw:shape-id="<IDREF>" (presentation:speed="slow | medium | fast" )? + (draw:shape-id="#IDREF" (presentation:speed="slow | medium | fast" )? )>  @@ -9676,20 +9676,20 @@

presentation:settings Element< Child Relations - <presentation:settings (presentation:start-page="<string>" )? - (presentation:show="<string>" )? - (presentation:full-screen="<boolean>" )? - (presentation:endless="<boolean>" )? - (presentation:pause="<duration>" )? - (presentation:show-logo="<boolean>" )? - (presentation:force-manual="<boolean>" )? - (presentation:mouse-visible="<boolean>" )? - (presentation:mouse-as-pen="<boolean>" )? - (presentation:start-with-navigator="<boolean>" )? + <presentation:settings (presentation:start-page="#string" )? + (presentation:show="#string" )? + (presentation:full-screen="#boolean" )? + (presentation:endless="#boolean" )? + (presentation:pause="#duration" )? + (presentation:show-logo="#boolean" )? + (presentation:force-manual="#boolean" )? + (presentation:mouse-visible="#boolean" )? + (presentation:mouse-as-pen="#boolean" )? + (presentation:start-with-navigator="#boolean" )? (presentation:animations="enabled | disabled" )? (presentation:transition-on-click="enabled | disabled" )? - (presentation:stay-on-top="<boolean>" )? - (presentation:show-end-of-presentation-slide="<boolean>" )? + (presentation:stay-on-top="#boolean" )? + (presentation:show-end-of-presentation-slide="#boolean" )? (<presentation:show ... >)* >  @@ -9717,7 +9717,7 @@

presentation:show Element

Child Relations - <presentation:show presentation:name="<string>" presentation:pages="TEXT" >  + <presentation:show presentation:name="#string" presentation:pages="TEXT" > 
@@ -9751,10 +9751,10 @@

presentation:show-shape Element< Child Relations - <presentation:show-shape draw:shape-id="<IDREF>" (presentation:effect="none | fade | move | stripes | open | close | dissolve | wavyline | random | lines | laser | appear | hide | move-short | checkerboard | rotate | stretch" )? + <presentation:show-shape draw:shape-id="#IDREF" (presentation:effect="none | fade | move | stripes | open | close | dissolve | wavyline | random | lines | laser | appear | hide | move-short | checkerboard | rotate | stretch" )? (presentation:direction="none | from-left | from-top | from-right | from-bottom | from-center | from-upper-left | from-upper-right | from-lower-left | from-lower-right | to-left | to-top | to-right | to-bottom | to-upper-left | to-upper-right | to-lower-right | to-lower-left | path | spiral-inward-left | spiral-inward-right | spiral-outward-left | spiral-outward-right | vertical | horizontal | to-center | clockwise | counter-clockwise" )? (presentation:speed="slow | medium | fast" )? - (presentation:delay="<duration>" )? + (presentation:delay="#duration" )? (presentation:start-scale="string]" )? (presentation:path-id="TEXT" )? (<presentation:sound ... >)? @@ -9792,10 +9792,10 @@

presentation:show-text Element Child Relations - <presentation:show-text draw:shape-id="<IDREF>" (presentation:effect="none | fade | move | stripes | open | close | dissolve | wavyline | random | lines | laser | appear | hide | move-short | checkerboard | rotate | stretch" )? + <presentation:show-text draw:shape-id="#IDREF" (presentation:effect="none | fade | move | stripes | open | close | dissolve | wavyline | random | lines | laser | appear | hide | move-short | checkerboard | rotate | stretch" )? (presentation:direction="none | from-left | from-top | from-right | from-bottom | from-center | from-upper-left | from-upper-right | from-lower-left | from-lower-right | to-left | to-top | to-right | to-bottom | to-upper-left | to-upper-right | to-lower-right | to-lower-left | path | spiral-inward-left | spiral-inward-right | spiral-outward-left | spiral-outward-right | vertical | horizontal | to-center | clockwise | counter-clockwise" )? (presentation:speed="slow | medium | fast" )? - (presentation:delay="<duration>" )? + (presentation:delay="#duration" )? (presentation:start-scale="string]" )? (presentation:path-id="TEXT" )? (<presentation:sound ... >)? @@ -9834,8 +9834,8 @@

presentation:sound Element

Child Relations - <presentation:sound (presentation:play-full="<boolean>" )? - xlink:href="<anyURI>" (xlink:type="simple" )? + <presentation:sound (presentation:play-full="#boolean" )? + xlink:href="#anyURI" (xlink:type="simple" )? (xlink:actuate="onRequest" )? (xlink:show="new | replace" )? >  @@ -9869,8 +9869,8 @@

script:event-listener Element< Child Relations - <script:event-listener script:event-name="<string>" script:language="<string>" script:macro-name="<string>" | - (xlink:href="<anyURI>" (xlink:type="simple" )? + <script:event-listener script:event-name="#string" script:language="#string" script:macro-name="#string" | + (xlink:href="#anyURI" (xlink:type="simple" )? (xlink:actuate="onRequest" )? )>  @@ -10073,40 +10073,40 @@

style:font-face Element

Child Relations <style:font-face - ( (svg:font-family="<string>" )? + ( (svg:font-family="#string" )? (svg:font-style="normal | italic | oblique" )? (svg:font-variant="normal | small-caps" )? (svg:font-weight="normal | bold | 100 | 200 | 300 | 400 | 500 | 600 | 700 | 800 | 900" )? (svg:font-stretch="normal | ultra-condensed | extra-condensed | condensed | semi-condensed | semi-expanded | expanded | extra-expanded | ultra-expanded" )? (svg:font-size="string]" )? (svg:unicode-range="TEXT" )? - (svg:units-per-em="<integer>" )? + (svg:units-per-em="#integer" )? (svg:panose-1="TEXT" )? - (svg:stemv="<integer>" )? - (svg:stemh="<integer>" )? - (svg:slope="<integer>" )? - (svg:cap-height="<integer>" )? - (svg:x-height="<integer>" )? - (svg:accent-height="<integer>" )? - (svg:ascent="<integer>" )? - (svg:descent="<integer>" )? + (svg:stemv="#integer" )? + (svg:stemh="#integer" )? + (svg:slope="#integer" )? + (svg:cap-height="#integer" )? + (svg:x-height="#integer" )? + (svg:accent-height="#integer" )? + (svg:ascent="#integer" )? + (svg:descent="#integer" )? (svg:widths="TEXT" )? (svg:bbox="TEXT" )? - (svg:ideographic="<integer>" )? - (svg:alphabetic="<integer>" )? - (svg:mathematical="<integer>" )? - (svg:hanging="<integer>" )? - (svg:v-ideographic="<integer>" )? - (svg:v-alphabetic="<integer>" )? - (svg:v-mathematical="<integer>" )? - (svg:v-hanging="<integer>" )? - (svg:underline-position="<integer>" )? - (svg:underline-thickness="<integer>" )? - (svg:strikethrough-position="<integer>" )? - (svg:strikethrough-thickness="<integer>" )? - (svg:overline-position="<integer>" )? - (svg:overline-thickness="<integer>" )? - )style:name="<string>" (style:font-adornments="<string>" )? + (svg:ideographic="#integer" )? + (svg:alphabetic="#integer" )? + (svg:mathematical="#integer" )? + (svg:hanging="#integer" )? + (svg:v-ideographic="#integer" )? + (svg:v-alphabetic="#integer" )? + (svg:v-mathematical="#integer" )? + (svg:v-hanging="#integer" )? + (svg:underline-position="#integer" )? + (svg:underline-thickness="#integer" )? + (svg:strikethrough-position="#integer" )? + (svg:strikethrough-thickness="#integer" )? + (svg:overline-position="#integer" )? + (svg:overline-thickness="#integer" )? + )style:name="#string" (style:font-adornments="#string" )? (style:font-family-generic="roman | swiss | modern | decorative | script | system" )? (style:font-pitch="fixed | variable" )? (style:font-charset="string]" )? @@ -10163,7 +10163,7 @@

style:footer Element

Child Relations - <style:footer (style:display="<boolean>" )? + <style:footer (style:display="#boolean" )? ( (<text:tracked-changes ... >)? @@ -10227,7 +10227,7 @@

style:footer-left Element

Child Relations - <style:footer-left (style:display="<boolean>" )? + <style:footer-left (style:display="#boolean" )? ( (<text:tracked-changes ... >)? @@ -10344,11 +10344,11 @@

style:handout-master Element Child Relations - <style:handout-master (presentation:use-header-name="<string>" )? - (presentation:use-footer-name="<string>" )? - (presentation:use-date-time-name="<string>" )? - (presentation:presentation-page-layout-name="(<NCName>)?" )? - style:page-layout-name="(<NCName>)?" (draw:style-name="(<NCName>)?" )? + <style:handout-master (presentation:use-header-name="#string" )? + (presentation:use-footer-name="#string" )? + (presentation:use-date-time-name="#string" )? + (presentation:presentation-page-layout-name="(#NCName)?" )? + style:page-layout-name="(#NCName)?" (draw:style-name="(#NCName)?" )? (<draw:rect ... > | <draw:line ... > | <draw:polyline ... > | <draw:polygon ... > | <draw:regular-polygon ... > | <draw:path ... > | <draw:circle ... > | <draw:ellipse ... > | <draw:g ... > | <draw:page-thumbnail ... > | <draw:frame ... > | <draw:measure ... > | <draw:caption ... > | <draw:connector ... > | <draw:control ... > | <dr3d:scene ... > | <draw:custom-shape ... >)* >  @@ -10400,7 +10400,7 @@

style:header Element

Child Relations - <style:header (style:display="<boolean>" )? + <style:header (style:display="#boolean" )? ( (<text:tracked-changes ... >)? @@ -10493,7 +10493,7 @@

style:header-left Element

Child Relations - <style:header-left (style:display="<boolean>" )? + <style:header-left (style:display="#boolean" )? ( (<text:tracked-changes ... >)? @@ -10599,7 +10599,7 @@

style:map Element

Child Relations - <style:map style:condition="<string>" style:apply-style-name="(<NCName>)?" (style:base-cell-address="string]" )? + <style:map style:condition="#string" style:apply-style-name="(#NCName)?" (style:base-cell-address="string]" )? >  @@ -10654,9 +10654,9 @@

style:master-page Element

Child Relations - <style:master-page style:name="<NCName>" (style:display-name="<string>" )? - style:page-layout-name="(<NCName>)?" (draw:style-name="(<NCName>)?" )? - (style:next-style-name="(<NCName>)?" )? + <style:master-page style:name="#NCName" (style:display-name="#string" )? + style:page-layout-name="(#NCName)?" (draw:style-name="(#NCName)?" )? + (style:next-style-name="(#NCName)?" )? (<style:header ... > (<style:header-left ... >)? )? (<style:footer ... > (<style:footer-left ... >)? @@ -10694,7 +10694,7 @@

style:page-layout Element

Child Relations - <style:page-layout style:name="<NCName>" (style:page-usage="all | left | right | mirrored" )? + <style:page-layout style:name="#NCName" (style:page-usage="all | left | right | mirrored" )? (<style:page-layout-properties ... >)? (<style:header-style ... >)? (<style:footer-style ... >)? @@ -10783,7 +10783,7 @@

style:presentation-page-l Child Relations - <style:presentation-page-layout style:name="<NCName>" (style:display-name="<string>" )? + <style:presentation-page-layout style:name="#NCName" (style:display-name="#string" )? (<presentation:placeholder ... >)* >  @@ -10989,15 +10989,15 @@

style:style Element

Child Relations - <style:style style:name="<NCName>" (style:display-name="<string>" )? - (style:parent-style-name="(<NCName>)?" )? - (style:next-style-name="(<NCName>)?" )? - (style:list-style-name="(<NCName>)?" )? - (style:master-page-name="(<NCName>)?" )? - (style:auto-update="<boolean>" )? - (style:data-style-name="(<NCName>)?" )? - (style:class="<string>" )? - (style:default-outline-level="<positiveInteger>" )? + <style:style style:name="#NCName" (style:display-name="#string" )? + (style:parent-style-name="(#NCName)?" )? + (style:next-style-name="(#NCName)?" )? + (style:list-style-name="(#NCName)?" )? + (style:master-page-name="(#NCName)?" )? + (style:auto-update="#boolean" )? + (style:data-style-name="(#NCName)?" )? + (style:class="#string" )? + (style:default-outline-level="#positiveInteger" )? (style:family="text" (<style:text-properties ... >)? ) | @@ -11212,7 +11212,7 @@

svg:definition-src Element

Child Relations <svg:definition-src - (xlink:href="<anyURI>" (xlink:type="simple" )? + (xlink:href="#anyURI" (xlink:type="simple" )? (xlink:actuate="onRequest" )? )>  @@ -11371,7 +11371,7 @@

svg:font-face-uri Element

Child Relations <svg:font-face-uri - (xlink:href="<anyURI>" (xlink:type="simple" )? + (xlink:href="#anyURI" (xlink:type="simple" )? (xlink:actuate="onRequest" )? )(<svg:font-face-format ... >)* >  @@ -11410,9 +11410,9 @@

svg:linearGradient Element

Child Relations <svg:linearGradient ( (svg:gradientUnits="objectBoundingBox" )? - (svg:gradientTransform="<string>" )? + (svg:gradientTransform="#string" )? (svg:spreadMethod="pad | reflect | repeat" )? - )draw:name="<NCName>" (draw:display-name="<string>" )? + )draw:name="#NCName" (draw:display-name="#string" )? (svg:x1="string] | string]" )? (svg:y1="string] | string]" )? (svg:x2="string] | string]" )? @@ -11455,9 +11455,9 @@

svg:radialGradient Element

Child Relations <svg:radialGradient ( (svg:gradientUnits="objectBoundingBox" )? - (svg:gradientTransform="<string>" )? + (svg:gradientTransform="#string" )? (svg:spreadMethod="pad | reflect | repeat" )? - )draw:name="<NCName>" (draw:display-name="<string>" )? + )draw:name="#NCName" (draw:display-name="#string" )? (svg:cx="string] | string]" )? (svg:cy="string] | string]" )? (svg:r="string] | string]" )? @@ -11492,8 +11492,8 @@

svg:stop Element

Child Relations - <svg:stop svg:offset="<double> | string]" (svg:stop-color="string]" )? - (svg:stop-opacity="<double>" )? + <svg:stop svg:offset="#double | string]" (svg:stop-color="string]" )? + (svg:stop-opacity="#double" )? >  @@ -11577,12 +11577,12 @@

table:calculation-settings El Child Relations - <table:calculation-settings (table:case-sensitive="<boolean>" )? - (table:precision-as-shown="<boolean>" )? - (table:search-criteria-must-apply-to-whole-cell="<boolean>" )? - (table:automatic-find-labels="<boolean>" )? - (table:use-regular-expressions="<boolean>" )? - (table:null-year="<positiveInteger>" )? + <table:calculation-settings (table:case-sensitive="#boolean" )? + (table:precision-as-shown="#boolean" )? + (table:search-criteria-must-apply-to-whole-cell="#boolean" )? + (table:automatic-find-labels="#boolean" )? + (table:use-regular-expressions="#boolean" )? + (table:null-year="#positiveInteger" )? (<table:null-date ... >)? (<table:iteration ... >)? >  @@ -11615,7 +11615,7 @@

table:cell-address Element

Child Relations <table:cell-address - (table:column="<integer>" table:row="<integer>" table:table="<integer>" )>  + (table:column="#integer" table:row="#integer" table:table="#integer" )> 
@@ -11648,8 +11648,8 @@

table:cell-content-change Elem Child Relations - <table:cell-content-change table:id="<string>" (table:acceptance-state="accepted | rejected | pending" )? - (table:rejecting-change-id="<string>" )? + <table:cell-content-change table:id="#string" (table:acceptance-state="accepted | rejected | pending" )? + (table:rejecting-change-id="#string" )? <table:cell-address ... ><office:change-info ... > (<table:dependencies ... >)? (<table:deletions ... >)? <table:previous ... >>  @@ -11680,7 +11680,7 @@

table:cell-content-deletion Child Relations - <table:cell-content-deletion (table:id="<string>" )? + <table:cell-content-deletion (table:id="#string" )? (<table:cell-address ... >)? (<table:change-track-table-cell ... >)? >  @@ -11718,13 +11718,13 @@

table:cell-range-source Element< Child Relations - <table:cell-range-source table:name="<string>" - (table:last-column-spanned="<positiveInteger>" table:last-row-spanned="<positiveInteger>" ) + <table:cell-range-source table:name="#string" + (table:last-column-spanned="#positiveInteger" table:last-row-spanned="#positiveInteger" ) ( (xlink:type="simple" )? (xlink:actuate="onRequest" )? - xlink:href="<anyURI>" ) (table:filter-name="<string>" )? - (table:filter-options="<string>" )? - (table:refresh-delay="<duration>" )? + xlink:href="#anyURI" ) (table:filter-name="#string" )? + (table:filter-options="#string" )? + (table:refresh-delay="#duration" )? >  @@ -11751,7 +11751,7 @@

table:change-deletion Element< Child Relations - <table:change-deletion (table:id="<string>" )? + <table:change-deletion (table:id="#string" )? >  @@ -11798,20 +11798,20 @@

table:change-track-table-c Child Relations <table:change-track-table-cell (table:cell-address="string]" )? - (table:matrix-covered="<boolean>" )? + (table:matrix-covered="#boolean" )? - ( (table:formula="<string>" )? - (table:number-matrix-columns-spanned="<positiveInteger>" )? - (table:number-matrix-rows-spanned="<positiveInteger>" )? + ( (table:formula="#string" )? + (table:number-matrix-columns-spanned="#positiveInteger" )? + (table:number-matrix-rows-spanned="#positiveInteger" )? ( - (office:value-type="float" office:value="<double>" ) | - (office:value-type="percentage" office:value="<double>" ) | - (office:value-type="currency" office:value="<double>" (office:currency="<string>" )? + (office:value-type="float" office:value="#double" ) | + (office:value-type="percentage" office:value="#double" ) | + (office:value-type="currency" office:value="#double" (office:currency="#string" )? ) | - (office:value-type="date" office:date-value="<date> | <dateTime>" ) | - (office:value-type="time" office:time-value="<duration>" ) | - (office:value-type="boolean" office:boolean-value="<boolean>" ) | - (office:value-type="string" (office:string-value="<string>" )? + (office:value-type="date" office:date-value="#date | #dateTime" ) | + (office:value-type="time" office:time-value="#duration" ) | + (office:value-type="boolean" office:boolean-value="#boolean" ) | + (office:value-type="string" (office:string-value="#string" )? ))? )(<text:p ... >)* >  @@ -11847,8 +11847,8 @@

table:consolidation Element

Child Relations - <table:consolidation table:function="auto | average | count | countnums | max | min | product | stdev | stdevp | sum | var | varp | <string>" table:source-cell-range-addresses="<string>" table:target-cell-address="string]" (table:use-labels="none | row | column | both" )? - (table:link-to-source-data="<boolean>" )? + <table:consolidation table:function="auto | average | count | countnums | max | min | product | stdev | stdevp | sum | var | varp | #string" table:source-cell-range-addresses="#string" table:target-cell-address="string]" (table:use-labels="none | row | column | both" )? + (table:link-to-source-data="#boolean" )? >  @@ -11883,9 +11883,9 @@

table:content-validation Elemen Child Relations - <table:content-validation table:name="<string>" (table:condition="<string>" )? + <table:content-validation table:name="#string" (table:condition="#string" )? (table:base-cell-address="string]" )? - (table:allow-empty-cell="<boolean>" )? + (table:allow-empty-cell="#boolean" )? (table:display-list="none | unsorted | sort-ascending" )? (<table:help-message ... >)? (<table:error-message ... > | @@ -12002,21 +12002,21 @@

table:covered-table-cell Elemen Child Relations - <table:covered-table-cell (table:number-columns-repeated="<positiveInteger>" )? - (table:style-name="(<NCName>)?" )? - (table:content-validation-name="<string>" )? - (table:formula="<string>" )? + <table:covered-table-cell (table:number-columns-repeated="#positiveInteger" )? + (table:style-name="(#NCName)?" )? + (table:content-validation-name="#string" )? + (table:formula="#string" )? ( - (office:value-type="float" office:value="<double>" ) | - (office:value-type="percentage" office:value="<double>" ) | - (office:value-type="currency" office:value="<double>" (office:currency="<string>" )? + (office:value-type="float" office:value="#double" ) | + (office:value-type="percentage" office:value="#double" ) | + (office:value-type="currency" office:value="#double" (office:currency="#string" )? ) | - (office:value-type="date" office:date-value="<date> | <dateTime>" ) | - (office:value-type="time" office:time-value="<duration>" ) | - (office:value-type="boolean" office:boolean-value="<boolean>" ) | - (office:value-type="string" (office:string-value="<string>" )? + (office:value-type="date" office:date-value="#date | #dateTime" ) | + (office:value-type="time" office:time-value="#duration" ) | + (office:value-type="boolean" office:boolean-value="#boolean" ) | + (office:value-type="string" (office:string-value="#string" )? ))? - (table:protect="<boolean>" )? + (table:protect="#boolean" )? ( (<table:cell-range-source ... >)? (<office:annotation ... >)? @@ -12078,7 +12078,7 @@

table:data-pilot-display-i Child Relations - <table:data-pilot-display-info table:enabled="<boolean>" table:data-field="<string>" table:member-count="<nonNegativeInteger>" table:display-member-mode="from-top | from-bottom" >  + <table:data-pilot-display-info table:enabled="#boolean" table:data-field="#string" table:member-count="#nonNegativeInteger" table:display-member-mode="from-top | from-bottom" > 
@@ -12113,10 +12113,10 @@

table:data-pilot-field Element Child Relations - <table:data-pilot-field table:source-field-name="<string>" table:orientation="row | column | data | hidden" | - (table:orientation="page" table:selected-page="<string>" ) (table:is-data-layout-field="<string>" )? - (table:function="auto | average | count | countnums | max | min | product | stdev | stdevp | sum | var | varp | <string>" )? - (table:used-hierarchy="<integer>" )? + <table:data-pilot-field table:source-field-name="#string" table:orientation="row | column | data | hidden" | + (table:orientation="page" table:selected-page="#string" ) (table:is-data-layout-field="#string" )? + (table:function="auto | average | count | countnums | max | min | product | stdev | stdevp | sum | var | varp | #string" )? + (table:used-hierarchy="#integer" )? (<table:data-pilot-level ... >)? (<table:data-pilot-field-reference ... >)? (<table:data-pilot-groups ... >)? @@ -12150,8 +12150,8 @@

table:data-pilot-field- Child Relations - <table:data-pilot-field-reference table:field-name="<string>" - (table:member-type="named" table:member-name="<string>" ) | table:member-type="previous | next" table:type="none | member-difference | member-percentage | member-percentage-difference | running-total | row-percentage | column-percentage | total-percentage | index" >  + <table:data-pilot-field-reference table:field-name="#string" + (table:member-type="named" table:member-name="#string" ) | table:member-type="previous | next" table:type="none | member-difference | member-percentage | member-percentage-difference | running-total | row-percentage | column-percentage | total-percentage | index" > 
@@ -12178,7 +12178,7 @@

table:data-pilot-group Element Child Relations - <table:data-pilot-group table:name="<string>" (<table:data-pilot-group-member ... >)+ >  + <table:data-pilot-group table:name="#string" (<table:data-pilot-group-member ... >)+ > 
@@ -12204,7 +12204,7 @@

table:data-pilot-group-mem Child Relations - <table:data-pilot-group-member table:name="<string>" >  + <table:data-pilot-group-member table:name="#string" > 
@@ -12237,7 +12237,7 @@

table:data-pilot-groups Element< Child Relations - <table:data-pilot-groups table:source-field-name="<string>" table:date-start="<date> | <dateTime> | auto" | table:start="<double> | auto" table:date-end="<date> | <dateTime> | auto" | table:end="<double> | auto" table:step="<double>" table:grouped-by="seconds | minutes | hours | days | months | quarters | years" (<table:data-pilot-group ... >)+ >  + <table:data-pilot-groups table:source-field-name="#string" table:date-start="#date | #dateTime | auto" | table:start="#double | auto" table:date-end="#date | #dateTime | auto" | table:end="#double | auto" table:step="#double" table:grouped-by="seconds | minutes | hours | days | months | quarters | years" (<table:data-pilot-group ... >)+ > 
@@ -12264,7 +12264,7 @@

table:data-pilot-layout-inf Child Relations - <table:data-pilot-layout-info table:layout-mode="tabular-layout | outline-subtotals-top | outline-subtotals-bottom" table:add-empty-lines="<boolean>" >  + <table:data-pilot-layout-info table:layout-mode="tabular-layout | outline-subtotals-top | outline-subtotals-bottom" table:add-empty-lines="#boolean" > 
@@ -12295,7 +12295,7 @@

table:data-pilot-level Element Child Relations - <table:data-pilot-level (table:show-empty="<boolean>" )? + <table:data-pilot-level (table:show-empty="#boolean" )? (<table:data-pilot-subtotals ... >)? (<table:data-pilot-members ... >)? (<table:data-pilot-display-info ... >)? @@ -12329,8 +12329,8 @@

table:data-pilot-member Element< Child Relations - <table:data-pilot-member table:name="<string>" (table:display="<boolean>" )? - (table:show-details="<boolean>" )? + <table:data-pilot-member table:name="#string" (table:display="#boolean" )? + (table:show-details="#boolean" )? >  @@ -12387,7 +12387,7 @@

table:data-pilot-sort-info El Child Relations <table:data-pilot-sort-info - (table:sort-mode="data" table:data-field="<string>" ) | table:sort-mode="none | manual | name" table:order="ascending | descending" >  + (table:sort-mode="data" table:data-field="#string" ) | table:sort-mode="none | manual | name" table:order="ascending | descending" > 
@@ -12413,7 +12413,7 @@

table:data-pilot-subtotal Elem Child Relations - <table:data-pilot-subtotal table:function="auto | average | count | countnums | max | min | product | stdev | stdevp | sum | var | varp | <string>" >  + <table:data-pilot-subtotal table:function="auto | average | count | countnums | max | min | product | stdev | stdevp | sum | var | varp | #string" > 
@@ -12479,13 +12479,13 @@

table:data-pilot-table Element Child Relations - <table:data-pilot-table table:name="<string>" (table:application-data="<string>" )? + <table:data-pilot-table table:name="#string" (table:application-data="#string" )? (table:grand-total="none | row | column | both" )? - (table:ignore-empty-rows="<boolean>" )? - (table:identify-categories="<boolean>" )? - table:target-range-address="string]" (table:buttons="<string>" )? - (table:show-filter-button="<boolean>" )? - (table:drill-down-on-double-click="<boolean>" )? + (table:ignore-empty-rows="#boolean" )? + (table:identify-categories="#boolean" )? + table:target-range-address="string]" (table:buttons="#string" )? + (table:show-filter-button="#boolean" )? + (table:drill-down-on-double-click="#boolean" )? (<table:database-source-sql ... > | <table:database-source-query ... > | <table:database-source-table ... > | <table:source-service ... > | <table:source-cell-range ... >)? (<table:data-pilot-field ... >)+ >  @@ -12558,15 +12558,15 @@

table:database-range Element Child Relations - <table:database-range (table:name="<string>" )? - (table:is-selection="<boolean>" )? - (table:on-update-keep-styles="<boolean>" )? - (table:on-update-keep-size="<boolean>" )? - (table:has-persistent-data="<boolean>" )? + <table:database-range (table:name="#string" )? + (table:is-selection="#boolean" )? + (table:on-update-keep-styles="#boolean" )? + (table:on-update-keep-size="#boolean" )? + (table:has-persistent-data="#boolean" )? (table:orientation="column | row" )? - (table:contains-header="<boolean>" )? - (table:display-filter-buttons="<boolean>" )? - table:target-range-address="string]" (table:refresh-delay="<boolean>" )? + (table:contains-header="#boolean" )? + (table:display-filter-buttons="#boolean" )? + table:target-range-address="string]" (table:refresh-delay="#boolean" )? (<table:database-source-sql ... > | <table:database-source-query ... > | <table:database-source-table ... >)? (<table:filter ... >)? (<table:sort ... >)? @@ -12629,7 +12629,7 @@

table:database-source-query Child Relations - <table:database-source-query table:database-name="<string>" table:query-name="<string>" >  + <table:database-source-query table:database-name="#string" table:query-name="#string" > 
@@ -12658,7 +12658,7 @@

table:database-source-sql Elem Child Relations - <table:database-source-sql table:database-name="<string>" table:sql-statement="<string>" (table:parse-sql-statement="<boolean>" )? + <table:database-source-sql table:database-name="#string" table:sql-statement="#string" (table:parse-sql-statement="#boolean" )? >  @@ -12687,7 +12687,7 @@

table:database-source-table Child Relations - <table:database-source-table table:database-name="<string>" table:database-table-name="<string>" >  + <table:database-source-table table:database-name="#string" table:database-table-name="#string" > 
@@ -12780,10 +12780,10 @@

table:deletion Element

Child Relations - <table:deletion table:type="row | column | table" table:position="<integer>" (table:table="<integer>" )? - (table:multi-deletion-spanned="<integer>" )? - table:id="<string>" (table:acceptance-state="accepted | rejected | pending" )? - (table:rejecting-change-id="<string>" )? + <table:deletion table:type="row | column | table" table:position="#integer" (table:table="#integer" )? + (table:multi-deletion-spanned="#integer" )? + table:id="#string" (table:acceptance-state="accepted | rejected | pending" )? + (table:rejecting-change-id="#string" )? <office:change-info ... > (<table:dependencies ... >)? (<table:deletions ... >)? (<table:cut-offs ... >)? @@ -12872,7 +12872,7 @@

table:dependency Element

Child Relations - <table:dependency table:id="<string>" >  + <table:dependency table:id="#string" > 
@@ -12926,7 +12926,7 @@

table:error-macro Element

Child Relations - <table:error-macro (table:execute="<boolean>" )? + <table:error-macro (table:execute="#boolean" )? >  @@ -12956,8 +12956,8 @@

table:error-message Element

Child Relations - <table:error-message (table:title="<string>" )? - (table:display="<boolean>" )? + <table:error-message (table:title="#string" )? + (table:display="#boolean" )? (table:message-type="stop | warning | information" )? (<text:p ... >)* >  @@ -12995,7 +12995,7 @@

table:filter Element

<table:filter (table:target-range-address="string]" )? (table:condition-source="self | cell-range" )? (table:condition-source-range-address="string]" )? - (table:display-duplicates="<boolean>" )? + (table:display-duplicates="#boolean" )? <table:filter-condition ... > | <table:filter-and ... > | <table:filter-or ... >>  @@ -13056,7 +13056,7 @@

table:filter-condition Element Child Relations - <table:filter-condition table:field-number="<nonNegativeInteger>" table:value="<string>" table:operator="<string>" (table:case-sensitive="<string>" )? + <table:filter-condition table:field-number="#nonNegativeInteger" table:value="#string" table:operator="#string" (table:case-sensitive="#string" )? (table:data-type="text | number" )? >  @@ -13114,8 +13114,8 @@

table:help-message Element

Child Relations - <table:help-message (table:title="<string>" )? - (table:display="<boolean>" )? + <table:help-message (table:title="#string" )? + (table:display="#boolean" )? (<text:p ... >)* >  @@ -13146,8 +13146,8 @@

table:highlighted-range Element< Child Relations <table:highlighted-range (table:cell-range-address="string]" )? - table:direction="from-another-table | to-another-table | from-same-table" (table:contains-error="<boolean>" )? - | table:marked-invalid="<boolean>" >  + table:direction="from-another-table | to-another-table | from-same-table" (table:contains-error="#boolean" )? + | table:marked-invalid="#boolean" > 
@@ -13182,10 +13182,10 @@

table:insertion Element

Child Relations - <table:insertion table:type="row | column | table" table:position="<integer>" (table:count="<positiveInteger>" )? - (table:table="<integer>" )? - table:id="<string>" (table:acceptance-state="accepted | rejected | pending" )? - (table:rejecting-change-id="<string>" )? + <table:insertion table:type="row | column | table" table:position="#integer" (table:count="#positiveInteger" )? + (table:table="#integer" )? + table:id="#string" (table:acceptance-state="accepted | rejected | pending" )? + (table:rejecting-change-id="#string" )? <office:change-info ... > (<table:dependencies ... >)? (<table:deletions ... >)? >  @@ -13215,7 +13215,7 @@

table:insertion-cut-off Element< Child Relations - <table:insertion-cut-off table:id="<string>" table:position="<integer>" >  + <table:insertion-cut-off table:id="#string" table:position="#integer" > 
@@ -13244,8 +13244,8 @@

table:iteration Element

Child Relations <table:iteration (table:status="enable | disable" )? - (table:steps="<positiveInteger>" )? - (table:maximum-difference="<double>" )? + (table:steps="#positiveInteger" )? + (table:maximum-difference="#double" )? >  @@ -13337,8 +13337,8 @@

table:movement Element

Child Relations - <table:movement table:id="<string>" (table:acceptance-state="accepted | rejected | pending" )? - (table:rejecting-change-id="<string>" )? + <table:movement table:id="#string" (table:acceptance-state="accepted | rejected | pending" )? + (table:rejecting-change-id="#string" )? <table:source-range-address ... ><table:target-range-address ... ><office:change-info ... > (<table:dependencies ... >)? (<table:deletions ... >)? >  @@ -13369,8 +13369,8 @@

table:movement-cut-off Element Child Relations - <table:movement-cut-off table:position="<integer>" | - (table:start-position="<integer>" table:end-position="<integer>" )>  + <table:movement-cut-off table:position="#integer" | + (table:start-position="#integer" table:end-position="#integer" )> 
@@ -13399,7 +13399,7 @@

table:named-expression Element Child Relations <table:named-expression - (table:name="<string>" table:expression="<string>" (table:base-cell-address="string]" )? + (table:name="#string" table:expression="#string" (table:base-cell-address="string]" )? )>  @@ -13461,7 +13461,7 @@

table:named-range Element

Child Relations <table:named-range - (table:name="<string>" table:cell-range-address="string]" (table:base-cell-address="string]" )? + (table:name="#string" table:cell-range-address="string]" (table:base-cell-address="string]" )? (table:range-usable-as="none | START_list(print-range | filter | repeat-row | repeat-column)+ END_list" )? @@ -13493,7 +13493,7 @@

table:null-date Element

Child Relations <table:null-date (table:value-type="float | time | date | percentage | currency | boolean | string" )? - (table:date-value="<date>" )? + (table:date-value="#date" )? >  @@ -13521,7 +13521,7 @@

table:operation Element

Child Relations - <table:operation table:name="trace-dependents | remove-dependents | trace-precedents | remove-precedents | trace-errors" table:index="<nonNegativeInteger>" >  + <table:operation table:name="trace-dependents | remove-dependents | trace-precedents | remove-precedents | trace-errors" table:index="#nonNegativeInteger" > 
@@ -13548,7 +13548,7 @@

table:previous Element

Child Relations - <table:previous (table:id="<string>" )? + <table:previous (table:id="#string" )? <table:change-track-table-cell ... >>  @@ -13583,13 +13583,13 @@

table:scenario Element

Child Relations - <table:scenario table:scenario-ranges="<string>" table:is-active="<boolean>" (table:display-border="<boolean>" )? + <table:scenario table:scenario-ranges="#string" table:is-active="#boolean" (table:display-border="#boolean" )? (table:border-color="string]" )? - (table:copy-back="<boolean>" )? - (table:copy-styles="<boolean>" )? - (table:copy-formulas="<boolean>" )? - (table:comment="<string>" )? - (table:protected="<boolean>" )? + (table:copy-back="#boolean" )? + (table:copy-styles="#boolean" )? + (table:copy-formulas="#boolean" )? + (table:comment="#string" )? + (table:protected="#boolean" )? >  @@ -13664,12 +13664,12 @@

table:sort Element

Child Relations - <table:sort (table:bind-styles-to-content="<boolean>" )? + <table:sort (table:bind-styles-to-content="#boolean" )? (table:target-range-address="string]" )? - (table:case-sensitive="<boolean>" )? + (table:case-sensitive="#boolean" )? (table:language="token]" )? (table:country="token]" )? - (table:algorithm="<string>" )? + (table:algorithm="#string" )? (<table:sort-by ... >)+ >  @@ -13698,7 +13698,7 @@

table:sort-by Element

Child Relations - <table:sort-by table:field-number="<nonNegativeInteger>" (table:data-type="text | number | automatic | <string>" )? + <table:sort-by table:field-number="#nonNegativeInteger" (table:data-type="text | number | automatic | #string" )? (table:order="ascending | descending" )? >  @@ -13727,7 +13727,7 @@

table:sort-groups Element

Child Relations - <table:sort-groups (table:data-type="text | number | automatic | <string>" )? + <table:sort-groups (table:data-type="text | number | automatic | #string" )? (table:order="ascending | descending" )? >  @@ -13792,8 +13792,8 @@

table:source-range-address El Child Relations <table:source-range-address - (table:column="<integer>" table:row="<integer>" table:table="<integer>" ) | - (table:start-column="<integer>" table:start-row="<integer>" table:start-table="<integer>" table:end-column="<integer>" table:end-row="<integer>" table:end-table="<integer>" )>  + (table:column="#integer" table:row="#integer" table:table="#integer" ) | + (table:start-column="#integer" table:start-row="#integer" table:start-table="#integer" table:end-column="#integer" table:end-row="#integer" table:end-table="#integer" )> 
@@ -13823,8 +13823,8 @@

table:source-service Element Child Relations - <table:source-service table:name="<string>" table:source-name="<string>" table:object-name="<string>" (table:user-name="<string>" )? - (table:password="<string>" )? + <table:source-service table:name="#string" table:source-name="#string" table:object-name="#string" (table:user-name="#string" )? + (table:password="#string" )? >  @@ -13852,7 +13852,7 @@

table:subtotal-field Element Child Relations - <table:subtotal-field table:field-number="<nonNegativeInteger>" table:function="auto | average | count | countnums | max | min | product | stdev | stdevp | sum | var | varp | <string>" >  + <table:subtotal-field table:field-number="#nonNegativeInteger" table:function="auto | average | count | countnums | max | min | product | stdev | stdevp | sum | var | varp | #string" > 
@@ -13879,7 +13879,7 @@

table:subtotal-rule Element

Child Relations - <table:subtotal-rule table:group-by-field-number="<nonNegativeInteger>" (<table:subtotal-field ... >)* >  + <table:subtotal-rule table:group-by-field-number="#nonNegativeInteger" (<table:subtotal-field ... >)* > 
@@ -13909,9 +13909,9 @@

table:subtotal-rules Element Child Relations - <table:subtotal-rules (table:bind-styles-to-content="<boolean>" )? - (table:case-sensitive="<boolean>" )? - (table:page-breaks-on-group-change="<boolean>" )? + <table:subtotal-rules (table:bind-styles-to-content="#boolean" )? + (table:case-sensitive="#boolean" )? + (table:page-breaks-on-group-change="#boolean" )? (<table:sort-groups ... >)? (<table:subtotal-rule ... >)* >  @@ -13974,14 +13974,14 @@

table:table Element

Child Relations - <table:table (table:name="<string>" )? - (table:style-name="(<NCName>)?" )? + <table:table (table:name="#string" )? + (table:style-name="(#NCName)?" )? - ( (table:protected="<boolean>" )? + ( (table:protected="#boolean" )? (table:protection-key="TEXT" )? - ) (table:print="<boolean>" )? - (table:print-ranges="<string>" )? - (table:is-sub-table="<boolean>" )? + ) (table:print="#boolean" )? + (table:print-ranges="#string" )? + (table:is-sub-table="#boolean" )? (<table:table-source ... >)? (<office:dde-source ... >)? (<table:scenario ... >)? @@ -14086,27 +14086,27 @@

table:table-cell Element

Child Relations - <table:table-cell (table:number-columns-repeated="<positiveInteger>" )? - (table:style-name="(<NCName>)?" )? - (table:content-validation-name="<string>" )? - (table:formula="<string>" )? + <table:table-cell (table:number-columns-repeated="#positiveInteger" )? + (table:style-name="(#NCName)?" )? + (table:content-validation-name="#string" )? + (table:formula="#string" )? ( - (office:value-type="float" office:value="<double>" ) | - (office:value-type="percentage" office:value="<double>" ) | - (office:value-type="currency" office:value="<double>" (office:currency="<string>" )? + (office:value-type="float" office:value="#double" ) | + (office:value-type="percentage" office:value="#double" ) | + (office:value-type="currency" office:value="#double" (office:currency="#string" )? ) | - (office:value-type="date" office:date-value="<date> | <dateTime>" ) | - (office:value-type="time" office:time-value="<duration>" ) | - (office:value-type="boolean" office:boolean-value="<boolean>" ) | - (office:value-type="string" (office:string-value="<string>" )? + (office:value-type="date" office:date-value="#date | #dateTime" ) | + (office:value-type="time" office:time-value="#duration" ) | + (office:value-type="boolean" office:boolean-value="#boolean" ) | + (office:value-type="string" (office:string-value="#string" )? ))? - (table:protect="<boolean>" )? + (table:protect="#boolean" )? - ( (table:number-columns-spanned="<positiveInteger>" )? - (table:number-rows-spanned="<positiveInteger>" )? + ( (table:number-columns-spanned="#positiveInteger" )? + (table:number-rows-spanned="#positiveInteger" )? ) - ( (table:number-matrix-columns-spanned="<positiveInteger>" )? - (table:number-matrix-rows-spanned="<positiveInteger>" )? + ( (table:number-matrix-columns-spanned="#positiveInteger" )? + (table:number-matrix-rows-spanned="#positiveInteger" )? ) ( (<table:cell-range-source ... >)? (<office:annotation ... >)? @@ -14143,10 +14143,10 @@

table:table-column Element

Child Relations - <table:table-column (table:number-columns-repeated="<positiveInteger>" )? - (table:style-name="(<NCName>)?" )? + <table:table-column (table:number-columns-repeated="#positiveInteger" )? + (table:style-name="(#NCName)?" )? (table:visibility="visible | collapse | filter" )? - (table:default-cell-style-name="(<NCName>)?" )? + (table:default-cell-style-name="(#NCName)?" )? >  @@ -14178,7 +14178,7 @@

table:table-column-group Elemen Child Relations - <table:table-column-group (table:display="<boolean>" )? + <table:table-column-group (table:display="#boolean" )? (<table:table-column-group ... > | (<table:table-columns ... > | (<table:table-column ... >)+ (<table:table-header-columns ... > (<table:table-columns ... > | (<table:table-column ... >)+ )? )? @@ -14301,9 +14301,9 @@

table:table-row Element

Child Relations - <table:table-row (table:number-rows-repeated="<positiveInteger>" )? - (table:style-name="(<NCName>)?" )? - (table:default-cell-style-name="(<NCName>)?" )? + <table:table-row (table:number-rows-repeated="#positiveInteger" )? + (table:style-name="(#NCName)?" )? + (table:default-cell-style-name="(#NCName)?" )? (table:visibility="visible | collapse | filter" )? (<table:table-cell ... > | <table:covered-table-cell ... >)+ >  @@ -14337,7 +14337,7 @@

table:table-row-group Element< Child Relations - <table:table-row-group (table:display="<boolean>" )? + <table:table-row-group (table:display="#boolean" )? (<table:table-row-group ... > | (<table:table-rows ... > | ( (<text:soft-page-break ... >)? <table:table-row ... >)+ (<table:table-header-rows ... > (<table:table-rows ... > | ( (<text:soft-page-break ... >)? @@ -14409,13 +14409,13 @@

table:table-source Element

Child Relations <table:table-source (table:mode="copy-all | copy-results-only" )? - (table:table-name="<string>" )? + (table:table-name="#string" )? ( (xlink:type="simple" )? (xlink:actuate="onRequest" )? - xlink:href="<anyURI>" ) (table:filter-name="<string>" )? - (table:filter-options="<string>" )? - (table:refresh-delay="<duration>" )? + xlink:href="#anyURI" ) (table:filter-name="#string" )? + (table:filter-options="#string" )? + (table:refresh-delay="#duration" )? >  @@ -14451,8 +14451,8 @@

table:target-range-address El Child Relations <table:target-range-address - (table:column="<integer>" table:row="<integer>" table:table="<integer>" ) | - (table:start-column="<integer>" table:start-row="<integer>" table:start-table="<integer>" table:end-column="<integer>" table:end-row="<integer>" table:end-table="<integer>" )>  + (table:column="#integer" table:row="#integer" table:table="#integer" ) | + (table:start-column="#integer" table:start-row="#integer" table:start-table="#integer" table:end-column="#integer" table:end-row="#integer" table:end-table="#integer" )> 
@@ -14482,7 +14482,7 @@

table:tracked-changes Element< Child Relations - <table:tracked-changes (table:track-changes="<boolean>" )? + <table:tracked-changes (table:track-changes="#boolean" )? (<table:cell-content-change ... > | <table:insertion ... > | <table:deletion ... > | <table:movement ... >)* >  @@ -14648,17 +14648,17 @@

text:a Element

Child Relations - <text:a (office:name="<string>" )? - (office:title="<string>" )? + <text:a (office:name="#string" )? + (office:title="#string" )? - (xlink:href="<anyURI>" (xlink:type="simple" )? + (xlink:href="#anyURI" (xlink:type="simple" )? (xlink:actuate="onRequest" )? ) - ( (office:target-frame-name="_self | _blank | _parent | _top | <string>" )? + ( (office:target-frame-name="_self | _blank | _parent | _top | #string" )? (xlink:show="new | replace" )? ) - ( (text:style-name="(<NCName>)?" )? - (text:visited-style-name="(<NCName>)?" )? + ( (text:style-name="(#NCName)?" )? + (text:visited-style-name="(#NCName)?" )? ) (<office:event-listeners ... >)? (TEXT | <text:s ... > | <text:tab ... > | <text:line-break ... > | <text:soft-page-break ... > | <text:span ... > | <text:a ... > | <text:bookmark ... > | <text:bookmark-start ... > | <text:bookmark-end ... > | <text:reference-mark ... > | <text:reference-mark-start ... > | <text:reference-mark-end ... > | <text:note ... > | <text:ruby ... > | <office:annotation ... > | <text:change ... > | <text:change-start ... > | <text:change-end ... > | <draw:rect ... > | <draw:line ... > | <draw:polyline ... > | <draw:polygon ... > | <draw:regular-polygon ... > | <draw:path ... > | <draw:circle ... > | <draw:ellipse ... > | <draw:g ... > | <draw:page-thumbnail ... > | <draw:frame ... > | <draw:measure ... > | <draw:caption ... > | <draw:connector ... > | <draw:control ... > | <dr3d:scene ... > | <draw:custom-shape ... > | <draw:a ... > | <text:date ... > | <text:time ... > | <text:page-number ... > | <text:page-continuation ... > | <text:sender-firstname ... > | <text:sender-lastname ... > | <text:sender-initials ... > | <text:sender-title ... > | <text:sender-position ... > | <text:sender-email ... > | <text:sender-phone-private ... > | <text:sender-fax ... > | <text:sender-company ... > | <text:sender-phone-work ... > | <text:sender-street ... > | <text:sender-city ... > | <text:sender-postal-code ... > | <text:sender-country ... > | <text:sender-state-or-province ... > | <text:author-name ... > | <text:author-initials ... > | <text:chapter ... > | <text:file-name ... > | <text:template-name ... > | <text:sheet-name ... > | <text:variable-set ... > | <text:variable-get ... > | <text:variable-input ... > | <text:user-field-get ... > | <text:user-field-input ... > | <text:sequence ... > | <text:expression ... > | <text:text-input ... > | <text:initial-creator ... > | <text:creation-date ... > | <text:creation-time ... > | <text:description ... > | <text:user-defined ... > | <text:print-time ... > | <text:print-date ... > | <text:printed-by ... > | <text:title ... > | <text:subject ... > | <text:keywords ... > | <text:editing-cycles ... > | <text:editing-duration ... > | <text:modification-time ... > | <text:modification-date ... > | <text:creator ... > | <CHOICE_NAME_CLASS ... > | <text:database-display ... > | <text:database-next ... > | <text:database-row-select ... > | <text:database-row-number ... > | <text:database-name ... > | <text:page-variable-set ... > | <text:page-variable-get ... > | <text:placeholder ... > | <text:conditional-text ... > | <text:hidden-text ... > | <CHOICE_NAME_CLASS ... > | <text:note-ref ... > | <text:sequence-ref ... > | <text:script ... > | <text:execute-macro ... > | <text:hidden-paragraph ... > | <text:dde-connection ... > | <text:measure ... > | <text:table-formula ... > | <text:toc-mark-start ... > | <text:toc-mark-end ... > | <text:toc-mark ... > | <text:user-index-mark-start ... > | <text:user-index-mark-end ... > | <text:user-index-mark ... > | <text:alphabetical-index-mark-start ... > | <text:alphabetical-index-mark-end ... > | <text:alphabetical-index-mark ... > | <text:bibliography-mark ... > | <presentation:header ... > | <presentation:footer ... > | <presentation:date-time ... >)* >  @@ -14703,9 +14703,9 @@

text:alphabetical-index Element< Child Relations - <text:alphabetical-index (text:style-name="(<NCName>)?" )? - text:name="<string>" (text:protected="<boolean>" )? - (text:protection-key="<string>" )? + <text:alphabetical-index (text:style-name="(#NCName)?" )? + text:name="#string" (text:protected="#boolean" )? + (text:protection-key="#string" )? <text:alphabetical-index-source ... ><text:index-body ... >>  @@ -14741,7 +14741,7 @@

text:alphabetical Child Relations - <text:alphabetical-index-auto-mark-file xlink:href="<anyURI>" (xlink:type="simple" )? + <text:alphabetical-index-auto-mark-file xlink:href="#anyURI" (xlink:type="simple" )? >  @@ -14774,7 +14774,7 @@

text:alphabetical Child Relations - <text:alphabetical-index-entry-template text:outline-level="1 | 2 | 3 | separator" text:style-name="(<NCName>)?" (<text:index-entry-chapter ... > | <text:index-entry-page-number ... > | <text:index-entry-text ... > | <text:index-entry-span ... > | <text:index-entry-tab-stop ... >)* >  + <text:alphabetical-index-entry-template text:outline-level="1 | 2 | 3 | separator" text:style-name="(#NCName)?" (<text:index-entry-chapter ... > | <text:index-entry-page-number ... > | <text:index-entry-text ... > | <text:index-entry-span ... > | <text:index-entry-tab-stop ... >)* > 
@@ -14810,14 +14810,14 @@

text:alphabetical-index-mar Child Relations - <text:alphabetical-index-mark text:string-value="<string>" - ( (text:key1="<string>" )? - (text:key2="<string>" )? + <text:alphabetical-index-mark text:string-value="#string" + ( (text:key1="#string" )? + (text:key2="#string" )? ) - ( (text:string-value-phonetic="<string>" )? - (text:key1-phonetic="<string>" )? - (text:key2-phonetic="<string>" )? - ) (text:main-entry="<boolean>" )? + ( (text:string-value-phonetic="#string" )? + (text:key1-phonetic="#string" )? + (text:key2-phonetic="#string" )? + ) (text:main-entry="#boolean" )? >  @@ -14848,7 +14848,7 @@

text:alphabetical-index Child Relations - <text:alphabetical-index-mark-end text:id="<string>" >  + <text:alphabetical-index-mark-end text:id="#string" > 
@@ -14884,14 +14884,14 @@

text:alphabetical-ind Child Relations - <text:alphabetical-index-mark-start text:id="<string>" - ( (text:key1="<string>" )? - (text:key2="<string>" )? + <text:alphabetical-index-mark-start text:id="#string" + ( (text:key1="#string" )? + (text:key2="#string" )? ) - ( (text:string-value-phonetic="<string>" )? - (text:key1-phonetic="<string>" )? - (text:key2-phonetic="<string>" )? - ) (text:main-entry="<boolean>" )? + ( (text:string-value-phonetic="#string" )? + (text:key1-phonetic="#string" )? + (text:key2-phonetic="#string" )? + ) (text:main-entry="#boolean" )? >  @@ -14935,20 +14935,20 @@

text:alphabetical-index-s Child Relations <text:alphabetical-index-source ( (text:index-scope="document | chapter" )? - (text:relative-tab-stop-position="<boolean>" )? - ) (text:ignore-case="<boolean>" )? - (text:main-entry-style-name="(<NCName>)?" )? - (text:alphabetical-separators="<boolean>" )? + (text:relative-tab-stop-position="#boolean" )? + ) (text:ignore-case="#boolean" )? + (text:main-entry-style-name="(#NCName)?" )? + (text:alphabetical-separators="#boolean" )? - ( (text:combine-entries="<boolean>" )? - (text:combine-entries-with-dash="<boolean>" )? - (text:combine-entries-with-pp="<boolean>" )? - ) (text:use-keys-as-entries="<boolean>" )? - (text:capitalize-entries="<boolean>" )? - (text:comma-separated="<boolean>" )? + ( (text:combine-entries="#boolean" )? + (text:combine-entries-with-dash="#boolean" )? + (text:combine-entries-with-pp="#boolean" )? + ) (text:use-keys-as-entries="#boolean" )? + (text:capitalize-entries="#boolean" )? + (text:comma-separated="#boolean" )? (fo:language="token]" )? (fo:country="token]" )? - (text:sort-algorithm="<string>" )? + (text:sort-algorithm="#string" )? (<text:index-title-template ... >)? (<text:alphabetical-index-entry-template ... >)* >  @@ -14981,7 +14981,7 @@

text:author-initials Element Child Relations - <text:author-initials (text:fixed="<boolean>" )? + <text:author-initials (text:fixed="#boolean" )? TEXT>  @@ -15013,7 +15013,7 @@

text:author-name Element

Child Relations - <text:author-name (text:fixed="<boolean>" )? + <text:author-name (text:fixed="#boolean" )? TEXT>  @@ -15057,9 +15057,9 @@

text:bibliography Element

Child Relations - <text:bibliography (text:style-name="(<NCName>)?" )? - text:name="<string>" (text:protected="<boolean>" )? - (text:protection-key="<string>" )? + <text:bibliography (text:style-name="(#NCName)?" )? + text:name="#string" (text:protected="#boolean" )? + (text:protection-key="#string" )? <text:bibliography-source ... ><text:index-body ... >>  @@ -15094,14 +15094,14 @@

text:bibliography-config Child Relations <text:bibliography-configuration - ( (text:prefix="<string>" )? - (text:suffix="<string>" )? - ) (text:numbered-entries="<boolean>" )? + ( (text:prefix="#string" )? + (text:suffix="#string" )? + ) (text:numbered-entries="#boolean" )? - ( (text:sort-by-position="<boolean>" )? + ( (text:sort-by-position="#boolean" )? (fo:language="token]" )? (fo:country="token]" )? - (text:sort-algorithm="<string>" )? + (text:sort-algorithm="#string" )? )(<text:sort-key ... >)* >  @@ -15132,7 +15132,7 @@

text:bibliography-entry Child Relations - <text:bibliography-entry-template text:bibliography-type="article | book | booklet | conference | custom1 | custom2 | custom3 | custom4 | custom5 | email | inbook | incollection | inproceedings | journal | manual | mastersthesis | misc | phdthesis | proceedings | techreport | unpublished | www" text:style-name="(<NCName>)?" (<text:index-entry-span ... > | <text:index-entry-tab-stop ... > | <text:index-entry-bibliography ... >)* >  + <text:bibliography-entry-template text:bibliography-type="article | book | booklet | conference | custom1 | custom2 | custom3 | custom4 | custom5 | email | inbook | incollection | inproceedings | journal | manual | mastersthesis | misc | phdthesis | proceedings | techreport | unpublished | www" text:style-name="(#NCName)?" (<text:index-entry-span ... > | <text:index-entry-tab-stop ... > | <text:index-entry-bibliography ... >)* > 
@@ -15194,7 +15194,7 @@

text:bibliography-mark Element Child Relations - <text:bibliography-mark text:bibliography-type="article | book | booklet | conference | custom1 | custom2 | custom3 | custom4 | custom5 | email | inbook | incollection | inproceedings | journal | manual | mastersthesis | misc | phdthesis | proceedings | techreport | unpublished | www" (CHOICE_NAME_CLASS="<string>" )* TEXT>  + <text:bibliography-mark text:bibliography-type="article | book | booklet | conference | custom1 | custom2 | custom3 | custom4 | custom5 | email | inbook | incollection | inproceedings | journal | manual | mastersthesis | misc | phdthesis | proceedings | techreport | unpublished | www" (CHOICE_NAME_CLASS="#string" )* TEXT> 
@@ -15252,7 +15252,7 @@

text:bookmark Element

Child Relations - <text:bookmark text:name="<string>" >  + <text:bookmark text:name="#string" > 
@@ -15282,7 +15282,7 @@

text:bookmark-end Element

Child Relations - <text:bookmark-end text:name="<string>" >  + <text:bookmark-end text:name="#string" > 
@@ -15314,7 +15314,7 @@

text:bookmark-ref Element

Child Relations - <CHOICE_NAME_CLASS TEXT (text:ref-name="<string>" )? + <CHOICE_NAME_CLASS TEXT (text:ref-name="#string" )? (text:reference-format="page | chapter | direction | text" )? >  @@ -15346,7 +15346,7 @@

text:bookmark-start Element

Child Relations - <text:bookmark-start text:name="<string>" >  + <text:bookmark-start text:name="#string" > 
@@ -15389,7 +15389,7 @@

text:change Element

Child Relations - <text:change text:change-id="<IDREF>" >  + <text:change text:change-id="#IDREF" > 
@@ -15432,7 +15432,7 @@

text:change-end Element

Child Relations - <text:change-end text:change-id="<IDREF>" >  + <text:change-end text:change-id="#IDREF" > 
@@ -15475,7 +15475,7 @@

text:change-start Element

Child Relations - <text:change-start text:change-id="<IDREF>" >  + <text:change-start text:change-id="#IDREF" > 
@@ -15504,7 +15504,7 @@

text:changed-region Element

Child Relations - <text:changed-region text:id="<ID>" <text:insertion ... > | <text:deletion ... > | <text:format-change ... >>  + <text:changed-region text:id="#ID" <text:insertion ... > | <text:deletion ... > | <text:format-change ... >> 
@@ -15536,7 +15536,7 @@

text:chapter Element

Child Relations - <text:chapter text:display="name | number | number-and-name | plain-number-and-name | plain-number" text:outline-level="<nonNegativeInteger>" TEXT>  + <text:chapter text:display="name | number | number-and-name | plain-number-and-name | plain-number" text:outline-level="#nonNegativeInteger" TEXT> 
@@ -15569,8 +15569,8 @@

text:character-count Element Child Relations - <CHOICE_NAME_CLASS ( (style:num-format="(1 | i | I | <string>)?" | - (style:num-format="a | A" (style:num-letter-sync="<boolean>" )? + <CHOICE_NAME_CLASS ( (style:num-format="(1 | i | I | #string)?" | + (style:num-format="a | A" (style:num-letter-sync="#boolean" )? ))? )? TEXT>  @@ -15607,7 +15607,7 @@

text:conditional-text Element< Child Relations - <text:conditional-text text:condition="<string>" text:string-value-if-true="<string>" text:string-value-if-false="<string>" (text:current-value="<boolean>" )? + <text:conditional-text text:condition="#string" text:string-value-if-true="#string" text:string-value-if-false="#string" (text:current-value="#boolean" )? TEXT>  @@ -15641,9 +15641,9 @@

text:creation-date Element

Child Relations - <text:creation-date (text:fixed="<boolean>" )? - (style:data-style-name="(<NCName>)?" )? - (text:date-value="<date> | <dateTime>" )? + <text:creation-date (text:fixed="#boolean" )? + (style:data-style-name="(#NCName)?" )? + (text:date-value="#date | #dateTime" )? TEXT>  @@ -15677,9 +15677,9 @@

text:creation-time Element

Child Relations - <text:creation-time (text:fixed="<boolean>" )? - (style:data-style-name="(<NCName>)?" )? - (text:time-value="<time> | <dateTime>" )? + <text:creation-time (text:fixed="#boolean" )? + (style:data-style-name="(#NCName)?" )? + (text:time-value="#time | #dateTime" )? TEXT>  @@ -15711,7 +15711,7 @@

text:creator Element

Child Relations - <text:creator (text:fixed="<boolean>" )? + <text:creator (text:fixed="#boolean" )? TEXT>  @@ -15749,9 +15749,9 @@

text:database-display Element< Child Relations <text:database-display - (text:table-name="<string>" (text:table-type="table | query | command" )? - text:database-name="<string>" | EMPTY | <form:connection-resource ... >) (style:data-style-name="(<NCName>)?" )? - text:column-name="<string>" TEXT>  + (text:table-name="#string" (text:table-type="table | query | command" )? + text:database-name="#string" | EMPTY | <form:connection-resource ... >) (style:data-style-name="(#NCName)?" )? + text:column-name="#string" TEXT> 
@@ -15786,8 +15786,8 @@

text:database-name Element

Child Relations <text:database-name - (text:table-name="<string>" (text:table-type="table | query | command" )? - text:database-name="<string>" | EMPTY | <form:connection-resource ... >)TEXT>  + (text:table-name="#string" (text:table-type="table | query | command" )? + text:database-name="#string" | EMPTY | <form:connection-resource ... >)TEXT> 
@@ -15822,8 +15822,8 @@

text:database-next Element

Child Relations <text:database-next - (text:table-name="<string>" (text:table-type="table | query | command" )? - text:database-name="<string>" | EMPTY | <form:connection-resource ... >) (text:condition="<string>" )? + (text:table-name="#string" (text:table-type="table | query | command" )? + text:database-name="#string" | EMPTY | <form:connection-resource ... >) (text:condition="#string" )? >  @@ -15863,12 +15863,12 @@

text:database-row-number Elemen Child Relations <text:database-row-number - (text:table-name="<string>" (text:table-type="table | query | command" )? - text:database-name="<string>" | EMPTY | <form:connection-resource ... >) ( (style:num-format="(1 | i | I | <string>)?" | - (style:num-format="a | A" (style:num-letter-sync="<boolean>" )? + (text:table-name="#string" (text:table-type="table | query | command" )? + text:database-name="#string" | EMPTY | <form:connection-resource ... >) ( (style:num-format="(1 | i | I | #string)?" | + (style:num-format="a | A" (style:num-letter-sync="#boolean" )? ))? )? - (text:value="<nonNegativeInteger>" )? + (text:value="#nonNegativeInteger" )? TEXT>  @@ -15905,9 +15905,9 @@

text:database-row-select Elemen Child Relations <text:database-row-select - (text:table-name="<string>" (text:table-type="table | query | command" )? - text:database-name="<string>" | EMPTY | <form:connection-resource ... >) (text:condition="<string>" )? - (text:row-number="<nonNegativeInteger>" )? + (text:table-name="#string" (text:table-type="table | query | command" )? + text:database-name="#string" | EMPTY | <form:connection-resource ... >) (text:condition="#string" )? + (text:row-number="#nonNegativeInteger" )? >  @@ -15942,10 +15942,10 @@

text:date Element

Child Relations - <text:date (text:fixed="<boolean>" )? - (style:data-style-name="(<NCName>)?" )? - (text:date-value="<date> | <dateTime>" )? - (text:date-adjust="<duration>" )? + <text:date (text:fixed="#boolean" )? + (style:data-style-name="(#NCName)?" )? + (text:date-value="#date | #dateTime" )? + (text:date-adjust="#duration" )? TEXT>  @@ -15977,7 +15977,7 @@

text:dde-connection Element

Child Relations - <text:dde-connection text:connection-name="<string>" TEXT>  + <text:dde-connection text:connection-name="#string" TEXT> 
@@ -16007,7 +16007,7 @@

text:dde-connection-decl Elemen Child Relations - <text:dde-connection-decl office:name="<string>" office:dde-application="<string>" office:dde-topic="<string>" office:dde-item="<string>" (office:automatic-update="<boolean>" )? + <text:dde-connection-decl office:name="#string" office:dde-application="#string" office:dde-topic="#string" office:dde-item="#string" (office:automatic-update="#boolean" )? >  @@ -16134,7 +16134,7 @@

text:description Element

Child Relations - <text:description (text:fixed="<boolean>" )? + <text:description (text:fixed="#boolean" )? TEXT>  @@ -16166,7 +16166,7 @@

text:editing-cycles Element

Child Relations - <text:editing-cycles (text:fixed="<boolean>" )? + <text:editing-cycles (text:fixed="#boolean" )? TEXT>  @@ -16200,9 +16200,9 @@

text:editing-duration Element< Child Relations - <text:editing-duration (text:fixed="<boolean>" )? - (style:data-style-name="(<NCName>)?" )? - (text:duration="<duration>" )? + <text:editing-duration (text:fixed="#boolean" )? + (style:data-style-name="(#NCName)?" )? + (text:duration="#duration" )? TEXT>  @@ -16235,7 +16235,7 @@

text:execute-macro Element

Child Relations - <text:execute-macro (text:name="<string>" )? + <text:execute-macro (text:name="#string" )? (<office:event-listeners ... >)? TEXT>  @@ -16283,19 +16283,19 @@

text:expression Element

Child Relations - <text:expression (text:formula="<string>" )? + <text:expression (text:formula="#string" )? ( - (office:value-type="float" office:value="<double>" ) | - (office:value-type="percentage" office:value="<double>" ) | - (office:value-type="currency" office:value="<double>" (office:currency="<string>" )? + (office:value-type="float" office:value="#double" ) | + (office:value-type="percentage" office:value="#double" ) | + (office:value-type="currency" office:value="#double" (office:currency="#string" )? ) | - (office:value-type="date" office:date-value="<date> | <dateTime>" ) | - (office:value-type="time" office:time-value="<duration>" ) | - (office:value-type="boolean" office:boolean-value="<boolean>" ) | - (office:value-type="string" (office:string-value="<string>" )? + (office:value-type="date" office:date-value="#date | #dateTime" ) | + (office:value-type="time" office:time-value="#duration" ) | + (office:value-type="boolean" office:boolean-value="#boolean" ) | + (office:value-type="string" (office:string-value="#string" )? ))? (text:display="value | formula" )? - (style:data-style-name="(<NCName>)?" )? + (style:data-style-name="(#NCName)?" )? TEXT>  @@ -16329,7 +16329,7 @@

text:file-name Element

Child Relations <text:file-name (text:display="full | path | name | name-and-extension" )? - (text:fixed="<boolean>" )? + (text:fixed="#boolean" )? TEXT>  @@ -16531,16 +16531,16 @@

text:h Element

Child Relations - <text:h text:outline-level="<positiveInteger>" (text:restart-numbering="<boolean>" )? - (text:start-value="<nonNegativeInteger>" )? - (text:is-list-header="<boolean>" )? + <text:h text:outline-level="#positiveInteger" (text:restart-numbering="#boolean" )? + (text:start-value="#nonNegativeInteger" )? + (text:is-list-header="#boolean" )? - ( (text:style-name="(<NCName>)?" )? + ( (text:style-name="(#NCName)?" )? (text:class-names=" -START_list(<NCName>)* +START_list(#NCName)* END_list" )? - (text:cond-style-name="(<NCName>)?" )? - ) (text:id="<string>" )? + (text:cond-style-name="(#NCName)?" )? + ) (text:id="#string" )? (<text:number ... >)? (TEXT | <text:s ... > | <text:tab ... > | <text:line-break ... > | <text:soft-page-break ... > | <text:span ... > | <text:a ... > | <text:bookmark ... > | <text:bookmark-start ... > | <text:bookmark-end ... > | <text:reference-mark ... > | <text:reference-mark-start ... > | <text:reference-mark-end ... > | <text:note ... > | <text:ruby ... > | <office:annotation ... > | <text:change ... > | <text:change-start ... > | <text:change-end ... > | <draw:rect ... > | <draw:line ... > | <draw:polyline ... > | <draw:polygon ... > | <draw:regular-polygon ... > | <draw:path ... > | <draw:circle ... > | <draw:ellipse ... > | <draw:g ... > | <draw:page-thumbnail ... > | <draw:frame ... > | <draw:measure ... > | <draw:caption ... > | <draw:connector ... > | <draw:control ... > | <dr3d:scene ... > | <draw:custom-shape ... > | <draw:a ... > | <text:date ... > | <text:time ... > | <text:page-number ... > | <text:page-continuation ... > | <text:sender-firstname ... > | <text:sender-lastname ... > | <text:sender-initials ... > | <text:sender-title ... > | <text:sender-position ... > | <text:sender-email ... > | <text:sender-phone-private ... > | <text:sender-fax ... > | <text:sender-company ... > | <text:sender-phone-work ... > | <text:sender-street ... > | <text:sender-city ... > | <text:sender-postal-code ... > | <text:sender-country ... > | <text:sender-state-or-province ... > | <text:author-name ... > | <text:author-initials ... > | <text:chapter ... > | <text:file-name ... > | <text:template-name ... > | <text:sheet-name ... > | <text:variable-set ... > | <text:variable-get ... > | <text:variable-input ... > | <text:user-field-get ... > | <text:user-field-input ... > | <text:sequence ... > | <text:expression ... > | <text:text-input ... > | <text:initial-creator ... > | <text:creation-date ... > | <text:creation-time ... > | <text:description ... > | <text:user-defined ... > | <text:print-time ... > | <text:print-date ... > | <text:printed-by ... > | <text:title ... > | <text:subject ... > | <text:keywords ... > | <text:editing-cycles ... > | <text:editing-duration ... > | <text:modification-time ... > | <text:modification-date ... > | <text:creator ... > | <CHOICE_NAME_CLASS ... > | <text:database-display ... > | <text:database-next ... > | <text:database-row-select ... > | <text:database-row-number ... > | <text:database-name ... > | <text:page-variable-set ... > | <text:page-variable-get ... > | <text:placeholder ... > | <text:conditional-text ... > | <text:hidden-text ... > | <CHOICE_NAME_CLASS ... > | <text:note-ref ... > | <text:sequence-ref ... > | <text:script ... > | <text:execute-macro ... > | <text:hidden-paragraph ... > | <text:dde-connection ... > | <text:measure ... > | <text:table-formula ... > | <text:toc-mark-start ... > | <text:toc-mark-end ... > | <text:toc-mark ... > | <text:user-index-mark-start ... > | <text:user-index-mark-end ... > | <text:user-index-mark ... > | <text:alphabetical-index-mark-start ... > | <text:alphabetical-index-mark-end ... > | <text:alphabetical-index-mark ... > | <text:bibliography-mark ... > | <presentation:header ... > | <presentation:footer ... > | <presentation:date-time ... >)* >  @@ -16574,7 +16574,7 @@

text:hidden-paragraph Element< Child Relations - <text:hidden-paragraph text:condition="<string>" (text:is-hidden="<boolean>" )? + <text:hidden-paragraph text:condition="#string" (text:is-hidden="#boolean" )? TEXT>  @@ -16608,7 +16608,7 @@

text:hidden-text Element

Child Relations - <text:hidden-text text:condition="<string>" text:string-value="<string>" (text:is-hidden="<boolean>" )? + <text:hidden-text text:condition="#string" text:string-value="#string" (text:is-hidden="#boolean" )? TEXT>  @@ -16652,9 +16652,9 @@

text:illustration-index Element< Child Relations - <text:illustration-index (text:style-name="(<NCName>)?" )? - text:name="<string>" (text:protected="<boolean>" )? - (text:protection-key="<string>" )? + <text:illustration-index (text:style-name="(#NCName)?" )? + text:name="#string" (text:protected="#boolean" )? + (text:protection-key="#string" )? <text:illustration-index-source ... ><text:index-body ... >>  @@ -16686,7 +16686,7 @@

text:illustration Child Relations <text:illustration-index-entry-template - (text:style-name="(<NCName>)?" (<text:index-entry-page-number ... > | <text:index-entry-text ... > | <text:index-entry-span ... > | <text:index-entry-tab-stop ... >)* )>  + (text:style-name="(#NCName)?" (<text:index-entry-page-number ... > | <text:index-entry-text ... > | <text:index-entry-span ... > | <text:index-entry-tab-stop ... >)* )> 
@@ -16719,9 +16719,9 @@

text:illustration-index-s Child Relations <text:illustration-index-source (text:index-scope="document | chapter" )? - (text:relative-tab-stop-position="<boolean>" )? - (text:use-caption="<boolean>" )? - (text:caption-sequence-name="<string>" )? + (text:relative-tab-stop-position="#boolean" )? + (text:use-caption="#boolean" )? + (text:caption-sequence-name="#string" )? (text:caption-sequence-format="text | category-and-value | caption" )? (<text:index-title-template ... >)? (<text:illustration-index-entry-template ... >)? @@ -16758,8 +16758,8 @@

text:image-count Element

Child Relations - <CHOICE_NAME_CLASS ( (style:num-format="(1 | i | I | <string>)?" | - (style:num-format="a | A" (style:num-letter-sync="<boolean>" )? + <CHOICE_NAME_CLASS ( (style:num-format="(1 | i | I | #string)?" | + (style:num-format="a | A" (style:num-letter-sync="#boolean" )? ))? )? TEXT>  @@ -16856,7 +16856,7 @@

text:index-entry-bibliogra Child Relations - <text:index-entry-bibliography (text:style-name="(<NCName>)?" )? + <text:index-entry-bibliography (text:style-name="(#NCName)?" )? text:bibliography-data-field="address | annote | author | bibliography-type | booktitle | chapter | custom1 | custom2 | custom3 | custom4 | custom5 | edition | editor | howpublished | identifier | institution | isbn | issn | journal | month | note | number | organizations | pages | publisher | report-type | school | series | title | url | volume | year" >  @@ -16886,7 +16886,7 @@

text:index-entry-chapter Elemen Child Relations - <text:index-entry-chapter (text:style-name="(<NCName>)?" )? + <text:index-entry-chapter (text:style-name="(#NCName)?" )? (text:display="name | number | number-and-name" )? >  @@ -16914,7 +16914,7 @@

text:index-entry-link-end Elem Child Relations - <text:index-entry-link-end (text:style-name="(<NCName>)?" )? + <text:index-entry-link-end (text:style-name="(#NCName)?" )? >  @@ -16941,7 +16941,7 @@

text:index-entry-link-start Child Relations - <text:index-entry-link-start (text:style-name="(<NCName>)?" )? + <text:index-entry-link-start (text:style-name="(#NCName)?" )? >  @@ -16973,7 +16973,7 @@

text:index-entry-page-numbe Child Relations - <text:index-entry-page-number (text:style-name="(<NCName>)?" )? + <text:index-entry-page-number (text:style-name="(#NCName)?" )? >  @@ -17007,7 +17007,7 @@

text:index-entry-span Element< Child Relations - <text:index-entry-span (text:style-name="(<NCName>)?" )? + <text:index-entry-span (text:style-name="(#NCName)?" )? TEXT>  @@ -17044,7 +17044,7 @@

text:index-entry-tab-stop Elem Child Relations - <text:index-entry-tab-stop (text:style-name="(<NCName>)?" )? + <text:index-entry-tab-stop (text:style-name="(#NCName)?" )? (style:leader-char="string]" )? style:type="right" | (style:type="left" style:position="string]" )>  @@ -17078,7 +17078,7 @@

text:index-entry-text Element< Child Relations - <text:index-entry-text (text:style-name="(<NCName>)?" )? + <text:index-entry-text (text:style-name="(#NCName)?" )? >  @@ -17105,7 +17105,7 @@

text:index-source-style Element< Child Relations - <text:index-source-style text:style-name="<NCName>" >  + <text:index-source-style text:style-name="#NCName" > 
@@ -17133,7 +17133,7 @@

text:index-source-styles Elemen Child Relations - <text:index-source-styles text:outline-level="<positiveInteger>" (<text:index-source-style ... >)* >  + <text:index-source-styles text:outline-level="#positiveInteger" (<text:index-source-style ... >)* > 
@@ -17203,9 +17203,9 @@

text:index-title Element

Child Relations - <text:index-title (text:style-name="(<NCName>)?" )? - text:name="<string>" (text:protected="<boolean>" )? - (text:protection-key="<string>" )? + <text:index-title (text:style-name="(#NCName)?" )? + text:name="#string" (text:protected="#boolean" )? + (text:protection-key="#string" )? (<text:h ... > | <text:p ... > | <text:list ... > | <text:numbered-paragraph ... > | <table:table ... > | <draw:a ... > | <text:section ... > | <text:soft-page-break ... > | <text:table-of-content ... > | <text:illustration-index ... > | <text:table-index ... > | <text:object-index ... > | <text:user-index ... > | <text:alphabetical-index ... > | <text:bibliography ... > | <draw:rect ... > | <draw:line ... > | <draw:polyline ... > | <draw:polygon ... > | <draw:regular-polygon ... > | <draw:path ... > | <draw:circle ... > | <draw:ellipse ... > | <draw:g ... > | <draw:page-thumbnail ... > | <draw:frame ... > | <draw:measure ... > | <draw:caption ... > | <draw:connector ... > | <draw:control ... > | <dr3d:scene ... > | <draw:custom-shape ... > | <text:change ... > | <text:change-start ... > | <text:change-end ... > | <text:index-title ... >)* >  @@ -17239,7 +17239,7 @@

text:index-title-template Elem Child Relations - <text:index-title-template (text:style-name="(<NCName>)?" )? + <text:index-title-template (text:style-name="(#NCName)?" )? TEXT>  @@ -17271,7 +17271,7 @@

text:initial-creator Element Child Relations - <text:initial-creator (text:fixed="<boolean>" )? + <text:initial-creator (text:fixed="#boolean" )? TEXT>  @@ -17329,7 +17329,7 @@

text:keywords Element

Child Relations - <text:keywords (text:fixed="<boolean>" )? + <text:keywords (text:fixed="#boolean" )? TEXT>  @@ -17396,18 +17396,18 @@

text:linenumbering-conf Child Relations - <text:linenumbering-configuration (text:number-lines="<boolean>" )? - ( (style:num-format="(1 | i | I | <string>)?" | - (style:num-format="a | A" (style:num-letter-sync="<boolean>" )? + <text:linenumbering-configuration (text:number-lines="#boolean" )? + ( (style:num-format="(1 | i | I | #string)?" | + (style:num-format="a | A" (style:num-letter-sync="#boolean" )? ))? )? - (text:style-name="(<NCName>)?" )? - (text:increment="<nonNegativeInteger>" )? + (text:style-name="(#NCName)?" )? + (text:increment="#nonNegativeInteger" )? (text:number-position="left | right | inner | outer" )? (text:offset="string]" )? - (text:count-empty-lines="<boolean>" )? - (text:count-in-text-boxes="<boolean>" )? - (text:restart-on-page="<boolean>" )? + (text:count-empty-lines="#boolean" )? + (text:count-in-text-boxes="#boolean" )? + (text:restart-on-page="#boolean" )? (<text:linenumbering-separator ... >)? >  @@ -17436,7 +17436,7 @@

text:linenumbering-separato Child Relations - <text:linenumbering-separator (text:increment="<nonNegativeInteger>" )? + <text:linenumbering-separator (text:increment="#nonNegativeInteger" )? TEXT>  @@ -17494,8 +17494,8 @@

text:list Element

Child Relations - <text:list (text:style-name="(<NCName>)?" )? - (text:continue-numbering="<boolean>" )? + <text:list (text:style-name="(#NCName)?" )? + (text:continue-numbering="#boolean" )? (<text:list-header ... >)? (<text:list-item ... >)* >  @@ -17560,7 +17560,7 @@

text:list-item Element

Child Relations - <text:list-item (text:start-value="<nonNegativeInteger>" )? + <text:list-item (text:start-value="#nonNegativeInteger" )? ( (<text:number ... >)? (<text:p ... > | <text:h ... > | <text:list ... > | <text:soft-page-break ... >)* )>  @@ -17596,10 +17596,10 @@

text:list-level-style-bulle Child Relations - <text:list-level-style-bullet text:level="<positiveInteger>" (text:style-name="(<NCName>)?" )? + <text:list-level-style-bullet text:level="#positiveInteger" (text:style-name="(#NCName)?" )? text:bullet-char="string]" - ( (style:num-prefix="<string>" )? - (style:num-suffix="<string>" )? + ( (style:num-prefix="#string" )? + (style:num-suffix="#string" )? ) (text:bullet-relative-size="string]" )? (<style:list-level-properties ... >)? (<style:text-properties ... >)? @@ -17635,8 +17635,8 @@

text:list-level-style-image Child Relations - <text:list-level-style-image text:level="<positiveInteger>" - (xlink:href="<anyURI>" (xlink:type="simple" )? + <text:list-level-style-image text:level="#positiveInteger" + (xlink:href="#anyURI" (xlink:type="simple" )? (xlink:show="embed" )? (xlink:actuate="onLoad" )? ) | <office:binary-data ... > (<style:list-level-properties ... >)? @@ -17676,16 +17676,16 @@

text:list-level-style-numbe Child Relations - <text:list-level-style-number text:level="<positiveInteger>" (text:style-name="(<NCName>)?" )? + <text:list-level-style-number text:level="#positiveInteger" (text:style-name="(#NCName)?" )? - ( (style:num-format="(1 | i | I | <string>)?" | - (style:num-format="a | A" (style:num-letter-sync="<boolean>" )? + ( (style:num-format="(1 | i | I | #string)?" | + (style:num-format="a | A" (style:num-letter-sync="#boolean" )? ))? - ( (style:num-prefix="<string>" )? - (style:num-suffix="<string>" )? - )) (text:display-levels="<positiveInteger>" )? - (text:start-value="<positiveInteger>" )? + ( (style:num-prefix="#string" )? + (style:num-suffix="#string" )? + )) (text:display-levels="#positiveInteger" )? + (text:start-value="#positiveInteger" )? (<style:list-level-properties ... >)? (<style:text-properties ... >)? >  @@ -17720,8 +17720,8 @@

text:list-style Element

Child Relations - <text:list-style style:name="<NCName>" (style:display-name="<string>" )? - (text:consecutive-numbering="<boolean>" )? + <text:list-style style:name="#NCName" (style:display-name="#string" )? + (text:consecutive-numbering="#boolean" )? (<text:list-level-style-number ... > | <text:list-level-style-bullet ... > | <text:list-level-style-image ... >)* >  @@ -17786,9 +17786,9 @@

text:modification-date Element Child Relations - <text:modification-date (text:fixed="<boolean>" )? - (style:data-style-name="(<NCName>)?" )? - (text:date-value="<date>" )? + <text:modification-date (text:fixed="#boolean" )? + (style:data-style-name="(#NCName)?" )? + (text:date-value="#date" )? TEXT>  @@ -17822,9 +17822,9 @@

text:modification-time Element Child Relations - <text:modification-time (text:fixed="<boolean>" )? - (style:data-style-name="(<NCName>)?" )? - (text:time-value="<time>" )? + <text:modification-time (text:fixed="#boolean" )? + (style:data-style-name="(#NCName)?" )? + (text:time-value="#time" )? TEXT>  @@ -17858,7 +17858,7 @@

text:note Element

Child Relations - <text:note text:note-class="footnote | endnote" (text:id="<string>" )? + <text:note text:note-class="footnote | endnote" (text:id="#string" )? <text:note-citation ... ><text:note-body ... >>  @@ -17946,7 +17946,7 @@

text:note-citation Element

Child Relations - <text:note-citation (text:label="<string>" )? + <text:note-citation (text:label="#string" )? TEXT>  @@ -18032,7 +18032,7 @@

text:note-ref Element

Child Relations - <text:note-ref TEXT (text:ref-name="<string>" )? + <text:note-ref TEXT (text:ref-name="#string" )? text:note-class="footnote | endnote" (text:reference-format="page | chapter | direction | text" )? >  @@ -18074,17 +18074,17 @@

text:notes-configuration Elemen Child Relations - <text:notes-configuration text:note-class="footnote | endnote" (text:citation-style-name="(<NCName>)?" )? - (text:citation-body-style-name="(<NCName>)?" )? - (text:default-style-name="(<NCName>)?" )? - (text:master-page-name="(<NCName>)?" )? - (text:start-value="<nonNegativeInteger>" )? + <text:notes-configuration text:note-class="footnote | endnote" (text:citation-style-name="(#NCName)?" )? + (text:citation-body-style-name="(#NCName)?" )? + (text:default-style-name="(#NCName)?" )? + (text:master-page-name="(#NCName)?" )? + (text:start-value="#nonNegativeInteger" )? ( - ( (style:num-prefix="<string>" )? - (style:num-suffix="<string>" )? - ) ( (style:num-format="(1 | i | I | <string>)?" | - (style:num-format="a | A" (style:num-letter-sync="<boolean>" )? + ( (style:num-prefix="#string" )? + (style:num-suffix="#string" )? + ) ( (style:num-format="(1 | i | I | #string)?" | + (style:num-format="a | A" (style:num-letter-sync="#boolean" )? ))? )? ) (text:start-numbering-at="document | chapter | page" )? @@ -18119,7 +18119,7 @@

text:number Element

Child Relations - <text:number <string>>  + <text:number #string
@@ -18159,10 +18159,10 @@

text:numbered-paragraph Element< Child Relations - <text:numbered-paragraph (text:level="<positiveInteger>" )? - (text:style-name="(<NCName>)?" )? - (text:continue-numbering="<boolean>" )? - (text:start-value="<nonNegativeInteger>" )? + <text:numbered-paragraph (text:level="#positiveInteger" )? + (text:style-name="(#NCName)?" )? + (text:continue-numbering="#boolean" )? + (text:start-value="#nonNegativeInteger" )? (<text:number ... >)? <text:p ... > | <text:h ... >>  @@ -18197,8 +18197,8 @@

text:object-count Element

Child Relations - <CHOICE_NAME_CLASS ( (style:num-format="(1 | i | I | <string>)?" | - (style:num-format="a | A" (style:num-letter-sync="<boolean>" )? + <CHOICE_NAME_CLASS ( (style:num-format="(1 | i | I | #string)?" | + (style:num-format="a | A" (style:num-letter-sync="#boolean" )? ))? )? TEXT>  @@ -18244,9 +18244,9 @@

text:object-index Element

Child Relations - <text:object-index (text:style-name="(<NCName>)?" )? - text:name="<string>" (text:protected="<boolean>" )? - (text:protection-key="<string>" )? + <text:object-index (text:style-name="(#NCName)?" )? + text:name="#string" (text:protected="#boolean" )? + (text:protection-key="#string" )? <text:object-index-source ... ><text:index-body ... >>  @@ -18278,7 +18278,7 @@

text:object-index-entry Child Relations <text:object-index-entry-template - (text:style-name="(<NCName>)?" (<text:index-entry-page-number ... > | <text:index-entry-text ... > | <text:index-entry-span ... > | <text:index-entry-tab-stop ... >)* )>  + (text:style-name="(#NCName)?" (<text:index-entry-page-number ... > | <text:index-entry-text ... > | <text:index-entry-span ... > | <text:index-entry-tab-stop ... >)* )> 
@@ -18313,12 +18313,12 @@

text:object-index-source Elemen Child Relations <text:object-index-source (text:index-scope="document | chapter" )? - (text:relative-tab-stop-position="<boolean>" )? - (text:use-spreadsheet-objects="<boolean>" )? - (text:use-math-objects="<boolean>" )? - (text:use-draw-objects="<boolean>" )? - (text:use-chart-objects="<boolean>" )? - (text:use-other-objects="<boolean>" )? + (text:relative-tab-stop-position="#boolean" )? + (text:use-spreadsheet-objects="#boolean" )? + (text:use-math-objects="#boolean" )? + (text:use-draw-objects="#boolean" )? + (text:use-chart-objects="#boolean" )? + (text:use-other-objects="#boolean" )? (<text:index-title-template ... >)? (<text:object-index-entry-template ... >)? >  @@ -18357,16 +18357,16 @@

text:outline-level-style Elemen Child Relations - <text:outline-level-style text:level="<positiveInteger>" (text:style-name="(<NCName>)?" )? + <text:outline-level-style text:level="#positiveInteger" (text:style-name="(#NCName)?" )? - ( (style:num-format="(1 | i | I | <string>)?" | - (style:num-format="a | A" (style:num-letter-sync="<boolean>" )? + ( (style:num-format="(1 | i | I | #string)?" | + (style:num-format="a | A" (style:num-letter-sync="#boolean" )? ))? - ( (style:num-prefix="<string>" )? - (style:num-suffix="<string>" )? - )) (text:display-levels="<positiveInteger>" )? - (text:start-value="<positiveInteger>" )? + ( (style:num-prefix="#string" )? + (style:num-suffix="#string" )? + )) (text:display-levels="#positiveInteger" )? + (text:start-value="#positiveInteger" )? (<style:list-level-properties ... >)? (<style:text-properties ... >)? >  @@ -18591,12 +18591,12 @@

text:p Element

Child Relations <text:p - ( (text:style-name="(<NCName>)?" )? + ( (text:style-name="(#NCName)?" )? (text:class-names=" -START_list(<NCName>)* +START_list(#NCName)* END_list" )? - (text:cond-style-name="(<NCName>)?" )? - ) (text:id="<string>" )? + (text:cond-style-name="(#NCName)?" )? + ) (text:id="#string" )? (TEXT | <text:s ... > | <text:tab ... > | <text:line-break ... > | <text:soft-page-break ... > | <text:span ... > | <text:a ... > | <text:bookmark ... > | <text:bookmark-start ... > | <text:bookmark-end ... > | <text:reference-mark ... > | <text:reference-mark-start ... > | <text:reference-mark-end ... > | <text:note ... > | <text:ruby ... > | <office:annotation ... > | <text:change ... > | <text:change-start ... > | <text:change-end ... > | <draw:rect ... > | <draw:line ... > | <draw:polyline ... > | <draw:polygon ... > | <draw:regular-polygon ... > | <draw:path ... > | <draw:circle ... > | <draw:ellipse ... > | <draw:g ... > | <draw:page-thumbnail ... > | <draw:frame ... > | <draw:measure ... > | <draw:caption ... > | <draw:connector ... > | <draw:control ... > | <dr3d:scene ... > | <draw:custom-shape ... > | <draw:a ... > | <text:date ... > | <text:time ... > | <text:page-number ... > | <text:page-continuation ... > | <text:sender-firstname ... > | <text:sender-lastname ... > | <text:sender-initials ... > | <text:sender-title ... > | <text:sender-position ... > | <text:sender-email ... > | <text:sender-phone-private ... > | <text:sender-fax ... > | <text:sender-company ... > | <text:sender-phone-work ... > | <text:sender-street ... > | <text:sender-city ... > | <text:sender-postal-code ... > | <text:sender-country ... > | <text:sender-state-or-province ... > | <text:author-name ... > | <text:author-initials ... > | <text:chapter ... > | <text:file-name ... > | <text:template-name ... > | <text:sheet-name ... > | <text:variable-set ... > | <text:variable-get ... > | <text:variable-input ... > | <text:user-field-get ... > | <text:user-field-input ... > | <text:sequence ... > | <text:expression ... > | <text:text-input ... > | <text:initial-creator ... > | <text:creation-date ... > | <text:creation-time ... > | <text:description ... > | <text:user-defined ... > | <text:print-time ... > | <text:print-date ... > | <text:printed-by ... > | <text:title ... > | <text:subject ... > | <text:keywords ... > | <text:editing-cycles ... > | <text:editing-duration ... > | <text:modification-time ... > | <text:modification-date ... > | <text:creator ... > | <CHOICE_NAME_CLASS ... > | <text:database-display ... > | <text:database-next ... > | <text:database-row-select ... > | <text:database-row-number ... > | <text:database-name ... > | <text:page-variable-set ... > | <text:page-variable-get ... > | <text:placeholder ... > | <text:conditional-text ... > | <text:hidden-text ... > | <CHOICE_NAME_CLASS ... > | <text:note-ref ... > | <text:sequence-ref ... > | <text:script ... > | <text:execute-macro ... > | <text:hidden-paragraph ... > | <text:dde-connection ... > | <text:measure ... > | <text:table-formula ... > | <text:toc-mark-start ... > | <text:toc-mark-end ... > | <text:toc-mark ... > | <text:user-index-mark-start ... > | <text:user-index-mark-end ... > | <text:user-index-mark ... > | <text:alphabetical-index-mark-start ... > | <text:alphabetical-index-mark-end ... > | <text:alphabetical-index-mark ... > | <text:bibliography-mark ... > | <presentation:header ... > | <presentation:footer ... > | <presentation:date-time ... >)* >  @@ -18623,7 +18623,7 @@

text:page Element

Child Relations - <text:page text:master-page-name="(<NCName>)?" >  + <text:page text:master-page-name="(#NCName)?" > 
@@ -18655,7 +18655,7 @@

text:page-continuation Element Child Relations - <text:page-continuation text:select-page="previous | next" (text:string-value="<string>" )? + <text:page-continuation text:select-page="previous | next" (text:string-value="#string" )? TEXT>  @@ -18689,8 +18689,8 @@

text:page-count Element

Child Relations - <CHOICE_NAME_CLASS ( (style:num-format="(1 | i | I | <string>)?" | - (style:num-format="a | A" (style:num-letter-sync="<boolean>" )? + <CHOICE_NAME_CLASS ( (style:num-format="(1 | i | I | #string)?" | + (style:num-format="a | A" (style:num-letter-sync="#boolean" )? ))? )? TEXT>  @@ -18729,12 +18729,12 @@

text:page-number Element

Child Relations - <text:page-number ( (style:num-format="(1 | i | I | <string>)?" | - (style:num-format="a | A" (style:num-letter-sync="<boolean>" )? + <text:page-number ( (style:num-format="(1 | i | I | #string)?" | + (style:num-format="a | A" (style:num-letter-sync="#boolean" )? ))? )? - (text:fixed="<boolean>" )? - (text:page-adjust="<integer>" )? + (text:fixed="#boolean" )? + (text:page-adjust="#integer" )? (text:select-page="previous | current | next" )? TEXT>  @@ -18795,8 +18795,8 @@

text:page-variable-get Element Child Relations - <text:page-variable-get ( (style:num-format="(1 | i | I | <string>)?" | - (style:num-format="a | A" (style:num-letter-sync="<boolean>" )? + <text:page-variable-get ( (style:num-format="(1 | i | I | #string)?" | + (style:num-format="a | A" (style:num-letter-sync="#boolean" )? ))? )? TEXT>  @@ -18831,8 +18831,8 @@

text:page-variable-set Element Child Relations - <text:page-variable-set (text:active="<boolean>" )? - (text:page-adjust="<integer>" )? + <text:page-variable-set (text:active="#boolean" )? + (text:page-adjust="#integer" )? TEXT>  @@ -18866,8 +18866,8 @@

text:paragraph-count Element Child Relations - <CHOICE_NAME_CLASS ( (style:num-format="(1 | i | I | <string>)?" | - (style:num-format="a | A" (style:num-letter-sync="<boolean>" )? + <CHOICE_NAME_CLASS ( (style:num-format="(1 | i | I | #string)?" | + (style:num-format="a | A" (style:num-letter-sync="#boolean" )? ))? )? TEXT>  @@ -18936,9 +18936,9 @@

text:print-date Element

Child Relations - <text:print-date (text:fixed="<boolean>" )? - (style:data-style-name="(<NCName>)?" )? - (text:date-value="<date>" )? + <text:print-date (text:fixed="#boolean" )? + (style:data-style-name="(#NCName)?" )? + (text:date-value="#date" )? TEXT>  @@ -18972,9 +18972,9 @@

text:print-time Element

Child Relations - <text:print-time (text:fixed="<boolean>" )? - (style:data-style-name="(<NCName>)?" )? - (text:time-value="<time>" )? + <text:print-time (text:fixed="#boolean" )? + (style:data-style-name="(#NCName)?" )? + (text:time-value="#time" )? TEXT>  @@ -19006,7 +19006,7 @@

text:printed-by Element

Child Relations - <text:printed-by (text:fixed="<boolean>" )? + <text:printed-by (text:fixed="#boolean" )? TEXT>  @@ -19037,7 +19037,7 @@

text:reference-mark Element

Child Relations - <text:reference-mark text:name="<string>" >  + <text:reference-mark text:name="#string" > 
@@ -19067,7 +19067,7 @@

text:reference-mark-end Element< Child Relations - <text:reference-mark-end text:name="<string>" >  + <text:reference-mark-end text:name="#string" > 
@@ -19097,7 +19097,7 @@

text:reference-mark-start Elem Child Relations - <text:reference-mark-start text:name="<string>" >  + <text:reference-mark-start text:name="#string" > 
@@ -19129,7 +19129,7 @@

text:reference-ref Element

Child Relations - <CHOICE_NAME_CLASS TEXT (text:ref-name="<string>" )? + <CHOICE_NAME_CLASS TEXT (text:ref-name="#string" )? (text:reference-format="page | chapter | direction | text" )? >  @@ -19163,7 +19163,7 @@

text:ruby Element

Child Relations - <text:ruby (text:style-name="(<NCName>)?" )? + <text:ruby (text:style-name="(#NCName)?" )? <text:ruby-base ... ><text:ruby-text ... >>  @@ -19342,7 +19342,7 @@

text:ruby-text Element

Child Relations - <text:ruby-text (text:style-name="(<NCName>)?" )? + <text:ruby-text (text:style-name="(#NCName)?" )? TEXT>  @@ -19373,7 +19373,7 @@

text:s Element

Child Relations - <text:s (text:c="<nonNegativeInteger>" )? + <text:s (text:c="#nonNegativeInteger" )? >  @@ -19408,8 +19408,8 @@

text:script Element

Child Relations <text:script - (xlink:href="<anyURI>" (xlink:type="simple" )? - ) | TEXT (script:language="<string>" )? + (xlink:href="#anyURI" (xlink:type="simple" )? + ) | TEXT (script:language="#string" )? >  @@ -19491,11 +19491,11 @@

text:section Element

Child Relations - <text:section (text:style-name="(<NCName>)?" )? - text:name="<string>" (text:protected="<boolean>" )? - (text:protection-key="<string>" )? + <text:section (text:style-name="(#NCName)?" )? + text:name="#string" (text:protected="#boolean" )? + (text:protection-key="#string" )? (text:display="true | none" | - (text:display="condition" text:condition="<string>" ))? + (text:display="condition" text:condition="#string" ))? (<text:section-source ... > | <office:dde-source ... >)? (<text:h ... > | <text:p ... > | <text:list ... > | <text:numbered-paragraph ... > | <table:table ... > | <draw:a ... > | <text:section ... > | <text:soft-page-break ... > | <text:table-of-content ... > | <text:illustration-index ... > | <text:table-index ... > | <text:object-index ... > | <text:user-index ... > | <text:alphabetical-index ... > | <text:bibliography ... > | <draw:rect ... > | <draw:line ... > | <draw:polyline ... > | <draw:polygon ... > | <draw:regular-polygon ... > | <draw:path ... > | <draw:circle ... > | <draw:ellipse ... > | <draw:g ... > | <draw:page-thumbnail ... > | <draw:frame ... > | <draw:measure ... > | <draw:caption ... > | <draw:connector ... > | <draw:control ... > | <dr3d:scene ... > | <draw:custom-shape ... > | <text:change ... > | <text:change-start ... > | <text:change-end ... >)* >  @@ -19527,11 +19527,11 @@

text:section-source Element

Child Relations - <text:section-source (xlink:href="<anyURI>" (xlink:type="simple" )? + <text:section-source (xlink:href="#anyURI" (xlink:type="simple" )? (xlink:show="embed" )? )? - (text:section-name="<string>" )? - (text:filter-name="<string>" )? + (text:section-name="#string" )? + (text:filter-name="#string" )? >  @@ -19563,7 +19563,7 @@

text:sender-city Element

Child Relations - <text:sender-city (text:fixed="<boolean>" )? + <text:sender-city (text:fixed="#boolean" )? TEXT>  @@ -19595,7 +19595,7 @@

text:sender-company Element

Child Relations - <text:sender-company (text:fixed="<boolean>" )? + <text:sender-company (text:fixed="#boolean" )? TEXT>  @@ -19627,7 +19627,7 @@

text:sender-country Element

Child Relations - <text:sender-country (text:fixed="<boolean>" )? + <text:sender-country (text:fixed="#boolean" )? TEXT>  @@ -19659,7 +19659,7 @@

text:sender-email Element

Child Relations - <text:sender-email (text:fixed="<boolean>" )? + <text:sender-email (text:fixed="#boolean" )? TEXT>  @@ -19691,7 +19691,7 @@

text:sender-fax Element

Child Relations - <text:sender-fax (text:fixed="<boolean>" )? + <text:sender-fax (text:fixed="#boolean" )? TEXT>  @@ -19723,7 +19723,7 @@

text:sender-firstname Element< Child Relations - <text:sender-firstname (text:fixed="<boolean>" )? + <text:sender-firstname (text:fixed="#boolean" )? TEXT>  @@ -19755,7 +19755,7 @@

text:sender-initials Element Child Relations - <text:sender-initials (text:fixed="<boolean>" )? + <text:sender-initials (text:fixed="#boolean" )? TEXT>  @@ -19787,7 +19787,7 @@

text:sender-lastname Element Child Relations - <text:sender-lastname (text:fixed="<boolean>" )? + <text:sender-lastname (text:fixed="#boolean" )? TEXT>  @@ -19819,7 +19819,7 @@

text:sender-phone-private Elem Child Relations - <text:sender-phone-private (text:fixed="<boolean>" )? + <text:sender-phone-private (text:fixed="#boolean" )? TEXT>  @@ -19851,7 +19851,7 @@

text:sender-phone-work Element Child Relations - <text:sender-phone-work (text:fixed="<boolean>" )? + <text:sender-phone-work (text:fixed="#boolean" )? TEXT>  @@ -19883,7 +19883,7 @@

text:sender-position Element Child Relations - <text:sender-position (text:fixed="<boolean>" )? + <text:sender-position (text:fixed="#boolean" )? TEXT>  @@ -19915,7 +19915,7 @@

text:sender-postal-code Element< Child Relations - <text:sender-postal-code (text:fixed="<boolean>" )? + <text:sender-postal-code (text:fixed="#boolean" )? TEXT>  @@ -19947,7 +19947,7 @@

text:sender-state-or-provi Child Relations - <text:sender-state-or-province (text:fixed="<boolean>" )? + <text:sender-state-or-province (text:fixed="#boolean" )? TEXT>  @@ -19979,7 +19979,7 @@

text:sender-street Element

Child Relations - <text:sender-street (text:fixed="<boolean>" )? + <text:sender-street (text:fixed="#boolean" )? TEXT>  @@ -20011,7 +20011,7 @@

text:sender-title Element

Child Relations - <text:sender-title (text:fixed="<boolean>" )? + <text:sender-title (text:fixed="#boolean" )? TEXT>  @@ -20048,12 +20048,12 @@

text:sequence Element

Child Relations - <text:sequence text:name="<string>" (text:formula="<string>" )? - ( (style:num-format="(1 | i | I | <string>)?" | - (style:num-format="a | A" (style:num-letter-sync="<boolean>" )? + <text:sequence text:name="#string" (text:formula="#string" )? + ( (style:num-format="(1 | i | I | #string)?" | + (style:num-format="a | A" (style:num-letter-sync="#boolean" )? ))? )? - (text:ref-name="<string>" )? + (text:ref-name="#string" )? TEXT>  @@ -20082,7 +20082,7 @@

text:sequence-decl Element

Child Relations - <text:sequence-decl text:name="<string>" text:display-outline-level="<nonNegativeInteger>" (text:separation-character="string]" )? + <text:sequence-decl text:name="#string" text:display-outline-level="#nonNegativeInteger" (text:separation-character="string]" )? >  @@ -20149,7 +20149,7 @@

text:sequence-ref Element

Child Relations - <text:sequence-ref TEXT (text:ref-name="<string>" )? + <text:sequence-ref TEXT (text:ref-name="#string" )? (text:reference-format="page | chapter | direction | text | category-and-value | caption | value" )? >  @@ -20253,7 +20253,7 @@

text:sort-key Element

Child Relations <text:sort-key - (text:key="address | annote | author | bibliography-type | booktitle | chapter | custom1 | custom2 | custom3 | custom4 | custom5 | edition | editor | howpublished | identifier | institution | isbn | issn | journal | month | note | number | organizations | pages | publisher | report-type | school | series | title | url | volume | year" (text:sort-ascending="<boolean>" )? + (text:key="address | annote | author | bibliography-type | booktitle | chapter | custom1 | custom2 | custom3 | custom4 | custom5 | edition | editor | howpublished | identifier | institution | isbn | issn | journal | month | note | number | organizations | pages | publisher | report-type | school | series | title | url | volume | year" (text:sort-ascending="#boolean" )? )>  @@ -20411,9 +20411,9 @@

text:span Element

Child Relations - <text:span (text:style-name="(<NCName>)?" )? + <text:span (text:style-name="(#NCName)?" )? (text:class-names=" -START_list(<NCName>)* +START_list(#NCName)* END_list" )? (TEXT | <text:s ... > | <text:tab ... > | <text:line-break ... > | <text:soft-page-break ... > | <text:span ... > | <text:a ... > | <text:bookmark ... > | <text:bookmark-start ... > | <text:bookmark-end ... > | <text:reference-mark ... > | <text:reference-mark-start ... > | <text:reference-mark-end ... > | <text:note ... > | <text:ruby ... > | <office:annotation ... > | <text:change ... > | <text:change-start ... > | <text:change-end ... > | <draw:rect ... > | <draw:line ... > | <draw:polyline ... > | <draw:polygon ... > | <draw:regular-polygon ... > | <draw:path ... > | <draw:circle ... > | <draw:ellipse ... > | <draw:g ... > | <draw:page-thumbnail ... > | <draw:frame ... > | <draw:measure ... > | <draw:caption ... > | <draw:connector ... > | <draw:control ... > | <dr3d:scene ... > | <draw:custom-shape ... > | <draw:a ... > | <text:date ... > | <text:time ... > | <text:page-number ... > | <text:page-continuation ... > | <text:sender-firstname ... > | <text:sender-lastname ... > | <text:sender-initials ... > | <text:sender-title ... > | <text:sender-position ... > | <text:sender-email ... > | <text:sender-phone-private ... > | <text:sender-fax ... > | <text:sender-company ... > | <text:sender-phone-work ... > | <text:sender-street ... > | <text:sender-city ... > | <text:sender-postal-code ... > | <text:sender-country ... > | <text:sender-state-or-province ... > | <text:author-name ... > | <text:author-initials ... > | <text:chapter ... > | <text:file-name ... > | <text:template-name ... > | <text:sheet-name ... > | <text:variable-set ... > | <text:variable-get ... > | <text:variable-input ... > | <text:user-field-get ... > | <text:user-field-input ... > | <text:sequence ... > | <text:expression ... > | <text:text-input ... > | <text:initial-creator ... > | <text:creation-date ... > | <text:creation-time ... > | <text:description ... > | <text:user-defined ... > | <text:print-time ... > | <text:print-date ... > | <text:printed-by ... > | <text:title ... > | <text:subject ... > | <text:keywords ... > | <text:editing-cycles ... > | <text:editing-duration ... > | <text:modification-time ... > | <text:modification-date ... > | <text:creator ... > | <CHOICE_NAME_CLASS ... > | <text:database-display ... > | <text:database-next ... > | <text:database-row-select ... > | <text:database-row-number ... > | <text:database-name ... > | <text:page-variable-set ... > | <text:page-variable-get ... > | <text:placeholder ... > | <text:conditional-text ... > | <text:hidden-text ... > | <CHOICE_NAME_CLASS ... > | <text:note-ref ... > | <text:sequence-ref ... > | <text:script ... > | <text:execute-macro ... > | <text:hidden-paragraph ... > | <text:dde-connection ... > | <text:measure ... > | <text:table-formula ... > | <text:toc-mark-start ... > | <text:toc-mark-end ... > | <text:toc-mark ... > | <text:user-index-mark-start ... > | <text:user-index-mark-end ... > | <text:user-index-mark ... > | <text:alphabetical-index-mark-start ... > | <text:alphabetical-index-mark-end ... > | <text:alphabetical-index-mark ... > | <text:bibliography-mark ... > | <presentation:header ... > | <presentation:footer ... > | <presentation:date-time ... >)* >  @@ -20446,7 +20446,7 @@

text:subject Element

Child Relations - <text:subject (text:fixed="<boolean>" )? + <text:subject (text:fixed="#boolean" )? TEXT>  @@ -20477,7 +20477,7 @@

text:tab Element

Child Relations - <text:tab (text:tab-ref="<nonNegativeInteger>" )? + <text:tab (text:tab-ref="#nonNegativeInteger" )? >  @@ -20511,8 +20511,8 @@

text:table-count Element

Child Relations - <CHOICE_NAME_CLASS ( (style:num-format="(1 | i | I | <string>)?" | - (style:num-format="a | A" (style:num-letter-sync="<boolean>" )? + <CHOICE_NAME_CLASS ( (style:num-format="(1 | i | I | #string)?" | + (style:num-format="a | A" (style:num-letter-sync="#boolean" )? ))? )? TEXT>  @@ -20548,9 +20548,9 @@

text:table-formula Element

Child Relations - <text:table-formula (text:formula="<string>" )? + <text:table-formula (text:formula="#string" )? (text:display="value | formula" )? - (style:data-style-name="(<NCName>)?" )? + (style:data-style-name="(#NCName)?" )? TEXT>  @@ -20594,9 +20594,9 @@

text:table-index Element

Child Relations - <text:table-index (text:style-name="(<NCName>)?" )? - text:name="<string>" (text:protected="<boolean>" )? - (text:protection-key="<string>" )? + <text:table-index (text:style-name="(#NCName)?" )? + text:name="#string" (text:protected="#boolean" )? + (text:protection-key="#string" )? <text:table-index-source ... ><text:index-body ... >>  @@ -20628,7 +20628,7 @@

text:table-index-entry-t Child Relations <text:table-index-entry-template - (text:style-name="(<NCName>)?" (<text:index-entry-page-number ... > | <text:index-entry-text ... > | <text:index-entry-span ... > | <text:index-entry-tab-stop ... >)* )>  + (text:style-name="(#NCName)?" (<text:index-entry-page-number ... > | <text:index-entry-text ... > | <text:index-entry-span ... > | <text:index-entry-tab-stop ... >)* )> 
@@ -20661,9 +20661,9 @@

text:table-index-source Element< Child Relations <text:table-index-source (text:index-scope="document | chapter" )? - (text:relative-tab-stop-position="<boolean>" )? - (text:use-caption="<boolean>" )? - (text:caption-sequence-name="<string>" )? + (text:relative-tab-stop-position="#boolean" )? + (text:use-caption="#boolean" )? + (text:caption-sequence-name="#string" )? (text:caption-sequence-format="text | category-and-value | caption" )? (<text:index-title-template ... >)? (<text:table-index-entry-template ... >)? @@ -20710,9 +20710,9 @@

text:table-of-content Element< Child Relations - <text:table-of-content (text:style-name="(<NCName>)?" )? - text:name="<string>" (text:protected="<boolean>" )? - (text:protection-key="<string>" )? + <text:table-of-content (text:style-name="(#NCName)?" )? + text:name="#string" (text:protected="#boolean" )? + (text:protection-key="#string" )? <text:table-of-content-source ... ><text:index-body ... >>  @@ -20747,7 +20747,7 @@

text:table-of-conte Child Relations - <text:table-of-content-entry-template text:outline-level="<positiveInteger>" text:style-name="(<NCName>)?" (<text:index-entry-chapter ... > | <text:index-entry-page-number ... > | <text:index-entry-text ... > | <text:index-entry-span ... > | <text:index-entry-tab-stop ... > | <text:index-entry-link-start ... > | <text:index-entry-link-end ... >)* >  + <text:table-of-content-entry-template text:outline-level="#positiveInteger" text:style-name="(#NCName)?" (<text:index-entry-chapter ... > | <text:index-entry-page-number ... > | <text:index-entry-text ... > | <text:index-entry-span ... > | <text:index-entry-tab-stop ... > | <text:index-entry-link-start ... > | <text:index-entry-link-end ... >)* > 
@@ -20781,12 +20781,12 @@

text:table-of-content-sourc Child Relations - <text:table-of-content-source (text:outline-level="<positiveInteger>" )? - (text:use-outline-level="<boolean>" )? - (text:use-index-marks="<boolean>" )? - (text:use-index-source-styles="<boolean>" )? + <text:table-of-content-source (text:outline-level="#positiveInteger" )? + (text:use-outline-level="#boolean" )? + (text:use-index-marks="#boolean" )? + (text:use-index-source-styles="#boolean" )? (text:index-scope="document | chapter" )? - (text:relative-tab-stop-position="<boolean>" )? + (text:relative-tab-stop-position="#boolean" )? (<text:index-title-template ... >)? (<text:table-of-content-entry-template ... >)* (<text:index-source-styles ... >)* >  @@ -20886,10 +20886,10 @@

text:time Element

Child Relations - <text:time (text:fixed="<boolean>" )? - (style:data-style-name="(<NCName>)?" )? - (text:time-value="<time> | <dateTime>" )? - (text:time-adjust="<duration>" )? + <text:time (text:fixed="#boolean" )? + (style:data-style-name="(#NCName)?" )? + (text:time-value="#time | #dateTime" )? + (text:time-adjust="#duration" )? TEXT>  @@ -20921,7 +20921,7 @@

text:title Element

Child Relations - <text:title (text:fixed="<boolean>" )? + <text:title (text:fixed="#boolean" )? TEXT>  @@ -20953,7 +20953,7 @@

text:toc-mark Element

Child Relations - <text:toc-mark text:string-value="<string>" (text:outline-level="<positiveInteger>" )? + <text:toc-mark text:string-value="#string" (text:outline-level="#positiveInteger" )? >  @@ -20984,7 +20984,7 @@

text:toc-mark-end Element

Child Relations - <text:toc-mark-end text:id="<string>" >  + <text:toc-mark-end text:id="#string" > 
@@ -21016,7 +21016,7 @@

text:toc-mark-start Element

Child Relations <text:toc-mark-start - (text:id="<string>" (text:outline-level="<positiveInteger>" )? + (text:id="#string" (text:outline-level="#positiveInteger" )? )>  @@ -21048,7 +21048,7 @@

text:tracked-changes Element Child Relations - <text:tracked-changes (text:track-changes="<boolean>" )? + <text:tracked-changes (text:track-changes="#boolean" )? (<text:changed-region ... >)* >  @@ -21087,13 +21087,13 @@

text:user-defined Element

Child Relations - <text:user-defined (text:fixed="<boolean>" )? - text:name="<string>" (style:data-style-name="(<NCName>)?" )? - (office:value="<double>" )? - (office:date-value="<date> | <dateTime>" )? - (office:time-value="<duration>" )? - (office:boolean-value="<boolean>" )? - (office:string-value="<string>" )? + <text:user-defined (text:fixed="#boolean" )? + text:name="#string" (style:data-style-name="(#NCName)?" )? + (office:value="#double" )? + (office:date-value="#date | #dateTime" )? + (office:time-value="#duration" )? + (office:boolean-value="#boolean" )? + (office:string-value="#string" )? TEXT>  @@ -21134,17 +21134,17 @@

text:user-field-decl Element Child Relations - <text:user-field-decl text:name="<string>" ( (text:formula="<string>" )? + <text:user-field-decl text:name="#string" ( (text:formula="#string" )? )? - (office:value-type="float" office:value="<double>" ) | - (office:value-type="percentage" office:value="<double>" ) | - (office:value-type="currency" office:value="<double>" (office:currency="<string>" )? + (office:value-type="float" office:value="#double" ) | + (office:value-type="percentage" office:value="#double" ) | + (office:value-type="currency" office:value="#double" (office:currency="#string" )? ) | - (office:value-type="date" office:date-value="<date> | <dateTime>" ) | - (office:value-type="time" office:time-value="<duration>" ) | - (office:value-type="boolean" office:boolean-value="<boolean>" ) | - (office:value-type="string" (office:string-value="<string>" )? + (office:value-type="date" office:date-value="#date | #dateTime" ) | + (office:value-type="time" office:time-value="#duration" ) | + (office:value-type="boolean" office:boolean-value="#boolean" ) | + (office:value-type="string" (office:string-value="#string" )? )>  @@ -21212,8 +21212,8 @@

text:user-field-get Element

Child Relations - <text:user-field-get text:name="<string>" (text:display="value | formula | none" )? - (style:data-style-name="(<NCName>)?" )? + <text:user-field-get text:name="#string" (text:display="value | formula | none" )? + (style:data-style-name="(#NCName)?" )? TEXT>  @@ -21247,8 +21247,8 @@

text:user-field-input Element< Child Relations - <text:user-field-input text:name="<string>" (text:description="TEXT" )? - (style:data-style-name="(<NCName>)?" )? + <text:user-field-input text:name="#string" (text:description="TEXT" )? + (style:data-style-name="(#NCName)?" )? TEXT>  @@ -21292,9 +21292,9 @@

text:user-index Element

Child Relations - <text:user-index (text:style-name="(<NCName>)?" )? - text:name="<string>" (text:protected="<boolean>" )? - (text:protection-key="<string>" )? + <text:user-index (text:style-name="(#NCName)?" )? + text:name="#string" (text:protected="#boolean" )? + (text:protection-key="#string" )? <text:user-index-source ... ><text:index-body ... >>  @@ -21327,7 +21327,7 @@

text:user-index-entry-tem Child Relations - <text:user-index-entry-template text:outline-level="<positiveInteger>" text:style-name="(<NCName>)?" (<text:index-entry-chapter ... > | <text:index-entry-page-number ... > | <text:index-entry-text ... > | <text:index-entry-span ... > | <text:index-entry-tab-stop ... >)* >  + <text:user-index-entry-template text:outline-level="#positiveInteger" text:style-name="(#NCName)?" (<text:index-entry-chapter ... > | <text:index-entry-page-number ... > | <text:index-entry-text ... > | <text:index-entry-span ... > | <text:index-entry-tab-stop ... >)* > 
@@ -21359,8 +21359,8 @@

text:user-index-mark Element Child Relations - <text:user-index-mark text:string-value="<string>" (text:outline-level="<positiveInteger>" )? - text:index-name="<string>" >  + <text:user-index-mark text:string-value="#string" (text:outline-level="#positiveInteger" )? + text:index-name="#string" > 
@@ -21391,7 +21391,7 @@

text:user-index-mark-end Elemen Child Relations - <text:user-index-mark-end text:id="<string>" (text:outline-level="<positiveInteger>" )? + <text:user-index-mark-end text:id="#string" (text:outline-level="#positiveInteger" )? >  @@ -21424,8 +21424,8 @@

text:user-index-mark-start El Child Relations - <text:user-index-mark-start text:id="<string>" (text:outline-level="<positiveInteger>" )? - text:index-name="<string>" >  + <text:user-index-mark-start text:id="#string" (text:outline-level="#positiveInteger" )? + text:index-name="#string" > 
@@ -21464,14 +21464,14 @@

text:user-index-source ElementChild Relations <text:user-index-source ( (text:index-scope="document | chapter" )? - (text:relative-tab-stop-position="<boolean>" )? - text:index-name="<string>" ) - ( (text:use-index-marks="<boolean>" )? - (text:use-graphics="<boolean>" )? - (text:use-tables="<boolean>" )? - (text:use-floating-frames="<boolean>" )? - (text:use-objects="<boolean>" )? - ) (text:copy-outline-levels="<boolean>" )? + (text:relative-tab-stop-position="#boolean" )? + text:index-name="#string" ) + ( (text:use-index-marks="#boolean" )? + (text:use-graphics="#boolean" )? + (text:use-tables="#boolean" )? + (text:use-floating-frames="#boolean" )? + (text:use-objects="#boolean" )? + ) (text:copy-outline-levels="#boolean" )? (<text:index-title-template ... >)? (<text:user-index-entry-template ... >)* (<text:index-source-styles ... >)* >  @@ -21500,7 +21500,7 @@

text:variable-decl Element

Child Relations - <text:variable-decl text:name="<string>" office:value-type="float | time | date | percentage | currency | boolean | string" >  + <text:variable-decl text:name="#string" office:value-type="float | time | date | percentage | currency | boolean | string" > 
@@ -21567,8 +21567,8 @@

text:variable-get Element

Child Relations - <text:variable-get text:name="<string>" (text:display="value | formula" )? - (style:data-style-name="(<NCName>)?" )? + <text:variable-get text:name="#string" (text:display="value | formula" )? + (style:data-style-name="(#NCName)?" )? TEXT>  @@ -21604,9 +21604,9 @@

text:variable-input Element

Child Relations - <text:variable-input text:name="<string>" (text:description="TEXT" )? + <text:variable-input text:name="#string" (text:description="TEXT" )? office:value-type="float | time | date | percentage | currency | boolean | string" (text:display="value | none" )? - (style:data-style-name="(<NCName>)?" )? + (style:data-style-name="(#NCName)?" )? TEXT>  @@ -21654,18 +21654,18 @@

text:variable-set Element

Child Relations - <text:variable-set text:name="<string>" (text:formula="<string>" )? + <text:variable-set text:name="#string" (text:formula="#string" )? - (office:value-type="float" office:value="<double>" ) | - (office:value-type="percentage" office:value="<double>" ) | - (office:value-type="currency" office:value="<double>" (office:currency="<string>" )? + (office:value-type="float" office:value="#double" ) | + (office:value-type="percentage" office:value="#double" ) | + (office:value-type="currency" office:value="#double" (office:currency="#string" )? ) | - (office:value-type="date" office:date-value="<date> | <dateTime>" ) | - (office:value-type="time" office:time-value="<duration>" ) | - (office:value-type="boolean" office:boolean-value="<boolean>" ) | - (office:value-type="string" (office:string-value="<string>" )? + (office:value-type="date" office:date-value="#date | #dateTime" ) | + (office:value-type="time" office:time-value="#duration" ) | + (office:value-type="boolean" office:boolean-value="#boolean" ) | + (office:value-type="string" (office:string-value="#string" )? ) (text:display="value | none" )? - (style:data-style-name="(<NCName>)?" )? + (style:data-style-name="(#NCName)?" )? TEXT>  @@ -21699,8 +21699,8 @@

text:word-count Element

Child Relations - <CHOICE_NAME_CLASS ( (style:num-format="(1 | i | I | <string>)?" | - (style:num-format="a | A" (style:num-letter-sync="<boolean>" )? + <CHOICE_NAME_CLASS ( (style:num-format="(1 | i | I | #string)?" | + (style:num-format="a | A" (style:num-letter-sync="#boolean" )? ))? )? TEXT>  @@ -21756,7 +21756,7 @@

anim:audio-level Attribute

RNG Relations - anim:audio-level="<double>"   + anim:audio-level="#double"  
@@ -21833,7 +21833,7 @@

anim:command Attribute

RNG Relations - anim:command="<string>"   + anim:command="#string"  
@@ -21862,7 +21862,7 @@

anim:formula Attribute

RNG Relations - anim:formula="<string>"   + anim:formula="#string"  
@@ -21891,7 +21891,7 @@

anim:id Attribute

RNG Relations - anim:id="<ID>"   + anim:id="#ID"  
@@ -21916,7 +21916,7 @@

anim:iterate-interval Attribute< RNG Relations - anim:iterate-interval="<duration>"   + anim:iterate-interval="#duration"  
@@ -21941,7 +21941,7 @@

anim:iterate-type Attribute

RNG Relations - anim:iterate-type="<string>"   + anim:iterate-type="#string"  
@@ -21997,7 +21997,7 @@

anim:sub-item Attribute

RNG Relations - anim:sub-item="<string>"   + anim:sub-item="#string"  
@@ -22046,7 +22046,7 @@

chart:attached-axis Attribute< RNG Relations - chart:attached-axis="<string>"   + chart:attached-axis="#string"  
@@ -22125,7 +22125,7 @@

chart:column-mapping Attribute RNG Relations - chart:column-mapping="<string>"   + chart:column-mapping="#string"  
@@ -22315,7 +22315,7 @@

chart:name Attribute

RNG Relations - chart:name="<string>"   + chart:name="#string"  
@@ -22340,7 +22340,7 @@

chart:repeated Attribute

RNG Relations - chart:repeated="<nonNegativeInteger>"   + chart:repeated="#nonNegativeInteger"  
@@ -22365,7 +22365,7 @@

chart:row-mapping Attribute

RNG Relations - chart:row-mapping="<string>"   + chart:row-mapping="#string"  
@@ -22407,7 +22407,7 @@

chart:style-name Attribute

RNG Relations - chart:style-name="(<NCName>)?"   + chart:style-name="(#NCName)?"  
@@ -22461,7 +22461,7 @@

config:name Attribute

RNG Relations - config:name="<string>"   + config:name="#string"  
@@ -22646,7 +22646,7 @@

dr3d:enabled Attribute

RNG Relations - dr3d:enabled="<boolean>"   + dr3d:enabled="#boolean"  
@@ -22699,7 +22699,7 @@

dr3d:lighting-mode Attribute RNG Relations - dr3d:lighting-mode="<boolean>"   + dr3d:lighting-mode="#boolean"  
@@ -22833,7 +22833,7 @@

dr3d:shadow-slant Attribute

RNG Relations - dr3d:shadow-slant="<nonNegativeInteger>"   + dr3d:shadow-slant="#nonNegativeInteger"  
@@ -22884,7 +22884,7 @@

dr3d:specular Attribute

RNG Relations - dr3d:specular="<boolean>"   + dr3d:specular="#boolean"  
@@ -23049,7 +23049,7 @@

draw:angle Attribute

RNG Relations - draw:angle="<integer>"   + draw:angle="#integer"  
@@ -23140,7 +23140,7 @@

draw:caption-id Attribute (ne RNG Relations - draw:caption-id="<IDREF>"   + draw:caption-id="#IDREF"  
@@ -23217,7 +23217,7 @@

draw:chain-next-name Attribute RNG Relations - draw:chain-next-name="<string>"   + draw:chain-next-name="#string"  
@@ -23288,7 +23288,7 @@

draw:class-names Attribute

RNG Relations draw:class-names=" -START_list(<NCName>)* +START_list(#NCName)* END_list"   @@ -23417,7 +23417,7 @@

draw:concentric- RNG Relations - draw:concentric-gradient-fill-allowed="<boolean>"   + draw:concentric-gradient-fill-allowed="#boolean"  
@@ -23442,7 +23442,7 @@

draw:control Attribute

RNG Relations - draw:control="<IDREF>"   + draw:control="#IDREF"  
@@ -23467,7 +23467,7 @@

draw:copy-of Attribute

RNG Relations - draw:copy-of="<string>"   + draw:copy-of="#string"  
@@ -23520,7 +23520,7 @@

draw:corners Attribute

RNG Relations - draw:corners="<positiveInteger>"   + draw:corners="#positiveInteger"  
@@ -23597,7 +23597,7 @@

draw:data Attribute

RNG Relations - draw:data="<string>"   + draw:data="#string"  
@@ -23657,7 +23657,7 @@

draw:display-name Attribute

RNG Relations - draw:display-name="<string>"   + draw:display-name="#string"  
@@ -23708,7 +23708,7 @@

draw:dots1 Attribute

RNG Relations - draw:dots1="<integer>"   + draw:dots1="#integer"  
@@ -23758,7 +23758,7 @@

draw:dots2 Attribute

RNG Relations - draw:dots2="<integer>"   + draw:dots2="#integer"  
@@ -23834,7 +23834,7 @@

draw:end-angle Attribute

RNG Relations - draw:end-angle="<double>"   + draw:end-angle="#double"  
@@ -23884,7 +23884,7 @@

draw:end-glue-point Attribute< RNG Relations - draw:end-glue-point="<nonNegativeInteger>"   + draw:end-glue-point="#nonNegativeInteger"  
@@ -23934,7 +23934,7 @@

draw:end-shape Attribute

RNG Relations - draw:end-shape="<IDREF>"   + draw:end-shape="#IDREF"  
@@ -23984,7 +23984,7 @@

draw:enhanced-path Attribute RNG Relations - draw:enhanced-path="<string>"   + draw:enhanced-path="#string"  
@@ -24010,7 +24010,7 @@

draw:extrusion Attribute

RNG Relations - draw:extrusion="<boolean>"   + draw:extrusion="#boolean"  
@@ -24036,7 +24036,7 @@

draw:extrusion-allowed Attribut RNG Relations - draw:extrusion-allowed="<boolean>"   + draw:extrusion-allowed="#boolean"  
@@ -24087,7 +24087,7 @@

draw:extrusion-color Attribute RNG Relations - draw:extrusion-color="<boolean>"   + draw:extrusion-color="#boolean"  
@@ -24114,7 +24114,7 @@

draw:extrusion-depth Attribute RNG Relations draw:extrusion-depth=" -START_liststring]<double> +START_liststring]#double END_list"   @@ -24191,7 +24191,7 @@

draw:extrusion-first- RNG Relations - draw:extrusion-first-light-harsh="<boolean>"   + draw:extrusion-first-light-harsh="#boolean"  
@@ -24242,7 +24242,7 @@

draw:extrusion-light-face At RNG Relations - draw:extrusion-light-face="<boolean>"   + draw:extrusion-light-face="#boolean"  
@@ -24268,7 +24268,7 @@

draw:extrusion-metal Attribute RNG Relations - draw:extrusion-metal="<boolean>"   + draw:extrusion-metal="#boolean"  
@@ -24293,7 +24293,7 @@

draw:extrusion- RNG Relations - draw:extrusion-number-of-line-segments="<integer>"   + draw:extrusion-number-of-line-segments="#integer"  
@@ -24319,7 +24319,7 @@

draw:extrusion-origin Attribute< RNG Relations draw:extrusion-origin=" -START_list<double><double> +START_list#double#double END_list"   @@ -24346,7 +24346,7 @@

draw:extrusion-rotation- RNG Relations draw:extrusion-rotation-angle=" -START_list<double><double> +START_list#double#double END_list"   @@ -24423,7 +24423,7 @@

draw:extrusion-secon RNG Relations - draw:extrusion-second-light-harsh="<boolean>"   + draw:extrusion-second-light-harsh="#boolean"  
@@ -24499,7 +24499,7 @@

draw:extrusion-skew Attribute< RNG Relations draw:extrusion-skew=" -START_list<double><double> +START_list#double#double END_list"   @@ -24550,7 +24550,7 @@

draw:extrusion-viewpoint Attr RNG Relations - draw:extrusion-viewpoint="<string>"   + draw:extrusion-viewpoint="#string"  
@@ -24575,7 +24575,7 @@

draw:filter-name Attribute

RNG Relations - draw:filter-name="<string>"   + draw:filter-name="#string"  
@@ -24600,7 +24600,7 @@

draw:formula Attribute

RNG Relations - draw:formula="<string>"   + draw:formula="#string"  
@@ -24625,7 +24625,7 @@

draw:frame-name Attribute

RNG Relations - draw:frame-name="<string>"   + draw:frame-name="#string"  
@@ -24701,7 +24701,7 @@

draw:glue-points Attribute

RNG Relations - draw:glue-points="<string>"   + draw:glue-points="#string"  
@@ -24727,7 +24727,7 @@

draw:handle-mirror-horiz RNG Relations - draw:handle-mirror-horizontal="<boolean>"   + draw:handle-mirror-horizontal="#boolean"  
@@ -24753,7 +24753,7 @@

draw:handle-mirror-vertica RNG Relations - draw:handle-mirror-vertical="<boolean>"   + draw:handle-mirror-vertical="#boolean"  
@@ -24778,7 +24778,7 @@

draw:handle-polar Attribute

RNG Relations - draw:handle-polar="<string>"   + draw:handle-polar="#string"  
@@ -24803,7 +24803,7 @@

draw:handle-position Attribute RNG Relations - draw:handle-position="<string>"   + draw:handle-position="#string"  
@@ -24828,7 +24828,7 @@

draw:handle-radius-ra RNG Relations - draw:handle-radius-range-maximum="<string>"   + draw:handle-radius-range-maximum="#string"  
@@ -24853,7 +24853,7 @@

draw:handle-radius-ra RNG Relations - draw:handle-radius-range-minimum="<string>"   + draw:handle-radius-range-minimum="#string"  
@@ -24878,7 +24878,7 @@

draw:handle-range-x-maximu RNG Relations - draw:handle-range-x-maximum="<string>"   + draw:handle-range-x-maximum="#string"  
@@ -24903,7 +24903,7 @@

draw:handle-range-x-minimu RNG Relations - draw:handle-range-x-minimum="<string>"   + draw:handle-range-x-minimum="#string"  
@@ -24928,7 +24928,7 @@

draw:handle-range-y-maximu RNG Relations - draw:handle-range-y-maximum="<string>"   + draw:handle-range-y-maximum="#string"  
@@ -24953,7 +24953,7 @@

draw:handle-range-y-minimu RNG Relations - draw:handle-range-y-minimum="<string>"   + draw:handle-range-y-minimum="#string"  
@@ -24979,7 +24979,7 @@

draw:handle-switched Attribute RNG Relations - draw:handle-switched="<boolean>"   + draw:handle-switched="#boolean"  
@@ -25005,7 +25005,7 @@

draw:id[1] Attribute

RNG Relations - draw:id="<nonNegativeInteger>"   + draw:id="#nonNegativeInteger"  
@@ -25053,7 +25053,7 @@

draw:id[2] Attribute

RNG Relations - draw:id="<ID>"   + draw:id="#ID"  
@@ -25127,7 +25127,7 @@

draw:layer Attribute

RNG Relations - draw:layer="<string>"   + draw:layer="#string"  
@@ -25179,7 +25179,7 @@

draw:master-page-name Attribute< RNG Relations - draw:master-page-name="(<NCName>)?"   + draw:master-page-name="(#NCName)?"  
@@ -25205,7 +25205,7 @@

draw:may-script Attribute

RNG Relations - draw:may-script="<boolean>"   + draw:may-script="#boolean"  
@@ -25255,7 +25255,7 @@

draw:mirror-horizontal Attribut RNG Relations - draw:mirror-horizontal="<boolean>"   + draw:mirror-horizontal="#boolean"  
@@ -25281,7 +25281,7 @@

draw:mirror-vertical Attribute RNG Relations - draw:mirror-vertical="<boolean>"   + draw:mirror-vertical="#boolean"  
@@ -25306,7 +25306,7 @@

draw:modifiers Attribute

RNG Relations - draw:modifiers="<string>"   + draw:modifiers="#string"  
@@ -25376,7 +25376,7 @@

draw:name[2] Attribute

RNG Relations - draw:name="<string>"   + draw:name="#string"  
@@ -25409,7 +25409,7 @@

draw:name[3] Attribute

RNG Relations - draw:name="<NCName>"   + draw:name="#NCName"  
@@ -25434,7 +25434,7 @@

draw:nav-order Attribute (new RNG Relations - draw:nav-order="<IDREFS>"   + draw:nav-order="#IDREFS"  
@@ -25486,7 +25486,7 @@

draw:notify-on-update- RNG Relations - draw:notify-on-update-of-ranges="<string>"   + draw:notify-on-update-of-ranges="#string"  
@@ -25535,7 +25535,7 @@

draw:page-number Attribute

RNG Relations - draw:page-number="<positiveInteger>"   + draw:page-number="#positiveInteger"  
@@ -25560,7 +25560,7 @@

draw:path-stretchpoint-x Attr RNG Relations - draw:path-stretchpoint-x="<double>"   + draw:path-stretchpoint-x="#double"  
@@ -25585,7 +25585,7 @@

draw:path-stretchpoint-y Attr RNG Relations - draw:path-stretchpoint-y="<double>"   + draw:path-stretchpoint-y="#double"  
@@ -25639,7 +25639,7 @@

draw:protected Attribute

RNG Relations - draw:protected="<boolean>"   + draw:protected="#boolean"  
@@ -25666,7 +25666,7 @@

draw:recreate-on-edit Attribute< RNG Relations - draw:recreate-on-edit="<boolean>"   + draw:recreate-on-edit="#boolean"  
@@ -25691,7 +25691,7 @@

draw:rotation Attribute

RNG Relations - draw:rotation="<integer>"   + draw:rotation="#integer"  
@@ -25721,7 +25721,7 @@

draw:shape-id Attribute

RNG Relations - draw:shape-id="<IDREF>"   + draw:shape-id="#IDREF"  
@@ -25797,7 +25797,7 @@

draw:start-angle Attribute

RNG Relations - draw:start-angle="<double>"   + draw:start-angle="#double"  
@@ -25847,7 +25847,7 @@

draw:start-glue-point Attribute< RNG Relations - draw:start-glue-point="<nonNegativeInteger>"   + draw:start-glue-point="#nonNegativeInteger"  
@@ -25897,7 +25897,7 @@

draw:start-shape Attribute

RNG Relations - draw:start-shape="<IDREF>"   + draw:start-shape="#IDREF"  
@@ -26034,7 +26034,7 @@

draw:style-name Attribute

RNG Relations - draw:style-name="(<NCName>)?"   + draw:style-name="(#NCName)?"  
@@ -26059,7 +26059,7 @@

draw:text-areas Attribute

RNG Relations - draw:text-areas="<string>"   + draw:text-areas="#string"  
@@ -26085,7 +26085,7 @@

draw:text-path Attribute

RNG Relations - draw:text-path="<boolean>"   + draw:text-path="#boolean"  
@@ -26111,7 +26111,7 @@

draw:text-path-allowed Attribut RNG Relations - draw:text-path-allowed="<boolean>"   + draw:text-path-allowed="#boolean"  
@@ -26164,7 +26164,7 @@

draw:text-path-same RNG Relations - draw:text-path-same-letter-heights="<boolean>"   + draw:text-path-same-letter-heights="#boolean"  
@@ -26215,7 +26215,7 @@

draw:text-rotate-angle Attribut RNG Relations - draw:text-rotate-angle="<double>"   + draw:text-rotate-angle="#double"  
@@ -26254,7 +26254,7 @@

draw:text-style-name Attribute RNG Relations - draw:text-style-name="(<NCName>)?"   + draw:text-style-name="(#NCName)?"  
@@ -26294,7 +26294,7 @@

draw:transform Attribute

RNG Relations - draw:transform="<string>"   + draw:transform="#string"  
@@ -26350,7 +26350,7 @@

draw:type[2] Attribute

RNG Relations - draw:type="non-primitive | <string>"   + draw:type="non-primitive | #string"  
@@ -26420,7 +26420,7 @@

draw:z-index Attribute

RNG Relations - draw:z-index="<nonNegativeInteger>"   + draw:z-index="#nonNegativeInteger"  
@@ -26602,7 +26602,7 @@

form:allow-deletes Attribute RNG Relations - form:allow-deletes="<boolean>"   + form:allow-deletes="#boolean"  
@@ -26628,7 +26628,7 @@

form:allow-inserts Attribute RNG Relations - form:allow-inserts="<boolean>"   + form:allow-inserts="#boolean"  
@@ -26654,7 +26654,7 @@

form:allow-updates Attribute RNG Relations - form:allow-updates="<boolean>"   + form:allow-updates="#boolean"  
@@ -26680,7 +26680,7 @@

form:apply-design-mode Attribut RNG Relations - form:apply-design-mode="<boolean>"   + form:apply-design-mode="#boolean"  
@@ -26706,7 +26706,7 @@

form:apply-filter Attribute

RNG Relations - form:apply-filter="<boolean>"   + form:apply-filter="#boolean"  
@@ -26732,7 +26732,7 @@

form:auto-complete Attribute RNG Relations - form:auto-complete="<boolean>"   + form:auto-complete="#boolean"  
@@ -26758,7 +26758,7 @@

form:automatic-focus Attribute RNG Relations - form:automatic-focus="<boolean>"   + form:automatic-focus="#boolean"  
@@ -26783,7 +26783,7 @@

form:bound-column Attribute

RNG Relations - form:bound-column="<string>"   + form:bound-column="#string"  
@@ -26943,7 +26943,7 @@

form:convert-empty-to-null RNG Relations - form:convert-empty-to-null="<boolean>"   + form:convert-empty-to-null="#boolean"  
@@ -26970,7 +26970,7 @@

form:current-selected Attribute< RNG Relations - form:current-selected="<boolean>"   + form:current-selected="#boolean"  
@@ -27023,7 +27023,7 @@

form:current-value[1] Attribute RNG Relations - form:current-value="<double>"   + form:current-value="#double"  
@@ -27053,7 +27053,7 @@

form:current-value[2] Attribute RNG Relations - form:current-value="<string>"   + form:current-value="#string"  
@@ -27079,7 +27079,7 @@

form:current-value[3] Attribute RNG Relations - form:current-value="<date>"   + form:current-value="#date"  
@@ -27105,7 +27105,7 @@

form:current-value[4] Attribute RNG Relations - form:current-value="<time>"   + form:current-value="#time"  
@@ -27140,7 +27140,7 @@

form:data-field Attribute

RNG Relations - form:data-field="<string>"   + form:data-field="#string"  
@@ -27166,7 +27166,7 @@

form:datasource Attribute

RNG Relations - form:datasource="<anyURI> | <string>"   + form:datasource="#anyURI | #string"  
@@ -27192,7 +27192,7 @@

form:default-button Attribute< RNG Relations - form:default-button="<boolean>"   + form:default-button="#boolean"  
@@ -27217,7 +27217,7 @@

form:delay-for-repeat Attribute< RNG Relations - form:delay-for-repeat="<duration>"   + form:delay-for-repeat="#duration"  
@@ -27242,7 +27242,7 @@

form:detail-fields Attribute RNG Relations - form:detail-fields="<string>"   + form:detail-fields="#string"  
@@ -27286,7 +27286,7 @@

form:disabled Attribute

RNG Relations - form:disabled="<boolean>"   + form:disabled="#boolean"  
@@ -27313,7 +27313,7 @@

form:dropdown Attribute

RNG Relations - form:dropdown="<boolean>"   + form:dropdown="#boolean"  
@@ -27363,7 +27363,7 @@

form:enctype Attribute

RNG Relations - form:enctype="<string>"   + form:enctype="#string"  
@@ -27389,7 +27389,7 @@

form:escape-processing Attribut RNG Relations - form:escape-processing="<boolean>"   + form:escape-processing="#boolean"  
@@ -27414,7 +27414,7 @@

form:filter Attribute

RNG Relations - form:filter="<string>"   + form:filter="#string"  
@@ -27440,7 +27440,7 @@

form:focus-on-click Attribute< RNG Relations - form:focus-on-click="<boolean>"   + form:focus-on-click="#boolean"  
@@ -27466,7 +27466,7 @@

form:for Attribute

RNG Relations - form:for="<string>"   + form:for="#string"  
@@ -27511,7 +27511,7 @@

form:id Attribute

RNG Relations - form:id="<ID>"   + form:id="#ID"  
@@ -27537,7 +27537,7 @@

form:ignore-result Attribute RNG Relations - form:ignore-result="<boolean>"   + form:ignore-result="#boolean"  
@@ -27593,7 +27593,7 @@

form:image-data Attribute

RNG Relations - form:image-data="<anyURI>"   + form:image-data="#anyURI"  
@@ -27678,7 +27678,7 @@

form:is-tristate Attribute

RNG Relations - form:is-tristate="<boolean>"   + form:is-tristate="#boolean"  
@@ -27710,7 +27710,7 @@

form:label Attribute

RNG Relations - form:label="<string>"   + form:label="#string"  
@@ -27736,7 +27736,7 @@

form:list-source Attribute

RNG Relations - form:list-source="<string>"   + form:list-source="#string"  
@@ -27792,7 +27792,7 @@

form:master-fields Attribute RNG Relations - form:master-fields="<string>"   + form:master-fields="#string"  
@@ -27825,7 +27825,7 @@

form:max-length Attribute

RNG Relations - form:max-length="<nonNegativeInteger>"   + form:max-length="#nonNegativeInteger"  
@@ -27851,7 +27851,7 @@

form:max-value[1] Attribute

RNG Relations - form:max-value="<time>"   + form:max-value="#time"  
@@ -27877,7 +27877,7 @@

form:max-value[2] Attribute

RNG Relations - form:max-value="<double>"   + form:max-value="#double"  
@@ -27904,7 +27904,7 @@

form:max-value[3] Attribute

RNG Relations - form:max-value="<string>"   + form:max-value="#string"  
@@ -27930,7 +27930,7 @@

form:max-value[4] Attribute

RNG Relations - form:max-value="<date>"   + form:max-value="#date"  
@@ -27957,7 +27957,7 @@

form:method Attribute

RNG Relations - form:method="get | post | <string>"   + form:method="get | post | #string"  
@@ -27984,7 +27984,7 @@

form:min-value[1] Attribute

RNG Relations - form:min-value="<string>"   + form:min-value="#string"  
@@ -28010,7 +28010,7 @@

form:min-value[2] Attribute

RNG Relations - form:min-value="<date>"   + form:min-value="#date"  
@@ -28036,7 +28036,7 @@

form:min-value[3] Attribute

RNG Relations - form:min-value="<double>"   + form:min-value="#double"  
@@ -28062,7 +28062,7 @@

form:min-value[4] Attribute

RNG Relations - form:min-value="<time>"   + form:min-value="#time"  
@@ -28088,7 +28088,7 @@

form:multi-line Attribute

RNG Relations - form:multi-line="<boolean>"   + form:multi-line="#boolean"  
@@ -28114,7 +28114,7 @@

form:multiple Attribute

RNG Relations - form:multiple="<boolean>"   + form:multiple="#boolean"  
@@ -28161,7 +28161,7 @@

form:name Attribute

RNG Relations - form:name="<string>"   + form:name="#string"  
@@ -28213,7 +28213,7 @@

form:order Attribute

RNG Relations - form:order="<string>"   + form:order="#string"  
@@ -28264,7 +28264,7 @@

form:page-step-size Attribute< RNG Relations - form:page-step-size="<positiveInteger>"   + form:page-step-size="#positiveInteger"  
@@ -28308,7 +28308,7 @@

form:printable Attribute

RNG Relations - form:printable="<boolean>"   + form:printable="#boolean"  
@@ -28334,7 +28334,7 @@

form:property-name Attribute RNG Relations - form:property-name="<string>"   + form:property-name="#string"  
@@ -28368,7 +28368,7 @@

form:readonly Attribute

RNG Relations - form:readonly="<boolean>"   + form:readonly="#boolean"  
@@ -28395,7 +28395,7 @@

form:selected Attribute

RNG Relations - form:selected="<boolean>"   + form:selected="#boolean"  
@@ -28421,7 +28421,7 @@

form:size Attribute

RNG Relations - form:size="<nonNegativeInteger>"   + form:size="#nonNegativeInteger"  
@@ -28473,7 +28473,7 @@

form:step-size Attribute

RNG Relations - form:step-size="<positiveInteger>"   + form:step-size="#positiveInteger"  
@@ -28540,7 +28540,7 @@

form:tab-index Attribute

RNG Relations - form:tab-index="<nonNegativeInteger>"   + form:tab-index="#nonNegativeInteger"  
@@ -28581,7 +28581,7 @@

form:tab-stop Attribute

RNG Relations - form:tab-stop="<boolean>"   + form:tab-stop="#boolean"  
@@ -28606,7 +28606,7 @@

form:text-style-name Attribute RNG Relations - form:text-style-name="(<NCName>)?"   + form:text-style-name="(#NCName)?"  
@@ -28674,7 +28674,7 @@

form:toggle Attribute

RNG Relations - form:toggle="<boolean>"   + form:toggle="#boolean"  
@@ -28700,7 +28700,7 @@

form:validation Attribute

RNG Relations - form:validation="<boolean>"   + form:validation="#boolean"  
@@ -28726,7 +28726,7 @@

form:value[1] Attribute

RNG Relations - form:value="<date>"   + form:value="#date"  
@@ -28752,7 +28752,7 @@

form:value[2] Attribute

RNG Relations - form:value="<time>"   + form:value="#time"  
@@ -28778,7 +28778,7 @@

form:value[3] Attribute

RNG Relations - form:value="<double>"   + form:value="#double"  
@@ -28816,7 +28816,7 @@

form:value[4] Attribute

RNG Relations - form:value="<string>"   + form:value="#string"  
@@ -28868,7 +28868,7 @@

form:xforms-list-source Attrib RNG Relations - form:xforms-list-source="<string>"   + form:xforms-list-source="#string"  
@@ -28893,7 +28893,7 @@

form:xforms-submission Attribut RNG Relations - form:xforms-submission="<string>"   + form:xforms-submission="#string"  
@@ -28920,7 +28920,7 @@

number:automatic-order Attribut RNG Relations - number:automatic-order="<boolean>"   + number:automatic-order="#boolean"  
@@ -28959,7 +28959,7 @@

number:calendar Attribute

RNG Relations - number:calendar="gregorian | gengou | ROC | hanja_yoil | hanja | hijri | jewish | buddhist | <string>"   + number:calendar="gregorian | gengou | ROC | hanja_yoil | hanja | hijri | jewish | buddhist | #string"  
@@ -29018,7 +29018,7 @@

number:decimal-places Attribute< RNG Relations - number:decimal-places="<integer>"   + number:decimal-places="#integer"  
@@ -29067,7 +29067,7 @@

number:denominator-value Attr RNG Relations - number:denominator-value="<integer>"   + number:denominator-value="#integer"  
@@ -29092,7 +29092,7 @@

number:display-factor Attribute< RNG Relations - number:display-factor="<double>"   + number:display-factor="#double"  
@@ -29147,7 +29147,7 @@

number:grouping Attribute

RNG Relations - number:grouping="<boolean>"   + number:grouping="#boolean"  
@@ -29204,7 +29204,7 @@

number:min-denominator-d RNG Relations - number:min-denominator-digits="<integer>"   + number:min-denominator-digits="#integer"  
@@ -29229,7 +29229,7 @@

number:min-exponent-digits RNG Relations - number:min-exponent-digits="<integer>"   + number:min-exponent-digits="#integer"  
@@ -29256,7 +29256,7 @@

number:min-integer-digits At RNG Relations - number:min-integer-digits="<integer>"   + number:min-integer-digits="#integer"  
@@ -29281,7 +29281,7 @@

number:min-numerator-digit RNG Relations - number:min-numerator-digits="<integer>"   + number:min-numerator-digits="#integer"  
@@ -29306,7 +29306,7 @@

number:position Attribute

RNG Relations - number:position="<integer>"   + number:position="#integer"  
@@ -29332,7 +29332,7 @@

number:possessive-form Attribut RNG Relations - number:possessive-form="<boolean>"   + number:possessive-form="#boolean"  
@@ -29392,7 +29392,7 @@

number:textual Attribute

RNG Relations - number:textual="<boolean>"   + number:textual="#boolean"  
@@ -29484,7 +29484,7 @@

number:transliteration-f RNG Relations - number:transliteration-format="<string>"   + number:transliteration-format="#string"  
@@ -29574,7 +29574,7 @@

number:truncate-on-overflo RNG Relations - number:truncate-on-overflow="<boolean>"   + number:truncate-on-overflow="#boolean"  
@@ -29601,7 +29601,7 @@

office:automatic-update Attrib RNG Relations - office:automatic-update="<boolean>"   + office:automatic-update="#boolean"  
@@ -29635,7 +29635,7 @@

office:boolean-value Attribute RNG Relations - office:boolean-value="<boolean>"   + office:boolean-value="#boolean"  
@@ -29694,7 +29694,7 @@

office:currency Attribute

RNG Relations - office:currency="<string>"   + office:currency="#string"  
@@ -29728,7 +29728,7 @@

office:date-value Attribute

RNG Relations - office:date-value="<date> | <dateTime>"   + office:date-value="#date | #dateTime"  
@@ -29754,7 +29754,7 @@

office:dde-application Attribut RNG Relations - office:dde-application="<string>"   + office:dde-application="#string"  
@@ -29780,7 +29780,7 @@

office:dde-item Attribute

RNG Relations - office:dde-item="<string>"   + office:dde-item="#string"  
@@ -29806,7 +29806,7 @@

office:dde-topic Attribute

RNG Relations - office:dde-topic="<string>"   + office:dde-topic="#string"  
@@ -29832,7 +29832,7 @@

office:display Attribute

RNG Relations - office:display="<boolean>"   + office:display="#boolean"  
@@ -29857,7 +29857,7 @@

office:mimetype Attribute

RNG Relations - office:mimetype="<string>"   + office:mimetype="#string"  
@@ -29888,7 +29888,7 @@

office:name Attribute

RNG Relations - office:name="<string>"   + office:name="#string"  
@@ -29914,7 +29914,7 @@

office:server-map Attribute

RNG Relations - office:server-map="<boolean>"   + office:server-map="#boolean"  
@@ -29947,7 +29947,7 @@

office:string-value Attribute< RNG Relations - office:string-value="<string>"   + office:string-value="#string"  
@@ -29978,7 +29978,7 @@

office:target-frame Attribute< RNG Relations - office:target-frame="_self | _blank | _parent | _top | <string>"   + office:target-frame="_self | _blank | _parent | _top | #string"  
@@ -30011,7 +30011,7 @@

office:target-frame-name Attr RNG Relations - office:target-frame-name="_self | _blank | _parent | _top | <string>"   + office:target-frame-name="_self | _blank | _parent | _top | #string"  
@@ -30044,7 +30044,7 @@

office:time-value Attribute

RNG Relations - office:time-value="<duration>"   + office:time-value="#duration"  
@@ -30070,7 +30070,7 @@

office:title Attribute (new in O RNG Relations - office:title="<string>"   + office:title="#string"  
@@ -30105,7 +30105,7 @@

office:value Attribute

RNG Relations - office:value="<double>"   + office:value="#double"  
@@ -30425,7 +30425,7 @@

office:version Attribute

RNG Relations - office:version="<string>"   + office:version="#string"  
@@ -30575,7 +30575,7 @@

presentation:class-names Attr RNG Relations presentation:class-names=" -START_list(<NCName>)* +START_list(#NCName)* END_list"   @@ -30604,7 +30604,7 @@

presentation:delay Attribute RNG Relations - presentation:delay="<duration>"   + presentation:delay="#duration"  
@@ -30731,7 +30731,7 @@

presentation:endless Attribute RNG Relations - presentation:endless="<boolean>"   + presentation:endless="#boolean"  
@@ -30757,7 +30757,7 @@

presentation:force-manual At RNG Relations - presentation:force-manual="<boolean>"   + presentation:force-manual="#boolean"  
@@ -30783,7 +30783,7 @@

presentation:full-screen Attr RNG Relations - presentation:full-screen="<boolean>"   + presentation:full-screen="#boolean"  
@@ -30812,7 +30812,7 @@

presentation:group-id Attribute< RNG Relations - presentation:group-id="<string>"   + presentation:group-id="#string"  
@@ -30841,7 +30841,7 @@

presentation:master-elemen RNG Relations - presentation:master-element="<IDREF>"   + presentation:master-element="#IDREF"  
@@ -30867,7 +30867,7 @@

presentation:mouse-as-pen At RNG Relations - presentation:mouse-as-pen="<boolean>"   + presentation:mouse-as-pen="#boolean"  
@@ -30893,7 +30893,7 @@

presentation:mouse-visible RNG Relations - presentation:mouse-visible="<boolean>"   + presentation:mouse-visible="#boolean"  
@@ -30921,7 +30921,7 @@

presentation:name Attribute

RNG Relations - presentation:name="<string>"   + presentation:name="#string"  
@@ -31072,7 +31072,7 @@

presentation:pause Attribute RNG Relations - presentation:pause="<duration>"   + presentation:pause="#duration"  
@@ -31099,7 +31099,7 @@

presentation:placeholder Attr RNG Relations - presentation:placeholder="<boolean>"   + presentation:placeholder="#boolean"  
@@ -31125,7 +31125,7 @@

presentation:play-full Attribut RNG Relations - presentation:play-full="<boolean>"   + presentation:play-full="#boolean"  
@@ -31151,7 +31151,7 @@

presentatio RNG Relations - presentation:presentation-page-layout-name="(<NCName>)?"   + presentation:presentation-page-layout-name="(#NCName)?"  
@@ -31215,7 +31215,7 @@

presentation:preset-id Attribut RNG Relations - presentation:preset-id="<string>"   + presentation:preset-id="#string"  
@@ -31244,7 +31244,7 @@

presentation:preset-sub-t RNG Relations - presentation:preset-sub-type="<string>"   + presentation:preset-sub-type="#string"  
@@ -31269,7 +31269,7 @@

presentation:show Attribute

RNG Relations - presentation:show="<string>"   + presentation:show="#string"  
@@ -31295,7 +31295,7 @@

presentati RNG Relations - presentation:show-end-of-presentation-slide="<boolean>"   + presentation:show-end-of-presentation-slide="#boolean"  
@@ -31321,7 +31321,7 @@

presentation:show-logo Attribut RNG Relations - presentation:show-logo="<boolean>"   + presentation:show-logo="#boolean"  
@@ -31404,7 +31404,7 @@

presentation:start-page Attrib RNG Relations - presentation:start-page="<string>"   + presentation:start-page="#string"  
@@ -31459,7 +31459,7 @@

presentation:start-w RNG Relations - presentation:start-with-navigator="<boolean>"   + presentation:start-with-navigator="#boolean"  
@@ -31485,7 +31485,7 @@

presentation:stay-on-top Attr RNG Relations - presentation:stay-on-top="<boolean>"   + presentation:stay-on-top="#boolean"  
@@ -31531,7 +31531,7 @@

presentation:style-name Attrib RNG Relations - presentation:style-name="(<NCName>)?"   + presentation:style-name="(#NCName)?"  
@@ -31584,7 +31584,7 @@

presentation:use-date- RNG Relations - presentation:use-date-time-name="<string>"   + presentation:use-date-time-name="#string"  
@@ -31611,7 +31611,7 @@

presentation:use-footer-n RNG Relations - presentation:use-footer-name="<string>"   + presentation:use-footer-name="#string"  
@@ -31638,7 +31638,7 @@

presentation:use-header-n RNG Relations - presentation:use-header-name="<string>"   + presentation:use-header-name="#string"  
@@ -31665,7 +31665,7 @@

presentation:user-transf RNG Relations - presentation:user-transformed="<boolean>"   + presentation:user-transformed="#boolean"  
@@ -31690,7 +31690,7 @@

presentation:verb Attribute

RNG Relations - presentation:verb="<nonNegativeInteger>"   + presentation:verb="#nonNegativeInteger"  
@@ -31716,7 +31716,7 @@

script:event-name Attribute

RNG Relations - script:event-name="<string>"   + script:event-name="#string"  
@@ -31743,7 +31743,7 @@

script:language Attribute

RNG Relations - script:language="<string>"   + script:language="#string"  
@@ -31768,7 +31768,7 @@

script:macro-name Attribute

RNG Relations - script:macro-name="<string>"   + script:macro-name="#string"  
@@ -31801,7 +31801,7 @@

smil:accelerate Attribute

RNG Relations - smil:accelerate="<double>"   + smil:accelerate="#double"  
@@ -31892,7 +31892,7 @@

smil:attributeName Attribute RNG Relations - smil:attributeName="<string>"   + smil:attributeName="#string"  
@@ -31926,7 +31926,7 @@

smil:autoReverse Attribute

RNG Relations - smil:autoReverse="<boolean>"   + smil:autoReverse="#boolean"  
@@ -31961,7 +31961,7 @@

smil:begin Attribute

RNG Relations - smil:begin="<string>"   + smil:begin="#string"  
@@ -31990,7 +31990,7 @@

smil:by Attribute

RNG Relations - smil:by="<string>"   + smil:by="#string"  
@@ -32054,7 +32054,7 @@

smil:decelerate Attribute

RNG Relations - smil:decelerate="<double>"   + smil:decelerate="#double"  
@@ -32114,7 +32114,7 @@

smil:dur Attribute

RNG Relations - smil:dur="<string>"   + smil:dur="#string"  
@@ -32149,7 +32149,7 @@

smil:end Attribute

RNG Relations - smil:end="<string>"   + smil:end="#string"  
@@ -32310,7 +32310,7 @@

smil:from Attribute

RNG Relations - smil:from="<string>"   + smil:from="#string"  
@@ -32337,7 +32337,7 @@

smil:keySplines Attribute

RNG Relations - smil:keySplines="<string>"   + smil:keySplines="#string"  
@@ -32364,7 +32364,7 @@

smil:keyTimes Attribute

RNG Relations - smil:keyTimes="<string>"   + smil:keyTimes="#string"  
@@ -32425,7 +32425,7 @@

smil:repeatCount Attribute

RNG Relations - smil:repeatCount="<nonNegativeInteger> | indefinite"   + smil:repeatCount="#nonNegativeInteger | indefinite"  
@@ -32459,7 +32459,7 @@

smil:repeatDur Attribute

RNG Relations - smil:repeatDur="<string>"   + smil:repeatDur="#string"  
@@ -32556,7 +32556,7 @@

smil:subtype Attribute

RNG Relations - smil:subtype="<string>"   + smil:subtype="#string"  
@@ -32588,7 +32588,7 @@

smil:targetElement Attribute RNG Relations - smil:targetElement="<IDREF>"   + smil:targetElement="#IDREF"  
@@ -32618,7 +32618,7 @@

smil:to Attribute

RNG Relations - smil:to="<string>"   + smil:to="#string"  
@@ -32643,7 +32643,7 @@

smil:type Attribute

RNG Relations - smil:type="<string>"   + smil:type="#string"  
@@ -32672,7 +32672,7 @@

smil:values Attribute

RNG Relations - smil:values="<string>"   + smil:values="#string"  
@@ -32697,7 +32697,7 @@

style:apply-style-name Attribut RNG Relations - style:apply-style-name="(<NCName>)?"   + style:apply-style-name="(#NCName)?"  
@@ -32723,7 +32723,7 @@

style:auto-update Attribute

RNG Relations - style:auto-update="<boolean>"   + style:auto-update="#boolean"  
@@ -32773,7 +32773,7 @@

style:class Attribute

RNG Relations - style:class="<string>"   + style:class="#string"  
@@ -32798,7 +32798,7 @@

style:condition Attribute

RNG Relations - style:condition="<string>"   + style:condition="#string"  
@@ -32842,7 +32842,7 @@

style:data-style-name Attribute< RNG Relations - style:data-style-name="(<NCName>)?"   + style:data-style-name="(#NCName)?"  
@@ -32867,7 +32867,7 @@

style:default-outline-leve RNG Relations - style:default-outline-level="<positiveInteger>"   + style:default-outline-level="#positiveInteger"  
@@ -32896,7 +32896,7 @@

style:display Attribute

RNG Relations - style:display="<boolean>"   + style:display="#boolean"  
@@ -32924,7 +32924,7 @@

style:display-name Attribute RNG Relations - style:display-name="<string>"   + style:display-name="#string"  
@@ -33247,7 +33247,7 @@

style:font-adornments Attribute< RNG Relations - style:font-adornments="<string>"   + style:font-adornments="#string"  
@@ -33432,7 +33432,7 @@

style:legend-expan RNG Relations - style:legend-expansion-aspect-ratio="<double>"   + style:legend-expansion-aspect-ratio="#double"  
@@ -33457,7 +33457,7 @@

style:list-style-name Attribute< RNG Relations - style:list-style-name="(<NCName>)?"   + style:list-style-name="(#NCName)?"  
@@ -33482,7 +33482,7 @@

style:master-page-name Attribut RNG Relations - style:master-page-name="(<NCName>)?"   + style:master-page-name="(#NCName)?"  
@@ -33519,7 +33519,7 @@

style:name[1] Attribute

RNG Relations - style:name="<NCName>"   + style:name="#NCName"  
@@ -33545,7 +33545,7 @@

style:name[2] Attribute

RNG Relations - style:name="<string>"   + style:name="#string"  
@@ -33571,7 +33571,7 @@

style:next-style-name Attribute< RNG Relations - style:next-style-name="(<NCName>)?"   + style:next-style-name="(#NCName)?"  
@@ -33614,7 +33614,7 @@

style:num-format[1] Attribute

RNG Relations - style:num-format="(1 | i | I | <string>)?"   + style:num-format="(1 | i | I | #string)?"  
@@ -33695,7 +33695,7 @@

style:num-letter-sync Attribute< RNG Relations - style:num-letter-sync="<boolean>"   + style:num-letter-sync="#boolean"  
@@ -33723,7 +33723,7 @@

style:num-prefix Attribute

RNG Relations - style:num-prefix="<string>"   + style:num-prefix="#string"  
@@ -33751,7 +33751,7 @@

style:num-suffix Attribute

RNG Relations - style:num-suffix="<string>"   + style:num-suffix="#string"  
@@ -33778,7 +33778,7 @@

style:page-layout-name Attribut RNG Relations - style:page-layout-name="(<NCName>)?"   + style:page-layout-name="(#NCName)?"  
@@ -33831,7 +33831,7 @@

style:parent-style-name Attrib RNG Relations - style:parent-style-name="(<NCName>)?"   + style:parent-style-name="(#NCName)?"  
@@ -33994,7 +33994,7 @@

style:volatile Attribute

RNG Relations - style:volatile="<boolean>"   + style:volatile="#boolean"  
@@ -34019,7 +34019,7 @@

svg:accent-height Attribute

RNG Relations - svg:accent-height="<integer>"   + svg:accent-height="#integer"  
@@ -34044,7 +34044,7 @@

svg:alphabetic Attribute

RNG Relations - svg:alphabetic="<integer>"   + svg:alphabetic="#integer"  
@@ -34069,7 +34069,7 @@

svg:ascent Attribute

RNG Relations - svg:ascent="<integer>"   + svg:ascent="#integer"  
@@ -34118,7 +34118,7 @@

svg:cap-height Attribute

RNG Relations - svg:cap-height="<integer>"   + svg:cap-height="#integer"  
@@ -34257,7 +34257,7 @@

svg:d Attribute

RNG Relations - svg:d="<string>"   + svg:d="#string"  
@@ -34282,7 +34282,7 @@

svg:descent Attribute

RNG Relations - svg:descent="<integer>"   + svg:descent="#integer"  
@@ -34307,7 +34307,7 @@

svg:font-family Attribute

RNG Relations - svg:font-family="<string>"   + svg:font-family="#string"  
@@ -34531,7 +34531,7 @@

svg:gradientTransform Attribute< RNG Relations - svg:gradientTransform="<string>"   + svg:gradientTransform="#string"  
@@ -34582,7 +34582,7 @@

svg:hanging Attribute

RNG Relations - svg:hanging="<integer>"   + svg:hanging="#integer"  
@@ -34680,7 +34680,7 @@

svg:ideographic Attribute

RNG Relations - svg:ideographic="<integer>"   + svg:ideographic="#integer"  
@@ -34705,7 +34705,7 @@

svg:mathematical Attribute

RNG Relations - svg:mathematical="<integer>"   + svg:mathematical="#integer"  
@@ -34755,7 +34755,7 @@

svg:offset Attribute

RNG Relations - svg:offset="<double> | string]"   + svg:offset="#double | string]"  
@@ -34780,7 +34780,7 @@

svg:origin Attribute

RNG Relations - svg:origin="<string>"   + svg:origin="#string"  
@@ -34805,7 +34805,7 @@

svg:overline-position Attribute< RNG Relations - svg:overline-position="<integer>"   + svg:overline-position="#integer"  
@@ -34830,7 +34830,7 @@

svg:overline-thickness Attribut RNG Relations - svg:overline-thickness="<integer>"   + svg:overline-thickness="#integer"  
@@ -34879,7 +34879,7 @@

svg:path Attribute

RNG Relations - svg:path="<string>"   + svg:path="#string"  
@@ -35008,7 +35008,7 @@

svg:slope Attribute

RNG Relations - svg:slope="<integer>"   + svg:slope="#integer"  
@@ -35061,7 +35061,7 @@

svg:stemh Attribute

RNG Relations - svg:stemh="<integer>"   + svg:stemh="#integer"  
@@ -35086,7 +35086,7 @@

svg:stemv Attribute

RNG Relations - svg:stemv="<integer>"   + svg:stemv="#integer"  
@@ -35136,7 +35136,7 @@

svg:stop-opacity Attribute

RNG Relations - svg:stop-opacity="<double>"   + svg:stop-opacity="#double"  
@@ -35161,7 +35161,7 @@

svg:strikethrough-position RNG Relations - svg:strikethrough-position="<integer>"   + svg:strikethrough-position="#integer"  
@@ -35186,7 +35186,7 @@

svg:strikethrough-thicknes RNG Relations - svg:strikethrough-thickness="<integer>"   + svg:strikethrough-thickness="#integer"  
@@ -35264,7 +35264,7 @@

svg:underline-position Attribut RNG Relations - svg:underline-position="<integer>"   + svg:underline-position="#integer"  
@@ -35289,7 +35289,7 @@

svg:underline-thickness Attrib RNG Relations - svg:underline-thickness="<integer>"   + svg:underline-thickness="#integer"  
@@ -35338,7 +35338,7 @@

svg:units-per-em Attribute

RNG Relations - svg:units-per-em="<integer>"   + svg:units-per-em="#integer"  
@@ -35363,7 +35363,7 @@

svg:v-alphabetic Attribute

RNG Relations - svg:v-alphabetic="<integer>"   + svg:v-alphabetic="#integer"  
@@ -35388,7 +35388,7 @@

svg:v-hanging Attribute

RNG Relations - svg:v-hanging="<integer>"   + svg:v-hanging="#integer"  
@@ -35413,7 +35413,7 @@

svg:v-ideographic Attribute

RNG Relations - svg:v-ideographic="<integer>"   + svg:v-ideographic="#integer"  
@@ -35438,7 +35438,7 @@

svg:v-mathematical Attribute RNG Relations - svg:v-mathematical="<integer>"   + svg:v-mathematical="#integer"  
@@ -35473,7 +35473,7 @@

svg:viewBox Attribute

RNG Relations svg:viewBox=" -START_list<integer><integer><integer><integer> +START_list#integer#integer#integer#integer END_list"   @@ -35672,7 +35672,7 @@

svg:x-height Attribute

RNG Relations - svg:x-height="<integer>"   + svg:x-height="#integer"  
@@ -36023,7 +36023,7 @@

table:add-empty-lines Attribute< RNG Relations - table:add-empty-lines="<boolean>"   + table:add-empty-lines="#boolean"  
@@ -36048,7 +36048,7 @@

table:algorithm Attribute

RNG Relations - table:algorithm="<string>"   + table:algorithm="#string"  
@@ -36074,7 +36074,7 @@

table:allow-empty-cell Attribut RNG Relations - table:allow-empty-cell="<boolean>"   + table:allow-empty-cell="#boolean"  
@@ -36099,7 +36099,7 @@

table:application-data Attribut RNG Relations - table:application-data="<string>"   + table:application-data="#string"  
@@ -36125,7 +36125,7 @@

table:automatic-find-label RNG Relations - table:automatic-find-labels="<boolean>"   + table:automatic-find-labels="#boolean"  
@@ -36179,7 +36179,7 @@

table:bind-styles-to-cont RNG Relations - table:bind-styles-to-content="<boolean>"   + table:bind-styles-to-content="#boolean"  
@@ -36229,7 +36229,7 @@

table:buttons Attribute

RNG Relations - table:buttons="<string>"   + table:buttons="#string"  
@@ -36258,7 +36258,7 @@

table:case-sensitive[1] Attribute RNG Relations - table:case-sensitive="<boolean>"   + table:case-sensitive="#boolean"  
@@ -36284,7 +36284,7 @@

table:case-sensitive[2] Attribute RNG Relations - table:case-sensitive="<string>"   + table:case-sensitive="#string"  
@@ -36393,7 +36393,7 @@

table:column Attribute

RNG Relations - table:column="<integer>"   + table:column="#integer"  
@@ -36418,7 +36418,7 @@

table:comment Attribute

RNG Relations - table:comment="<string>"   + table:comment="#string"  
@@ -36443,7 +36443,7 @@

table:condition Attribute

RNG Relations - table:condition="<string>"   + table:condition="#string"  
@@ -36520,7 +36520,7 @@

table:contains-error Attribute RNG Relations - table:contains-error="<boolean>"   + table:contains-error="#boolean"  
@@ -36546,7 +36546,7 @@

table:contains-header Attribute< RNG Relations - table:contains-header="<boolean>"   + table:contains-header="#boolean"  
@@ -36572,7 +36572,7 @@

table:content-validation RNG Relations - table:content-validation-name="<string>"   + table:content-validation-name="#string"  
@@ -36598,7 +36598,7 @@

table:copy-back Attribute

RNG Relations - table:copy-back="<boolean>"   + table:copy-back="#boolean"  
@@ -36624,7 +36624,7 @@

table:copy-formulas Attribute< RNG Relations - table:copy-formulas="<boolean>"   + table:copy-formulas="#boolean"  
@@ -36650,7 +36650,7 @@

table:copy-styles Attribute

RNG Relations - table:copy-styles="<boolean>"   + table:copy-styles="#boolean"  
@@ -36675,7 +36675,7 @@

table:count Attribute

RNG Relations - table:count="<positiveInteger>"   + table:count="#positiveInteger"  
@@ -36751,7 +36751,7 @@

table:data-field Attribute

RNG Relations - table:data-field="<string>"   + table:data-field="#string"  
@@ -36781,7 +36781,7 @@

table:data-type[1] Attribute

RNG Relations - table:data-type="text | number | automatic | <string>"   + table:data-type="text | number | automatic | #string"  
@@ -36835,7 +36835,7 @@

table:database-name Attribute< RNG Relations - table:database-name="<string>"   + table:database-name="#string"  
@@ -36860,7 +36860,7 @@

table:database-table-name At RNG Relations - table:database-table-name="<string>"   + table:database-table-name="#string"  
@@ -36887,7 +36887,7 @@

table:date-end Attribute

RNG Relations - table:date-end="<date> | <dateTime> | auto"   + table:date-end="#date | #dateTime | auto"  
@@ -36914,7 +36914,7 @@

table:date-start Attribute

RNG Relations - table:date-start="<date> | <dateTime> | auto"   + table:date-start="#date | #dateTime | auto"  
@@ -36939,7 +36939,7 @@

table:date-value Attribute ( RNG Relations - table:date-value="<date>"   + table:date-value="#date"  
@@ -36965,7 +36965,7 @@

table:default-cell-style RNG Relations - table:default-cell-style-name="(<NCName>)?"   + table:default-cell-style-name="(#NCName)?"  
@@ -37022,7 +37022,7 @@

table:display Attribute

RNG Relations - table:display="<boolean>"   + table:display="#boolean"  
@@ -37048,7 +37048,7 @@

table:display-border Attribute RNG Relations - table:display-border="<boolean>"   + table:display-border="#boolean"  
@@ -37074,7 +37074,7 @@

table:display-duplicates Attr RNG Relations - table:display-duplicates="<boolean>"   + table:display-duplicates="#boolean"  
@@ -37100,7 +37100,7 @@

table:display-filter-butt RNG Relations - table:display-filter-buttons="<boolean>"   + table:display-filter-buttons="#boolean"  
@@ -37179,7 +37179,7 @@

table:drill-down-on-d RNG Relations - table:drill-down-on-double-click="<boolean>"   + table:drill-down-on-double-click="#boolean"  
@@ -37205,7 +37205,7 @@

table:enabled Attribute

RNG Relations - table:enabled="<boolean>"   + table:enabled="#boolean"  
@@ -37231,7 +37231,7 @@

table:end Attribute

RNG Relations - table:end="<double> | auto"   + table:end="#double | auto"  
@@ -37299,7 +37299,7 @@

table:end-column Attribute

RNG Relations - table:end-column="<integer>"   + table:end-column="#integer"  
@@ -37324,7 +37324,7 @@

table:end-position Attribute RNG Relations - table:end-position="<integer>"   + table:end-position="#integer"  
@@ -37350,7 +37350,7 @@

table:end-row Attribute

RNG Relations - table:end-row="<integer>"   + table:end-row="#integer"  
@@ -37376,7 +37376,7 @@

table:end-table Attribute

RNG Relations - table:end-table="<integer>"   + table:end-table="#integer"  
@@ -37486,7 +37486,7 @@

table:execute Attribute

RNG Relations - table:execute="<boolean>"   + table:execute="#boolean"  
@@ -37511,7 +37511,7 @@

table:expression Attribute

RNG Relations - table:expression="<string>"   + table:expression="#string"  
@@ -37536,7 +37536,7 @@

table:field-name Attribute

RNG Relations - table:field-name="<string>"   + table:field-name="#string"  
@@ -37563,7 +37563,7 @@

table:field-number Attribute RNG Relations - table:field-number="<nonNegativeInteger>"   + table:field-number="#nonNegativeInteger"  
@@ -37589,7 +37589,7 @@

table:filter-name Attribute

RNG Relations - table:filter-name="<string>"   + table:filter-name="#string"  
@@ -37615,7 +37615,7 @@

table:filter-options Attribute RNG Relations - table:filter-options="<string>"   + table:filter-options="#string"  
@@ -37642,7 +37642,7 @@

table:formula Attribute

RNG Relations - table:formula="<string>"   + table:formula="#string"  
@@ -37682,7 +37682,7 @@

table:function Attribute

RNG Relations - table:function="auto | average | count | countnums | max | min | product | stdev | stdevp | sum | var | varp | <string>"   + table:function="auto | average | count | countnums | max | min | product | stdev | stdevp | sum | var | varp | #string"  
@@ -37735,7 +37735,7 @@

table:group-by-field-numbe RNG Relations - table:group-by-field-number="<nonNegativeInteger>"   + table:group-by-field-number="#nonNegativeInteger"  
@@ -37792,7 +37792,7 @@

table:has-persistent-data At RNG Relations - table:has-persistent-data="<boolean>"   + table:has-persistent-data="#boolean"  
@@ -37825,7 +37825,7 @@

table:id Attribute

RNG Relations - table:id="<string>"   + table:id="#string"  
@@ -37851,7 +37851,7 @@

table:identify-categories At RNG Relations - table:identify-categories="<boolean>"   + table:identify-categories="#boolean"  
@@ -37877,7 +37877,7 @@

table:ignore-empty-rows Attrib RNG Relations - table:ignore-empty-rows="<boolean>"   + table:ignore-empty-rows="#boolean"  
@@ -37902,7 +37902,7 @@

table:index Attribute

RNG Relations - table:index="<nonNegativeInteger>"   + table:index="#nonNegativeInteger"  
@@ -37928,7 +37928,7 @@

table:is-active Attribute

RNG Relations - table:is-active="<boolean>"   + table:is-active="#boolean"  
@@ -37953,7 +37953,7 @@

table:is-data-layout-field RNG Relations - table:is-data-layout-field="<string>"   + table:is-data-layout-field="#string"  
@@ -37979,7 +37979,7 @@

table:is-selection Attribute RNG Relations - table:is-selection="<boolean>"   + table:is-selection="#boolean"  
@@ -38005,7 +38005,7 @@

table:is-sub-table Attribute RNG Relations - table:is-sub-table="<boolean>"   + table:is-sub-table="#boolean"  
@@ -38080,7 +38080,7 @@

table:last-column-spanned At RNG Relations - table:last-column-spanned="<positiveInteger>"   + table:last-column-spanned="#positiveInteger"  
@@ -38105,7 +38105,7 @@

table:last-row-spanned Attribut RNG Relations - table:last-row-spanned="<positiveInteger>"   + table:last-row-spanned="#positiveInteger"  
@@ -38158,7 +38158,7 @@

table:link-to-source-data At RNG Relations - table:link-to-source-data="<boolean>"   + table:link-to-source-data="#boolean"  
@@ -38184,7 +38184,7 @@

table:marked-invalid Attribute RNG Relations - table:marked-invalid="<boolean>"   + table:marked-invalid="#boolean"  
@@ -38210,7 +38210,7 @@

table:matrix-covered Attribute RNG Relations - table:matrix-covered="<boolean>"   + table:matrix-covered="#boolean"  
@@ -38235,7 +38235,7 @@

table:maximum-difference Attr RNG Relations - table:maximum-difference="<double>"   + table:maximum-difference="#double"  
@@ -38260,7 +38260,7 @@

table:member-count Attribute RNG Relations - table:member-count="<nonNegativeInteger>"   + table:member-count="#nonNegativeInteger"  
@@ -38285,7 +38285,7 @@

table:member-name Attribute

RNG Relations - table:member-name="<string>"   + table:member-name="#string"  
@@ -38416,7 +38416,7 @@

table:multi-deletion-span RNG Relations - table:multi-deletion-spanned="<integer>"   + table:multi-deletion-spanned="#integer"  
@@ -38482,7 +38482,7 @@

table:name[2] Attribute

RNG Relations - table:name="<string>"   + table:name="#string"  
@@ -38507,7 +38507,7 @@

table:null-year Attribute

RNG Relations - table:null-year="<positiveInteger>"   + table:null-year="#positiveInteger"  
@@ -38534,7 +38534,7 @@

table:number-columns-rep RNG Relations - table:number-columns-repeated="<positiveInteger>"   + table:number-columns-repeated="#positiveInteger"  
@@ -38559,7 +38559,7 @@

table:number-columns-span RNG Relations - table:number-columns-spanned="<positiveInteger>"   + table:number-columns-spanned="#positiveInteger"  
@@ -38585,7 +38585,7 @@

table:number-matri RNG Relations - table:number-matrix-columns-spanned="<positiveInteger>"   + table:number-matrix-columns-spanned="#positiveInteger"  
@@ -38611,7 +38611,7 @@

table:number-matrix-r RNG Relations - table:number-matrix-rows-spanned="<positiveInteger>"   + table:number-matrix-rows-spanned="#positiveInteger"  
@@ -38636,7 +38636,7 @@

table:number-rows-repeated RNG Relations - table:number-rows-repeated="<positiveInteger>"   + table:number-rows-repeated="#positiveInteger"  
@@ -38661,7 +38661,7 @@

table:number-rows-spanned At RNG Relations - table:number-rows-spanned="<positiveInteger>"   + table:number-rows-spanned="#positiveInteger"  
@@ -38686,7 +38686,7 @@

table:object-name Attribute

RNG Relations - table:object-name="<string>"   + table:object-name="#string"  
@@ -38712,7 +38712,7 @@

table:on-update-keep-size At RNG Relations - table:on-update-keep-size="<boolean>"   + table:on-update-keep-size="#boolean"  
@@ -38738,7 +38738,7 @@

table:on-update-keep-style RNG Relations - table:on-update-keep-styles="<boolean>"   + table:on-update-keep-styles="#boolean"  
@@ -38763,7 +38763,7 @@

table:operator Attribute

RNG Relations - table:operator="<string>"   + table:operator="#string"  
@@ -38900,7 +38900,7 @@

table:page-breaks-on RNG Relations - table:page-breaks-on-group-change="<boolean>"   + table:page-breaks-on-group-change="#boolean"  
@@ -38926,7 +38926,7 @@

table:parse-sql-statement At RNG Relations - table:parse-sql-statement="<boolean>"   + table:parse-sql-statement="#boolean"  
@@ -38951,7 +38951,7 @@

table:password Attribute

RNG Relations - table:password="<string>"   + table:password="#string"  
@@ -38979,7 +38979,7 @@

table:position Attribute

RNG Relations - table:position="<integer>"   + table:position="#integer"  
@@ -39005,7 +39005,7 @@

table:precision-as-shown Attr RNG Relations - table:precision-as-shown="<boolean>"   + table:precision-as-shown="#boolean"  
@@ -39031,7 +39031,7 @@

table:print Attribute

RNG Relations - table:print="<boolean>"   + table:print="#boolean"  
@@ -39056,7 +39056,7 @@

table:print-ranges Attribute RNG Relations - table:print-ranges="<string>"   + table:print-ranges="#string"  
@@ -39083,7 +39083,7 @@

table:protect Attribute

RNG Relations - table:protect="<boolean>"   + table:protect="#boolean"  
@@ -39110,7 +39110,7 @@

table:protected Attribute

RNG Relations - table:protected="<boolean>"   + table:protected="#boolean"  
@@ -39136,7 +39136,7 @@

table:protection-key[1] Attribute RNG Relations - table:protection-key="<string>"   + table:protection-key="#string"  
@@ -39186,7 +39186,7 @@

table:query-name Attribute

RNG Relations - table:query-name="<string>"   + table:query-name="#string"  
@@ -39244,7 +39244,7 @@

table:refresh-delay[1] Attribute RNG Relations - table:refresh-delay="<duration>"   + table:refresh-delay="#duration"  
@@ -39271,7 +39271,7 @@

table:refresh-delay[2] Attribute RNG Relations - table:refresh-delay="<boolean>"   + table:refresh-delay="#boolean"  
@@ -39299,7 +39299,7 @@

table:rejecting-change-id At RNG Relations - table:rejecting-change-id="<string>"   + table:rejecting-change-id="#string"  
@@ -39326,7 +39326,7 @@

table:row Attribute

RNG Relations - table:row="<integer>"   + table:row="#integer"  
@@ -39351,7 +39351,7 @@

table:scenario-ranges Attribute< RNG Relations - table:scenario-ranges="<string>"   + table:scenario-ranges="#string"  
@@ -39377,7 +39377,7 @@

table:s RNG Relations - table:search-criteria-must-apply-to-whole-cell="<boolean>"   + table:search-criteria-must-apply-to-whole-cell="#boolean"  
@@ -39402,7 +39402,7 @@

table:selected-page Attribute< RNG Relations - table:selected-page="<string>"   + table:selected-page="#string"  
@@ -39428,7 +39428,7 @@

table:show-details Attribute RNG Relations - table:show-details="<boolean>"   + table:show-details="#boolean"  
@@ -39454,7 +39454,7 @@

table:show-empty Attribute

RNG Relations - table:show-empty="<boolean>"   + table:show-empty="#boolean"  
@@ -39480,7 +39480,7 @@

table:show-filter-button Attr RNG Relations - table:show-filter-button="<boolean>"   + table:show-filter-button="#boolean"  
@@ -39559,7 +39559,7 @@

table:source-cell-ra RNG Relations - table:source-cell-range-addresses="<string>"   + table:source-cell-range-addresses="#string"  
@@ -39585,7 +39585,7 @@

table:source-field-name Attrib RNG Relations - table:source-field-name="<string>"   + table:source-field-name="#string"  
@@ -39610,7 +39610,7 @@

table:source-name Attribute

RNG Relations - table:source-name="<string>"   + table:source-name="#string"  
@@ -39635,7 +39635,7 @@

table:sql-statement Attribute< RNG Relations - table:sql-statement="<string>"   + table:sql-statement="#string"  
@@ -39661,7 +39661,7 @@

table:start Attribute

RNG Relations - table:start="<double> | auto"   + table:start="#double | auto"  
@@ -39687,7 +39687,7 @@

table:start-column Attribute RNG Relations - table:start-column="<integer>"   + table:start-column="#integer"  
@@ -39712,7 +39712,7 @@

table:start-position Attribute RNG Relations - table:start-position="<integer>"   + table:start-position="#integer"  
@@ -39738,7 +39738,7 @@

table:start-row Attribute

RNG Relations - table:start-row="<integer>"   + table:start-row="#integer"  
@@ -39764,7 +39764,7 @@

table:start-table Attribute

RNG Relations - table:start-table="<integer>"   + table:start-table="#integer"  
@@ -39815,7 +39815,7 @@

table:step Attribute

RNG Relations - table:step="<double>"   + table:step="#double"  
@@ -39840,7 +39840,7 @@

table:steps Attribute

RNG Relations - table:steps="<positiveInteger>"   + table:steps="#positiveInteger"  
@@ -39866,7 +39866,7 @@

table:structure-protected At RNG Relations - table:structure-protected="<boolean>"   + table:structure-protected="#boolean"  
@@ -39895,7 +39895,7 @@

table:style-name Attribute

RNG Relations - table:style-name="(<NCName>)?"   + table:style-name="(#NCName)?"  
@@ -39924,7 +39924,7 @@

table:table Attribute

RNG Relations - table:table="<integer>"   + table:table="#integer"  
@@ -39967,7 +39967,7 @@

table:table-background Attribut RNG Relations - table:table-background="<boolean>"   + table:table-background="#boolean"  
@@ -39992,7 +39992,7 @@

table:table-name Attribute

RNG Relations - table:table-name="<string>"   + table:table-name="#string"  
@@ -40071,7 +40071,7 @@

table:title Attribute

RNG Relations - table:title="<string>"   + table:title="#string"  
@@ -40097,7 +40097,7 @@

table:track-changes Attribute< RNG Relations - table:track-changes="<boolean>"   + table:track-changes="#boolean"  
@@ -40214,7 +40214,7 @@

table:use-regular-expres RNG Relations - table:use-regular-expressions="<boolean>"   + table:use-regular-expressions="#boolean"  
@@ -40239,7 +40239,7 @@

table:used-hierarchy Attribute RNG Relations - table:used-hierarchy="<integer>"   + table:used-hierarchy="#integer"  
@@ -40264,7 +40264,7 @@

table:user-name Attribute

RNG Relations - table:user-name="<string>"   + table:user-name="#string"  
@@ -40289,7 +40289,7 @@

table:value Attribute

RNG Relations - table:value="<string>"   + table:value="#string"  
@@ -40374,7 +40374,7 @@

text:active Attribute

RNG Relations - text:active="<boolean>"   + text:active="#boolean"  
@@ -40399,7 +40399,7 @@

text:address Attribute

RNG Relations - CHOICE_NAME_CLASS="<string>"   + CHOICE_NAME_CLASS="#string"  
@@ -40425,7 +40425,7 @@

text:alphabetical-separat RNG Relations - text:alphabetical-separators="<boolean>"   + text:alphabetical-separators="#boolean"  
@@ -40467,7 +40467,7 @@

text:anchor-page-number Attrib RNG Relations - text:anchor-page-number="<positiveInteger>"   + text:anchor-page-number="#positiveInteger"  
@@ -40538,7 +40538,7 @@

text:annote Attribute

RNG Relations - CHOICE_NAME_CLASS="<string>"   + CHOICE_NAME_CLASS="#string"  
@@ -40563,7 +40563,7 @@

text:author Attribute

RNG Relations - CHOICE_NAME_CLASS="<string>"   + CHOICE_NAME_CLASS="#string"  
@@ -40691,7 +40691,7 @@

text:booktitle Attribute

RNG Relations - CHOICE_NAME_CLASS="<string>"   + CHOICE_NAME_CLASS="#string"  
@@ -40766,7 +40766,7 @@

text:c Attribute

RNG Relations - text:c="<nonNegativeInteger>"   + text:c="#nonNegativeInteger"  
@@ -40792,7 +40792,7 @@

text:capitalize-entries Attrib RNG Relations - text:capitalize-entries="<boolean>"   + text:capitalize-entries="#boolean"  
@@ -40846,7 +40846,7 @@

text:caption-sequence-name RNG Relations - text:caption-sequence-name="<string>"   + text:caption-sequence-name="#string"  
@@ -40873,7 +40873,7 @@

text:change-id Attribute

RNG Relations - text:change-id="<IDREF>"   + text:change-id="#IDREF"  
@@ -40898,7 +40898,7 @@

text:chapter Attribute

RNG Relations - CHOICE_NAME_CLASS="<string>"   + CHOICE_NAME_CLASS="#string"  
@@ -40923,7 +40923,7 @@

text:citation-body-style RNG Relations - text:citation-body-style-name="(<NCName>)?"   + text:citation-body-style-name="(#NCName)?"  
@@ -40948,7 +40948,7 @@

text:citation-style-name Attr RNG Relations - text:citation-style-name="(<NCName>)?"   + text:citation-style-name="(#NCName)?"  
@@ -40976,7 +40976,7 @@

text:class-names Attribute

RNG Relations text:class-names=" -START_list(<NCName>)* +START_list(#NCName)* END_list"   @@ -41002,7 +41002,7 @@

text:column-name Attribute

RNG Relations - text:column-name="<string>"   + text:column-name="#string"  
@@ -41028,7 +41028,7 @@

text:combine-entries Attribute RNG Relations - text:combine-entries="<boolean>"   + text:combine-entries="#boolean"  
@@ -41054,7 +41054,7 @@

text:combine-entries-wi RNG Relations - text:combine-entries-with-dash="<boolean>"   + text:combine-entries-with-dash="#boolean"  
@@ -41080,7 +41080,7 @@

text:combine-entries-with RNG Relations - text:combine-entries-with-pp="<boolean>"   + text:combine-entries-with-pp="#boolean"  
@@ -41106,7 +41106,7 @@

text:comma-separated Attribute RNG Relations - text:comma-separated="<boolean>"   + text:comma-separated="#boolean"  
@@ -41132,7 +41132,7 @@

text:cond-style-name Attribute RNG Relations - text:cond-style-name="(<NCName>)?"   + text:cond-style-name="(#NCName)?"  
@@ -41162,7 +41162,7 @@

text:condition Attribute

RNG Relations - text:condition="<string>"   + text:condition="#string"  
@@ -41187,7 +41187,7 @@

text:connection-name Attribute RNG Relations - text:connection-name="<string>"   + text:connection-name="#string"  
@@ -41213,7 +41213,7 @@

text:consecutive-numbering RNG Relations - text:consecutive-numbering="<boolean>"   + text:consecutive-numbering="#boolean"  
@@ -41240,7 +41240,7 @@

text:continue-numbering Attrib RNG Relations - text:continue-numbering="<boolean>"   + text:continue-numbering="#boolean"  
@@ -41266,7 +41266,7 @@

text:copy-outline-levels Attr RNG Relations - text:copy-outline-levels="<boolean>"   + text:copy-outline-levels="#boolean"  
@@ -41292,7 +41292,7 @@

text:count-empty-lines Attribut RNG Relations - text:count-empty-lines="<boolean>"   + text:count-empty-lines="#boolean"  
@@ -41318,7 +41318,7 @@

text:count-in-text-boxes Attr RNG Relations - text:count-in-text-boxes="<boolean>"   + text:count-in-text-boxes="#boolean"  
@@ -41344,7 +41344,7 @@

text:current-value Attribute RNG Relations - text:current-value="<boolean>"   + text:current-value="#boolean"  
@@ -41369,7 +41369,7 @@

text:custom1 Attribute

RNG Relations - CHOICE_NAME_CLASS="<string>"   + CHOICE_NAME_CLASS="#string"  
@@ -41394,7 +41394,7 @@

text:custom2 Attribute

RNG Relations - CHOICE_NAME_CLASS="<string>"   + CHOICE_NAME_CLASS="#string"  
@@ -41419,7 +41419,7 @@

text:custom3 Attribute

RNG Relations - CHOICE_NAME_CLASS="<string>"   + CHOICE_NAME_CLASS="#string"  
@@ -41444,7 +41444,7 @@

text:custom4 Attribute

RNG Relations - CHOICE_NAME_CLASS="<string>"   + CHOICE_NAME_CLASS="#string"  
@@ -41469,7 +41469,7 @@

text:custom5 Attribute

RNG Relations - CHOICE_NAME_CLASS="<string>"   + CHOICE_NAME_CLASS="#string"  
@@ -41498,7 +41498,7 @@

text:database-name Attribute RNG Relations - text:database-name="<string>"   + text:database-name="#string"  
@@ -41523,7 +41523,7 @@

text:date-adjust Attribute

RNG Relations - text:date-adjust="<duration>"   + text:date-adjust="#duration"  
@@ -41550,7 +41550,7 @@

text:date-value[1] Attribute

RNG Relations - text:date-value="<date>"   + text:date-value="#date"  
@@ -41578,7 +41578,7 @@

text:date-value[2] Attribute

RNG Relations - text:date-value="<date> | <dateTime>"   + text:date-value="#date | #dateTime"  
@@ -41603,7 +41603,7 @@

text:default-style-name Attrib RNG Relations - text:default-style-name="(<NCName>)?"   + text:default-style-name="(#NCName)?"  
@@ -41912,7 +41912,7 @@

text:display-levels Attribute< RNG Relations - text:display-levels="<positiveInteger>"   + text:display-levels="#positiveInteger"  
@@ -41937,7 +41937,7 @@

text:display-outline-level RNG Relations - text:display-outline-level="<nonNegativeInteger>"   + text:display-outline-level="#nonNegativeInteger"  
@@ -41962,7 +41962,7 @@

text:duration Attribute

RNG Relations - text:duration="<duration>"   + text:duration="#duration"  
@@ -41987,7 +41987,7 @@

text:edition Attribute

RNG Relations - CHOICE_NAME_CLASS="<string>"   + CHOICE_NAME_CLASS="#string"  
@@ -42012,7 +42012,7 @@

text:editor Attribute

RNG Relations - CHOICE_NAME_CLASS="<string>"   + CHOICE_NAME_CLASS="#string"  
@@ -42037,7 +42037,7 @@

text:filter-name Attribute

RNG Relations - text:filter-name="<string>"   + text:filter-name="#string"  
@@ -42099,7 +42099,7 @@

text:fixed Attribute

RNG Relations - text:fixed="<boolean>"   + text:fixed="#boolean"  
@@ -42156,7 +42156,7 @@

text:formula Attribute

RNG Relations - text:formula="<string>"   + text:formula="#string"  
@@ -42182,7 +42182,7 @@

text:global Attribute

RNG Relations - text:global="<boolean>"   + text:global="#boolean"  
@@ -42207,7 +42207,7 @@

text:howpublished Attribute

RNG Relations - CHOICE_NAME_CLASS="<string>"   + CHOICE_NAME_CLASS="#string"  
@@ -42233,7 +42233,7 @@

text:id[1] Attribute

RNG Relations - text:id="<ID>"   + text:id="#ID"  
@@ -42268,7 +42268,7 @@

text:id[2] Attribute

RNG Relations - text:id="<string>"   + text:id="#string"  
@@ -42293,7 +42293,7 @@

text:identifier Attribute

RNG Relations - CHOICE_NAME_CLASS="<string>"   + CHOICE_NAME_CLASS="#string"  
@@ -42319,7 +42319,7 @@

text:ignore-case Attribute

RNG Relations - text:ignore-case="<boolean>"   + text:ignore-case="#boolean"  
@@ -42345,7 +42345,7 @@

text:increment Attribute

RNG Relations - text:increment="<nonNegativeInteger>"   + text:increment="#nonNegativeInteger"  
@@ -42372,7 +42372,7 @@

text:index-name Attribute

RNG Relations - text:index-name="<string>"   + text:index-name="#string"  
@@ -42428,7 +42428,7 @@

text:institution Attribute

RNG Relations - CHOICE_NAME_CLASS="<string>"   + CHOICE_NAME_CLASS="#string"  
@@ -42455,7 +42455,7 @@

text:is-hidden Attribute

RNG Relations - text:is-hidden="<boolean>"   + text:is-hidden="#boolean"  
@@ -42481,7 +42481,7 @@

text:is-list-header Attribute< RNG Relations - text:is-list-header="<boolean>"   + text:is-list-header="#boolean"  
@@ -42506,7 +42506,7 @@

text:isbn Attribute

RNG Relations - CHOICE_NAME_CLASS="<string>"   + CHOICE_NAME_CLASS="#string"  
@@ -42531,7 +42531,7 @@

text:issn Attribute

RNG Relations - CHOICE_NAME_CLASS="<string>"   + CHOICE_NAME_CLASS="#string"  
@@ -42556,7 +42556,7 @@

text:journal Attribute

RNG Relations - CHOICE_NAME_CLASS="<string>"   + CHOICE_NAME_CLASS="#string"  
@@ -42638,7 +42638,7 @@

text:key1 Attribute

RNG Relations - text:key1="<string>"   + text:key1="#string"  
@@ -42664,7 +42664,7 @@

text:key1-phonetic Attribute RNG Relations - text:key1-phonetic="<string>"   + text:key1-phonetic="#string"  
@@ -42690,7 +42690,7 @@

text:key2 Attribute

RNG Relations - text:key2="<string>"   + text:key2="#string"  
@@ -42716,7 +42716,7 @@

text:key2-phonetic Attribute RNG Relations - text:key2-phonetic="<string>"   + text:key2-phonetic="#string"  
@@ -42768,7 +42768,7 @@

text:label Attribute

RNG Relations - text:label="<string>"   + text:label="#string"  
@@ -42797,7 +42797,7 @@

text:level Attribute

RNG Relations - text:level="<positiveInteger>"   + text:level="#positiveInteger"  
@@ -42824,7 +42824,7 @@

text:main-entry Attribute

RNG Relations - text:main-entry="<boolean>"   + text:main-entry="#boolean"  
@@ -42849,7 +42849,7 @@

text:main-entry-style-name RNG Relations - text:main-entry-style-name="(<NCName>)?"   + text:main-entry-style-name="(#NCName)?"  
@@ -42875,7 +42875,7 @@

text:master-page-name Attribute< RNG Relations - text:master-page-name="(<NCName>)?"   + text:master-page-name="(#NCName)?"  
@@ -42900,7 +42900,7 @@

text:month Attribute

RNG Relations - CHOICE_NAME_CLASS="<string>"   + CHOICE_NAME_CLASS="#string"  
@@ -42950,7 +42950,7 @@

text:name Attribute

RNG Relations - text:name="<string>"   + text:name="#string"  
@@ -42975,7 +42975,7 @@

text:note Attribute

RNG Relations - CHOICE_NAME_CLASS="<string>"   + CHOICE_NAME_CLASS="#string"  
@@ -43028,7 +43028,7 @@

text:number Attribute

RNG Relations - CHOICE_NAME_CLASS="<string>"   + CHOICE_NAME_CLASS="#string"  
@@ -43054,7 +43054,7 @@

text:number-lines Attribute

RNG Relations - text:number-lines="<boolean>"   + text:number-lines="#boolean"  
@@ -43108,7 +43108,7 @@

text:numbered-entries Attribute< RNG Relations - text:numbered-entries="<boolean>"   + text:numbered-entries="#boolean"  
@@ -43158,7 +43158,7 @@

text:organizations Attribute RNG Relations - CHOICE_NAME_CLASS="<string>"   + CHOICE_NAME_CLASS="#string"  
@@ -43193,7 +43193,7 @@

text:outline-level[1] Attribute RNG Relations - text:outline-level="<positiveInteger>"   + text:outline-level="#positiveInteger"  
@@ -43219,7 +43219,7 @@

text:outline-level[2] Attribute RNG Relations - text:outline-level="<nonNegativeInteger>"   + text:outline-level="#nonNegativeInteger"  
@@ -43274,7 +43274,7 @@

text:page-adjust Attribute

RNG Relations - text:page-adjust="<integer>"   + text:page-adjust="#integer"  
@@ -43299,7 +43299,7 @@

text:pages Attribute

RNG Relations - CHOICE_NAME_CLASS="<string>"   + CHOICE_NAME_CLASS="#string"  
@@ -43353,7 +43353,7 @@

text:prefix Attribute

RNG Relations - text:prefix="<string>"   + text:prefix="#string"  
@@ -43387,7 +43387,7 @@

text:protected Attribute

RNG Relations - text:protected="<boolean>"   + text:protected="#boolean"  
@@ -43420,7 +43420,7 @@

text:protection-key Attribute< RNG Relations - text:protection-key="<string>"   + text:protection-key="#string"  
@@ -43445,7 +43445,7 @@

text:publisher Attribute

RNG Relations - CHOICE_NAME_CLASS="<string>"   + CHOICE_NAME_CLASS="#string"  
@@ -43474,7 +43474,7 @@

text:ref-name Attribute

RNG Relations - text:ref-name="<string>"   + text:ref-name="#string"  
@@ -43568,7 +43568,7 @@

text:relative-tab-stop RNG Relations - text:relative-tab-stop-position="<boolean>"   + text:relative-tab-stop-position="#boolean"  
@@ -43593,7 +43593,7 @@

text:report-type Attribute

RNG Relations - CHOICE_NAME_CLASS="<string>"   + CHOICE_NAME_CLASS="#string"  
@@ -43619,7 +43619,7 @@

text:restart-numbering Attribut RNG Relations - text:restart-numbering="<boolean>"   + text:restart-numbering="#boolean"  
@@ -43645,7 +43645,7 @@

text:restart-on-page Attribute RNG Relations - text:restart-on-page="<boolean>"   + text:restart-on-page="#boolean"  
@@ -43670,7 +43670,7 @@

text:row-number Attribute

RNG Relations - text:row-number="<nonNegativeInteger>"   + text:row-number="#nonNegativeInteger"  
@@ -43695,7 +43695,7 @@

text:school Attribute

RNG Relations - CHOICE_NAME_CLASS="<string>"   + CHOICE_NAME_CLASS="#string"  
@@ -43720,7 +43720,7 @@

text:section-name Attribute

RNG Relations - text:section-name="<string>"   + text:section-name="#string"  
@@ -43825,7 +43825,7 @@

text:series Attribute

RNG Relations - CHOICE_NAME_CLASS="<string>"   + CHOICE_NAME_CLASS="#string"  
@@ -43851,7 +43851,7 @@

text:sort-algorithm Attribute< RNG Relations - text:sort-algorithm="<string>"   + text:sort-algorithm="#string"  
@@ -43877,7 +43877,7 @@

text:sort-ascending Attribute< RNG Relations - text:sort-ascending="<boolean>"   + text:sort-ascending="#boolean"  
@@ -43903,7 +43903,7 @@

text:sort-by-position Attribute< RNG Relations - text:sort-by-position="<boolean>"   + text:sort-by-position="#boolean"  
@@ -43957,7 +43957,7 @@

text:start-value[1] Attribute

RNG Relations - text:start-value="<positiveInteger>"   + text:start-value="#positiveInteger"  
@@ -43986,7 +43986,7 @@

text:start-value[2] Attribute

RNG Relations - text:start-value="<nonNegativeInteger>"   + text:start-value="#nonNegativeInteger"  
@@ -44015,7 +44015,7 @@

text:string-value Attribute

RNG Relations - text:string-value="<string>"   + text:string-value="#string"  
@@ -44040,7 +44040,7 @@

text:string-value-if-false RNG Relations - text:string-value-if-false="<string>"   + text:string-value-if-false="#string"  
@@ -44065,7 +44065,7 @@

text:string-value-if-true At RNG Relations - text:string-value-if-true="<string>"   + text:string-value-if-true="#string"  
@@ -44091,7 +44091,7 @@

text:string-value-phonetic RNG Relations - text:string-value-phonetic="<string>"   + text:string-value-phonetic="#string"  
@@ -44153,7 +44153,7 @@

text:style-name Attribute

RNG Relations - text:style-name="(<NCName>)?"   + text:style-name="(#NCName)?"  
@@ -44178,7 +44178,7 @@

text:suffix Attribute

RNG Relations - text:suffix="<string>"   + text:suffix="#string"  
@@ -44203,7 +44203,7 @@

text:tab-ref Attribute

RNG Relations - text:tab-ref="<nonNegativeInteger>"   + text:tab-ref="#nonNegativeInteger"  
@@ -44232,7 +44232,7 @@

text:table-name Attribute

RNG Relations - text:table-name="<string>"   + text:table-name="#string"  
@@ -44288,7 +44288,7 @@

text:time-adjust Attribute

RNG Relations - text:time-adjust="<duration>"   + text:time-adjust="#duration"  
@@ -44316,7 +44316,7 @@

text:time-value[1] Attribute

RNG Relations - text:time-value="<time> | <dateTime>"   + text:time-value="#time | #dateTime"  
@@ -44343,7 +44343,7 @@

text:time-value[2] Attribute

RNG Relations - text:time-value="<time>"   + text:time-value="#time"  
@@ -44368,7 +44368,7 @@

text:title Attribute

RNG Relations - CHOICE_NAME_CLASS="<string>"   + CHOICE_NAME_CLASS="#string"  
@@ -44394,7 +44394,7 @@

text:track-changes Attribute RNG Relations - text:track-changes="<boolean>"   + text:track-changes="#boolean"  
@@ -44419,7 +44419,7 @@

text:url Attribute

RNG Relations - CHOICE_NAME_CLASS="<string>"   + CHOICE_NAME_CLASS="#string"  
@@ -44446,7 +44446,7 @@

text:use-caption Attribute

RNG Relations - text:use-caption="<boolean>"   + text:use-caption="#boolean"  
@@ -44472,7 +44472,7 @@

text:use-chart-objects Attribut RNG Relations - text:use-chart-objects="<boolean>"   + text:use-chart-objects="#boolean"  
@@ -44498,7 +44498,7 @@

text:use-draw-objects Attribute< RNG Relations - text:use-draw-objects="<boolean>"   + text:use-draw-objects="#boolean"  
@@ -44524,7 +44524,7 @@

text:use-floating-frames Attr RNG Relations - text:use-floating-frames="<boolean>"   + text:use-floating-frames="#boolean"  
@@ -44550,7 +44550,7 @@

text:use-graphics Attribute

RNG Relations - text:use-graphics="<boolean>"   + text:use-graphics="#boolean"  
@@ -44577,7 +44577,7 @@

text:use-index-marks Attribute RNG Relations - text:use-index-marks="<boolean>"   + text:use-index-marks="#boolean"  
@@ -44603,7 +44603,7 @@

text:use-index-source-sty RNG Relations - text:use-index-source-styles="<boolean>"   + text:use-index-source-styles="#boolean"  
@@ -44629,7 +44629,7 @@

text:use-keys-as-entries Attr RNG Relations - text:use-keys-as-entries="<boolean>"   + text:use-keys-as-entries="#boolean"  
@@ -44655,7 +44655,7 @@

text:use-math-objects Attribute< RNG Relations - text:use-math-objects="<boolean>"   + text:use-math-objects="#boolean"  
@@ -44681,7 +44681,7 @@

text:use-objects Attribute

RNG Relations - text:use-objects="<boolean>"   + text:use-objects="#boolean"  
@@ -44707,7 +44707,7 @@

text:use-other-objects Attribut RNG Relations - text:use-other-objects="<boolean>"   + text:use-other-objects="#boolean"  
@@ -44733,7 +44733,7 @@

text:use-outline-level Attribut RNG Relations - text:use-outline-level="<boolean>"   + text:use-outline-level="#boolean"  
@@ -44759,7 +44759,7 @@

text:use-soft-page-breaks At RNG Relations - text:use-soft-page-breaks="<boolean>"   + text:use-soft-page-breaks="#boolean"  
@@ -44785,7 +44785,7 @@

text:use-spreadsheet-obje RNG Relations - text:use-spreadsheet-objects="<boolean>"   + text:use-spreadsheet-objects="#boolean"  
@@ -44811,7 +44811,7 @@

text:use-tables Attribute

RNG Relations - text:use-tables="<boolean>"   + text:use-tables="#boolean"  
@@ -44836,7 +44836,7 @@

text:value Attribute

RNG Relations - text:value="<nonNegativeInteger>"   + text:value="#nonNegativeInteger"  
@@ -44861,7 +44861,7 @@

text:visited-style-name Attrib RNG Relations - text:visited-style-name="(<NCName>)?"   + text:visited-style-name="(#NCName)?"  
@@ -44886,7 +44886,7 @@

text:volume Attribute

RNG Relations - CHOICE_NAME_CLASS="<string>"   + CHOICE_NAME_CLASS="#string"  
@@ -44911,7 +44911,7 @@

text:year Attribute

RNG Relations - CHOICE_NAME_CLASS="<string>"   + CHOICE_NAME_CLASS="#string"  
@@ -44956,7 +44956,7 @@

xforms:bind Attribute

RNG Relations - xforms:bind="<string>"   + xforms:bind="#string"  
@@ -45076,7 +45076,7 @@

xlink:href Attribute

RNG Relations - xlink:href="<anyURI>"   + xlink:href="#anyURI"  
diff --git a/generator/schema2template/src/test/resources/test-reference/odf/generation/odf-reference/odf-schema-1.2/OdfReference.html b/generator/schema2template/src/test/resources/test-reference/odf/generation/odf-reference/odf-schema-1.2/OdfReference.html index c3288fa6d6..9621aebd9d 100644 --- a/generator/schema2template/src/test/resources/test-reference/odf/generation/odf-reference/odf-schema-1.2/OdfReference.html +++ b/generator/schema2template/src/test/resources/test-reference/odf/generation/odf-reference/odf-schema-1.2/OdfReference.html @@ -81,23 +81,23 @@

anim:animate Element

Child Relations - <anim:animate (smil:targetElement="<IDREF>" )? - (anim:sub-item="<string>" )? - smil:attributeName="<string>" (smil:values="<string>" )? - (anim:formula="<string>" )? - (smil:to="<string>" )? - (smil:from="<string>" )? - (smil:by="<string>" )? + <anim:animate (smil:targetElement="#IDREF" )? + (anim:sub-item="#string" )? + smil:attributeName="#string" (smil:values="#string" )? + (anim:formula="#string" )? + (smil:to="#string" )? + (smil:from="#string" )? + (smil:by="#string" )? (smil:calcMode="discrete | linear | paced | spline" )? - (smil:keyTimes="<string>" )? - (smil:keySplines="<string>" )? + (smil:keyTimes="#string" )? + (smil:keySplines="#string" )? ( - ( (smil:begin="<string>" )? - (smil:end="<string>" )? - (smil:dur="<string>" )? + ( (smil:begin="#string" )? + (smil:end="#string" )? + (smil:dur="#string" )? - ( (smil:repeatDur="<string>" )? + ( (smil:repeatDur="#string" )? (smil:repeatCount="decimal] | indefinite" )? ) (smil:restart="never | always | whenNotActive | default" )? (smil:restartDefault="never | always | whenNotActive | inherit" )? @@ -105,7 +105,7 @@

anim:animate Element

(smil:fillDefault="remove | freeze | hold | transition | auto | inherit" )? ) (smil:accelerate="decimal]" )? (smil:decelerate="decimal]" )? - (smil:autoReverse="<boolean>" )? + (smil:autoReverse="#boolean" )? ) (smil:accumulate="none | sum" )? (smil:additive="replace | sum" )? >  @@ -164,27 +164,27 @@

anim:animateColor Element

Child Relations - <anim:animateColor (smil:targetElement="<IDREF>" )? - (anim:sub-item="<string>" )? - smil:attributeName="<string>" (smil:accumulate="none | sum" )? + <anim:animateColor (smil:targetElement="#IDREF" )? + (anim:sub-item="#string" )? + smil:attributeName="#string" (smil:accumulate="none | sum" )? (smil:additive="replace | sum" )? - (smil:values="<string>" )? - (anim:formula="<string>" )? - (smil:to="<string>" )? - (smil:from="<string>" )? - (smil:by="<string>" )? + (smil:values="#string" )? + (anim:formula="#string" )? + (smil:to="#string" )? + (smil:from="#string" )? + (smil:by="#string" )? (smil:calcMode="discrete | linear | paced | spline" )? - (smil:keyTimes="<string>" )? - (smil:keySplines="<string>" )? + (smil:keyTimes="#string" )? + (smil:keySplines="#string" )? (anim:color-interpolation="rgb | hsl" )? (anim:color-interpolation-direction="clockwise | counter-clockwise" )? ( - ( (smil:begin="<string>" )? - (smil:end="<string>" )? - (smil:dur="<string>" )? + ( (smil:begin="#string" )? + (smil:end="#string" )? + (smil:dur="#string" )? - ( (smil:repeatDur="<string>" )? + ( (smil:repeatDur="#string" )? (smil:repeatCount="decimal] | indefinite" )? ) (smil:restart="never | always | whenNotActive | default" )? (smil:restartDefault="never | always | whenNotActive | inherit" )? @@ -192,7 +192,7 @@

anim:animateColor Element

(smil:fillDefault="remove | freeze | hold | transition | auto | inherit" )? ) (smil:accelerate="decimal]" )? (smil:decelerate="decimal]" )? - (smil:autoReverse="<boolean>" )? + (smil:autoReverse="#boolean" )? )>  @@ -249,25 +249,25 @@

anim:animateMotion Element

Child Relations - <anim:animateMotion (svg:path="<string>" )? - (svg:origin="<string>" )? + <anim:animateMotion (svg:path="#string" )? + (svg:origin="#string" )? (smil:calcMode="discrete | linear | paced | spline" )? - (smil:targetElement="<IDREF>" )? - (anim:sub-item="<string>" )? - smil:attributeName="<string>" (smil:accumulate="none | sum" )? + (smil:targetElement="#IDREF" )? + (anim:sub-item="#string" )? + smil:attributeName="#string" (smil:accumulate="none | sum" )? (smil:additive="replace | sum" )? - (smil:values="<string>" )? - (anim:formula="<string>" )? - (smil:to="<string>" )? - (smil:from="<string>" )? - (smil:by="<string>" )? + (smil:values="#string" )? + (anim:formula="#string" )? + (smil:to="#string" )? + (smil:from="#string" )? + (smil:by="#string" )? ( - ( (smil:begin="<string>" )? - (smil:end="<string>" )? - (smil:dur="<string>" )? + ( (smil:begin="#string" )? + (smil:end="#string" )? + (smil:dur="#string" )? - ( (smil:repeatDur="<string>" )? + ( (smil:repeatDur="#string" )? (smil:repeatCount="decimal] | indefinite" )? ) (smil:restart="never | always | whenNotActive | default" )? (smil:restartDefault="never | always | whenNotActive | inherit" )? @@ -275,9 +275,9 @@

anim:animateMotion Element

(smil:fillDefault="remove | freeze | hold | transition | auto | inherit" )? ) (smil:accelerate="decimal]" )? (smil:decelerate="decimal]" )? - (smil:autoReverse="<boolean>" )? - ) (smil:keyTimes="<string>" )? - (smil:keySplines="<string>" )? + (smil:autoReverse="#boolean" )? + ) (smil:keyTimes="#string" )? + (smil:keySplines="#string" )? >  @@ -330,22 +330,22 @@

anim:animateTransform Element< Child Relations - <anim:animateTransform (smil:targetElement="<IDREF>" )? - (anim:sub-item="<string>" )? - smil:attributeName="<string>" (smil:accumulate="none | sum" )? + <anim:animateTransform (smil:targetElement="#IDREF" )? + (anim:sub-item="#string" )? + smil:attributeName="#string" (smil:accumulate="none | sum" )? (smil:additive="replace | sum" )? - (smil:values="<string>" )? - (anim:formula="<string>" )? - (smil:to="<string>" )? - (smil:from="<string>" )? - (smil:by="<string>" )? + (smil:values="#string" )? + (anim:formula="#string" )? + (smil:to="#string" )? + (smil:from="#string" )? + (smil:by="#string" )? svg:type="translate | scale | rotate | skewX | skewY" ( - ( (smil:begin="<string>" )? - (smil:end="<string>" )? - (smil:dur="<string>" )? + ( (smil:begin="#string" )? + (smil:end="#string" )? + (smil:dur="#string" )? - ( (smil:repeatDur="<string>" )? + ( (smil:repeatDur="#string" )? (smil:repeatCount="decimal] | indefinite" )? ) (smil:restart="never | always | whenNotActive | default" )? (smil:restartDefault="never | always | whenNotActive | inherit" )? @@ -353,7 +353,7 @@

anim:animateTransform Element< (smil:fillDefault="remove | freeze | hold | transition | auto | inherit" )? ) (smil:accelerate="decimal]" )? (smil:decelerate="decimal]" )? - (smil:autoReverse="<boolean>" )? + (smil:autoReverse="#boolean" )? )>  @@ -403,21 +403,21 @@

anim:audio Element

Child Relations <anim:audio (presentation:node-type="default | on-click | with-previous | after-previous | timing-root | main-sequence | interactive-sequence" )? - (presentation:preset-id="<string>" )? - (presentation:preset-sub-type="<string>" )? + (presentation:preset-id="#string" )? + (presentation:preset-sub-type="#string" )? (presentation:preset-class="custom | entrance | exit | emphasis | motion-path | ole-action | media-call" )? - (presentation:master-element="<IDREF>" )? - (presentation:group-id="<string>" )? - (xml:id="<ID>" (anim:id="<NCName>" )? + (presentation:master-element="#IDREF" )? + (presentation:group-id="#string" )? + (xml:id="#ID" (anim:id="#NCName" )? )? - (xlink:href="<anyIRI>" )? - (anim:audio-level="<double>" )? + (xlink:href="#anyIRI" )? + (anim:audio-level="#double" )? - ( (smil:begin="<string>" )? - (smil:end="<string>" )? - (smil:dur="<string>" )? + ( (smil:begin="#string" )? + (smil:end="#string" )? + (smil:dur="#string" )? - ( (smil:repeatDur="<string>" )? + ( (smil:repeatDur="#string" )? (smil:repeatCount="decimal] | indefinite" )? ) (smil:restart="never | always | whenNotActive | default" )? (smil:restartDefault="never | always | whenNotActive | inherit" )? @@ -467,17 +467,17 @@

anim:command Element

Child Relations <anim:command (presentation:node-type="default | on-click | with-previous | after-previous | timing-root | main-sequence | interactive-sequence" )? - (presentation:preset-id="<string>" )? - (presentation:preset-sub-type="<string>" )? + (presentation:preset-id="#string" )? + (presentation:preset-sub-type="#string" )? (presentation:preset-class="custom | entrance | exit | emphasis | motion-path | ole-action | media-call" )? - (presentation:master-element="<IDREF>" )? - (presentation:group-id="<string>" )? - (xml:id="<ID>" (anim:id="<NCName>" )? + (presentation:master-element="#IDREF" )? + (presentation:group-id="#string" )? + (xml:id="#ID" (anim:id="#NCName" )? )? - anim:command="<string>" (smil:begin="<string>" )? - (smil:end="<string>" )? - (smil:targetElement="<IDREF>" )? - (anim:sub-item="<string>" )? + anim:command="#string" (smil:begin="#string" )? + (smil:end="#string" )? + (smil:targetElement="#IDREF" )? + (anim:sub-item="#string" )? (<anim:param ... >)* >  @@ -544,24 +544,24 @@

anim:iterate Element

Child Relations <anim:iterate (presentation:node-type="default | on-click | with-previous | after-previous | timing-root | main-sequence | interactive-sequence" )? - (presentation:preset-id="<string>" )? - (presentation:preset-sub-type="<string>" )? + (presentation:preset-id="#string" )? + (presentation:preset-sub-type="#string" )? (presentation:preset-class="custom | entrance | exit | emphasis | motion-path | ole-action | media-call" )? - (presentation:master-element="<IDREF>" )? - (presentation:group-id="<string>" )? - (xml:id="<ID>" (anim:id="<NCName>" )? + (presentation:master-element="#IDREF" )? + (presentation:group-id="#string" )? + (xml:id="#ID" (anim:id="#NCName" )? )? - (smil:targetElement="<IDREF>" )? - (anim:sub-item="<string>" )? - (anim:iterate-type="<string>" )? - (anim:iterate-interval="<duration>" )? + (smil:targetElement="#IDREF" )? + (anim:sub-item="#string" )? + (anim:iterate-type="#string" )? + (anim:iterate-interval="#duration" )? ( - ( (smil:begin="<string>" )? - (smil:end="<string>" )? - (smil:dur="<string>" )? + ( (smil:begin="#string" )? + (smil:end="#string" )? + (smil:dur="#string" )? - ( (smil:repeatDur="<string>" )? + ( (smil:repeatDur="#string" )? (smil:repeatCount="decimal] | indefinite" )? ) (smil:restart="never | always | whenNotActive | default" )? (smil:restartDefault="never | always | whenNotActive | inherit" )? @@ -569,8 +569,8 @@

anim:iterate Element

(smil:fillDefault="remove | freeze | hold | transition | auto | inherit" )? ) (smil:accelerate="decimal]" )? (smil:decelerate="decimal]" )? - (smil:autoReverse="<boolean>" )? - ) (smil:endsync="first | last | all | media | <IDREF>" )? + (smil:autoReverse="#boolean" )? + ) (smil:endsync="first | last | all | media | #IDREF" )? (<anim:animate ... > | <anim:set ... > | <anim:animateMotion ... > | <anim:animateColor ... > | <anim:animateTransform ... > | <anim:transitionFilter ... > | <anim:par ... > | <anim:seq ... > | <anim:iterate ... > | <anim:audio ... > | <anim:command ... >)* >  @@ -633,20 +633,20 @@

anim:par Element

Child Relations <anim:par (presentation:node-type="default | on-click | with-previous | after-previous | timing-root | main-sequence | interactive-sequence" )? - (presentation:preset-id="<string>" )? - (presentation:preset-sub-type="<string>" )? + (presentation:preset-id="#string" )? + (presentation:preset-sub-type="#string" )? (presentation:preset-class="custom | entrance | exit | emphasis | motion-path | ole-action | media-call" )? - (presentation:master-element="<IDREF>" )? - (presentation:group-id="<string>" )? - (xml:id="<ID>" (anim:id="<NCName>" )? + (presentation:master-element="#IDREF" )? + (presentation:group-id="#string" )? + (xml:id="#ID" (anim:id="#NCName" )? )? ( - ( (smil:begin="<string>" )? - (smil:end="<string>" )? - (smil:dur="<string>" )? + ( (smil:begin="#string" )? + (smil:end="#string" )? + (smil:dur="#string" )? - ( (smil:repeatDur="<string>" )? + ( (smil:repeatDur="#string" )? (smil:repeatCount="decimal] | indefinite" )? ) (smil:restart="never | always | whenNotActive | default" )? (smil:restartDefault="never | always | whenNotActive | inherit" )? @@ -654,8 +654,8 @@

anim:par Element

(smil:fillDefault="remove | freeze | hold | transition | auto | inherit" )? ) (smil:accelerate="decimal]" )? (smil:decelerate="decimal]" )? - (smil:autoReverse="<boolean>" )? - ) (smil:endsync="first | last | all | media | <IDREF>" )? + (smil:autoReverse="#boolean" )? + ) (smil:endsync="first | last | all | media | #IDREF" )? (<anim:animate ... > | <anim:set ... > | <anim:animateMotion ... > | <anim:animateColor ... > | <anim:animateTransform ... > | <anim:transitionFilter ... > | <anim:par ... > | <anim:seq ... > | <anim:iterate ... > | <anim:audio ... > | <anim:command ... >)* >  @@ -683,7 +683,7 @@

anim:param Element

Child Relations - <anim:param anim:name="<string>" anim:value="<string>" >  + <anim:param anim:name="#string" anim:value="#string" > 
@@ -745,21 +745,21 @@

anim:seq Element

Child Relations <anim:seq (presentation:node-type="default | on-click | with-previous | after-previous | timing-root | main-sequence | interactive-sequence" )? - (presentation:preset-id="<string>" )? - (presentation:preset-sub-type="<string>" )? + (presentation:preset-id="#string" )? + (presentation:preset-sub-type="#string" )? (presentation:preset-class="custom | entrance | exit | emphasis | motion-path | ole-action | media-call" )? - (presentation:master-element="<IDREF>" )? - (presentation:group-id="<string>" )? - (xml:id="<ID>" (anim:id="<NCName>" )? + (presentation:master-element="#IDREF" )? + (presentation:group-id="#string" )? + (xml:id="#ID" (anim:id="#NCName" )? )? - (smil:endsync="first | last | all | media | <IDREF>" )? + (smil:endsync="first | last | all | media | #IDREF" )? ( - ( (smil:begin="<string>" )? - (smil:end="<string>" )? - (smil:dur="<string>" )? + ( (smil:begin="#string" )? + (smil:end="#string" )? + (smil:dur="#string" )? - ( (smil:repeatDur="<string>" )? + ( (smil:repeatDur="#string" )? (smil:repeatCount="decimal] | indefinite" )? ) (smil:restart="never | always | whenNotActive | default" )? (smil:restartDefault="never | always | whenNotActive | inherit" )? @@ -767,7 +767,7 @@

anim:seq Element

(smil:fillDefault="remove | freeze | hold | transition | auto | inherit" )? ) (smil:accelerate="decimal]" )? (smil:decelerate="decimal]" )? - (smil:autoReverse="<boolean>" )? + (smil:autoReverse="#boolean" )? )(<anim:animate ... > | <anim:set ... > | <anim:animateMotion ... > | <anim:animateColor ... > | <anim:animateTransform ... > | <anim:transitionFilter ... > | <anim:par ... > | <anim:seq ... > | <anim:iterate ... > | <anim:audio ... > | <anim:command ... >)* >  @@ -815,16 +815,16 @@

anim:set Element

Child Relations - <anim:set (smil:targetElement="<IDREF>" )? - (anim:sub-item="<string>" )? - smil:attributeName="<string>" (smil:to="<string>" )? + <anim:set (smil:targetElement="#IDREF" )? + (anim:sub-item="#string" )? + smil:attributeName="#string" (smil:to="#string" )? ( - ( (smil:begin="<string>" )? - (smil:end="<string>" )? - (smil:dur="<string>" )? + ( (smil:begin="#string" )? + (smil:end="#string" )? + (smil:dur="#string" )? - ( (smil:repeatDur="<string>" )? + ( (smil:repeatDur="#string" )? (smil:repeatCount="decimal] | indefinite" )? ) (smil:restart="never | always | whenNotActive | default" )? (smil:restartDefault="never | always | whenNotActive | inherit" )? @@ -832,7 +832,7 @@

anim:set Element

(smil:fillDefault="remove | freeze | hold | transition | auto | inherit" )? ) (smil:accelerate="decimal]" )? (smil:decelerate="decimal]" )? - (smil:autoReverse="<boolean>" )? + (smil:autoReverse="#boolean" )? ) (smil:accumulate="none | sum" )? (smil:additive="replace | sum" )? >  @@ -891,27 +891,27 @@

anim:transitionFilter Element< Child Relations - <anim:transitionFilter (smil:targetElement="<IDREF>" )? - (anim:sub-item="<string>" )? + <anim:transitionFilter (smil:targetElement="#IDREF" )? + (anim:sub-item="#string" )? (smil:accumulate="none | sum" )? (smil:additive="replace | sum" )? - (smil:values="<string>" )? - (anim:formula="<string>" )? - (smil:to="<string>" )? - (smil:from="<string>" )? - (smil:by="<string>" )? + (smil:values="#string" )? + (anim:formula="#string" )? + (smil:to="#string" )? + (smil:from="#string" )? + (smil:by="#string" )? (smil:calcMode="discrete | linear | paced | spline" )? - smil:type="<string>" (smil:subtype="<string>" )? + smil:type="#string" (smil:subtype="#string" )? (smil:direction="forward | reverse" )? (smil:fadeColor="string]" )? (smil:mode="in | out" )? ( - ( (smil:begin="<string>" )? - (smil:end="<string>" )? - (smil:dur="<string>" )? + ( (smil:begin="#string" )? + (smil:end="#string" )? + (smil:dur="#string" )? - ( (smil:repeatDur="<string>" )? + ( (smil:repeatDur="#string" )? (smil:repeatCount="decimal] | indefinite" )? ) (smil:restart="never | always | whenNotActive | default" )? (smil:restartDefault="never | always | whenNotActive | inherit" )? @@ -919,7 +919,7 @@

anim:transitionFilter Element< (smil:fillDefault="remove | freeze | hold | transition | auto | inherit" )? ) (smil:accelerate="decimal]" )? (smil:decelerate="decimal]" )? - (smil:autoReverse="<boolean>" )? + (smil:autoReverse="#boolean" )? )>  @@ -951,8 +951,8 @@

chart:axis Element

Child Relations - <chart:axis chart:dimension="x | y | z" (chart:name="<string>" )? - (chart:style-name="(<NCName>)?" )? + <chart:axis chart:dimension="x | y | z" (chart:name="#string" )? + (chart:style-name="(#NCName)?" )? (<chart:title ... >)? (<chart:categories ... >)? (<chart:grid ... >)* >  @@ -981,7 +981,7 @@

chart:categories Element

Child Relations - <chart:categories (table:cell-range-address="<string>" )? + <chart:categories (table:cell-range-address="#string" )? >  @@ -1025,11 +1025,11 @@

chart:chart Element

<chart:chart chart:class="QName]" ( (svg:width="string]" )? (svg:height="string]" )? - ) (chart:column-mapping="<string>" )? - (chart:row-mapping="<string>" )? - (chart:style-name="(<NCName>)?" )? - (xlink:type="simple" xlink:href="<anyIRI>" )? - (xml:id="<ID>" )? + ) (chart:column-mapping="#string" )? + (chart:row-mapping="#string" )? + (chart:style-name="(#NCName)?" )? + (xlink:type="simple" xlink:href="#anyIRI" )? + (xml:id="#ID" )? (<chart:title ... >)? (<chart:subtitle ... >)? (<chart:footer ... >)? @@ -1068,7 +1068,7 @@

chart:data-label Element (new <chart:data-label ( (svg:x="string]" )? (svg:y="string]" )? - ) (chart:style-name="(<NCName>)?" )? + ) (chart:style-name="(#NCName)?" )? (<text:p ... >)? >  @@ -1099,9 +1099,9 @@

chart:data-point Element

Child Relations - <chart:data-point (chart:repeated="<positiveInteger>" )? - (chart:style-name="(<NCName>)?" )? - (xml:id="<ID>" )? + <chart:data-point (chart:repeated="#positiveInteger" )? + (chart:style-name="(#NCName)?" )? + (xml:id="#ID" )? (<chart:data-label ... >)? >  @@ -1129,7 +1129,7 @@

chart:domain Element

Child Relations - <chart:domain (table:cell-range-address="<string>" )? + <chart:domain (table:cell-range-address="#string" )? >  @@ -1162,13 +1162,13 @@

chart:equation Element (new in O Child Relations - <chart:equation (chart:automatic-content="<boolean>" )? - (chart:display-r-square="<boolean>" )? - (chart:display-equation="<boolean>" )? + <chart:equation (chart:automatic-content="#boolean" )? + (chart:display-r-square="#boolean" )? + (chart:display-equation="#boolean" )? ( (svg:x="string]" )? (svg:y="string]" )? - ) (chart:style-name="(<NCName>)?" )? + ) (chart:style-name="(#NCName)?" )? (<text:p ... >)? >  @@ -1197,7 +1197,7 @@

chart:error-indicator Element< Child Relations - <chart:error-indicator (chart:style-name="(<NCName>)?" )? + <chart:error-indicator (chart:style-name="(#NCName)?" )? chart:dimension="x | y | z" >  @@ -1226,7 +1226,7 @@

chart:floor Element

Child Relations <chart:floor (svg:width="string]" )? - (chart:style-name="(<NCName>)?" )? + (chart:style-name="(#NCName)?" )? >  @@ -1257,11 +1257,11 @@

chart:footer Element

Child Relations - <chart:footer (table:cell-range="<string>" )? + <chart:footer (table:cell-range="#string" )? ( (svg:x="string]" )? (svg:y="string]" )? - ) (chart:style-name="(<NCName>)?" )? + ) (chart:style-name="(#NCName)?" )? (<text:p ... >)? >  @@ -1291,7 +1291,7 @@

chart:grid Element

Child Relations <chart:grid (chart:class="major | minor" )? - (chart:style-name="(<NCName>)?" )? + (chart:style-name="(#NCName)?" )? >  @@ -1360,8 +1360,8 @@

chart:legend Element

( (svg:x="string]" )? (svg:y="string]" )? ) (style:legend-expansion="wide | high | balanced" | - (style:legend-expansion="custom" style:legend-expansion-aspect-ratio="<double>" ))? - (chart:style-name="(<NCName>)?" )? + (style:legend-expansion="custom" style:legend-expansion-aspect-ratio="#double" ))? + (chart:style-name="(#NCName)?" )? (<text:p ... >)? >  @@ -1389,7 +1389,7 @@

chart:mean-value Element

Child Relations - <chart:mean-value (chart:style-name="(<NCName>)?" )? + <chart:mean-value (chart:style-name="(#NCName)?" )? >  @@ -1448,8 +1448,8 @@

chart:plot-area Element

) ( (svg:width="string]" )? (svg:height="string]" )? - ) (chart:style-name="(<NCName>)?" )? - (table:cell-range-address="<string>" )? + ) (chart:style-name="(#NCName)?" )? + (table:cell-range-address="#string" )? (chart:data-source-has-labels="none | row | column | both" )? (dr3d:vrp="string]" )? (dr3d:vpn="string]" )? @@ -1457,12 +1457,12 @@

chart:plot-area Element

(dr3d:projection="parallel | perspective" )? (dr3d:distance="string]" )? (dr3d:focal-length="string]" )? - (dr3d:shadow-slant="<string>" )? + (dr3d:shadow-slant="#string" )? (dr3d:shade-mode="flat | phong | gouraud | draft" )? (dr3d:ambient-color="string]" )? - (dr3d:lighting-mode="<boolean>" )? - (dr3d:transform="<string>" )? - (xml:id="<ID>" )? + (dr3d:lighting-mode="#boolean" )? + (dr3d:transform="#string" )? + (xml:id="#ID" )? (<dr3d:light ... >)* (<chart:axis ... >)* (<chart:series ... >)* (<chart:stock-gain-marker ... >)? (<chart:stock-loss-marker ... >)? (<chart:stock-range-line ... >)? @@ -1495,7 +1495,7 @@

chart:regression-curve Element Child Relations - <chart:regression-curve (chart:style-name="(<NCName>)?" )? + <chart:regression-curve (chart:style-name="(#NCName)?" )? (<chart:equation ... >)? >  @@ -1534,12 +1534,12 @@

chart:series Element

Child Relations - <chart:series (chart:values-cell-range-address="<string>" )? - (chart:label-cell-address="<string>" )? + <chart:series (chart:values-cell-range-address="#string" )? + (chart:label-cell-address="#string" )? (chart:class="QName]" )? - (chart:attached-axis="<string>" )? - (chart:style-name="(<NCName>)?" )? - (xml:id="<ID>" )? + (chart:attached-axis="#string" )? + (chart:style-name="(#NCName)?" )? + (xml:id="#ID" )? (<chart:domain ... >)* (<chart:mean-value ... >)? (<chart:regression-curve ... >)* (<chart:error-indicator ... >)* (<chart:data-point ... >)* (<chart:data-label ... >)? >  @@ -1568,7 +1568,7 @@

chart:stock-gain-marker Element< Child Relations - <chart:stock-gain-marker (chart:style-name="(<NCName>)?" )? + <chart:stock-gain-marker (chart:style-name="(#NCName)?" )? >  @@ -1595,7 +1595,7 @@

chart:stock-loss-marker Element< Child Relations - <chart:stock-loss-marker (chart:style-name="(<NCName>)?" )? + <chart:stock-loss-marker (chart:style-name="(#NCName)?" )? >  @@ -1622,7 +1622,7 @@

chart:stock-range-line Element Child Relations - <chart:stock-range-line (chart:style-name="(<NCName>)?" )? + <chart:stock-range-line (chart:style-name="(#NCName)?" )? >  @@ -1653,11 +1653,11 @@

chart:subtitle Element

Child Relations - <chart:subtitle (table:cell-range="<string>" )? + <chart:subtitle (table:cell-range="#string" )? ( (svg:x="string]" )? (svg:y="string]" )? - ) (chart:style-name="(<NCName>)?" )? + ) (chart:style-name="(#NCName)?" )? (<text:p ... >)? >  @@ -1685,7 +1685,7 @@

chart:symbol-image Element ( Child Relations - <chart:symbol-image xlink:href="<anyIRI>" >  + <chart:symbol-image xlink:href="#anyIRI" > 
@@ -1716,11 +1716,11 @@

chart:title Element

Child Relations - <chart:title (table:cell-range="<string>" )? + <chart:title (table:cell-range="#string" )? ( (svg:x="string]" )? (svg:y="string]" )? - ) (chart:style-name="(<NCName>)?" )? + ) (chart:style-name="(#NCName)?" )? (<text:p ... >)? >  @@ -1750,7 +1750,7 @@

chart:wall Element

Child Relations <chart:wall (svg:width="string]" )? - (chart:style-name="(<NCName>)?" )? + (chart:style-name="(#NCName)?" )? >  @@ -1780,7 +1780,7 @@

config:config-item Element

Child Relations - <config:config-item config:name="<string>" config:type="boolean | short | int | long | double | string | datetime | base64Binary" TEXT>  + <config:config-item config:name="#string" config:type="boolean | short | int | long | double | string | datetime | base64Binary" TEXT> 
@@ -1811,7 +1811,7 @@

config:config-item-map-entr Child Relations - <config:config-item-map-entry (config:name="<string>" )? + <config:config-item-map-entry (config:name="#string" )? (<config:config-item ... > | <config:config-item-set ... > | <config:config-item-map-named ... > | <config:config-item-map-indexed ... >)+ >  @@ -1840,7 +1840,7 @@

config:config-item-map-in Child Relations - <config:config-item-map-indexed config:name="<string>" (<config:config-item-map-entry ... >)+ >  + <config:config-item-map-indexed config:name="#string" (<config:config-item-map-entry ... >)+ > 
@@ -1868,7 +1868,7 @@

config:config-item-map-name Child Relations - <config:config-item-map-named config:name="<string>" (<config:config-item-map-entry ... >)+ >  + <config:config-item-map-named config:name="#string" (<config:config-item-map-entry ... >)+ > 
@@ -1900,7 +1900,7 @@

config:config-item-set Element Child Relations - <config:config-item-set config:name="<string>" (<config:config-item ... > | <config:config-item-set ... > | <config:config-item-map-named ... > | <config:config-item-map-indexed ... >)+ >  + <config:config-item-set config:name="#string" (<config:config-item ... > | <config:config-item-set ... > | <config:config-item-map-named ... > | <config:config-item-map-indexed ... >)+ > 
@@ -1936,14 +1936,14 @@

db:application-connec Child Relations - <db:application-connection-settings (db:is-table-name-length-limited="<boolean>" )? - (db:enable-sql92-check="<boolean>" )? - (db:append-table-alias-name="<boolean>" )? - (db:ignore-driver-privileges="<boolean>" )? + <db:application-connection-settings (db:is-table-name-length-limited="#boolean" )? + (db:enable-sql92-check="#boolean" )? + (db:append-table-alias-name="#boolean" )? + (db:ignore-driver-privileges="#boolean" )? (db:boolean-comparison-mode="equal-integer | is-boolean | equal-boolean | equal-use-only-zero" )? - (db:use-catalog="<boolean>" )? - (db:max-row-count="<integer>" )? - (db:suppress-version-columns="<boolean>" )? + (db:use-catalog="#boolean" )? + (db:max-row-count="#integer" )? + (db:suppress-version-columns="#boolean" )? (<db:table-filter ... >)? (<db:table-type-filter ... >)? (<db:data-source-settings ... >)? @@ -1974,8 +1974,8 @@

db:auto-increment Element (ne Child Relations - <db:auto-increment (db:additional-column-statement="<string>" )? - (db:row-retrieving-statement="<string>" )? + <db:auto-increment (db:additional-column-statement="#string" )? + (db:row-retrieving-statement="#string" )? >  @@ -2048,20 +2048,20 @@

db:column Element (new in ODF 1.2) Child Relations - <db:column (db:visible="<boolean>" )? - (db:style-name="(<NCName>)?" )? - (db:default-cell-style-name="(<NCName>)?" )? - db:name="<string>" (db:title="<string>" )? - (db:description="<string>" )? + <db:column (db:visible="#boolean" )? + (db:style-name="(#NCName)?" )? + (db:default-cell-style-name="(#NCName)?" )? + db:name="#string" (db:title="#string" )? + (db:description="#string" )? ( - (office:value-type="float" office:value="<double>" ) | - (office:value-type="percentage" office:value="<double>" ) | - (office:value-type="currency" office:value="<double>" (office:currency="<string>" )? + (office:value-type="float" office:value="#double" ) | + (office:value-type="percentage" office:value="#double" ) | + (office:value-type="currency" office:value="#double" (office:currency="#string" )? ) | - (office:value-type="date" office:date-value="<date> | <dateTime>" ) | - (office:value-type="time" office:time-value="<duration>" ) | - (office:value-type="boolean" office:boolean-value="<boolean>" ) | - (office:value-type="string" (office:string-value="<string>" )? + (office:value-type="date" office:date-value="#date | #dateTime" ) | + (office:value-type="time" office:time-value="#duration" ) | + (office:value-type="boolean" office:boolean-value="#boolean" ) | + (office:value-type="string" (office:string-value="#string" )? ))? >  @@ -2109,22 +2109,22 @@

db:column-definition Element&nb Child Relations - <db:column-definition db:name="<string>" (db:data-type="bit | boolean | tinyint | smallint | integer | bigint | float | real | double | numeric | decimal | char | varchar | longvarchar | date | time | timestmp | binary | varbinary | longvarbinary | sqlnull | other | object | distinct | struct | array | blob | clob | ref" )? - (db:type-name="<string>" )? - (db:precision="<positiveInteger>" )? - (db:scale="<positiveInteger>" )? + <db:column-definition db:name="#string" (db:data-type="bit | boolean | tinyint | smallint | integer | bigint | float | real | double | numeric | decimal | char | varchar | longvarchar | date | time | timestmp | binary | varbinary | longvarbinary | sqlnull | other | object | distinct | struct | array | blob | clob | ref" )? + (db:type-name="#string" )? + (db:precision="#positiveInteger" )? + (db:scale="#positiveInteger" )? (db:is-nullable="no-nulls | nullable" )? - (db:is-empty-allowed="<boolean>" )? - (db:is-autoincrement="<boolean>" )? + (db:is-empty-allowed="#boolean" )? + (db:is-autoincrement="#boolean" )? ( - (office:value-type="float" office:value="<double>" ) | - (office:value-type="percentage" office:value="<double>" ) | - (office:value-type="currency" office:value="<double>" (office:currency="<string>" )? + (office:value-type="float" office:value="#double" ) | + (office:value-type="percentage" office:value="#double" ) | + (office:value-type="currency" office:value="#double" (office:currency="#string" )? ) | - (office:value-type="date" office:date-value="<date> | <dateTime>" ) | - (office:value-type="time" office:time-value="<duration>" ) | - (office:value-type="boolean" office:boolean-value="<boolean>" ) | - (office:value-type="string" (office:string-value="<string>" )? + (office:value-type="date" office:date-value="#date | #dateTime" ) | + (office:value-type="time" office:time-value="#duration" ) | + (office:value-type="boolean" office:boolean-value="#boolean" ) | + (office:value-type="string" (office:string-value="#string" )? ))? >  @@ -2216,12 +2216,12 @@

db:component Element (new in ODF 1 Child Relations - <db:component (xlink:type="simple" xlink:href="<anyIRI>" (xlink:show="none" )? + <db:component (xlink:type="simple" xlink:href="#anyIRI" (xlink:show="none" )? (xlink:actuate="onRequest" )? )? - (db:as-template="<boolean>" )? - db:name="<string>" (db:title="<string>" )? - (db:description="<string>" )? + (db:as-template="#boolean" )? + db:name="#string" (db:title="#string" )? + (db:description="#string" )? (<office:document ... > | <math:math ... >)? >  @@ -2255,8 +2255,8 @@

db:component-collection Element< Child Relations - <db:component-collection EMPTYdb:name="<string>" (db:title="<string>" )? - (db:description="<string>" )? + <db:component-collection EMPTYdb:name="#string" (db:title="#string" )? + (db:description="#string" )? (<db:component ... > | <db:component-collection ... >)* >  @@ -2316,7 +2316,7 @@

db:connection-resource Element Child Relations <db:connection-resource - (xlink:type="simple" xlink:href="<anyIRI>" (xlink:show="none" )? + (xlink:type="simple" xlink:href="#anyIRI" (xlink:show="none" )? (xlink:actuate="onRequest" )? )>  @@ -2377,8 +2377,8 @@

db:data-source-setting Element Child Relations - <db:data-source-setting (db:data-source-setting-is-list="<boolean>" )? - db:data-source-setting-name="<string>" db:data-source-setting-type="boolean | short | int | long | double | string" (<db:data-source-setting-value ... >)+ >  + <db:data-source-setting (db:data-source-setting-is-list="#boolean" )? + db:data-source-setting-name="#string" db:data-source-setting-type="boolean | short | int | long | double | string" (<db:data-source-setting-value ... >)+ > 
@@ -2403,7 +2403,7 @@

db:data-source-setting-valu Child Relations - <db:data-source-setting-value EMPTY<string>>  + <db:data-source-setting-value EMPTY#string
@@ -2486,10 +2486,10 @@

db:delimiter Element (new in ODF 1 Child Relations - <db:delimiter (db:field="<string>" )? - (db:string="<string>" )? - (db:decimal="<string>" )? - (db:thousand="<string>" )? + <db:delimiter (db:field="#string" )? + (db:string="#string" )? + (db:decimal="#string" )? + (db:thousand="#string" )? >  @@ -2524,11 +2524,11 @@

db:driver-settings Element ( Child Relations - <db:driver-settings (db:show-deleted="<boolean>" )? - (db:system-driver-settings="<string>" )? - (db:base-dn="<string>" )? - (db:is-first-row-header-line="<boolean>" )? - (db:parameter-name-substitution="<boolean>" )? + <db:driver-settings (db:show-deleted="#boolean" )? + (db:system-driver-settings="#string" )? + (db:base-dn="#string" )? + (db:is-first-row-header-line="#boolean" )? + (db:parameter-name-substitution="#boolean" )? (<db:auto-increment ... >)? (<db:delimiter ... >)? (<db:character-set ... >)? @@ -2562,7 +2562,7 @@

db:file-based-database Element Child Relations - <db:file-based-database xlink:type="simple" xlink:href="<anyIRI>" db:media-type="<string>" (db:extension="<string>" )? + <db:file-based-database xlink:type="simple" xlink:href="#anyIRI" db:media-type="#string" (db:extension="#string" )? >  @@ -2591,7 +2591,7 @@

db:filter-statement Element  Child Relations - <db:filter-statement db:command="<string>" (db:apply-command="<boolean>" )? + <db:filter-statement db:command="#string" (db:apply-command="#boolean" )? >  @@ -2649,9 +2649,9 @@

db:index Element (new in ODF 1.2)

Child Relations - <db:index db:name="<string>" (db:catalog-name="<string>" )? - (db:is-unique="<boolean>" )? - (db:is-clustered="<boolean>" )? + <db:index db:name="#string" (db:catalog-name="#string" )? + (db:is-unique="#boolean" )? + (db:is-clustered="#boolean" )? (<db:index-columns ... >)+ >  @@ -2679,7 +2679,7 @@

db:index-column Element (new in Child Relations - <db:index-column db:name="<string>" (db:is-ascending="<boolean>" )? + <db:index-column db:name="#string" (db:is-ascending="#boolean" )? >  @@ -2763,8 +2763,8 @@

db:key Element (new in ODF 1.2)

Child Relations - <db:key (db:name="<string>" )? - db:type="primary | unique | foreign" (db:referenced-table-name="<string>" )? + <db:key (db:name="#string" )? + db:type="primary | unique | foreign" (db:referenced-table-name="#string" )? (db:update-rule="cascade | restrict | set-null | no-action | set-default" )? (db:delete-rule="cascade | restrict | set-null | no-action | set-default" )? (<db:key-columns ... >)+ >  @@ -2794,8 +2794,8 @@

db:key-column Element (new in ODF Child Relations - <db:key-column (db:name="<string>" )? - (db:related-column-name="<string>" )? + <db:key-column (db:name="#string" )? + (db:related-column-name="#string" )? >  @@ -2877,9 +2877,9 @@

db:login Element (new in ODF 1.2)

Child Relations - <db:login (db:user-name="<string>" | db:use-system-user="<boolean>" )? - (db:is-password-required="<boolean>" )? - (db:login-timeout="<positiveInteger>" )? + <db:login (db:user-name="#string" | db:use-system-user="#boolean" )? + (db:is-password-required="#boolean" )? + (db:login-timeout="#positiveInteger" )? >  @@ -2908,7 +2908,7 @@

db:order-statement Element ( Child Relations - <db:order-statement db:command="<string>" (db:apply-command="<boolean>" )? + <db:order-statement db:command="#string" (db:apply-command="#boolean" )? >  @@ -2973,11 +2973,11 @@

db:query Element (new in ODF 1.2)

Child Relations - <db:query db:command="<string>" (db:escape-processing="<boolean>" )? - db:name="<string>" (db:title="<string>" )? - (db:description="<string>" )? - (db:style-name="(<NCName>)?" )? - (db:default-row-style-name="(<NCName>)?" )? + <db:query db:command="#string" (db:escape-processing="#boolean" )? + db:name="#string" (db:title="#string" )? + (db:description="#string" )? + (db:style-name="(#NCName)?" )? + (db:default-row-style-name="(#NCName)?" )? (<db:order-statement ... >)? (<db:filter-statement ... >)? (<db:columns ... >)? @@ -3013,8 +3013,8 @@

db:query-collection Element  Child Relations - <db:query-collection EMPTYdb:name="<string>" (db:title="<string>" )? - (db:description="<string>" )? + <db:query-collection EMPTYdb:name="#string" (db:title="#string" )? + (db:description="#string" )? (<db:query ... > | <db:query-collection ... >)* >  @@ -3099,9 +3099,9 @@

db:server-database Element ( Child Relations <db:server-database db:type="QName]" - (db:hostname="<string>" (db:port="<positiveInteger>" )? - ) | (db:local-socket="<string>" )? - (db:database-name="<string>" )? + (db:hostname="#string" (db:port="#positiveInteger" )? + ) | (db:local-socket="#string" )? + (db:database-name="#string" )? >  @@ -3134,9 +3134,9 @@

db:table-definition Element  Child Relations - <db:table-definition db:name="<string>" (db:catalog-name="<string>" )? - (db:schema-name="<string>" )? - (db:type="<string>" )? + <db:table-definition db:name="#string" (db:catalog-name="#string" )? + (db:schema-name="#string" )? + (db:type="#string" )? <db:column-definitions ... > (<db:keys ... >)? (<db:indices ... >)? >  @@ -3246,7 +3246,7 @@

db:table-filter-pattern Element< Child Relations - <db:table-filter-pattern EMPTY<string>>  + <db:table-filter-pattern EMPTY#string
@@ -3307,12 +3307,12 @@

db:table-representation Element< Child Relations - <db:table-representation EMPTYdb:name="<string>" (db:catalog-name="<string>" )? - (db:schema-name="<string>" )? - (db:title="<string>" )? - (db:description="<string>" )? - (db:style-name="(<NCName>)?" )? - (db:default-row-style-name="(<NCName>)?" )? + <db:table-representation EMPTYdb:name="#string" (db:catalog-name="#string" )? + (db:schema-name="#string" )? + (db:title="#string" )? + (db:description="#string" )? + (db:style-name="(#NCName)?" )? + (db:default-row-style-name="(#NCName)?" )? (<db:order-statement ... >)? (<db:filter-statement ... >)? (<db:columns ... >)? @@ -3372,8 +3372,8 @@

db:table-setting Element (new Child Relations <db:table-setting - ( (db:is-first-row-header-line="<boolean>" )? - (db:show-deleted="<boolean>" )? + ( (db:is-first-row-header-line="#boolean" )? + (db:show-deleted="#boolean" )? ) (<db:delimiter ... >)? (<db:character-set ... >)? >  @@ -3427,7 +3427,7 @@

db:table-type Element (new in ODF Child Relations - <db:table-type EMPTY<string>>  + <db:table-type EMPTY#string
@@ -3481,8 +3481,8 @@

db:update-table Element (new in Child Relations - <db:update-table db:name="<string>" (db:catalog-name="<string>" )? - (db:schema-name="<string>" )? + <db:update-table db:name="#string" (db:catalog-name="#string" )? + (db:schema-name="#string" )? >  @@ -3510,7 +3510,7 @@

dc:creator Element

Child Relations - <dc:creator <string>>  + <dc:creator #string
@@ -3537,7 +3537,7 @@

dc:date Element

Child Relations - <dc:date <dateTime>>  + <dc:date #dateTime
@@ -3562,7 +3562,7 @@

dc:description Element (new in O Child Relations - <dc:description <string>>  + <dc:description #string
@@ -3587,7 +3587,7 @@

dc:language Element (new in ODF 1.2 Child Relations - <dc:language <language>>  + <dc:language #language
@@ -3612,7 +3612,7 @@

dc:subject Element (new in ODF 1.2) Child Relations - <dc:subject <string>>  + <dc:subject #string
@@ -3637,7 +3637,7 @@

dc:title Element (new in ODF 1.2)

Child Relations - <dc:title <string>>  + <dc:title #string
@@ -3676,21 +3676,21 @@

dr3d:cube Element

<dr3d:cube ( (dr3d:min-edge="string]" )? (dr3d:max-edge="string]" )? - ) (draw:z-index="<nonNegativeInteger>" )? - (xml:id="<ID>" (draw:id="<NCName>" )? + ) (draw:z-index="#nonNegativeInteger" )? + (xml:id="#ID" (draw:id="#NCName" )? )? - (draw:layer="<string>" )? + (draw:layer="#string" )? - ( (draw:style-name="(<NCName>)?" )? + ( (draw:style-name="(#NCName)?" )? (draw:class-names=" -START_list(<NCName>)* +START_list(#NCName)* END_list" )? ) | - ( (presentation:style-name="(<NCName>)?" )? + ( (presentation:style-name="(#NCName)?" )? (presentation:class-names=" -START_list(<NCName>)* +START_list(#NCName)* END_list" )? - ) (dr3d:transform="<string>" )? + ) (dr3d:transform="#string" )? >  @@ -3727,23 +3727,23 @@

dr3d:extrude Element

Child Relations - <dr3d:extrude svg:d="<string>" svg:viewBox=" -START_list<integer><integer><integer><integer> -END_list" (xml:id="<ID>" (draw:id="<NCName>" )? + <dr3d:extrude svg:d="#string" svg:viewBox=" +START_list#integer#integer#integer#integer +END_list" (xml:id="#ID" (draw:id="#NCName" )? )? - (draw:z-index="<nonNegativeInteger>" )? - (draw:layer="<string>" )? + (draw:z-index="#nonNegativeInteger" )? + (draw:layer="#string" )? - ( (draw:style-name="(<NCName>)?" )? + ( (draw:style-name="(#NCName)?" )? (draw:class-names=" -START_list(<NCName>)* +START_list(#NCName)* END_list" )? ) | - ( (presentation:style-name="(<NCName>)?" )? + ( (presentation:style-name="(#NCName)?" )? (presentation:class-names=" -START_list(<NCName>)* +START_list(#NCName)* END_list" )? - ) (dr3d:transform="<string>" )? + ) (dr3d:transform="#string" )? >  @@ -3775,8 +3775,8 @@

dr3d:light Element

Child Relations <dr3d:light (dr3d:diffuse-color="string]" )? - dr3d:direction="string]" (dr3d:enabled="<boolean>" )? - (dr3d:specular="<boolean>" )? + dr3d:direction="string]" (dr3d:enabled="#boolean" )? + (dr3d:specular="#boolean" )? >  @@ -3814,22 +3814,22 @@

dr3d:rotate Element

Child Relations <dr3d:rotate svg:viewBox=" -START_list<integer><integer><integer><integer> -END_list" svg:d="<string>" (draw:z-index="<nonNegativeInteger>" )? - (xml:id="<ID>" (draw:id="<NCName>" )? +START_list#integer#integer#integer#integer +END_list" svg:d="#string" (draw:z-index="#nonNegativeInteger" )? + (xml:id="#ID" (draw:id="#NCName" )? )? - (draw:layer="<string>" )? + (draw:layer="#string" )? - ( (draw:style-name="(<NCName>)?" )? + ( (draw:style-name="(#NCName)?" )? (draw:class-names=" -START_list(<NCName>)* +START_list(#NCName)* END_list" )? ) | - ( (presentation:style-name="(<NCName>)?" )? + ( (presentation:style-name="(#NCName)?" )? (presentation:class-names=" -START_list(<NCName>)* +START_list(#NCName)* END_list" )? - ) (dr3d:transform="<string>" )? + ) (dr3d:transform="#string" )? >  @@ -3923,10 +3923,10 @@

dr3d:scene Element

(dr3d:projection="parallel | perspective" )? (dr3d:distance="string]" )? (dr3d:focal-length="string]" )? - (dr3d:shadow-slant="<string>" )? + (dr3d:shadow-slant="#string" )? (dr3d:shade-mode="flat | phong | gouraud | draft" )? (dr3d:ambient-color="string]" )? - (dr3d:lighting-mode="<boolean>" )? + (dr3d:lighting-mode="#boolean" )? ( (svg:x="string]" )? (svg:y="string]" )? @@ -3934,27 +3934,27 @@

dr3d:scene Element

( (svg:width="string]" )? (svg:height="string]" )? ) - ( (draw:style-name="(<NCName>)?" )? + ( (draw:style-name="(#NCName)?" )? (draw:class-names=" -START_list(<NCName>)* +START_list(#NCName)* END_list" )? ) | - ( (presentation:style-name="(<NCName>)?" )? + ( (presentation:style-name="(#NCName)?" )? (presentation:class-names=" -START_list(<NCName>)* +START_list(#NCName)* END_list" )? - ) (draw:z-index="<nonNegativeInteger>" )? - (xml:id="<ID>" (draw:id="<NCName>" )? + ) (draw:z-index="#nonNegativeInteger" )? + (xml:id="#ID" (draw:id="#NCName" )? )? - (draw:layer="<string>" )? + (draw:layer="#string" )? (table:end-cell-address="string]" )? (table:end-x="string]" )? (table:end-y="string]" )? - (table:table-background="<boolean>" )? + (table:table-background="#boolean" )? (text:anchor-type="page | frame | paragraph | char | as-char" )? - (text:anchor-page-number="<positiveInteger>" )? - (dr3d:transform="<string>" )? - (draw:caption-id="<IDREF>" )? + (text:anchor-page-number="#positiveInteger" )? + (dr3d:transform="#string" )? + (draw:caption-id="#IDREF" )? (<svg:title ... >)? (<svg:desc ... >)? (<dr3d:light ... >)* (<dr3d:scene ... > | <dr3d:extrude ... > | <dr3d:sphere ... > | <dr3d:rotate ... > | <dr3d:cube ... >)* (<draw:glue-point ... >)* >  @@ -3995,21 +3995,21 @@

dr3d:sphere Element

Child Relations <dr3d:sphere (dr3d:center="string]" )? (dr3d:size="string]" )? - (draw:z-index="<nonNegativeInteger>" )? - (xml:id="<ID>" (draw:id="<NCName>" )? + (draw:z-index="#nonNegativeInteger" )? + (xml:id="#ID" (draw:id="#NCName" )? )? - (draw:layer="<string>" )? + (draw:layer="#string" )? - ( (draw:style-name="(<NCName>)?" )? + ( (draw:style-name="(#NCName)?" )? (draw:class-names=" -START_list(<NCName>)* +START_list(#NCName)* END_list" )? ) | - ( (presentation:style-name="(<NCName>)?" )? + ( (presentation:style-name="(#NCName)?" )? (presentation:class-names=" -START_list(<NCName>)* +START_list(#NCName)* END_list" )? - ) (dr3d:transform="<string>" )? + ) (dr3d:transform="#string" )? >  @@ -4082,13 +4082,13 @@

draw:a Element

Child Relations - <draw:a xlink:type="simple" xlink:href="<anyIRI>" (xlink:actuate="onRequest" )? - (office:target-frame-name="_self | _blank | _parent | _top | <string>" )? + <draw:a xlink:type="simple" xlink:href="#anyIRI" (xlink:actuate="onRequest" )? + (office:target-frame-name="_self | _blank | _parent | _top | #string" )? (xlink:show="new | replace" )? - (office:name="<string>" )? - (office:title="<string>" )? - (office:server-map="<boolean>" )? - (xml:id="<ID>" )? + (office:name="#string" )? + (office:title="#string" )? + (office:server-map="#boolean" )? + (xml:id="#ID" )? <draw:rect ... > | <draw:line ... > | <draw:polyline ... > | <draw:polygon ... > | <draw:regular-polygon ... > | <draw:path ... > | <draw:circle ... > | <draw:ellipse ... > | <draw:g ... > | <draw:page-thumbnail ... > | <draw:frame ... > | <draw:measure ... > | <draw:caption ... > | <draw:connector ... > | <draw:control ... > | <dr3d:scene ... > | <draw:custom-shape ... >>  @@ -4124,13 +4124,13 @@

draw:applet Element

Child Relations - <draw:applet (draw:code="<string>" )? - (draw:object="<string>" )? - (draw:archive="<string>" )? - (draw:may-script="<boolean>" )? - (xml:id="<ID>" )? + <draw:applet (draw:code="#string" )? + (draw:object="#string" )? + (draw:archive="#string" )? + (draw:may-script="#boolean" )? + (xml:id="#ID" )? ( - (xlink:type="simple" xlink:href="<anyIRI>" (xlink:show="embed" )? + (xlink:type="simple" xlink:href="#anyIRI" (xlink:show="embed" )? (xlink:actuate="onLoad" )? ))? (<draw:param ... >)* >  @@ -4170,10 +4170,10 @@

draw:area-circle Element

Child Relations - <draw:area-circle (xlink:type="simple" xlink:href="<anyIRI>" (office:target-frame-name="_self | _blank | _parent | _top | <string>" )? + <draw:area-circle (xlink:type="simple" xlink:href="#anyIRI" (office:target-frame-name="_self | _blank | _parent | _top | #string" )? (xlink:show="new | replace" )? )? - (office:name="<string>" )? + (office:name="#string" )? (draw:nohref="nohref" )? svg:cx="string]" svg:cy="string]" svg:r="string]" (<svg:title ... >)? (<svg:desc ... >)? @@ -4218,13 +4218,13 @@

draw:area-polygon Element

Child Relations - <draw:area-polygon (xlink:type="simple" xlink:href="<anyIRI>" (office:target-frame-name="_self | _blank | _parent | _top | <string>" )? + <draw:area-polygon (xlink:type="simple" xlink:href="#anyIRI" (office:target-frame-name="_self | _blank | _parent | _top | #string" )? (xlink:show="new | replace" )? )? - (office:name="<string>" )? + (office:name="#string" )? (draw:nohref="nohref" )? svg:x="string]" svg:y="string]" svg:width="string]" svg:height="string]" svg:viewBox=" -START_list<integer><integer><integer><integer> +START_list#integer#integer#integer#integer END_list" draw:points="string]" (<svg:title ... >)? (<svg:desc ... >)? (<office:event-listeners ... >)? @@ -4266,10 +4266,10 @@

draw:area-rectangle Element

Child Relations - <draw:area-rectangle (xlink:type="simple" xlink:href="<anyIRI>" (office:target-frame-name="_self | _blank | _parent | _top | <string>" )? + <draw:area-rectangle (xlink:type="simple" xlink:href="#anyIRI" (office:target-frame-name="_self | _blank | _parent | _top | #string" )? (xlink:show="new | replace" )? )? - (office:name="<string>" )? + (office:name="#string" )? (draw:nohref="nohref" )? svg:x="string]" svg:y="string]" svg:width="string]" svg:height="string]" (<svg:title ... >)? (<svg:desc ... >)? @@ -4362,30 +4362,30 @@

draw:caption Element

(svg:height="string]" )? ) ( - ( (draw:z-index="<nonNegativeInteger>" )? - (xml:id="<ID>" (draw:id="<NCName>" )? + ( (draw:z-index="#nonNegativeInteger" )? + (xml:id="#ID" (draw:id="#NCName" )? )? - (draw:layer="<string>" )? + (draw:layer="#string" )? - ( (draw:style-name="(<NCName>)?" )? + ( (draw:style-name="(#NCName)?" )? (draw:class-names=" -START_list(<NCName>)* +START_list(#NCName)* END_list" )? ) | - ( (presentation:style-name="(<NCName>)?" )? + ( (presentation:style-name="(#NCName)?" )? (presentation:class-names=" -START_list(<NCName>)* +START_list(#NCName)* END_list" )? - ) (draw:transform="<string>" )? - (draw:name="<string>" )? + ) (draw:transform="#string" )? + (draw:name="#string" )? (table:end-cell-address="string]" )? (table:end-x="string]" )? (table:end-y="string]" )? - (table:table-background="<boolean>" )? + (table:table-background="#boolean" )? (text:anchor-type="page | frame | paragraph | char | as-char" )? - (text:anchor-page-number="<positiveInteger>" )? - ) (draw:text-style-name="(<NCName>)?" )? - ) (draw:caption-id="<IDREF>" )? + (text:anchor-page-number="#positiveInteger" )? + ) (draw:text-style-name="(#NCName)?" )? + ) (draw:caption-id="#IDREF" )? (<svg:title ... >)? (<svg:desc ... >)? (<office:event-listeners ... >)? @@ -4480,34 +4480,34 @@

draw:circle Element

( (svg:width="string]" )? (svg:height="string]" )? )) (draw:kind="full | section | cut | arc" )? - (draw:start-angle="<string>" )? - (draw:end-angle="<string>" )? + (draw:start-angle="#string" )? + (draw:end-angle="#string" )? ( - ( (draw:z-index="<nonNegativeInteger>" )? - (xml:id="<ID>" (draw:id="<NCName>" )? + ( (draw:z-index="#nonNegativeInteger" )? + (xml:id="#ID" (draw:id="#NCName" )? )? - (draw:layer="<string>" )? + (draw:layer="#string" )? - ( (draw:style-name="(<NCName>)?" )? + ( (draw:style-name="(#NCName)?" )? (draw:class-names=" -START_list(<NCName>)* +START_list(#NCName)* END_list" )? ) | - ( (presentation:style-name="(<NCName>)?" )? + ( (presentation:style-name="(#NCName)?" )? (presentation:class-names=" -START_list(<NCName>)* +START_list(#NCName)* END_list" )? - ) (draw:transform="<string>" )? - (draw:name="<string>" )? + ) (draw:transform="#string" )? + (draw:name="#string" )? (table:end-cell-address="string]" )? (table:end-x="string]" )? (table:end-y="string]" )? - (table:table-background="<boolean>" )? + (table:table-background="#boolean" )? (text:anchor-type="page | frame | paragraph | char | as-char" )? - (text:anchor-page-number="<positiveInteger>" )? - ) (draw:text-style-name="(<NCName>)?" )? - ) (draw:caption-id="<IDREF>" )? + (text:anchor-page-number="#positiveInteger" )? + ) (draw:text-style-name="(#NCName)?" )? + ) (draw:caption-id="#IDREF" )? (<svg:title ... >)? (<svg:desc ... >)? (<office:event-listeners ... >)? @@ -4596,43 +4596,43 @@

draw:connector Element

Child Relations <draw:connector (draw:type="standard | lines | line | curve" )? (svg:x1="string]" svg:y1="string]" )? - (draw:start-shape="<IDREF>" )? - (draw:start-glue-point="<nonNegativeInteger>" )? + (draw:start-shape="#IDREF" )? + (draw:start-glue-point="#nonNegativeInteger" )? (svg:x2="string]" svg:y2="string]" )? - (draw:end-shape="<IDREF>" )? - (draw:end-glue-point="<nonNegativeInteger>" )? + (draw:end-shape="#IDREF" )? + (draw:end-glue-point="#nonNegativeInteger" )? (draw:line-skew=" START_liststring](string](string])?)? END_list" )? - (svg:d="<string>" )? + (svg:d="#string" )? ( - ( (draw:z-index="<nonNegativeInteger>" )? - (xml:id="<ID>" (draw:id="<NCName>" )? + ( (draw:z-index="#nonNegativeInteger" )? + (xml:id="#ID" (draw:id="#NCName" )? )? - (draw:layer="<string>" )? + (draw:layer="#string" )? - ( (draw:style-name="(<NCName>)?" )? + ( (draw:style-name="(#NCName)?" )? (draw:class-names=" -START_list(<NCName>)* +START_list(#NCName)* END_list" )? ) | - ( (presentation:style-name="(<NCName>)?" )? + ( (presentation:style-name="(#NCName)?" )? (presentation:class-names=" -START_list(<NCName>)* +START_list(#NCName)* END_list" )? - ) (draw:transform="<string>" )? - (draw:name="<string>" )? + ) (draw:transform="#string" )? + (draw:name="#string" )? (table:end-cell-address="string]" )? (table:end-x="string]" )? (table:end-y="string]" )? - (table:table-background="<boolean>" )? + (table:table-background="#boolean" )? (text:anchor-type="page | frame | paragraph | char | as-char" )? - (text:anchor-page-number="<positiveInteger>" )? - ) (draw:text-style-name="(<NCName>)?" )? - ) (draw:caption-id="<IDREF>" )? + (text:anchor-page-number="#positiveInteger" )? + ) (draw:text-style-name="(#NCName)?" )? + ) (draw:caption-id="#IDREF" )? svg:viewBox=" -START_list<integer><integer><integer><integer> +START_list#integer#integer#integer#integer END_list" (<svg:title ... >)? (<svg:desc ... >)? (<office:event-listeners ... >)? @@ -4666,12 +4666,12 @@

draw:contour-path Element

Child Relations - <draw:contour-path draw:recreate-on-edit="<boolean>" + <draw:contour-path draw:recreate-on-edit="#boolean" ( (svg:width="string]" )? (svg:height="string]" )? )svg:viewBox=" -START_list<integer><integer><integer><integer> -END_list" svg:d="<string>" >  +START_list#integer#integer#integer#integer +END_list" svg:d="#string" > 
@@ -4701,11 +4701,11 @@

draw:contour-polygon Element Child Relations - <draw:contour-polygon draw:recreate-on-edit="<boolean>" + <draw:contour-polygon draw:recreate-on-edit="#boolean" ( (svg:width="string]" )? (svg:height="string]" )? )svg:viewBox=" -START_list<integer><integer><integer><integer> +START_list#integer#integer#integer#integer END_list" draw:points="string]" >  @@ -4779,7 +4779,7 @@

draw:control Element

Child Relations - <draw:control draw:control="<IDREF>" + <draw:control draw:control="#IDREF" ( (svg:x="string]" )? (svg:y="string]" )? ) @@ -4787,30 +4787,30 @@

draw:control Element

(svg:height="string]" )? ) ( - ( (draw:z-index="<nonNegativeInteger>" )? - (xml:id="<ID>" (draw:id="<NCName>" )? + ( (draw:z-index="#nonNegativeInteger" )? + (xml:id="#ID" (draw:id="#NCName" )? )? - (draw:layer="<string>" )? + (draw:layer="#string" )? - ( (draw:style-name="(<NCName>)?" )? + ( (draw:style-name="(#NCName)?" )? (draw:class-names=" -START_list(<NCName>)* +START_list(#NCName)* END_list" )? ) | - ( (presentation:style-name="(<NCName>)?" )? + ( (presentation:style-name="(#NCName)?" )? (presentation:class-names=" -START_list(<NCName>)* +START_list(#NCName)* END_list" )? - ) (draw:transform="<string>" )? - (draw:name="<string>" )? + ) (draw:transform="#string" )? + (draw:name="#string" )? (table:end-cell-address="string]" )? (table:end-x="string]" )? (table:end-y="string]" )? - (table:table-background="<boolean>" )? + (table:table-background="#boolean" )? (text:anchor-type="page | frame | paragraph | char | as-char" )? - (text:anchor-page-number="<positiveInteger>" )? - ) (draw:text-style-name="(<NCName>)?" )? - ) (draw:caption-id="<IDREF>" )? + (text:anchor-page-number="#positiveInteger" )? + ) (draw:text-style-name="(#NCName)?" )? + ) (draw:caption-id="#IDREF" )? (<svg:title ... >)? (<svg:desc ... >)? (<draw:glue-point ... >)* >  @@ -4892,7 +4892,7 @@

draw:custom-shape Element

Child Relations <draw:custom-shape (draw:engine="QName]" )? - (draw:data="<string>" )? + (draw:data="#string" )? ( (svg:x="string]" )? (svg:y="string]" )? @@ -4901,30 +4901,30 @@

draw:custom-shape Element

(svg:height="string]" )? ) ( - ( (draw:z-index="<nonNegativeInteger>" )? - (xml:id="<ID>" (draw:id="<NCName>" )? + ( (draw:z-index="#nonNegativeInteger" )? + (xml:id="#ID" (draw:id="#NCName" )? )? - (draw:layer="<string>" )? + (draw:layer="#string" )? - ( (draw:style-name="(<NCName>)?" )? + ( (draw:style-name="(#NCName)?" )? (draw:class-names=" -START_list(<NCName>)* +START_list(#NCName)* END_list" )? ) | - ( (presentation:style-name="(<NCName>)?" )? + ( (presentation:style-name="(#NCName)?" )? (presentation:class-names=" -START_list(<NCName>)* +START_list(#NCName)* END_list" )? - ) (draw:transform="<string>" )? - (draw:name="<string>" )? + ) (draw:transform="#string" )? + (draw:name="#string" )? (table:end-cell-address="string]" )? (table:end-x="string]" )? (table:end-y="string]" )? - (table:table-background="<boolean>" )? + (table:table-background="#boolean" )? (text:anchor-type="page | frame | paragraph | char | as-char" )? - (text:anchor-page-number="<positiveInteger>" )? - ) (draw:text-style-name="(<NCName>)?" )? - ) (draw:caption-id="<IDREF>" )? + (text:anchor-page-number="#positiveInteger" )? + ) (draw:text-style-name="(#NCName)?" )? + ) (draw:caption-id="#IDREF" )? (<svg:title ... >)? (<svg:desc ... >)? (<office:event-listeners ... >)? @@ -5022,34 +5022,34 @@

draw:ellipse Element

( (svg:width="string]" )? (svg:height="string]" )? )) (draw:kind="full | section | cut | arc" )? - (draw:start-angle="<string>" )? - (draw:end-angle="<string>" )? + (draw:start-angle="#string" )? + (draw:end-angle="#string" )? ( - ( (draw:z-index="<nonNegativeInteger>" )? - (xml:id="<ID>" (draw:id="<NCName>" )? + ( (draw:z-index="#nonNegativeInteger" )? + (xml:id="#ID" (draw:id="#NCName" )? )? - (draw:layer="<string>" )? + (draw:layer="#string" )? - ( (draw:style-name="(<NCName>)?" )? + ( (draw:style-name="(#NCName)?" )? (draw:class-names=" -START_list(<NCName>)* +START_list(#NCName)* END_list" )? ) | - ( (presentation:style-name="(<NCName>)?" )? + ( (presentation:style-name="(#NCName)?" )? (presentation:class-names=" -START_list(<NCName>)* +START_list(#NCName)* END_list" )? - ) (draw:transform="<string>" )? - (draw:name="<string>" )? + ) (draw:transform="#string" )? + (draw:name="#string" )? (table:end-cell-address="string]" )? (table:end-x="string]" )? (table:end-y="string]" )? - (table:table-background="<boolean>" )? + (table:table-background="#boolean" )? (text:anchor-type="page | frame | paragraph | char | as-char" )? - (text:anchor-page-number="<positiveInteger>" )? - ) (draw:text-style-name="(<NCName>)?" )? - ) (draw:caption-id="<IDREF>" )? + (text:anchor-page-number="#positiveInteger" )? + ) (draw:text-style-name="(#NCName)?" )? + ) (draw:caption-id="#IDREF" )? (<svg:title ... >)? (<svg:desc ... >)? (<office:event-listeners ... >)? @@ -5123,39 +5123,39 @@

draw:enhanced-geometry Element Child Relations - <draw:enhanced-geometry (draw:type="non-primitive | <string>" )? + <draw:enhanced-geometry (draw:type="non-primitive | #string" )? (svg:viewBox=" -START_list<integer><integer><integer><integer> +START_list#integer#integer#integer#integer END_list" )? - (draw:mirror-vertical="<boolean>" )? - (draw:mirror-horizontal="<boolean>" )? - (draw:text-rotate-angle="<string>" )? - (draw:extrusion-allowed="<boolean>" )? - (draw:text-path-allowed="<boolean>" )? - (draw:concentric-gradient-fill-allowed="<boolean>" )? - (draw:extrusion="<boolean>" )? + (draw:mirror-vertical="#boolean" )? + (draw:mirror-horizontal="#boolean" )? + (draw:text-rotate-angle="#string" )? + (draw:extrusion-allowed="#boolean" )? + (draw:text-path-allowed="#boolean" )? + (draw:concentric-gradient-fill-allowed="#boolean" )? + (draw:extrusion="#boolean" )? (draw:extrusion-brightness="string]" )? (draw:extrusion-depth=" -START_liststring]<double> +START_liststring]#double END_list" )? (draw:extrusion-diffusion="string]" )? - (draw:extrusion-number-of-line-segments="<integer>" )? - (draw:extrusion-light-face="<boolean>" )? - (draw:extrusion-first-light-harsh="<boolean>" )? - (draw:extrusion-second-light-harsh="<boolean>" )? + (draw:extrusion-number-of-line-segments="#integer" )? + (draw:extrusion-light-face="#boolean" )? + (draw:extrusion-first-light-harsh="#boolean" )? + (draw:extrusion-second-light-harsh="#boolean" )? (draw:extrusion-first-light-level="string]" )? (draw:extrusion-second-light-level="string]" )? (draw:extrusion-first-light-direction="string]" )? (draw:extrusion-second-light-direction="string]" )? - (draw:extrusion-metal="<boolean>" )? + (draw:extrusion-metal="#boolean" )? (dr3d:shade-mode="flat | phong | gouraud | draft" )? (draw:extrusion-rotation-angle=" -START_list<string><string> +START_list#string#string END_list" )? (draw:extrusion-rotation-center="string]" )? (draw:extrusion-shininess="string]" )? (draw:extrusion-skew=" -START_list<double><string> +START_list#double#string END_list" )? (draw:extrusion-specularity="string]" )? (dr3d:projection="parallel | perspective" )? @@ -5163,19 +5163,19 @@

draw:enhanced-geometry Element<boolean>" )? - (draw:enhanced-path="<string>" )? - (draw:path-stretchpoint-x="<double>" )? - (draw:path-stretchpoint-y="<double>" )? - (draw:text-areas="<string>" )? - (draw:glue-points="<string>" )? + (draw:extrusion-color="#boolean" )? + (draw:enhanced-path="#string" )? + (draw:path-stretchpoint-x="#double" )? + (draw:path-stretchpoint-y="#double" )? + (draw:text-areas="#string" )? + (draw:glue-points="#string" )? (draw:glue-point-type="none | segments | rectangle" )? - (draw:glue-point-leaving-directions="<string>" )? - (draw:text-path="<boolean>" )? + (draw:glue-point-leaving-directions="#string" )? + (draw:text-path="#boolean" )? (draw:text-path-mode="normal | path | shape" )? (draw:text-path-scale="path | shape" )? - (draw:text-path-same-letter-heights="<boolean>" )? - (draw:modifiers="<string>" )? + (draw:text-path-same-letter-heights="#boolean" )? + (draw:modifiers="#string" )? (<draw:equation ... >)* (<draw:handle ... >)* >  @@ -5203,8 +5203,8 @@

draw:equation Element

Child Relations - <draw:equation (draw:name="<string>" )? - (draw:formula="<string>" )? + <draw:equation (draw:name="#string" )? + (draw:formula="#string" )? >  @@ -5238,10 +5238,10 @@

draw:fill-image Element

Child Relations - <draw:fill-image draw:name="<NCName>" (draw:display-name="<string>" )? + <draw:fill-image draw:name="#NCName" (draw:display-name="#string" )? (svg:width="string]" )? (svg:height="string]" )? - xlink:type="simple" xlink:href="<anyIRI>" (xlink:show="embed" )? + xlink:type="simple" xlink:href="#anyIRI" (xlink:show="embed" )? (xlink:actuate="onLoad" )? >  @@ -5274,10 +5274,10 @@

draw:floating-frame Element

Child Relations - <draw:floating-frame (draw:frame-name="<string>" )? - (xml:id="<ID>" )? + <draw:floating-frame (draw:frame-name="#string" )? + (xml:id="#ID" )? - (xlink:type="simple" xlink:href="<anyIRI>" (xlink:show="embed" )? + (xlink:type="simple" xlink:href="#anyIRI" (xlink:show="embed" )? (xlink:actuate="onLoad" )? )>  @@ -5372,29 +5372,29 @@

draw:frame Element

Child Relations <draw:frame ( - ( (draw:z-index="<nonNegativeInteger>" )? - (xml:id="<ID>" (draw:id="<NCName>" )? + ( (draw:z-index="#nonNegativeInteger" )? + (xml:id="#ID" (draw:id="#NCName" )? )? - (draw:layer="<string>" )? + (draw:layer="#string" )? - ( (draw:style-name="(<NCName>)?" )? + ( (draw:style-name="(#NCName)?" )? (draw:class-names=" -START_list(<NCName>)* +START_list(#NCName)* END_list" )? ) | - ( (presentation:style-name="(<NCName>)?" )? + ( (presentation:style-name="(#NCName)?" )? (presentation:class-names=" -START_list(<NCName>)* +START_list(#NCName)* END_list" )? - ) (draw:transform="<string>" )? - (draw:name="<string>" )? + ) (draw:transform="#string" )? + (draw:name="#string" )? (table:end-cell-address="string]" )? (table:end-x="string]" )? (table:end-y="string]" )? - (table:table-background="<boolean>" )? + (table:table-background="#boolean" )? (text:anchor-type="page | frame | paragraph | char | as-char" )? - (text:anchor-page-number="<positiveInteger>" )? - ) (draw:text-style-name="(<NCName>)?" )? + (text:anchor-page-number="#positiveInteger" )? + ) (draw:text-style-name="(#NCName)?" )? ) ( (svg:x="string]" )? (svg:y="string]" )? @@ -5404,11 +5404,11 @@

draw:frame Element

(svg:height="string]" )? ) (style:rel-width="string] | scale | scale-min" )? (style:rel-height="string] | scale | scale-min" )? - ) (draw:caption-id="<IDREF>" )? + ) (draw:caption-id="#IDREF" )? (presentation:class="title | outline | subtitle | text | graphic | object | chart | table | orgchart | page | notes | handout | header | footer | date-time | page-number" )? - (presentation:placeholder="<boolean>" )? - (presentation:user-transformed="<boolean>" )? - (draw:copy-of="<string>" )? + (presentation:placeholder="#boolean" )? + (presentation:user-transformed="#boolean" )? + (draw:copy-of="#string" )? (<draw:text-box ... > | <draw:image ... > | <draw:object ... > | <draw:object-ole ... > | <draw:applet ... > | <draw:floating-frame ... > | <draw:plugin ... > | <table:table ... >)* (<office:event-listeners ... >)? (<draw:glue-point ... >)* (<draw:image-map ... >)? (<svg:title ... >)? @@ -5500,27 +5500,27 @@

draw:g Element

Child Relations <draw:g (svg:y="string]" )? - (draw:z-index="<nonNegativeInteger>" )? - (draw:name="<string>" )? - (xml:id="<ID>" (draw:id="<NCName>" )? + (draw:z-index="#nonNegativeInteger" )? + (draw:name="#string" )? + (xml:id="#ID" (draw:id="#NCName" )? )? - ( (draw:style-name="(<NCName>)?" )? + ( (draw:style-name="(#NCName)?" )? (draw:class-names=" -START_list(<NCName>)* +START_list(#NCName)* END_list" )? ) | - ( (presentation:style-name="(<NCName>)?" )? + ( (presentation:style-name="(#NCName)?" )? (presentation:class-names=" -START_list(<NCName>)* +START_list(#NCName)* END_list" )? ) (table:end-cell-address="string]" )? (table:end-x="string]" )? (table:end-y="string]" )? - (table:table-background="<boolean>" )? + (table:table-background="#boolean" )? (text:anchor-type="page | frame | paragraph | char | as-char" )? - (text:anchor-page-number="<positiveInteger>" )? - (draw:caption-id="<IDREF>" )? + (text:anchor-page-number="#positiveInteger" )? + (draw:caption-id="#IDREF" )? (<svg:title ... >)? (<svg:desc ... >)? (<office:event-listeners ... >)? @@ -5569,7 +5569,7 @@

draw:glue-point Element

Child Relations - <draw:glue-point draw:id="<nonNegativeInteger>" svg:x="string] | string]" svg:y="string] | string]" (draw:align="top-left | top | top-right | left | center | right | bottom-left | bottom-right" )? + <draw:glue-point draw:id="#nonNegativeInteger" svg:x="string] | string]" svg:y="string] | string]" (draw:align="top-left | top | top-right | left | center | right | bottom-left | bottom-right" )? draw:escape-direction="auto | left | right | up | down | horizontal | vertical" >  @@ -5606,11 +5606,11 @@

draw:gradient Element

Child Relations - <draw:gradient (draw:name="<NCName>" )? - (draw:display-name="<string>" )? + <draw:gradient (draw:name="#NCName" )? + (draw:display-name="#string" )? draw:style="linear | axial | radial | ellipsoid | square | rectangular" (draw:cx="string]" )? (draw:cy="string]" )? - (draw:angle="<string>" )? + (draw:angle="#string" )? (draw:border="string]" )? (draw:start-color="string]" )? (draw:end-color="string]" )? @@ -5652,16 +5652,16 @@

draw:handle Element

Child Relations - <draw:handle (draw:handle-mirror-vertical="<boolean>" )? - (draw:handle-mirror-horizontal="<boolean>" )? - (draw:handle-switched="<boolean>" )? - draw:handle-position="<string>" (draw:handle-range-x-minimum="<string>" )? - (draw:handle-range-x-maximum="<string>" )? - (draw:handle-range-y-minimum="<string>" )? - (draw:handle-range-y-maximum="<string>" )? - (draw:handle-polar="<string>" )? - (draw:handle-radius-range-minimum="<string>" )? - (draw:handle-radius-range-maximum="<string>" )? + <draw:handle (draw:handle-mirror-vertical="#boolean" )? + (draw:handle-mirror-horizontal="#boolean" )? + (draw:handle-switched="#boolean" )? + draw:handle-position="#string" (draw:handle-range-x-minimum="#string" )? + (draw:handle-range-x-maximum="#string" )? + (draw:handle-range-y-minimum="#string" )? + (draw:handle-range-y-maximum="#string" )? + (draw:handle-polar="#string" )? + (draw:handle-radius-range-minimum="#string" )? + (draw:handle-radius-range-maximum="#string" )? >  @@ -5693,10 +5693,10 @@

draw:hatch Element

Child Relations - <draw:hatch draw:name="<NCName>" (draw:display-name="<string>" )? + <draw:hatch draw:name="#NCName" (draw:display-name="#string" )? draw:style="single | double | triple" (draw:color="string]" )? (draw:distance="string]" )? - (draw:rotation="<string>" )? + (draw:rotation="#string" )? >  @@ -5731,10 +5731,10 @@

draw:image Element

Child Relations - <draw:image (draw:filter-name="<string>" )? - (xml:id="<ID>" )? + <draw:image (draw:filter-name="#string" )? + (xml:id="#ID" )? - (xlink:type="simple" xlink:href="<anyIRI>" (xlink:show="embed" )? + (xlink:type="simple" xlink:href="#anyIRI" (xlink:show="embed" )? (xlink:actuate="onLoad" )? ) | <office:binary-data ... >(<text:p ... > | <text:list ... >)* >  @@ -5794,7 +5794,7 @@

draw:layer Element

Child Relations - <draw:layer draw:name="<string>" (draw:protected="<boolean>" )? + <draw:layer draw:name="#string" (draw:protected="#boolean" )? (draw:display="always | screen | printer | none" )? (<svg:title ... >)? (<svg:desc ... >)? @@ -5903,30 +5903,30 @@

draw:line Element

Child Relations <draw:line svg:x1="string]" svg:y1="string]" svg:x2="string]" svg:y2="string]" ( - ( (draw:z-index="<nonNegativeInteger>" )? - (xml:id="<ID>" (draw:id="<NCName>" )? + ( (draw:z-index="#nonNegativeInteger" )? + (xml:id="#ID" (draw:id="#NCName" )? )? - (draw:layer="<string>" )? + (draw:layer="#string" )? - ( (draw:style-name="(<NCName>)?" )? + ( (draw:style-name="(#NCName)?" )? (draw:class-names=" -START_list(<NCName>)* +START_list(#NCName)* END_list" )? ) | - ( (presentation:style-name="(<NCName>)?" )? + ( (presentation:style-name="(#NCName)?" )? (presentation:class-names=" -START_list(<NCName>)* +START_list(#NCName)* END_list" )? - ) (draw:transform="<string>" )? - (draw:name="<string>" )? + ) (draw:transform="#string" )? + (draw:name="#string" )? (table:end-cell-address="string]" )? (table:end-x="string]" )? (table:end-y="string]" )? - (table:table-background="<boolean>" )? + (table:table-background="#boolean" )? (text:anchor-type="page | frame | paragraph | char | as-char" )? - (text:anchor-page-number="<positiveInteger>" )? - ) (draw:text-style-name="(<NCName>)?" )? - ) (draw:caption-id="<IDREF>" )? + (text:anchor-page-number="#positiveInteger" )? + ) (draw:text-style-name="(#NCName)?" )? + ) (draw:caption-id="#IDREF" )? (<svg:title ... >)? (<svg:desc ... >)? (<office:event-listeners ... >)? @@ -5959,10 +5959,10 @@

draw:marker Element

Child Relations - <draw:marker draw:name="<NCName>" (draw:display-name="<string>" )? + <draw:marker draw:name="#NCName" (draw:display-name="#string" )? svg:viewBox=" -START_list<integer><integer><integer><integer> -END_list" svg:d="<string>" >  +START_list#integer#integer#integer#integer +END_list" svg:d="#string" > 
@@ -6039,30 +6039,30 @@

draw:measure Element

Child Relations <draw:measure svg:x1="string]" svg:y1="string]" svg:x2="string]" svg:y2="string]" ( - ( (draw:z-index="<nonNegativeInteger>" )? - (xml:id="<ID>" (draw:id="<NCName>" )? + ( (draw:z-index="#nonNegativeInteger" )? + (xml:id="#ID" (draw:id="#NCName" )? )? - (draw:layer="<string>" )? + (draw:layer="#string" )? - ( (draw:style-name="(<NCName>)?" )? + ( (draw:style-name="(#NCName)?" )? (draw:class-names=" -START_list(<NCName>)* +START_list(#NCName)* END_list" )? ) | - ( (presentation:style-name="(<NCName>)?" )? + ( (presentation:style-name="(#NCName)?" )? (presentation:class-names=" -START_list(<NCName>)* +START_list(#NCName)* END_list" )? - ) (draw:transform="<string>" )? - (draw:name="<string>" )? + ) (draw:transform="#string" )? + (draw:name="#string" )? (table:end-cell-address="string]" )? (table:end-x="string]" )? (table:end-y="string]" )? - (table:table-background="<boolean>" )? + (table:table-background="#boolean" )? (text:anchor-type="page | frame | paragraph | char | as-char" )? - (text:anchor-page-number="<positiveInteger>" )? - ) (draw:text-style-name="(<NCName>)?" )? - ) (draw:caption-id="<IDREF>" )? + (text:anchor-page-number="#positiveInteger" )? + ) (draw:text-style-name="(#NCName)?" )? + ) (draw:caption-id="#IDREF" )? (<svg:title ... >)? (<svg:desc ... >)? (<office:event-listeners ... >)? @@ -6099,10 +6099,10 @@

draw:object Element

Child Relations - <draw:object (draw:notify-on-update-of-ranges="<string> | <string>" )? - (xml:id="<ID>" )? + <draw:object (draw:notify-on-update-of-ranges="#string | #string" )? + (xml:id="#ID" )? - (xlink:type="simple" xlink:href="<anyIRI>" (xlink:show="embed" )? + (xlink:type="simple" xlink:href="#anyIRI" (xlink:show="embed" )? (xlink:actuate="onLoad" )? ) | <office:document ... > | <math:math ... >>  @@ -6136,10 +6136,10 @@

draw:object-ole Element

Child Relations - <draw:object-ole (draw:class-id="<string>" )? - (xml:id="<ID>" )? + <draw:object-ole (draw:class-id="#string" )? + (xml:id="#ID" )? - (xlink:type="simple" xlink:href="<anyIRI>" (xlink:show="embed" )? + (xlink:type="simple" xlink:href="#anyIRI" (xlink:show="embed" )? (xlink:actuate="onLoad" )? ) | <office:binary-data ... >>  @@ -6175,11 +6175,11 @@

draw:opacity Element

Child Relations - <draw:opacity (draw:name="<NCName>" )? - (draw:display-name="<string>" )? + <draw:opacity (draw:name="#NCName" )? + (draw:display-name="#string" )? draw:style="linear | axial | radial | ellipsoid | square | rectangular" (draw:cx="string]" )? (draw:cy="string]" )? - (draw:angle="<string>" )? + (draw:angle="#string" )? (draw:border="string]" )? ( (draw:start="string]" )? @@ -6255,15 +6255,15 @@

draw:page Element

Child Relations - <draw:page (presentation:use-header-name="<string>" )? - (presentation:use-footer-name="<string>" )? - (presentation:use-date-time-name="<string>" )? - (draw:name="<string>" )? - (draw:style-name="(<NCName>)?" )? - draw:master-page-name="(<NCName>)?" (presentation:presentation-page-layout-name="(<NCName>)?" )? - (xml:id="<ID>" (draw:id="<NCName>" )? + <draw:page (presentation:use-header-name="#string" )? + (presentation:use-footer-name="#string" )? + (presentation:use-date-time-name="#string" )? + (draw:name="#string" )? + (draw:style-name="(#NCName)?" )? + draw:master-page-name="(#NCName)?" (presentation:presentation-page-layout-name="(#NCName)?" )? + (xml:id="#ID" (draw:id="#NCName" )? )? - (draw:nav-order="<IDREFS>" )? + (draw:nav-order="#IDREFS" )? (<svg:title ... >)? (<svg:desc ... >)? (<draw:layer-set ... >)? @@ -6345,7 +6345,7 @@

draw:page-thumbnail Element

Child Relations - <draw:page-thumbnail (draw:page-number="<positiveInteger>" )? + <draw:page-thumbnail (draw:page-number="#positiveInteger" )? ( (svg:x="string]" )? (svg:y="string]" )? @@ -6353,32 +6353,32 @@

draw:page-thumbnail Element

( (svg:width="string]" )? (svg:height="string]" )? ) (presentation:class="title | outline | subtitle | text | graphic | object | chart | table | orgchart | page | notes | handout | header | footer | date-time | page-number" )? - (presentation:placeholder="<boolean>" )? - (presentation:user-transformed="<boolean>" )? + (presentation:placeholder="#boolean" )? + (presentation:user-transformed="#boolean" )? - ( (draw:z-index="<nonNegativeInteger>" )? - (xml:id="<ID>" (draw:id="<NCName>" )? + ( (draw:z-index="#nonNegativeInteger" )? + (xml:id="#ID" (draw:id="#NCName" )? )? - (draw:layer="<string>" )? + (draw:layer="#string" )? - ( (draw:style-name="(<NCName>)?" )? + ( (draw:style-name="(#NCName)?" )? (draw:class-names=" -START_list(<NCName>)* +START_list(#NCName)* END_list" )? ) | - ( (presentation:style-name="(<NCName>)?" )? + ( (presentation:style-name="(#NCName)?" )? (presentation:class-names=" -START_list(<NCName>)* +START_list(#NCName)* END_list" )? - ) (draw:transform="<string>" )? - (draw:name="<string>" )? + ) (draw:transform="#string" )? + (draw:name="#string" )? (table:end-cell-address="string]" )? (table:end-x="string]" )? (table:end-y="string]" )? - (table:table-background="<boolean>" )? + (table:table-background="#boolean" )? (text:anchor-type="page | frame | paragraph | char | as-char" )? - (text:anchor-page-number="<positiveInteger>" )? - ) (draw:caption-id="<IDREF>" )? + (text:anchor-page-number="#positiveInteger" )? + ) (draw:caption-id="#IDREF" )? (<svg:title ... >)? (<svg:desc ... >)? >  @@ -6409,8 +6409,8 @@

draw:param Element

Child Relations - <draw:param (draw:name="<string>" )? - (draw:value="<string>" )? + <draw:param (draw:name="#string" )? + (draw:value="#string" )? >  @@ -6488,40 +6488,40 @@

draw:path Element

Child Relations - <draw:path svg:d="<string>" + <draw:path svg:d="#string" ( (svg:x="string]" )? (svg:y="string]" )? ) ( (svg:width="string]" )? (svg:height="string]" )? )svg:viewBox=" -START_list<integer><integer><integer><integer> +START_list#integer#integer#integer#integer END_list" ( - ( (draw:z-index="<nonNegativeInteger>" )? - (xml:id="<ID>" (draw:id="<NCName>" )? + ( (draw:z-index="#nonNegativeInteger" )? + (xml:id="#ID" (draw:id="#NCName" )? )? - (draw:layer="<string>" )? + (draw:layer="#string" )? - ( (draw:style-name="(<NCName>)?" )? + ( (draw:style-name="(#NCName)?" )? (draw:class-names=" -START_list(<NCName>)* +START_list(#NCName)* END_list" )? ) | - ( (presentation:style-name="(<NCName>)?" )? + ( (presentation:style-name="(#NCName)?" )? (presentation:class-names=" -START_list(<NCName>)* +START_list(#NCName)* END_list" )? - ) (draw:transform="<string>" )? - (draw:name="<string>" )? + ) (draw:transform="#string" )? + (draw:name="#string" )? (table:end-cell-address="string]" )? (table:end-x="string]" )? (table:end-y="string]" )? - (table:table-background="<boolean>" )? + (table:table-background="#boolean" )? (text:anchor-type="page | frame | paragraph | char | as-char" )? - (text:anchor-page-number="<positiveInteger>" )? - ) (draw:text-style-name="(<NCName>)?" )? - ) (draw:caption-id="<IDREF>" )? + (text:anchor-page-number="#positiveInteger" )? + ) (draw:text-style-name="(#NCName)?" )? + ) (draw:caption-id="#IDREF" )? (<svg:title ... >)? (<svg:desc ... >)? (<office:event-listeners ... >)? @@ -6557,10 +6557,10 @@

draw:plugin Element

Child Relations - <draw:plugin (draw:mime-type="<string>" )? - (xml:id="<ID>" )? + <draw:plugin (draw:mime-type="#string" )? + (xml:id="#ID" )? - (xlink:type="simple" xlink:href="<anyIRI>" (xlink:show="embed" )? + (xlink:type="simple" xlink:href="#anyIRI" (xlink:show="embed" )? (xlink:actuate="onLoad" )? )(<draw:param ... >)* >  @@ -6646,33 +6646,33 @@

draw:polygon Element

( (svg:width="string]" )? (svg:height="string]" )? )svg:viewBox=" -START_list<integer><integer><integer><integer> +START_list#integer#integer#integer#integer END_list" ( - ( (draw:z-index="<nonNegativeInteger>" )? - (xml:id="<ID>" (draw:id="<NCName>" )? + ( (draw:z-index="#nonNegativeInteger" )? + (xml:id="#ID" (draw:id="#NCName" )? )? - (draw:layer="<string>" )? + (draw:layer="#string" )? - ( (draw:style-name="(<NCName>)?" )? + ( (draw:style-name="(#NCName)?" )? (draw:class-names=" -START_list(<NCName>)* +START_list(#NCName)* END_list" )? ) | - ( (presentation:style-name="(<NCName>)?" )? + ( (presentation:style-name="(#NCName)?" )? (presentation:class-names=" -START_list(<NCName>)* +START_list(#NCName)* END_list" )? - ) (draw:transform="<string>" )? - (draw:name="<string>" )? + ) (draw:transform="#string" )? + (draw:name="#string" )? (table:end-cell-address="string]" )? (table:end-x="string]" )? (table:end-y="string]" )? - (table:table-background="<boolean>" )? + (table:table-background="#boolean" )? (text:anchor-type="page | frame | paragraph | char | as-char" )? - (text:anchor-page-number="<positiveInteger>" )? - ) (draw:text-style-name="(<NCName>)?" )? - ) (draw:caption-id="<IDREF>" )? + (text:anchor-page-number="#positiveInteger" )? + ) (draw:text-style-name="(#NCName)?" )? + ) (draw:caption-id="#IDREF" )? (<svg:title ... >)? (<svg:desc ... >)? (<office:event-listeners ... >)? @@ -6760,33 +6760,33 @@

draw:polyline Element

( (svg:width="string]" )? (svg:height="string]" )? )svg:viewBox=" -START_list<integer><integer><integer><integer> +START_list#integer#integer#integer#integer END_list" ( - ( (draw:z-index="<nonNegativeInteger>" )? - (xml:id="<ID>" (draw:id="<NCName>" )? + ( (draw:z-index="#nonNegativeInteger" )? + (xml:id="#ID" (draw:id="#NCName" )? )? - (draw:layer="<string>" )? + (draw:layer="#string" )? - ( (draw:style-name="(<NCName>)?" )? + ( (draw:style-name="(#NCName)?" )? (draw:class-names=" -START_list(<NCName>)* +START_list(#NCName)* END_list" )? ) | - ( (presentation:style-name="(<NCName>)?" )? + ( (presentation:style-name="(#NCName)?" )? (presentation:class-names=" -START_list(<NCName>)* +START_list(#NCName)* END_list" )? - ) (draw:transform="<string>" )? - (draw:name="<string>" )? + ) (draw:transform="#string" )? + (draw:name="#string" )? (table:end-cell-address="string]" )? (table:end-x="string]" )? (table:end-y="string]" )? - (table:table-background="<boolean>" )? + (table:table-background="#boolean" )? (text:anchor-type="page | frame | paragraph | char | as-char" )? - (text:anchor-page-number="<positiveInteger>" )? - ) (draw:text-style-name="(<NCName>)?" )? - ) (draw:caption-id="<IDREF>" )? + (text:anchor-page-number="#positiveInteger" )? + ) (draw:text-style-name="(#NCName)?" )? + ) (draw:caption-id="#IDREF" )? (<svg:title ... >)? (<svg:desc ... >)? (<office:event-listeners ... >)? @@ -6879,30 +6879,30 @@

draw:rect Element

(svg:height="string]" )? ) ( - ( (draw:z-index="<nonNegativeInteger>" )? - (xml:id="<ID>" (draw:id="<NCName>" )? + ( (draw:z-index="#nonNegativeInteger" )? + (xml:id="#ID" (draw:id="#NCName" )? )? - (draw:layer="<string>" )? + (draw:layer="#string" )? - ( (draw:style-name="(<NCName>)?" )? + ( (draw:style-name="(#NCName)?" )? (draw:class-names=" -START_list(<NCName>)* +START_list(#NCName)* END_list" )? ) | - ( (presentation:style-name="(<NCName>)?" )? + ( (presentation:style-name="(#NCName)?" )? (presentation:class-names=" -START_list(<NCName>)* +START_list(#NCName)* END_list" )? - ) (draw:transform="<string>" )? - (draw:name="<string>" )? + ) (draw:transform="#string" )? + (draw:name="#string" )? (table:end-cell-address="string]" )? (table:end-x="string]" )? (table:end-y="string]" )? - (table:table-background="<boolean>" )? + (table:table-background="#boolean" )? (text:anchor-type="page | frame | paragraph | char | as-char" )? - (text:anchor-page-number="<positiveInteger>" )? - ) (draw:text-style-name="(<NCName>)?" )? - ) (draw:caption-id="<IDREF>" )? + (text:anchor-page-number="#positiveInteger" )? + ) (draw:text-style-name="(#NCName)?" )? + ) (draw:caption-id="#IDREF" )? (<svg:title ... >)? (<svg:desc ... >)? (<office:event-listeners ... >)? @@ -6986,7 +6986,7 @@

draw:regular-polygon Element Child Relations <draw:regular-polygon draw:concave="false" | - (draw:concave="true" draw:sharpness="string]" )draw:corners="<positiveInteger>" + (draw:concave="true" draw:sharpness="string]" )draw:corners="#positiveInteger" ( (svg:x="string]" )? (svg:y="string]" )? ) @@ -6994,30 +6994,30 @@

draw:regular-polygon Element<nonNegativeInteger>" )? - (xml:id="<ID>" (draw:id="<NCName>" )? + ( (draw:z-index="#nonNegativeInteger" )? + (xml:id="#ID" (draw:id="#NCName" )? )? - (draw:layer="<string>" )? + (draw:layer="#string" )? - ( (draw:style-name="(<NCName>)?" )? + ( (draw:style-name="(#NCName)?" )? (draw:class-names=" -START_list(<NCName>)* +START_list(#NCName)* END_list" )? ) | - ( (presentation:style-name="(<NCName>)?" )? + ( (presentation:style-name="(#NCName)?" )? (presentation:class-names=" -START_list(<NCName>)* +START_list(#NCName)* END_list" )? - ) (draw:transform="<string>" )? - (draw:name="<string>" )? + ) (draw:transform="#string" )? + (draw:name="#string" )? (table:end-cell-address="string]" )? (table:end-x="string]" )? (table:end-y="string]" )? - (table:table-background="<boolean>" )? + (table:table-background="#boolean" )? (text:anchor-type="page | frame | paragraph | char | as-char" )? - (text:anchor-page-number="<positiveInteger>" )? - ) (draw:text-style-name="(<NCName>)?" )? - ) (draw:caption-id="<IDREF>" )? + (text:anchor-page-number="#positiveInteger" )? + ) (draw:text-style-name="(#NCName)?" )? + ) (draw:caption-id="#IDREF" )? (<svg:title ... >)? (<svg:desc ... >)? (<office:event-listeners ... >)? @@ -7054,11 +7054,11 @@

draw:stroke-dash Element

Child Relations - <draw:stroke-dash draw:name="<NCName>" (draw:display-name="<string>" )? + <draw:stroke-dash draw:name="#NCName" (draw:display-name="#string" )? (draw:style="rect | round" )? - (draw:dots1="<integer>" )? + (draw:dots1="#integer" )? (draw:dots1-length="string] | string]" )? - (draw:dots2="<integer>" )? + (draw:dots2="#integer" )? (draw:dots2-length="string] | string]" )? (draw:distance="string] | string]" )? >  @@ -7129,13 +7129,13 @@

draw:text-box Element

Child Relations - <draw:text-box (draw:chain-next-name="<string>" )? + <draw:text-box (draw:chain-next-name="#string" )? (draw:corner-radius="string]" )? (fo:min-height="string] | string]" )? (fo:min-width="string] | string]" )? (fo:max-height="string] | string]" )? (fo:max-width="string] | string]" )? - (xml:id="<ID>" (text:id="<NCName>" )? + (xml:id="#ID" (text:id="#NCName" )? )? (<text:h ... > | <text:p ... > | <text:list ... > | <text:numbered-paragraph ... > | <table:table ... > | <text:section ... > | <text:soft-page-break ... > | <text:table-of-content ... > | <text:illustration-index ... > | <text:table-index ... > | <text:object-index ... > | <text:user-index ... > | <text:alphabetical-index ... > | <text:bibliography ... > | <draw:rect ... > | <draw:line ... > | <draw:polyline ... > | <draw:polygon ... > | <draw:regular-polygon ... > | <draw:path ... > | <draw:circle ... > | <draw:ellipse ... > | <draw:g ... > | <draw:page-thumbnail ... > | <draw:frame ... > | <draw:measure ... > | <draw:caption ... > | <draw:connector ... > | <draw:control ... > | <dr3d:scene ... > | <draw:custom-shape ... > | <draw:a ... > | <text:change ... > | <text:change-start ... > | <text:change-end ... >)* >  @@ -7190,30 +7190,30 @@

form:button Element

Child Relations <form:button - ( (form:name="<string>" )? + ( (form:name="#string" )? (form:control-implementation="QName]" )? - (xml:id="<ID>" (form:id="<NCName>" )? - ) (xforms:bind="<string>" )? + (xml:id="#ID" (form:id="#NCName" )? + ) (xforms:bind="#string" )? ) (form:button-type="submit | reset | push | url" )? - (form:disabled="<boolean>" )? - (form:label="<string>" )? - (form:image-data="<anyIRI>" )? - (form:printable="<boolean>" )? - (form:tab-index="<nonNegativeInteger>" )? - (form:tab-stop="<boolean>" )? - (office:target-frame="_self | _blank | _parent | _top | <string>" )? - (xlink:href="<anyIRI>" )? - (form:title="<string>" )? - (form:value="<string>" )? + (form:disabled="#boolean" )? + (form:label="#string" )? + (form:image-data="#anyIRI" )? + (form:printable="#boolean" )? + (form:tab-index="#nonNegativeInteger" )? + (form:tab-stop="#boolean" )? + (office:target-frame="_self | _blank | _parent | _top | #string" )? + (xlink:href="#anyIRI" )? + (form:title="#string" )? + (form:value="#string" )? form:image-position="center" | EMPTY | (form:image-position="start | end | top | bottom" (form:image-align="start | center | end" )? - ) (form:repeat="<boolean>" )? - (form:delay-for-repeat="<duration>" )? - (form:default-button="<boolean>" )? - (form:toggle="<boolean>" )? - (form:focus-on-click="<boolean>" )? - (form:xforms-submission="<string>" )? + ) (form:repeat="#boolean" )? + (form:delay-for-repeat="#duration" )? + (form:default-button="#boolean" )? + (form:toggle="#boolean" )? + (form:focus-on-click="#boolean" )? + (form:xforms-submission="#string" )? ( (<form:properties ... >)? (<office:event-listeners ... >)? @@ -7267,25 +7267,25 @@

form:checkbox Element

Child Relations <form:checkbox - ( (form:name="<string>" )? + ( (form:name="#string" )? (form:control-implementation="QName]" )? - (xml:id="<ID>" (form:id="<NCName>" )? - ) (xforms:bind="<string>" )? - ) (form:disabled="<boolean>" )? - (form:label="<string>" )? - (form:printable="<boolean>" )? - (form:tab-index="<nonNegativeInteger>" )? - (form:tab-stop="<boolean>" )? - (form:title="<string>" )? - (form:value="<string>" )? - (form:data-field="<string>" )? + (xml:id="#ID" (form:id="#NCName" )? + ) (xforms:bind="#string" )? + ) (form:disabled="#boolean" )? + (form:label="#string" )? + (form:printable="#boolean" )? + (form:tab-index="#nonNegativeInteger" )? + (form:tab-stop="#boolean" )? + (form:title="#string" )? + (form:value="#string" )? + (form:data-field="#string" )? (form:visual-effect="flat | 3d" )? form:image-position="center" | EMPTY | (form:image-position="start | end | top | bottom" (form:image-align="start | center | end" )? - ) (form:linked-cell="string] | <string>" )? + ) (form:linked-cell="string] | #string" )? (form:current-state="unchecked | checked | unknown" )? - (form:is-tristate="<boolean>" )? + (form:is-tristate="#boolean" )? (form:state="unchecked | checked | unknown" )? ( (<form:properties ... >)? @@ -7329,10 +7329,10 @@

form:column Element

Child Relations <form:column - ( (form:name="<string>" )? + ( (form:name="#string" )? (form:control-implementation="QName]" )? - (form:label="<string>" )? - (form:text-style-name="(<NCName>)?" )? + (form:label="#string" )? + (form:text-style-name="(#NCName)?" )? )(<form:text ... > | <form:textarea ... > | <form:formatted-text ... > | <form:number ... > | <form:date ... > | <form:time ... > | <form:combobox ... > | <form:listbox ... > | <form:checkbox ... >)+ >  @@ -7386,29 +7386,29 @@

form:combobox Element

Child Relations <form:combobox - ( (form:name="<string>" )? + ( (form:name="#string" )? (form:control-implementation="QName]" )? - (xml:id="<ID>" (form:id="<NCName>" )? - ) (xforms:bind="<string>" )? - ) (form:current-value="<string>" )? - (form:disabled="<boolean>" )? - (form:dropdown="<boolean>" )? - (form:max-length="<nonNegativeInteger>" )? - (form:printable="<boolean>" )? - (form:readonly="<boolean>" )? - (form:size="<nonNegativeInteger>" )? - (form:tab-index="<nonNegativeInteger>" )? - (form:tab-stop="<boolean>" )? - (form:title="<string>" )? - (form:value="<string>" )? - (form:convert-empty-to-null="<boolean>" )? - (form:data-field="<string>" )? - (form:list-source="<string>" )? + (xml:id="#ID" (form:id="#NCName" )? + ) (xforms:bind="#string" )? + ) (form:current-value="#string" )? + (form:disabled="#boolean" )? + (form:dropdown="#boolean" )? + (form:max-length="#nonNegativeInteger" )? + (form:printable="#boolean" )? + (form:readonly="#boolean" )? + (form:size="#nonNegativeInteger" )? + (form:tab-index="#nonNegativeInteger" )? + (form:tab-stop="#boolean" )? + (form:title="#string" )? + (form:value="#string" )? + (form:convert-empty-to-null="#boolean" )? + (form:data-field="#string" )? + (form:list-source="#string" )? (form:list-source-type="table | query | sql | sql-pass-through | value-list | table-fields" )? - (form:linked-cell="string] | <string>" )? - (form:source-cell-range="string] | string] | string] | <string>" )? - (form:auto-complete="<boolean>" )? + (form:linked-cell="string] | #string" )? + (form:source-cell-range="string] | string] | string] | #string" )? + (form:auto-complete="#boolean" )? ( (<form:properties ... >)? (<office:event-listeners ... >)? @@ -7443,7 +7443,7 @@

form:connection-resource Elemen Child Relations - <form:connection-resource xlink:href="<anyIRI>" >  + <form:connection-resource xlink:href="#anyIRI" > 
@@ -7493,33 +7493,33 @@

form:date Element

Child Relations - <form:date (form:value="<date>" )? - (form:current-value="<date>" )? - (form:min-value="<date>" )? - (form:max-value="<date>" )? + <form:date (form:value="#date" )? + (form:current-value="#date" )? + (form:min-value="#date" )? + (form:max-value="#date" )? ( - ( (form:name="<string>" )? + ( (form:name="#string" )? (form:control-implementation="QName]" )? - (xml:id="<ID>" (form:id="<NCName>" )? - ) (xforms:bind="<string>" )? - ) (form:disabled="<boolean>" )? - (form:max-length="<nonNegativeInteger>" )? - (form:printable="<boolean>" )? - (form:readonly="<boolean>" )? - (form:tab-index="<nonNegativeInteger>" )? - (form:tab-stop="<boolean>" )? - (form:title="<string>" )? - (form:convert-empty-to-null="<boolean>" )? - (form:data-field="<string>" )? + (xml:id="#ID" (form:id="#NCName" )? + ) (xforms:bind="#string" )? + ) (form:disabled="#boolean" )? + (form:max-length="#nonNegativeInteger" )? + (form:printable="#boolean" )? + (form:readonly="#boolean" )? + (form:tab-index="#nonNegativeInteger" )? + (form:tab-stop="#boolean" )? + (form:title="#string" )? + (form:convert-empty-to-null="#boolean" )? + (form:data-field="#string" )? ) ( (<form:properties ... >)? (<office:event-listeners ... >)? - ) (form:linked-cell="string] | <string>" )? - (form:spin-button="<boolean>" )? - (form:repeat="<boolean>" )? - (form:delay-for-repeat="<duration>" )? + ) (form:linked-cell="string] | #string" )? + (form:spin-button="#boolean" )? + (form:repeat="#boolean" )? + (form:delay-for-repeat="#duration" )? >  @@ -7564,21 +7564,21 @@

form:file Element

Child Relations <form:file ( - ( (form:name="<string>" )? + ( (form:name="#string" )? (form:control-implementation="QName]" )? - (xml:id="<ID>" (form:id="<NCName>" )? - ) (xforms:bind="<string>" )? - ) (form:current-value="<string>" )? - (form:disabled="<boolean>" )? - (form:max-length="<nonNegativeInteger>" )? - (form:printable="<boolean>" )? - (form:readonly="<boolean>" )? - (form:tab-index="<nonNegativeInteger>" )? - (form:tab-stop="<boolean>" )? - (form:title="<string>" )? - (form:value="<string>" )? - (form:linked-cell="string] | <string>" )? + (xml:id="#ID" (form:id="#NCName" )? + ) (xforms:bind="#string" )? + ) (form:current-value="#string" )? + (form:disabled="#boolean" )? + (form:max-length="#nonNegativeInteger" )? + (form:printable="#boolean" )? + (form:readonly="#boolean" )? + (form:tab-index="#nonNegativeInteger" )? + (form:tab-stop="#boolean" )? + (form:title="#string" )? + (form:value="#string" )? + (form:linked-cell="string] | #string" )? ) ( (<form:properties ... >)? (<office:event-listeners ... >)? @@ -7621,17 +7621,17 @@

form:fixed-text Element

Child Relations <form:fixed-text - ( (form:name="<string>" )? + ( (form:name="#string" )? (form:control-implementation="QName]" )? - (xml:id="<ID>" (form:id="<NCName>" )? - ) (xforms:bind="<string>" )? - ) (form:for="<string>" )? - (form:disabled="<boolean>" )? - (form:label="<string>" )? - (form:printable="<boolean>" )? - (form:title="<string>" )? - (form:multi-line="<boolean>" )? + (xml:id="#ID" (form:id="#NCName" )? + ) (xforms:bind="#string" )? + ) (form:for="#string" )? + (form:disabled="#boolean" )? + (form:label="#string" )? + (form:printable="#boolean" )? + (form:title="#string" )? + (form:multi-line="#boolean" )? ( (<form:properties ... >)? (<office:event-listeners ... >)? @@ -7709,27 +7709,27 @@

form:form Element

Child Relations - <form:form (form:name="<string>" )? + <form:form (form:name="#string" )? (form:control-implementation="QName]" )? - (xlink:type="simple" xlink:href="<anyIRI>" (xlink:actuate="onRequest" )? + (xlink:type="simple" xlink:href="#anyIRI" (xlink:actuate="onRequest" )? )? - (office:target-frame="_self | _blank | _parent | _top | <string>" )? - (form:method="get | post | <string>" )? - (form:enctype="<string>" )? - (form:allow-deletes="<boolean>" )? - (form:allow-inserts="<boolean>" )? - (form:allow-updates="<boolean>" )? - (form:apply-filter="<boolean>" )? + (office:target-frame="_self | _blank | _parent | _top | #string" )? + (form:method="get | post | #string" )? + (form:enctype="#string" )? + (form:allow-deletes="#boolean" )? + (form:allow-inserts="#boolean" )? + (form:allow-updates="#boolean" )? + (form:apply-filter="#boolean" )? (form:command-type="table | query | command" )? - (form:command="<string>" )? - (form:datasource="<anyIRI> | <string>" )? - (form:master-fields="<string>" )? - (form:detail-fields="<string>" )? - (form:escape-processing="<boolean>" )? - (form:filter="<string>" )? - (form:ignore-result="<boolean>" )? + (form:command="#string" )? + (form:datasource="#anyIRI | #string" )? + (form:master-fields="#string" )? + (form:detail-fields="#string" )? + (form:escape-processing="#boolean" )? + (form:filter="#string" )? + (form:ignore-result="#boolean" )? (form:navigation-mode="none | current | parent" )? - (form:order="<string>" )? + (form:order="#string" )? (form:tab-cycle="records | current | page" )? (<form:properties ... >)? (<office:event-listeners ... >)? @@ -7786,29 +7786,29 @@

form:formatted-text Element

Child Relations <form:formatted-text - ( (form:name="<string>" )? + ( (form:name="#string" )? (form:control-implementation="QName]" )? - (xml:id="<ID>" (form:id="<NCName>" )? - ) (xforms:bind="<string>" )? - ) (form:current-value="<string>" )? - (form:disabled="<boolean>" )? - (form:max-length="<nonNegativeInteger>" )? - (form:printable="<boolean>" )? - (form:readonly="<boolean>" )? - (form:tab-index="<nonNegativeInteger>" )? - (form:tab-stop="<boolean>" )? - (form:title="<string>" )? - (form:value="<string>" )? - (form:convert-empty-to-null="<boolean>" )? - (form:data-field="<string>" )? - (form:linked-cell="string] | <string>" )? - (form:spin-button="<boolean>" )? - (form:repeat="<boolean>" )? - (form:delay-for-repeat="<duration>" )? - (form:max-value="<string>" )? - (form:min-value="<string>" )? - (form:validation="<boolean>" )? + (xml:id="#ID" (form:id="#NCName" )? + ) (xforms:bind="#string" )? + ) (form:current-value="#string" )? + (form:disabled="#boolean" )? + (form:max-length="#nonNegativeInteger" )? + (form:printable="#boolean" )? + (form:readonly="#boolean" )? + (form:tab-index="#nonNegativeInteger" )? + (form:tab-stop="#boolean" )? + (form:title="#string" )? + (form:value="#string" )? + (form:convert-empty-to-null="#boolean" )? + (form:data-field="#string" )? + (form:linked-cell="string] | #string" )? + (form:spin-button="#boolean" )? + (form:repeat="#boolean" )? + (form:delay-for-repeat="#duration" )? + (form:max-value="#string" )? + (form:min-value="#string" )? + (form:validation="#boolean" )? ( (<form:properties ... >)? (<office:event-listeners ... >)? @@ -7851,16 +7851,16 @@

form:frame Element

Child Relations <form:frame ( - ( (form:name="<string>" )? + ( (form:name="#string" )? (form:control-implementation="QName]" )? - (xml:id="<ID>" (form:id="<NCName>" )? - ) (xforms:bind="<string>" )? - ) (form:disabled="<boolean>" )? - (form:for="<string>" )? - (form:label="<string>" )? - (form:printable="<boolean>" )? - (form:title="<string>" )? + (xml:id="#ID" (form:id="#NCName" )? + ) (xforms:bind="#string" )? + ) (form:disabled="#boolean" )? + (form:for="#string" )? + (form:label="#string" )? + (form:printable="#boolean" )? + (form:title="#string" )? ) ( (<form:properties ... >)? (<office:event-listeners ... >)? @@ -7897,11 +7897,11 @@

form:generic-control Element Child Relations <form:generic-control - ( (form:name="<string>" )? + ( (form:name="#string" )? (form:control-implementation="QName]" )? - (xml:id="<ID>" (form:id="<NCName>" )? - ) (xforms:bind="<string>" )? + (xml:id="#ID" (form:id="#NCName" )? + ) (xforms:bind="#string" )? ) ( (<form:properties ... >)? (<office:event-listeners ... >)? @@ -7945,16 +7945,16 @@

form:grid Element

Child Relations <form:grid ( - ( (form:name="<string>" )? + ( (form:name="#string" )? (form:control-implementation="QName]" )? - (xml:id="<ID>" (form:id="<NCName>" )? - ) (xforms:bind="<string>" )? - ) (form:disabled="<boolean>" )? - (form:printable="<boolean>" )? - (form:tab-index="<nonNegativeInteger>" )? - (form:tab-stop="<boolean>" )? - (form:title="<string>" )? + (xml:id="#ID" (form:id="#NCName" )? + ) (xforms:bind="#string" )? + ) (form:disabled="#boolean" )? + (form:printable="#boolean" )? + (form:tab-index="#nonNegativeInteger" )? + (form:tab-stop="#boolean" )? + (form:title="#string" )? ) ( (<form:properties ... >)? (<office:event-listeners ... >)? @@ -7993,12 +7993,12 @@

form:hidden Element

Child Relations <form:hidden ( - ( (form:name="<string>" )? + ( (form:name="#string" )? (form:control-implementation="QName]" )? - (xml:id="<ID>" (form:id="<NCName>" )? - ) (xforms:bind="<string>" )? - ) (form:value="<string>" )? + (xml:id="#ID" (form:id="#NCName" )? + ) (xforms:bind="#string" )? + ) (form:value="#string" )? ) ( (<form:properties ... >)? (<office:event-listeners ... >)? @@ -8046,21 +8046,21 @@

form:image Element

Child Relations <form:image ( - ( (form:name="<string>" )? + ( (form:name="#string" )? (form:control-implementation="QName]" )? - (xml:id="<ID>" (form:id="<NCName>" )? - ) (xforms:bind="<string>" )? + (xml:id="#ID" (form:id="#NCName" )? + ) (xforms:bind="#string" )? ) (form:button-type="submit | reset | push | url" )? - (form:disabled="<boolean>" )? - (form:image-data="<anyIRI>" )? - (form:printable="<boolean>" )? - (form:tab-index="<nonNegativeInteger>" )? - (form:tab-stop="<boolean>" )? - (office:target-frame="_self | _blank | _parent | _top | <string>" )? - (xlink:href="<anyIRI>" )? - (form:title="<string>" )? - (form:value="<string>" )? + (form:disabled="#boolean" )? + (form:image-data="#anyIRI" )? + (form:printable="#boolean" )? + (form:tab-index="#nonNegativeInteger" )? + (form:tab-stop="#boolean" )? + (office:target-frame="_self | _blank | _parent | _top | #string" )? + (xlink:href="#anyIRI" )? + (form:title="#string" )? + (form:value="#string" )? ) ( (<form:properties ... >)? (<office:event-listeners ... >)? @@ -8104,17 +8104,17 @@

form:image-frame Element

Child Relations <form:image-frame ( - ( (form:name="<string>" )? + ( (form:name="#string" )? (form:control-implementation="QName]" )? - (xml:id="<ID>" (form:id="<NCName>" )? - ) (xforms:bind="<string>" )? - ) (form:disabled="<boolean>" )? - (form:image-data="<anyIRI>" )? - (form:printable="<boolean>" )? - (form:readonly="<boolean>" )? - (form:title="<string>" )? - (form:data-field="<string>" )? + (xml:id="#ID" (form:id="#NCName" )? + ) (xforms:bind="#string" )? + ) (form:disabled="#boolean" )? + (form:image-data="#anyIRI" )? + (form:printable="#boolean" )? + (form:readonly="#boolean" )? + (form:title="#string" )? + (form:data-field="#string" )? ) ( (<form:properties ... >)? (<office:event-listeners ... >)? @@ -8145,7 +8145,7 @@

form:item Element

Child Relations - <form:item (form:label="<string>" )? + <form:item (form:label="#string" )? TEXT>  @@ -8187,7 +8187,7 @@

form:list-property Element

Child Relations - <form:list-property form:property-name="<string>" + <form:list-property form:property-name="#string" (office:value-type="float" (<form:list-value ... >)* ) | (office:value-type="percentage" (<form:list-value ... >)* ) | (office:value-type="currency" (<form:list-value ... >)* ) | @@ -8221,7 +8221,7 @@

form:list-value[1] Element

Child Relations - <form:list-value office:time-value="<duration>" >  + <form:list-value office:time-value="#duration" > 
@@ -8248,7 +8248,7 @@

form:list-value[2] Element

Child Relations - <form:list-value office:boolean-value="<boolean>" >  + <form:list-value office:boolean-value="#boolean" > 
@@ -8275,7 +8275,7 @@

form:list-value[3] Element

Child Relations - <form:list-value office:date-value="<date> | <dateTime>" >  + <form:list-value office:date-value="#date | #dateTime" > 
@@ -8302,7 +8302,7 @@

form:list-value[4] Element

Child Relations - <form:list-value office:string-value="<string>" >  + <form:list-value office:string-value="#string" > 
@@ -8329,7 +8329,7 @@

form:list-value[5] Element

Child Relations - <form:list-value office:value="<double>" >  + <form:list-value office:value="#double" > 
@@ -8357,7 +8357,7 @@

form:list-value[6] Element

Child Relations - <form:list-value office:value="<double>" (office:currency="<string>" )? + <form:list-value office:value="#double" (office:currency="#string" )? >  @@ -8385,7 +8385,7 @@

form:list-value[7] Element

Child Relations - <form:list-value office:value="<double>" >  + <form:list-value office:value="#double" > 
@@ -8436,27 +8436,27 @@

form:listbox Element

Child Relations <form:listbox - ( (form:name="<string>" )? + ( (form:name="#string" )? (form:control-implementation="QName]" )? - (xml:id="<ID>" (form:id="<NCName>" )? - ) (xforms:bind="<string>" )? - ) (form:disabled="<boolean>" )? - (form:dropdown="<boolean>" )? - (form:printable="<boolean>" )? - (form:size="<nonNegativeInteger>" )? - (form:tab-index="<nonNegativeInteger>" )? - (form:tab-stop="<boolean>" )? - (form:title="<string>" )? - (form:bound-column="<string>" )? - (form:data-field="<string>" )? - (form:list-source="<string>" )? + (xml:id="#ID" (form:id="#NCName" )? + ) (xforms:bind="#string" )? + ) (form:disabled="#boolean" )? + (form:dropdown="#boolean" )? + (form:printable="#boolean" )? + (form:size="#nonNegativeInteger" )? + (form:tab-index="#nonNegativeInteger" )? + (form:tab-stop="#boolean" )? + (form:title="#string" )? + (form:bound-column="#string" )? + (form:data-field="#string" )? + (form:list-source="#string" )? (form:list-source-type="table | query | sql | sql-pass-through | value-list | table-fields" )? - (form:linked-cell="string] | <string>" )? + (form:linked-cell="string] | #string" )? (form:list-linkage-type="selection | selection-indices" )? - (form:source-cell-range="string] | string] | string] | <string>" )? - (form:multiple="<boolean>" )? - (form:xforms-list-source="<string>" )? + (form:source-cell-range="string] | string] | string] | #string" )? + (form:multiple="#boolean" )? + (form:xforms-list-source="#string" )? ( (<form:properties ... >)? (<office:event-listeners ... >)? @@ -8510,33 +8510,33 @@

form:number Element

Child Relations - <form:number (form:value="<double>" )? - (form:current-value="<double>" )? - (form:min-value="<double>" )? - (form:max-value="<double>" )? + <form:number (form:value="#double" )? + (form:current-value="#double" )? + (form:min-value="#double" )? + (form:max-value="#double" )? ( - ( (form:name="<string>" )? + ( (form:name="#string" )? (form:control-implementation="QName]" )? - (xml:id="<ID>" (form:id="<NCName>" )? - ) (xforms:bind="<string>" )? - ) (form:disabled="<boolean>" )? - (form:max-length="<nonNegativeInteger>" )? - (form:printable="<boolean>" )? - (form:readonly="<boolean>" )? - (form:tab-index="<nonNegativeInteger>" )? - (form:tab-stop="<boolean>" )? - (form:title="<string>" )? - (form:convert-empty-to-null="<boolean>" )? - (form:data-field="<string>" )? + (xml:id="#ID" (form:id="#NCName" )? + ) (xforms:bind="#string" )? + ) (form:disabled="#boolean" )? + (form:max-length="#nonNegativeInteger" )? + (form:printable="#boolean" )? + (form:readonly="#boolean" )? + (form:tab-index="#nonNegativeInteger" )? + (form:tab-stop="#boolean" )? + (form:title="#string" )? + (form:convert-empty-to-null="#boolean" )? + (form:data-field="#string" )? ) ( (<form:properties ... >)? (<office:event-listeners ... >)? - ) (form:linked-cell="string] | <string>" )? - (form:spin-button="<boolean>" )? - (form:repeat="<boolean>" )? - (form:delay-for-repeat="<duration>" )? + ) (form:linked-cell="string] | #string" )? + (form:spin-button="#boolean" )? + (form:repeat="#boolean" )? + (form:delay-for-repeat="#duration" )? >  @@ -8568,10 +8568,10 @@

form:option Element

Child Relations <form:option - ( (form:current-selected="<boolean>" )? - (form:selected="<boolean>" )? - (form:label="<string>" )? - (form:value="<string>" )? + ( (form:current-selected="#boolean" )? + (form:selected="#boolean" )? + (form:label="#string" )? + (form:value="#string" )? )TEXT>  @@ -8615,20 +8615,20 @@

form:password Element

Child Relations <form:password - ( (form:name="<string>" )? + ( (form:name="#string" )? (form:control-implementation="QName]" )? - (xml:id="<ID>" (form:id="<NCName>" )? - ) (xforms:bind="<string>" )? - ) (form:disabled="<boolean>" )? - (form:max-length="<nonNegativeInteger>" )? - (form:printable="<boolean>" )? - (form:tab-index="<nonNegativeInteger>" )? - (form:tab-stop="<boolean>" )? - (form:title="<string>" )? - (form:value="<string>" )? - (form:convert-empty-to-null="<boolean>" )? - (form:linked-cell="string] | <string>" )? + (xml:id="#ID" (form:id="#NCName" )? + ) (xforms:bind="#string" )? + ) (form:disabled="#boolean" )? + (form:max-length="#nonNegativeInteger" )? + (form:printable="#boolean" )? + (form:tab-index="#nonNegativeInteger" )? + (form:tab-stop="#boolean" )? + (form:title="#string" )? + (form:value="#string" )? + (form:convert-empty-to-null="#boolean" )? + (form:linked-cell="string] | #string" )? (form:echo-char="string]" )? ( (<form:properties ... >)? @@ -8721,15 +8721,15 @@

form:property Element

Child Relations - <form:property form:property-name="<string>" - (office:value-type="float" office:value="<double>" ) | - (office:value-type="percentage" office:value="<double>" ) | - (office:value-type="currency" office:value="<double>" (office:currency="<string>" )? + <form:property form:property-name="#string" + (office:value-type="float" office:value="#double" ) | + (office:value-type="percentage" office:value="#double" ) | + (office:value-type="currency" office:value="#double" (office:currency="#string" )? ) | - (office:value-type="date" office:date-value="<date> | <dateTime>" ) | - (office:value-type="time" office:time-value="<duration>" ) | - (office:value-type="boolean" office:boolean-value="<boolean>" ) | - (office:value-type="string" (office:string-value="<string>" )? + (office:value-type="date" office:date-value="#date | #dateTime" ) | + (office:value-type="time" office:time-value="#duration" ) | + (office:value-type="boolean" office:boolean-value="#boolean" ) | + (office:value-type="string" (office:string-value="#string" )? ) | office:value-type="void" >  @@ -8779,25 +8779,25 @@

form:radio Element

Child Relations <form:radio ( - ( (form:name="<string>" )? + ( (form:name="#string" )? (form:control-implementation="QName]" )? - (xml:id="<ID>" (form:id="<NCName>" )? - ) (xforms:bind="<string>" )? - ) (form:current-selected="<boolean>" )? - (form:disabled="<boolean>" )? - (form:label="<string>" )? - (form:printable="<boolean>" )? - (form:selected="<boolean>" )? - (form:tab-index="<nonNegativeInteger>" )? - (form:tab-stop="<boolean>" )? - (form:title="<string>" )? - (form:value="<string>" )? - (form:data-field="<string>" )? + (xml:id="#ID" (form:id="#NCName" )? + ) (xforms:bind="#string" )? + ) (form:current-selected="#boolean" )? + (form:disabled="#boolean" )? + (form:label="#string" )? + (form:printable="#boolean" )? + (form:selected="#boolean" )? + (form:tab-index="#nonNegativeInteger" )? + (form:tab-stop="#boolean" )? + (form:title="#string" )? + (form:value="#string" )? + (form:data-field="#string" )? (form:visual-effect="flat | 3d" )? form:image-position="center" | EMPTY | (form:image-position="start | end | top | bottom" (form:image-align="start | center | end" )? - ) (form:linked-cell="string] | <string>" )? + ) (form:linked-cell="string] | #string" )? ) ( (<form:properties ... >)? (<office:event-listeners ... >)? @@ -8848,23 +8848,23 @@

form:text Element

Child Relations <form:text ( - ( (form:name="<string>" )? + ( (form:name="#string" )? (form:control-implementation="QName]" )? - (xml:id="<ID>" (form:id="<NCName>" )? - ) (xforms:bind="<string>" )? - ) (form:current-value="<string>" )? - (form:disabled="<boolean>" )? - (form:max-length="<nonNegativeInteger>" )? - (form:printable="<boolean>" )? - (form:readonly="<boolean>" )? - (form:tab-index="<nonNegativeInteger>" )? - (form:tab-stop="<boolean>" )? - (form:title="<string>" )? - (form:value="<string>" )? - (form:convert-empty-to-null="<boolean>" )? - (form:data-field="<string>" )? - (form:linked-cell="string] | <string>" )? + (xml:id="#ID" (form:id="#NCName" )? + ) (xforms:bind="#string" )? + ) (form:current-value="#string" )? + (form:disabled="#boolean" )? + (form:max-length="#nonNegativeInteger" )? + (form:printable="#boolean" )? + (form:readonly="#boolean" )? + (form:tab-index="#nonNegativeInteger" )? + (form:tab-stop="#boolean" )? + (form:title="#string" )? + (form:value="#string" )? + (form:convert-empty-to-null="#boolean" )? + (form:data-field="#string" )? + (form:linked-cell="string] | #string" )? ) ( (<form:properties ... >)? (<office:event-listeners ... >)? @@ -8916,23 +8916,23 @@

form:textarea Element

Child Relations <form:textarea ( - ( (form:name="<string>" )? + ( (form:name="#string" )? (form:control-implementation="QName]" )? - (xml:id="<ID>" (form:id="<NCName>" )? - ) (xforms:bind="<string>" )? - ) (form:current-value="<string>" )? - (form:disabled="<boolean>" )? - (form:max-length="<nonNegativeInteger>" )? - (form:printable="<boolean>" )? - (form:readonly="<boolean>" )? - (form:tab-index="<nonNegativeInteger>" )? - (form:tab-stop="<boolean>" )? - (form:title="<string>" )? - (form:value="<string>" )? - (form:convert-empty-to-null="<boolean>" )? - (form:data-field="<string>" )? - (form:linked-cell="string] | <string>" )? + (xml:id="#ID" (form:id="#NCName" )? + ) (xforms:bind="#string" )? + ) (form:current-value="#string" )? + (form:disabled="#boolean" )? + (form:max-length="#nonNegativeInteger" )? + (form:printable="#boolean" )? + (form:readonly="#boolean" )? + (form:tab-index="#nonNegativeInteger" )? + (form:tab-stop="#boolean" )? + (form:title="#string" )? + (form:value="#string" )? + (form:convert-empty-to-null="#boolean" )? + (form:data-field="#string" )? + (form:linked-cell="string] | #string" )? ) ( (<form:properties ... >)? (<office:event-listeners ... >)? @@ -8986,33 +8986,33 @@

form:time Element

Child Relations - <form:time (form:value="<time>" )? - (form:current-value="<time>" )? - (form:min-value="<time>" )? - (form:max-value="<time>" )? + <form:time (form:value="#time" )? + (form:current-value="#time" )? + (form:min-value="#time" )? + (form:max-value="#time" )? ( - ( (form:name="<string>" )? + ( (form:name="#string" )? (form:control-implementation="QName]" )? - (xml:id="<ID>" (form:id="<NCName>" )? - ) (xforms:bind="<string>" )? - ) (form:disabled="<boolean>" )? - (form:max-length="<nonNegativeInteger>" )? - (form:printable="<boolean>" )? - (form:readonly="<boolean>" )? - (form:tab-index="<nonNegativeInteger>" )? - (form:tab-stop="<boolean>" )? - (form:title="<string>" )? - (form:convert-empty-to-null="<boolean>" )? - (form:data-field="<string>" )? + (xml:id="#ID" (form:id="#NCName" )? + ) (xforms:bind="#string" )? + ) (form:disabled="#boolean" )? + (form:max-length="#nonNegativeInteger" )? + (form:printable="#boolean" )? + (form:readonly="#boolean" )? + (form:tab-index="#nonNegativeInteger" )? + (form:tab-stop="#boolean" )? + (form:title="#string" )? + (form:convert-empty-to-null="#boolean" )? + (form:data-field="#string" )? ) ( (<form:properties ... >)? (<office:event-listeners ... >)? - ) (form:linked-cell="string] | <string>" )? - (form:spin-button="<boolean>" )? - (form:repeat="<boolean>" )? - (form:delay-for-repeat="<duration>" )? + ) (form:linked-cell="string] | #string" )? + (form:spin-button="#boolean" )? + (form:repeat="#boolean" )? + (form:delay-for-repeat="#duration" )? >  @@ -9060,24 +9060,24 @@

form:value-range Element

Child Relations <form:value-range - ( (form:name="<string>" )? + ( (form:name="#string" )? (form:control-implementation="QName]" )? - (xml:id="<ID>" (form:id="<NCName>" )? - ) (xforms:bind="<string>" )? - ) (form:disabled="<boolean>" )? - (form:printable="<boolean>" )? - (form:tab-index="<nonNegativeInteger>" )? - (form:tab-stop="<boolean>" )? - (form:title="<string>" )? - (form:value="<string>" )? - (form:linked-cell="string] | <string>" )? - (form:repeat="<boolean>" )? - (form:delay-for-repeat="<duration>" )? - (form:max-value="<integer>" )? - (form:min-value="<integer>" )? - (form:step-size="<positiveInteger>" )? - (form:page-step-size="<positiveInteger>" )? + (xml:id="#ID" (form:id="#NCName" )? + ) (xforms:bind="#string" )? + ) (form:disabled="#boolean" )? + (form:printable="#boolean" )? + (form:tab-index="#nonNegativeInteger" )? + (form:tab-stop="#boolean" )? + (form:title="#string" )? + (form:value="#string" )? + (form:linked-cell="string] | #string" )? + (form:repeat="#boolean" )? + (form:delay-for-repeat="#duration" )? + (form:max-value="#integer" )? + (form:min-value="#integer" )? + (form:step-size="#positiveInteger" )? + (form:page-step-size="#positiveInteger" )? (form:orientation="horizontal | vertical" )? ( (<form:properties ... >)? @@ -9141,10 +9141,10 @@

meta:auto-reload Element (new Child Relations - <meta:auto-reload (xlink:type="simple" xlink:href="<anyIRI>" (xlink:show="replace" )? + <meta:auto-reload (xlink:type="simple" xlink:href="#anyIRI" (xlink:show="replace" )? (xlink:actuate="onLoad" )? )? - (meta:delay="<duration>" )? + (meta:delay="#duration" )? >  @@ -9170,7 +9170,7 @@

meta:creation-date Element ( Child Relations - <meta:creation-date <dateTime>>  + <meta:creation-date #dateTime
@@ -9195,7 +9195,7 @@

meta:date-string Element

Child Relations - <meta:date-string <string>>  + <meta:date-string #string
@@ -9235,21 +9235,21 @@

meta:document-statistic Element< Child Relations - <meta:document-statistic (meta:page-count="<nonNegativeInteger>" )? - (meta:table-count="<nonNegativeInteger>" )? - (meta:draw-count="<nonNegativeInteger>" )? - (meta:image-count="<nonNegativeInteger>" )? - (meta:ole-object-count="<nonNegativeInteger>" )? - (meta:object-count="<nonNegativeInteger>" )? - (meta:paragraph-count="<nonNegativeInteger>" )? - (meta:word-count="<nonNegativeInteger>" )? - (meta:character-count="<nonNegativeInteger>" )? - (meta:frame-count="<nonNegativeInteger>" )? - (meta:sentence-count="<nonNegativeInteger>" )? - (meta:syllable-count="<nonNegativeInteger>" )? - (meta:non-whitespace-character-count="<nonNegativeInteger>" )? - (meta:row-count="<nonNegativeInteger>" )? - (meta:cell-count="<nonNegativeInteger>" )? + <meta:document-statistic (meta:page-count="#nonNegativeInteger" )? + (meta:table-count="#nonNegativeInteger" )? + (meta:draw-count="#nonNegativeInteger" )? + (meta:image-count="#nonNegativeInteger" )? + (meta:ole-object-count="#nonNegativeInteger" )? + (meta:object-count="#nonNegativeInteger" )? + (meta:paragraph-count="#nonNegativeInteger" )? + (meta:word-count="#nonNegativeInteger" )? + (meta:character-count="#nonNegativeInteger" )? + (meta:frame-count="#nonNegativeInteger" )? + (meta:sentence-count="#nonNegativeInteger" )? + (meta:syllable-count="#nonNegativeInteger" )? + (meta:non-whitespace-character-count="#nonNegativeInteger" )? + (meta:row-count="#nonNegativeInteger" )? + (meta:cell-count="#nonNegativeInteger" )? >  @@ -9275,7 +9275,7 @@

meta:editing-cycles Element  Child Relations - <meta:editing-cycles <nonNegativeInteger>>  + <meta:editing-cycles #nonNegativeInteger
@@ -9300,7 +9300,7 @@

meta:editing-duration Element& Child Relations - <meta:editing-duration <duration>>  + <meta:editing-duration #duration
@@ -9325,7 +9325,7 @@

meta:generator Element (new in O Child Relations - <meta:generator <string>>  + <meta:generator #string
@@ -9352,7 +9352,7 @@

meta:hyperlink-behaviour Elemen Child Relations - <meta:hyperlink-behaviour (office:target-frame-name="_self | _blank | _parent | _top | <string>" )? + <meta:hyperlink-behaviour (office:target-frame-name="_self | _blank | _parent | _top | #string" )? (xlink:show="new | replace" )? >  @@ -9379,7 +9379,7 @@

meta:initial-creator Element&nb Child Relations - <meta:initial-creator <string>>  + <meta:initial-creator #string
@@ -9404,7 +9404,7 @@

meta:keyword Element (new in ODF 1 Child Relations - <meta:keyword <string>>  + <meta:keyword #string
@@ -9429,7 +9429,7 @@

meta:print-date Element (new in Child Relations - <meta:print-date <dateTime>>  + <meta:print-date #dateTime
@@ -9454,7 +9454,7 @@

meta:printed-by Element (new in Child Relations - <meta:printed-by <string>>  + <meta:printed-by #string
@@ -9484,9 +9484,9 @@

meta:template Element (new in ODF Child Relations - <meta:template xlink:type="simple" xlink:href="<anyIRI>" (xlink:actuate="onRequest" )? - (xlink:title="<string>" )? - (meta:date="<dateTime>" )? + <meta:template xlink:type="simple" xlink:href="#anyIRI" (xlink:actuate="onRequest" )? + (xlink:title="#string" )? + (meta:date="#dateTime" )? >  @@ -9519,12 +9519,12 @@

meta:user-defined Element (ne Child Relations - <meta:user-defined meta:name="<string>" - (meta:value-type="float" <double>) | - (meta:value-type="date" <date> | <dateTime>) | - (meta:value-type="time" <duration>) | - (meta:value-type="boolean" <boolean>) | - (meta:value-type="string" <string>) | TEXT>  + <meta:user-defined meta:name="#string" + (meta:value-type="float" #double) | + (meta:value-type="date" #date | #dateTime) | + (meta:value-type="time" #duration) | + (meta:value-type="boolean" #boolean) | + (meta:value-type="string" #string) | TEXT> 
@@ -9617,14 +9617,14 @@

number:boolean-style Element Child Relations - <number:boolean-style style:name="<NCName>" (style:display-name="<string>" )? + <number:boolean-style style:name="#NCName" (style:display-name="#string" )? (number:language="token]" )? (number:country="token]" )? (number:script="token]" )? - (number:rfc-language-tag="<language>" )? - (number:title="<string>" )? - (style:volatile="<boolean>" )? - (number:transliteration-format="<string>" )? + (number:rfc-language-tag="#language" )? + (number:title="#string" )? + (style:volatile="#boolean" )? + (number:transliteration-format="#string" )? (number:transliteration-language="token]" )? (number:transliteration-country="token]" )? (number:transliteration-style="short | medium | long" )? @@ -9676,18 +9676,18 @@

number:currency-style Element< Child Relations - <number:currency-style style:name="<NCName>" (style:display-name="<string>" )? + <number:currency-style style:name="#NCName" (style:display-name="#string" )? (number:language="token]" )? (number:country="token]" )? (number:script="token]" )? - (number:rfc-language-tag="<language>" )? - (number:title="<string>" )? - (style:volatile="<boolean>" )? - (number:transliteration-format="<string>" )? + (number:rfc-language-tag="#language" )? + (number:title="#string" )? + (style:volatile="#boolean" )? + (number:transliteration-format="#string" )? (number:transliteration-language="token]" )? (number:transliteration-country="token]" )? (number:transliteration-style="short | medium | long" )? - (number:automatic-order="<boolean>" )? + (number:automatic-order="#boolean" )? (<style:text-properties ... >)? (<number:text ... >)? ( @@ -9737,7 +9737,7 @@

number:currency-symbol Element<language>" )? + (number:rfc-language-tag="#language" )? )TEXT>  @@ -9792,18 +9792,18 @@

number:date-style Element

Child Relations - <number:date-style style:name="<NCName>" (style:display-name="<string>" )? + <number:date-style style:name="#NCName" (style:display-name="#string" )? (number:language="token]" )? (number:country="token]" )? (number:script="token]" )? - (number:rfc-language-tag="<language>" )? - (number:title="<string>" )? - (style:volatile="<boolean>" )? - (number:transliteration-format="<string>" )? + (number:rfc-language-tag="#language" )? + (number:title="#string" )? + (style:volatile="#boolean" )? + (number:transliteration-format="#string" )? (number:transliteration-language="token]" )? (number:transliteration-country="token]" )? (number:transliteration-style="short | medium | long" )? - (number:automatic-order="<boolean>" )? + (number:automatic-order="#boolean" )? (number:format-source="fixed | language" )? (<style:text-properties ... >)? (<number:text ... >)? @@ -9836,7 +9836,7 @@

number:day Element

Child Relations <number:day (number:style="short | long" )? - (number:calendar="gregorian | gengou | ROC | hanja_yoil | hanja | hijri | jewish | buddhist | <string>" )? + (number:calendar="gregorian | gengou | ROC | hanja_yoil | hanja | hijri | jewish | buddhist | #string" )? >  @@ -9865,7 +9865,7 @@

number:day-of-week Element

Child Relations <number:day-of-week (number:style="short | long" )? - (number:calendar="gregorian | gengou | ROC | hanja_yoil | hanja | hijri | jewish | buddhist | <string>" )? + (number:calendar="gregorian | gengou | ROC | hanja_yoil | hanja | hijri | jewish | buddhist | #string" )? >  @@ -9893,7 +9893,7 @@

number:embedded-text Element Child Relations - <number:embedded-text number:position="<integer>" TEXT>  + <number:embedded-text number:position="#integer" TEXT> 
@@ -9921,7 +9921,7 @@

number:era Element

Child Relations <number:era (number:style="short | long" )? - (number:calendar="gregorian | gengou | ROC | hanja_yoil | hanja | hijri | jewish | buddhist | <string>" )? + (number:calendar="gregorian | gengou | ROC | hanja_yoil | hanja | hijri | jewish | buddhist | #string" )? >  @@ -9952,11 +9952,11 @@

number:fraction Element

Child Relations - <number:fraction (number:min-numerator-digits="<integer>" )? - (number:min-denominator-digits="<integer>" )? - (number:denominator-value="<integer>" )? - (number:min-integer-digits="<integer>" )? - (number:grouping="<boolean>" )? + <number:fraction (number:min-numerator-digits="#integer" )? + (number:min-denominator-digits="#integer" )? + (number:denominator-value="#integer" )? + (number:min-integer-digits="#integer" )? + (number:grouping="#boolean" )? >  @@ -10042,10 +10042,10 @@

number:month Element

Child Relations - <number:month (number:textual="<boolean>" )? - (number:possessive-form="<boolean>" )? + <number:month (number:textual="#boolean" )? + (number:possessive-form="#boolean" )? (number:style="short | long" )? - (number:calendar="gregorian | gengou | ROC | hanja_yoil | hanja | hijri | jewish | buddhist | <string>" )? + (number:calendar="gregorian | gengou | ROC | hanja_yoil | hanja | hijri | jewish | buddhist | #string" )? >  @@ -10079,11 +10079,11 @@

number:number Element

Child Relations - <number:number (number:decimal-replacement="<string>" )? - (number:display-factor="<double>" )? - (number:decimal-places="<integer>" )? - (number:min-integer-digits="<integer>" )? - (number:grouping="<boolean>" )? + <number:number (number:decimal-replacement="#string" )? + (number:display-factor="#double" )? + (number:decimal-places="#integer" )? + (number:min-integer-digits="#integer" )? + (number:grouping="#boolean" )? (<number:embedded-text ... >)* >  @@ -10128,14 +10128,14 @@

number:number-style Element

Child Relations - <number:number-style style:name="<NCName>" (style:display-name="<string>" )? + <number:number-style style:name="#NCName" (style:display-name="#string" )? (number:language="token]" )? (number:country="token]" )? (number:script="token]" )? - (number:rfc-language-tag="<language>" )? - (number:title="<string>" )? - (style:volatile="<boolean>" )? - (number:transliteration-format="<string>" )? + (number:rfc-language-tag="#language" )? + (number:title="#string" )? + (style:volatile="#boolean" )? + (number:transliteration-format="#string" )? (number:transliteration-language="token]" )? (number:transliteration-country="token]" )? (number:transliteration-style="short | medium | long" )? @@ -10185,14 +10185,14 @@

number:percentage-style Element< Child Relations - <number:percentage-style style:name="<NCName>" (style:display-name="<string>" )? + <number:percentage-style style:name="#NCName" (style:display-name="#string" )? (number:language="token]" )? (number:country="token]" )? (number:script="token]" )? - (number:rfc-language-tag="<language>" )? - (number:title="<string>" )? - (style:volatile="<boolean>" )? - (number:transliteration-format="<string>" )? + (number:rfc-language-tag="#language" )? + (number:title="#string" )? + (style:volatile="#boolean" )? + (number:transliteration-format="#string" )? (number:transliteration-language="token]" )? (number:transliteration-country="token]" )? (number:transliteration-style="short | medium | long" )? @@ -10229,7 +10229,7 @@

number:quarter Element

Child Relations <number:quarter (number:style="short | long" )? - (number:calendar="gregorian | gengou | ROC | hanja_yoil | hanja | hijri | jewish | buddhist | <string>" )? + (number:calendar="gregorian | gengou | ROC | hanja_yoil | hanja | hijri | jewish | buddhist | #string" )? >  @@ -10259,10 +10259,10 @@

number:scientific-number Elemen Child Relations - <number:scientific-number (number:min-exponent-digits="<integer>" )? - (number:decimal-places="<integer>" )? - (number:min-integer-digits="<integer>" )? - (number:grouping="<boolean>" )? + <number:scientific-number (number:min-exponent-digits="#integer" )? + (number:decimal-places="#integer" )? + (number:min-integer-digits="#integer" )? + (number:grouping="#boolean" )? >  @@ -10292,7 +10292,7 @@

number:seconds Element

Child Relations <number:seconds (number:style="short | long" )? - (number:decimal-places="<integer>" )? + (number:decimal-places="#integer" )? >  @@ -10392,14 +10392,14 @@

number:text-style Element

Child Relations - <number:text-style style:name="<NCName>" (style:display-name="<string>" )? + <number:text-style style:name="#NCName" (style:display-name="#string" )? (number:language="token]" )? (number:country="token]" )? (number:script="token]" )? - (number:rfc-language-tag="<language>" )? - (number:title="<string>" )? - (style:volatile="<boolean>" )? - (number:transliteration-format="<string>" )? + (number:rfc-language-tag="#language" )? + (number:title="#string" )? + (style:volatile="#boolean" )? + (number:transliteration-format="#string" )? (number:transliteration-language="token]" )? (number:transliteration-country="token]" )? (number:transliteration-style="short | medium | long" )? @@ -10453,15 +10453,15 @@

number:time-style Element

Child Relations - <number:time-style (number:truncate-on-overflow="<boolean>" )? - style:name="<NCName>" (style:display-name="<string>" )? + <number:time-style (number:truncate-on-overflow="#boolean" )? + style:name="#NCName" (style:display-name="#string" )? (number:language="token]" )? (number:country="token]" )? (number:script="token]" )? - (number:rfc-language-tag="<language>" )? - (number:title="<string>" )? - (style:volatile="<boolean>" )? - (number:transliteration-format="<string>" )? + (number:rfc-language-tag="#language" )? + (number:title="#string" )? + (style:volatile="#boolean" )? + (number:transliteration-format="#string" )? (number:transliteration-language="token]" )? (number:transliteration-country="token]" )? (number:transliteration-style="short | medium | long" )? @@ -10495,7 +10495,7 @@

number:week-of-year Element

Child Relations - <number:week-of-year (number:calendar="gregorian | gengou | ROC | hanja_yoil | hanja | hijri | jewish | buddhist | <string>" )? + <number:week-of-year (number:calendar="gregorian | gengou | ROC | hanja_yoil | hanja | hijri | jewish | buddhist | #string" )? >  @@ -10524,7 +10524,7 @@

number:year Element

Child Relations <number:year (number:style="short | long" )? - (number:calendar="gregorian | gengou | ROC | hanja_yoil | hanja | hijri | jewish | buddhist | <string>" )? + (number:calendar="gregorian | gengou | ROC | hanja_yoil | hanja | hijri | jewish | buddhist | #string" )? >  @@ -10589,8 +10589,8 @@

office:annotation Element

Child Relations - <office:annotation (office:display="<boolean>" )? - (office:name="<string>" )? + <office:annotation (office:display="#boolean" )? + (office:name="#string" )? (draw:caption-point-x="string]" draw:caption-point-y="string]" )? (draw:corner-radius="string]" )? @@ -10601,29 +10601,29 @@

office:annotation Element

(svg:height="string]" )? ) ( - ( (draw:z-index="<nonNegativeInteger>" )? - (xml:id="<ID>" (draw:id="<NCName>" )? + ( (draw:z-index="#nonNegativeInteger" )? + (xml:id="#ID" (draw:id="#NCName" )? )? - (draw:layer="<string>" )? + (draw:layer="#string" )? - ( (draw:style-name="(<NCName>)?" )? + ( (draw:style-name="(#NCName)?" )? (draw:class-names=" -START_list(<NCName>)* +START_list(#NCName)* END_list" )? ) | - ( (presentation:style-name="(<NCName>)?" )? + ( (presentation:style-name="(#NCName)?" )? (presentation:class-names=" -START_list(<NCName>)* +START_list(#NCName)* END_list" )? - ) (draw:transform="<string>" )? - (draw:name="<string>" )? + ) (draw:transform="#string" )? + (draw:name="#string" )? (table:end-cell-address="string]" )? (table:end-x="string]" )? (table:end-y="string]" )? - (table:table-background="<boolean>" )? + (table:table-background="#boolean" )? (text:anchor-type="page | frame | paragraph | char | as-char" )? - (text:anchor-page-number="<positiveInteger>" )? - ) (draw:text-style-name="(<NCName>)?" )? + (text:anchor-page-number="#positiveInteger" )? + ) (draw:text-style-name="(#NCName)?" )? ) (<dc:creator ... >)? (<dc:date ... >)? (<meta:date-string ... >)? @@ -10659,7 +10659,7 @@

office:annotation-end Element& Child Relations - <office:annotation-end office:name="<string>" >  + <office:annotation-end office:name="#string" > 
@@ -10724,7 +10724,7 @@

office:binary-data Element

Child Relations - <office:binary-data <base64Binary>>  + <office:binary-data #base64Binary
@@ -10916,9 +10916,9 @@

office:dde-source Element

Child Relations - <office:dde-source (office:name="<string>" )? + <office:dde-source (office:name="#string" )? (office:conversion-mode="into-default-style-data-style | into-english-number | keep-text" )? - office:dde-application="<string>" office:dde-topic="<string>" office:dde-item="<string>" (office:automatic-update="<boolean>" )? + office:dde-application="#string" office:dde-topic="#string" office:dde-item="#string" (office:automatic-update="#boolean" )? >  @@ -10956,8 +10956,8 @@

office:document Element

Child Relations - <office:document office:mimetype="<string>" office:version="1.2" (grddl:transformation=" -START_list(<anyIRI>)* + <office:document office:mimetype="#string" office:version="1.2" (grddl:transformation=" +START_list(#anyIRI)* END_list" )? (<office:meta ... >)? (<office:settings ... >)? @@ -10997,7 +10997,7 @@

office:document-content Element< Child Relations <office:document-content office:version="1.2" (grddl:transformation=" -START_list(<anyIRI>)* +START_list(#anyIRI)* END_list" )? (<office:scripts ... >)? (<office:font-face-decls ... >)? @@ -11030,7 +11030,7 @@

office:document-meta Element Child Relations <office:document-meta office:version="1.2" (grddl:transformation=" -START_list(<anyIRI>)* +START_list(#anyIRI)* END_list" )? (<office:meta ... >)? >  @@ -11061,7 +11061,7 @@

office:document-settings Elemen Child Relations <office:document-settings office:version="1.2" (grddl:transformation=" -START_list(<anyIRI>)* +START_list(#anyIRI)* END_list" )? (<office:settings ... >)? >  @@ -11095,7 +11095,7 @@

office:document-styles Element Child Relations <office:document-styles office:version="1.2" (grddl:transformation=" -START_list(<anyIRI>)* +START_list(#anyIRI)* END_list" )? (<office:font-face-decls ... >)? (<office:styles ... >)? @@ -11287,8 +11287,8 @@

office:forms Element

Child Relations - <office:forms (form:automatic-focus="<boolean>" )? - (form:apply-design-mode="<boolean>" )? + <office:forms (form:automatic-focus="#boolean" )? + (form:apply-design-mode="#boolean" )? (<form:form ... > | <xforms:model ... >)* >  @@ -11480,7 +11480,7 @@

office:script Element

Child Relations - <office:script script:language="<string>" (<*:* ... >)* >  + <office:script script:language="#string" (<*:* ... >)*
@@ -11580,9 +11580,9 @@

office:spreadsheet Element

Child Relations <office:spreadsheet - ( (table:structure-protected="<boolean>" )? - (table:protection-key="<string>" )? - (table:protection-key-digest-algorithm="<anyIRI>" )? + ( (table:structure-protected="#boolean" )? + (table:protection-key="#string" )? + (table:protection-key-digest-algorithm="#anyIRI" )? ) ( (<table:tracked-changes ... >)? @@ -11734,8 +11734,8 @@

office:text Element

Child Relations - <office:text (text:global="<boolean>" )? - (text:use-soft-page-breaks="<boolean>" )? + <office:text (text:global="#boolean" )? + (text:use-soft-page-breaks="#boolean" )? ( (<office:forms ... >)? (<text:tracked-changes ... >)? @@ -11879,7 +11879,7 @@

presentation:date-time-decl Child Relations - <presentation:date-time-decl presentation:name="<string>" presentation:source="fixed | current-date" (style:data-style-name="(<NCName>)?" )? + <presentation:date-time-decl presentation:name="#string" presentation:source="fixed | current-date" (style:data-style-name="(#NCName)?" )? TEXT>  @@ -11909,7 +11909,7 @@

presentation:dim Element

Child Relations - <presentation:dim draw:shape-id="<IDREF>" draw:color="string]" (<presentation:sound ... >)? + <presentation:dim draw:shape-id="#IDREF" draw:color="string]" (<presentation:sound ... >)? >  @@ -11947,14 +11947,14 @@

presentation:event-listener Child Relations - <presentation:event-listener script:event-name="<string>" presentation:action="none | previous-page | next-page | first-page | last-page | hide | stop | execute | show | verb | fade-out | sound | last-visited-page" (presentation:effect="none | fade | move | stripes | open | close | dissolve | wavyline | random | lines | laser | appear | hide | move-short | checkerboard | rotate | stretch" )? + <presentation:event-listener script:event-name="#string" presentation:action="none | previous-page | next-page | first-page | last-page | hide | stop | execute | show | verb | fade-out | sound | last-visited-page" (presentation:effect="none | fade | move | stripes | open | close | dissolve | wavyline | random | lines | laser | appear | hide | move-short | checkerboard | rotate | stretch" )? (presentation:direction="none | from-left | from-top | from-right | from-bottom | from-center | from-upper-left | from-upper-right | from-lower-left | from-lower-right | to-left | to-top | to-right | to-bottom | to-upper-left | to-upper-right | to-lower-right | to-lower-left | path | spiral-inward-left | spiral-inward-right | spiral-outward-left | spiral-outward-right | vertical | horizontal | to-center | clockwise | counter-clockwise" )? (presentation:speed="slow | medium | fast" )? (presentation:start-scale="string]" )? - (xlink:type="simple" xlink:href="<anyIRI>" (xlink:show="embed" )? + (xlink:type="simple" xlink:href="#anyIRI" (xlink:show="embed" )? (xlink:actuate="onRequest" )? )? - (presentation:verb="<nonNegativeInteger>" )? + (presentation:verb="#nonNegativeInteger" )? (<presentation:sound ... >)? >  @@ -12014,7 +12014,7 @@

presentation:footer-decl Elemen Child Relations - <presentation:footer-decl presentation:name="<string>" TEXT>  + <presentation:footer-decl presentation:name="#string" TEXT> 
@@ -12072,7 +12072,7 @@

presentation:header-decl Elemen Child Relations - <presentation:header-decl presentation:name="<string>" TEXT>  + <presentation:header-decl presentation:name="#string" TEXT> 
@@ -12106,12 +12106,12 @@

presentation:hide-shape Element< Child Relations - <presentation:hide-shape draw:shape-id="<IDREF>" (presentation:effect="none | fade | move | stripes | open | close | dissolve | wavyline | random | lines | laser | appear | hide | move-short | checkerboard | rotate | stretch" )? + <presentation:hide-shape draw:shape-id="#IDREF" (presentation:effect="none | fade | move | stripes | open | close | dissolve | wavyline | random | lines | laser | appear | hide | move-short | checkerboard | rotate | stretch" )? (presentation:direction="none | from-left | from-top | from-right | from-bottom | from-center | from-upper-left | from-upper-right | from-lower-left | from-lower-right | to-left | to-top | to-right | to-bottom | to-upper-left | to-upper-right | to-lower-right | to-lower-left | path | spiral-inward-left | spiral-inward-right | spiral-outward-left | spiral-outward-right | vertical | horizontal | to-center | clockwise | counter-clockwise" )? (presentation:speed="slow | medium | fast" )? - (presentation:delay="<duration>" )? + (presentation:delay="#duration" )? (presentation:start-scale="string]" )? - (presentation:path-id="<string>" )? + (presentation:path-id="#string" )? (<presentation:sound ... >)? >  @@ -12147,12 +12147,12 @@

presentation:hide-text Element Child Relations - <presentation:hide-text draw:shape-id="<IDREF>" (presentation:effect="none | fade | move | stripes | open | close | dissolve | wavyline | random | lines | laser | appear | hide | move-short | checkerboard | rotate | stretch" )? + <presentation:hide-text draw:shape-id="#IDREF" (presentation:effect="none | fade | move | stripes | open | close | dissolve | wavyline | random | lines | laser | appear | hide | move-short | checkerboard | rotate | stretch" )? (presentation:direction="none | from-left | from-top | from-right | from-bottom | from-center | from-upper-left | from-upper-right | from-lower-left | from-lower-right | to-left | to-top | to-right | to-bottom | to-upper-left | to-upper-right | to-lower-right | to-lower-left | path | spiral-inward-left | spiral-inward-right | spiral-outward-left | spiral-outward-right | vertical | horizontal | to-center | clockwise | counter-clockwise" )? (presentation:speed="slow | medium | fast" )? - (presentation:delay="<duration>" )? + (presentation:delay="#duration" )? (presentation:start-scale="string]" )? - (presentation:path-id="<string>" )? + (presentation:path-id="#string" )? (<presentation:sound ... >)? >  @@ -12204,11 +12204,11 @@

presentation:notes Element

Child Relations - <presentation:notes (presentation:use-header-name="<string>" )? - (presentation:use-footer-name="<string>" )? - (presentation:use-date-time-name="<string>" )? - (style:page-layout-name="(<NCName>)?" )? - (draw:style-name="(<NCName>)?" )? + <presentation:notes (presentation:use-header-name="#string" )? + (presentation:use-footer-name="#string" )? + (presentation:use-date-time-name="#string" )? + (style:page-layout-name="(#NCName)?" )? + (draw:style-name="(#NCName)?" )? (<office:forms ... >)? (<draw:rect ... > | <draw:line ... > | <draw:polyline ... > | <draw:polygon ... > | <draw:regular-polygon ... > | <draw:path ... > | <draw:circle ... > | <draw:ellipse ... > | <draw:g ... > | <draw:page-thumbnail ... > | <draw:frame ... > | <draw:measure ... > | <draw:caption ... > | <draw:connector ... > | <draw:control ... > | <dr3d:scene ... > | <draw:custom-shape ... > | <draw:a ... >)* >  @@ -12269,7 +12269,7 @@

presentation:play Element

Child Relations <presentation:play - (draw:shape-id="<IDREF>" (presentation:speed="slow | medium | fast" )? + (draw:shape-id="#IDREF" (presentation:speed="slow | medium | fast" )? )>  @@ -12310,20 +12310,20 @@

presentation:settings Element< Child Relations - <presentation:settings (presentation:start-page="<string>" )? - (presentation:show="<string>" )? - (presentation:full-screen="<boolean>" )? - (presentation:endless="<boolean>" )? - (presentation:pause="<duration>" )? - (presentation:show-logo="<boolean>" )? - (presentation:force-manual="<boolean>" )? - (presentation:mouse-visible="<boolean>" )? - (presentation:mouse-as-pen="<boolean>" )? - (presentation:start-with-navigator="<boolean>" )? + <presentation:settings (presentation:start-page="#string" )? + (presentation:show="#string" )? + (presentation:full-screen="#boolean" )? + (presentation:endless="#boolean" )? + (presentation:pause="#duration" )? + (presentation:show-logo="#boolean" )? + (presentation:force-manual="#boolean" )? + (presentation:mouse-visible="#boolean" )? + (presentation:mouse-as-pen="#boolean" )? + (presentation:start-with-navigator="#boolean" )? (presentation:animations="enabled | disabled" )? (presentation:transition-on-click="enabled | disabled" )? - (presentation:stay-on-top="<boolean>" )? - (presentation:show-end-of-presentation-slide="<boolean>" )? + (presentation:stay-on-top="#boolean" )? + (presentation:show-end-of-presentation-slide="#boolean" )? (<presentation:show ... >)* >  @@ -12351,7 +12351,7 @@

presentation:show Element

Child Relations - <presentation:show presentation:name="<string>" presentation:pages="<string>" >  + <presentation:show presentation:name="#string" presentation:pages="#string" > 
@@ -12385,12 +12385,12 @@

presentation:show-shape Element< Child Relations - <presentation:show-shape draw:shape-id="<IDREF>" (presentation:effect="none | fade | move | stripes | open | close | dissolve | wavyline | random | lines | laser | appear | hide | move-short | checkerboard | rotate | stretch" )? + <presentation:show-shape draw:shape-id="#IDREF" (presentation:effect="none | fade | move | stripes | open | close | dissolve | wavyline | random | lines | laser | appear | hide | move-short | checkerboard | rotate | stretch" )? (presentation:direction="none | from-left | from-top | from-right | from-bottom | from-center | from-upper-left | from-upper-right | from-lower-left | from-lower-right | to-left | to-top | to-right | to-bottom | to-upper-left | to-upper-right | to-lower-right | to-lower-left | path | spiral-inward-left | spiral-inward-right | spiral-outward-left | spiral-outward-right | vertical | horizontal | to-center | clockwise | counter-clockwise" )? (presentation:speed="slow | medium | fast" )? - (presentation:delay="<duration>" )? + (presentation:delay="#duration" )? (presentation:start-scale="string]" )? - (presentation:path-id="<string>" )? + (presentation:path-id="#string" )? (<presentation:sound ... >)? >  @@ -12426,12 +12426,12 @@

presentation:show-text Element Child Relations - <presentation:show-text draw:shape-id="<IDREF>" (presentation:effect="none | fade | move | stripes | open | close | dissolve | wavyline | random | lines | laser | appear | hide | move-short | checkerboard | rotate | stretch" )? + <presentation:show-text draw:shape-id="#IDREF" (presentation:effect="none | fade | move | stripes | open | close | dissolve | wavyline | random | lines | laser | appear | hide | move-short | checkerboard | rotate | stretch" )? (presentation:direction="none | from-left | from-top | from-right | from-bottom | from-center | from-upper-left | from-upper-right | from-lower-left | from-lower-right | to-left | to-top | to-right | to-bottom | to-upper-left | to-upper-right | to-lower-right | to-lower-left | path | spiral-inward-left | spiral-inward-right | spiral-outward-left | spiral-outward-right | vertical | horizontal | to-center | clockwise | counter-clockwise" )? (presentation:speed="slow | medium | fast" )? - (presentation:delay="<duration>" )? + (presentation:delay="#duration" )? (presentation:start-scale="string]" )? - (presentation:path-id="<string>" )? + (presentation:path-id="#string" )? (<presentation:sound ... >)? >  @@ -12470,9 +12470,9 @@

presentation:sound Element

Child Relations - <presentation:sound (presentation:play-full="<boolean>" )? - (xml:id="<ID>" )? - xlink:type="simple" xlink:href="<anyIRI>" (xlink:actuate="onRequest" )? + <presentation:sound (presentation:play-full="#boolean" )? + (xml:id="#ID" )? + xlink:type="simple" xlink:href="#anyIRI" (xlink:actuate="onRequest" )? (xlink:show="new | replace" )? >  @@ -12505,8 +12505,8 @@

script:event-listener Element< Child Relations - <script:event-listener script:event-name="<string>" script:language="<string>" script:macro-name="<string>" | - (xlink:type="simple" xlink:href="<anyIRI>" (xlink:actuate="onRequest" )? + <script:event-listener script:event-name="#string" script:language="#string" script:macro-name="#string" | + (xlink:type="simple" xlink:href="#anyIRI" (xlink:actuate="onRequest" )? )>  @@ -12554,10 +12554,10 @@

style:background-image Element<string>" )? + (style:filter-name="#string" )? (draw:opacity="string]" )? ( - (xlink:type="simple" xlink:href="<anyIRI>" (xlink:show="embed" )? + (xlink:type="simple" xlink:href="#anyIRI" (xlink:show="embed" )? (xlink:actuate="onLoad" )? ) | <office:binary-data ... >)? >  @@ -12660,76 +12660,76 @@

style:chart-properties Element Child Relations <style:chart-properties - ( (chart:scale-text="<boolean>" )? - (chart:three-dimensional="<boolean>" )? - (chart:deep="<boolean>" )? - (chart:right-angled-axes="<boolean>" )? + ( (chart:scale-text="#boolean" )? + (chart:three-dimensional="#boolean" )? + (chart:deep="#boolean" )? + (chart:right-angled-axes="#boolean" )? (chart:symbol-type="none" | chart:symbol-type="automatic" | (chart:symbol-type="named-symbol" chart:symbol-name="square | diamond | arrow-down | arrow-up | arrow-right | arrow-left | bow-tie | hourglass | circle | star | x | plus | asterisk | horizontal-bar | vertical-bar" ) | (chart:symbol-type="image" <chart:symbol-image ... >))? (chart:symbol-width="string]" )? (chart:symbol-height="string]" )? - (chart:sort-by-x-values="<boolean>" )? - (chart:vertical="<boolean>" )? - (chart:connect-bars="<boolean>" )? - (chart:gap-width="<integer>" )? - (chart:overlap="<integer>" )? - (chart:group-bars-per-axis="<boolean>" )? - (chart:japanese-candle-stick="<boolean>" )? + (chart:sort-by-x-values="#boolean" )? + (chart:vertical="#boolean" )? + (chart:connect-bars="#boolean" )? + (chart:gap-width="#integer" )? + (chart:overlap="#integer" )? + (chart:group-bars-per-axis="#boolean" )? + (chart:japanese-candle-stick="#boolean" )? (chart:interpolation="none | cubic-spline | b-spline" )? - (chart:spline-order="<positiveInteger>" )? - (chart:spline-resolution="<positiveInteger>" )? - (chart:pie-offset="<nonNegativeInteger>" )? - (chart:angle-offset="<string>" )? + (chart:spline-order="#positiveInteger" )? + (chart:spline-resolution="#positiveInteger" )? + (chart:pie-offset="#nonNegativeInteger" )? + (chart:angle-offset="#string" )? (chart:hole-size="string]" )? - (chart:lines="<boolean>" )? + (chart:lines="#boolean" )? (chart:solid-type="cuboid | cylinder | cone | pyramid" )? - (chart:stacked="<boolean>" )? - (chart:percentage="<boolean>" )? + (chart:stacked="#boolean" )? + (chart:percentage="#boolean" )? (chart:treat-empty-cells="use-zero | leave-gap | ignore" )? - (chart:link-data-style-to-source="<boolean>" )? - (chart:logarithmic="<boolean>" )? - (chart:maximum="<double>" )? - (chart:minimum="<double>" )? - (chart:origin="<double>" )? - (chart:interval-major="<double>" )? - (chart:interval-minor-divisor="<positiveInteger>" )? - (chart:tick-marks-major-inner="<boolean>" )? - (chart:tick-marks-major-outer="<boolean>" )? - (chart:tick-marks-minor-inner="<boolean>" )? - (chart:tick-marks-minor-outer="<boolean>" )? - (chart:reverse-direction="<boolean>" )? - (chart:display-label="<boolean>" )? - (chart:text-overlap="<boolean>" )? - (text:line-break="<boolean>" )? + (chart:link-data-style-to-source="#boolean" )? + (chart:logarithmic="#boolean" )? + (chart:maximum="#double" )? + (chart:minimum="#double" )? + (chart:origin="#double" )? + (chart:interval-major="#double" )? + (chart:interval-minor-divisor="#positiveInteger" )? + (chart:tick-marks-major-inner="#boolean" )? + (chart:tick-marks-major-outer="#boolean" )? + (chart:tick-marks-minor-inner="#boolean" )? + (chart:tick-marks-minor-outer="#boolean" )? + (chart:reverse-direction="#boolean" )? + (chart:display-label="#boolean" )? + (chart:text-overlap="#boolean" )? + (text:line-break="#boolean" )? (chart:label-arrangement="side-by-side | stagger-even | stagger-odd" )? (style:direction="ltr | ttb" )? - (style:rotation-angle="<string>" )? + (style:rotation-angle="#string" )? (chart:data-label-number="none | value | percentage | value-and-percentage" )? - (chart:data-label-text="<boolean>" )? - (chart:data-label-symbol="<boolean>" )? + (chart:data-label-text="#boolean" )? + (chart:data-label-symbol="#boolean" )? (<chart:label-separator ... >)? (chart:label-position="avoid-overlap | center | top | top-right | right | bottom-right | bottom | bottom-left | left | top-left | inside | outside | near-origin" )? (chart:label-position-negative="avoid-overlap | center | top | top-right | right | bottom-right | bottom | bottom-left | left | top-left | inside | outside | near-origin" )? - (chart:visible="<boolean>" )? - (chart:auto-position="<boolean>" )? - (chart:auto-size="<boolean>" )? - (chart:mean-value="<boolean>" )? + (chart:visible="#boolean" )? + (chart:auto-position="#boolean" )? + (chart:auto-size="#boolean" )? + (chart:mean-value="#boolean" )? (chart:error-category="none | variance | standard-deviation | percentage | error-margin | constant | standard-error | cell-range" )? - (chart:error-percentage="<double>" )? - (chart:error-margin="<double>" )? - (chart:error-lower-limit="<double>" )? - (chart:error-upper-limit="<double>" )? - (chart:error-upper-indicator="<boolean>" )? - (chart:error-lower-indicator="<boolean>" )? - (chart:error-lower-range="<string>" )? - (chart:error-upper-range="<string>" )? + (chart:error-percentage="#double" )? + (chart:error-margin="#double" )? + (chart:error-lower-limit="#double" )? + (chart:error-upper-limit="#double" )? + (chart:error-upper-indicator="#boolean" )? + (chart:error-lower-indicator="#boolean" )? + (chart:error-lower-range="#string" )? + (chart:error-upper-range="#string" )? (chart:series-source="columns | rows" )? (chart:regression-type="none | linear | logarithmic | exponential | power" )? - (chart:axis-position="start | end | <double>" )? + (chart:axis-position="start | end | #double" )? (chart:axis-label-position="near-axis | near-axis-other-side | outside-start | outside-end" )? (chart:tick-mark-position="at-labels | at-axis | at-labels-and-axis" )? - (chart:include-hidden-cells="<boolean>" )? + (chart:include-hidden-cells="#boolean" )? EMPTY)>  @@ -12829,7 +12829,7 @@

style:columns Element (new in ODF Child Relations - <style:columns fo:column-count="<positiveInteger>" (fo:column-gap="string]" )? + <style:columns fo:column-count="#positiveInteger" (fo:column-gap="string]" )? (<style:column-sep ... >)? (<style:column ... >)* >  @@ -13005,11 +13005,11 @@

style:drawing-page-propert ( (draw:fill="none | solid | bitmap | gradient | hatch" )? (draw:fill-color="string]" )? (draw:secondary-fill-color="string]" )? - (draw:fill-gradient-name="(<NCName>)?" )? - (draw:gradient-step-count="<nonNegativeInteger>" )? - (draw:fill-hatch-name="(<NCName>)?" )? - (draw:fill-hatch-solid="<boolean>" )? - (draw:fill-image-name="(<NCName>)?" )? + (draw:fill-gradient-name="(#NCName)?" )? + (draw:gradient-step-count="#nonNegativeInteger" )? + (draw:fill-hatch-name="(#NCName)?" )? + (draw:fill-hatch-solid="#boolean" )? + (draw:fill-image-name="(#NCName)?" )? (style:repeat="no-repeat | repeat | stretch" )? (draw:fill-image-width="string] | string]" )? (draw:fill-image-height="string] | string]" )? @@ -13020,24 +13020,24 @@

style:drawing-page-propert START_liststring]horizontal | vertical END_list" )? (draw:opacity="string]" )? - (draw:opacity-name="(<NCName>)?" )? + (draw:opacity-name="(#NCName)?" )? (svg:fill-rule="nonzero | evenodd" )? (presentation:transition-type="manual | automatic | semi-automatic" )? (presentation:transition-style="none | fade-from-left | fade-from-top | fade-from-right | fade-from-bottom | fade-from-upperleft | fade-from-upperright | fade-from-lowerleft | fade-from-lowerright | move-from-left | move-from-top | move-from-right | move-from-bottom | move-from-upperleft | move-from-upperright | move-from-lowerleft | move-from-lowerright | uncover-to-left | uncover-to-top | uncover-to-right | uncover-to-bottom | uncover-to-upperleft | uncover-to-upperright | uncover-to-lowerleft | uncover-to-lowerright | fade-to-center | fade-from-center | vertical-stripes | horizontal-stripes | clockwise | counterclockwise | open-vertical | open-horizontal | close-vertical | close-horizontal | wavyline-from-left | wavyline-from-top | wavyline-from-right | wavyline-from-bottom | spiralin-left | spiralin-right | spiralout-left | spiralout-right | roll-from-top | roll-from-left | roll-from-right | roll-from-bottom | stretch-from-left | stretch-from-top | stretch-from-right | stretch-from-bottom | vertical-lines | horizontal-lines | dissolve | random | vertical-checkerboard | horizontal-checkerboard | interlocking-horizontal-left | interlocking-horizontal-right | interlocking-vertical-top | interlocking-vertical-bottom | fly-away | open | close | melt" )? (presentation:transition-speed="slow | medium | fast" )? - (smil:type="<string>" )? - (smil:subtype="<string>" )? + (smil:type="#string" )? + (smil:subtype="#string" )? (smil:direction="forward | reverse" )? (smil:fadeColor="string]" )? - (presentation:duration="<duration>" )? + (presentation:duration="#duration" )? (presentation:visibility="visible | hidden" )? (draw:background-size="full | border" )? - (presentation:background-objects-visible="<boolean>" )? - (presentation:background-visible="<boolean>" )? - (presentation:display-header="<boolean>" )? - (presentation:display-footer="<boolean>" )? - (presentation:display-page-number="<boolean>" )? - (presentation:display-date-time="<boolean>" )? + (presentation:background-objects-visible="#boolean" )? + (presentation:background-visible="#boolean" )? + (presentation:display-header="#boolean" )? + (presentation:display-footer="#boolean" )? + (presentation:display-page-number="#boolean" )? + (presentation:display-date-time="#boolean" )? (<presentation:sound ... >)? )>  @@ -13068,10 +13068,10 @@

style:drop-cap Element (new in O Child Relations - <style:drop-cap (style:length="word | <positiveInteger>" )? - (style:lines="<positiveInteger>" )? + <style:drop-cap (style:length="word | #positiveInteger" )? + (style:lines="#positiveInteger" )? (style:distance="string]" )? - (style:style-name="(<NCName>)?" )? + (style:style-name="(#NCName)?" )? >  @@ -13137,40 +13137,40 @@

style:font-face Element

Child Relations - <style:font-face (svg:font-family="<string>" )? + <style:font-face (svg:font-family="#string" )? (svg:font-style="normal | italic | oblique" )? (svg:font-variant="normal | small-caps" )? (svg:font-weight="normal | bold | 100 | 200 | 300 | 400 | 500 | 600 | 700 | 800 | 900" )? (svg:font-stretch="normal | ultra-condensed | extra-condensed | condensed | semi-condensed | semi-expanded | expanded | extra-expanded | ultra-expanded" )? (svg:font-size="string]" )? - (svg:unicode-range="<string>" )? - (svg:units-per-em="<integer>" )? - (svg:panose-1="<string>" )? - (svg:stemv="<integer>" )? - (svg:stemh="<integer>" )? - (svg:slope="<integer>" )? - (svg:cap-height="<integer>" )? - (svg:x-height="<integer>" )? - (svg:accent-height="<integer>" )? - (svg:ascent="<integer>" )? - (svg:descent="<integer>" )? - (svg:widths="<string>" )? - (svg:bbox="<string>" )? - (svg:ideographic="<integer>" )? - (svg:alphabetic="<integer>" )? - (svg:mathematical="<integer>" )? - (svg:hanging="<integer>" )? - (svg:v-ideographic="<integer>" )? - (svg:v-alphabetic="<integer>" )? - (svg:v-mathematical="<integer>" )? - (svg:v-hanging="<integer>" )? - (svg:underline-position="<integer>" )? - (svg:underline-thickness="<integer>" )? - (svg:strikethrough-position="<integer>" )? - (svg:strikethrough-thickness="<integer>" )? - (svg:overline-position="<integer>" )? - (svg:overline-thickness="<integer>" )? - style:name="<string>" (style:font-adornments="<string>" )? + (svg:unicode-range="#string" )? + (svg:units-per-em="#integer" )? + (svg:panose-1="#string" )? + (svg:stemv="#integer" )? + (svg:stemh="#integer" )? + (svg:slope="#integer" )? + (svg:cap-height="#integer" )? + (svg:x-height="#integer" )? + (svg:accent-height="#integer" )? + (svg:ascent="#integer" )? + (svg:descent="#integer" )? + (svg:widths="#string" )? + (svg:bbox="#string" )? + (svg:ideographic="#integer" )? + (svg:alphabetic="#integer" )? + (svg:mathematical="#integer" )? + (svg:hanging="#integer" )? + (svg:v-ideographic="#integer" )? + (svg:v-alphabetic="#integer" )? + (svg:v-mathematical="#integer" )? + (svg:v-hanging="#integer" )? + (svg:underline-position="#integer" )? + (svg:underline-thickness="#integer" )? + (svg:strikethrough-position="#integer" )? + (svg:strikethrough-thickness="#integer" )? + (svg:overline-position="#integer" )? + (svg:overline-thickness="#integer" )? + style:name="#string" (style:font-adornments="#string" )? (style:font-family-generic="roman | swiss | modern | decorative | script | system" )? (style:font-pitch="fixed | variable" )? (style:font-charset="string]" )? @@ -13227,7 +13227,7 @@

style:footer Element

Child Relations - <style:footer (style:display="<boolean>" )? + <style:footer (style:display="#boolean" )? ( (<text:tracked-changes ... >)? @@ -13291,7 +13291,7 @@

style:footer-left Element

Child Relations - <style:footer-left (style:display="<boolean>" )? + <style:footer-left (style:display="#boolean" )? ( (<text:tracked-changes ... >)? @@ -13577,39 +13577,39 @@

style:graphic-properties Elemen Child Relations <style:graphic-properties ( (draw:stroke="none | dash | solid" )? - (draw:stroke-dash="(<NCName>)?" )? + (draw:stroke-dash="(#NCName)?" )? (draw:stroke-dash-names=" -START_list(<NCName>)* +START_list(#NCName)* END_list" )? (svg:stroke-width="string]" )? (svg:stroke-color="string]" )? - (draw:marker-start="(<NCName>)?" )? - (draw:marker-end="(<NCName>)?" )? + (draw:marker-start="(#NCName)?" )? + (draw:marker-end="(#NCName)?" )? (draw:marker-start-width="string]" )? (draw:marker-end-width="string]" )? - (draw:marker-start-center="<boolean>" )? - (draw:marker-end-center="<boolean>" )? + (draw:marker-start-center="#boolean" )? + (draw:marker-end-center="#boolean" )? (svg:stroke-opacity="double] | string]" )? (draw:stroke-linejoin="miter | round | bevel | middle | none" )? (svg:stroke-linecap="butt | square | round" )? (draw:symbol-color="string]" )? (text:animation="none | scroll | alternate | slide" )? (text:animation-direction="left | right | up | down" )? - (text:animation-start-inside="<boolean>" )? - (text:animation-stop-inside="<boolean>" )? - (text:animation-repeat="<nonNegativeInteger>" )? - (text:animation-delay="<duration>" )? + (text:animation-start-inside="#boolean" )? + (text:animation-stop-inside="#boolean" )? + (text:animation-repeat="#nonNegativeInteger" )? + (text:animation-delay="#duration" )? (text:animation-steps="string]" )? - (draw:auto-grow-width="<boolean>" )? - (draw:auto-grow-height="<boolean>" )? - (draw:fit-to-size="<boolean>" )? - (draw:fit-to-contour="<boolean>" )? + (draw:auto-grow-width="#boolean" )? + (draw:auto-grow-height="#boolean" )? + (draw:fit-to-size="#boolean" )? + (draw:fit-to-contour="#boolean" )? (draw:textarea-vertical-align="top | middle | bottom | justify" )? (draw:textarea-horizontal-align="left | center | right | justify" )? (fo:wrap-option="no-wrap | wrap" )? - (style:shrink-to-fit="<boolean>" )? + (style:shrink-to-fit="#boolean" )? (draw:color-mode="greyscale | mono | watermark | standard" )? - (draw:color-inversion="<boolean>" )? + (draw:color-inversion="#boolean" )? (draw:luminance="string]" )? (draw:contrast="string]" )? (draw:gamma="string]" )? @@ -13632,30 +13632,30 @@

style:graphic-properties Elemen (draw:start-guide="string]" )? (draw:end-guide="string]" )? (draw:placing="below | above" )? - (draw:parallel="<boolean>" )? + (draw:parallel="#boolean" )? (draw:measure-align="automatic | left-outside | inside | right-outside" )? (draw:measure-vertical-align="automatic | above | below | center" )? (draw:unit="automatic | mm | cm | m | km | pt | pc | inch | ft | mi" )? - (draw:show-unit="<boolean>" )? - (draw:decimal-places="<nonNegativeInteger>" )? + (draw:show-unit="#boolean" )? + (draw:decimal-places="#nonNegativeInteger" )? (draw:caption-type="straight-line | angled-line | angled-connector-line" )? (draw:caption-angle-type="fixed | free" )? - (draw:caption-angle="<string>" )? + (draw:caption-angle="#string" )? (draw:caption-gap="string]" )? (draw:caption-escape-direction="horizontal | vertical | auto" )? (draw:caption-escape="string] | string]" )? (draw:caption-line-length="string]" )? - (draw:caption-fit-line-length="<boolean>" )? - (dr3d:horizontal-segments="<nonNegativeInteger>" )? - (dr3d:vertical-segments="<nonNegativeInteger>" )? + (draw:caption-fit-line-length="#boolean" )? + (dr3d:horizontal-segments="#nonNegativeInteger" )? + (dr3d:vertical-segments="#nonNegativeInteger" )? (dr3d:edge-rounding="string]" )? (dr3d:edge-rounding-mode="correct | attractive" )? (dr3d:back-scale="string]" )? (dr3d:depth="string]" )? (dr3d:backface-culling="enabled | disabled" )? - (dr3d:end-angle="<string>" )? - (dr3d:close-front="<boolean>" )? - (dr3d:close-back="<boolean>" )? + (dr3d:end-angle="#string" )? + (dr3d:close-front="#boolean" )? + (dr3d:close-back="#boolean" )? (dr3d:lighting-mode="standard | double-sided" )? (dr3d:normals-kind="object | flat | sphere" )? (dr3d:normals-direction="normal | inverse" )? @@ -13687,7 +13687,7 @@

style:graphic-properties Elemen ( (fo:margin-top="string] | string]" )? (fo:margin-bottom="string] | string]" )? ) (fo:margin="string] | string]" )? - (style:print-content="<boolean>" )? + (style:print-content="#boolean" )? (style:protect="none | START_list(content | position | size)+ END_list" )? @@ -13699,13 +13699,13 @@

style:graphic-properties Elemen (svg:y="string]" )? ) (style:vertical-rel="page | page-content | frame | frame-content | paragraph | paragraph-content | char | line | baseline | text" )? (text:anchor-type="page | frame | paragraph | char | as-char" )? - (text:anchor-page-number="<positiveInteger>" )? + (text:anchor-page-number="#positiveInteger" )? - ( (fo:border="<string>" )? - (fo:border-top="<string>" )? - (fo:border-bottom="<string>" )? - (fo:border-left="<string>" )? - (fo:border-right="<string>" )? + ( (fo:border="#string" )? + (fo:border-top="#string" )? + (fo:border-bottom="#string" )? + (fo:border-left="#string" )? + (fo:border-right="#string" )? ) ( (style:border-line-width=" START_liststring]string]string] @@ -13728,17 +13728,17 @@

style:graphic-properties Elemen (fo:padding-bottom="string]" )? (fo:padding-left="string]" )? (fo:padding-right="string]" )? - ) (style:shadow="none | <string>" )? + ) (style:shadow="none | #string" )? (fo:background-color="transparent | string]" )? (style:background-transparency="string]" )? - (style:editable="<boolean>" )? + (style:editable="#boolean" )? (style:wrap="none | left | right | parallel | dynamic | run-through | biggest" )? (style:wrap-dynamic-threshold="string]" )? - (style:number-wrapped-paragraphs="no-limit | <positiveInteger>" )? - (style:wrap-contour="<boolean>" )? + (style:number-wrapped-paragraphs="no-limit | #positiveInteger" )? + (style:wrap-contour="#boolean" )? (style:wrap-contour-mode="full | outside" )? (style:run-through="foreground | background" )? - (style:flow-with-text="<boolean>" )? + (style:flow-with-text="#boolean" )? (style:overflow-behavior="clip | auto-create-new-frame" )? (style:mirror="none | vertical | horizontal | horizontal-on-odd | horizontal-on-even | START_listverticalhorizontal | horizontal-on-odd | horizontal-on-even @@ -13748,8 +13748,8 @@

style:graphic-properties Elemen (fo:clip="auto | string]" )? (draw:wrap-influence-on-position="iterative | once-concurrent | once-successive" )? (style:writing-mode="lr-tb | rl-tb | tb-rl | tb-lr | lr | rl | tb | page" )? - (draw:frame-display-scrollbar="<boolean>" )? - (draw:frame-display-border="<boolean>" )? + (draw:frame-display-scrollbar="#boolean" )? + (draw:frame-display-border="#boolean" )? (draw:frame-margin-horizontal="string]" )? (draw:frame-margin-vertical="string]" )? (draw:visible-area-left="string]" )? @@ -13757,15 +13757,15 @@

style:graphic-properties Elemen (draw:visible-area-width="string]" )? (draw:visible-area-height="string]" )? (draw:draw-aspect="content | thumbnail | icon | print-view" )? - (draw:ole-draw-aspect="<nonNegativeInteger>" )? + (draw:ole-draw-aspect="#nonNegativeInteger" )? (draw:fill="none | solid | bitmap | gradient | hatch" )? (draw:fill-color="string]" )? (draw:secondary-fill-color="string]" )? - (draw:fill-gradient-name="(<NCName>)?" )? - (draw:gradient-step-count="<nonNegativeInteger>" )? - (draw:fill-hatch-name="(<NCName>)?" )? - (draw:fill-hatch-solid="<boolean>" )? - (draw:fill-image-name="(<NCName>)?" )? + (draw:fill-gradient-name="(#NCName)?" )? + (draw:gradient-step-count="#nonNegativeInteger" )? + (draw:fill-hatch-name="(#NCName)?" )? + (draw:fill-hatch-solid="#boolean" )? + (draw:fill-image-name="(#NCName)?" )? (style:repeat="no-repeat | repeat | stretch" )? (draw:fill-image-width="string] | string]" )? (draw:fill-image-height="string] | string]" )? @@ -13776,7 +13776,7 @@

style:graphic-properties Elemen START_liststring]horizontal | vertical END_list" )? (draw:opacity="string]" )? - (draw:opacity-name="(<NCName>)?" )? + (draw:opacity-name="(#NCName)?" )? (svg:fill-rule="nonzero | evenodd" )? (<text:list-style ... >)? (<style:background-image ... >)? @@ -13830,11 +13830,11 @@

style:handout-master Element Child Relations - <style:handout-master (presentation:use-header-name="<string>" )? - (presentation:use-footer-name="<string>" )? - (presentation:use-date-time-name="<string>" )? - (presentation:presentation-page-layout-name="(<NCName>)?" )? - style:page-layout-name="(<NCName>)?" (draw:style-name="(<NCName>)?" )? + <style:handout-master (presentation:use-header-name="#string" )? + (presentation:use-footer-name="#string" )? + (presentation:use-date-time-name="#string" )? + (presentation:presentation-page-layout-name="(#NCName)?" )? + style:page-layout-name="(#NCName)?" (draw:style-name="(#NCName)?" )? (<draw:rect ... > | <draw:line ... > | <draw:polyline ... > | <draw:polygon ... > | <draw:regular-polygon ... > | <draw:path ... > | <draw:circle ... > | <draw:ellipse ... > | <draw:g ... > | <draw:page-thumbnail ... > | <draw:frame ... > | <draw:measure ... > | <draw:caption ... > | <draw:connector ... > | <draw:control ... > | <dr3d:scene ... > | <draw:custom-shape ... > | <draw:a ... >)* >  @@ -13886,7 +13886,7 @@

style:header Element

Child Relations - <style:header (style:display="<boolean>" )? + <style:header (style:display="#boolean" )? ( (<text:tracked-changes ... >)? @@ -13962,11 +13962,11 @@

style:header-footer-prope (fo:margin-bottom="string] | string]" )? ) (fo:margin="string] | string]" )? - ( (fo:border="<string>" )? - (fo:border-top="<string>" )? - (fo:border-bottom="<string>" )? - (fo:border-left="<string>" )? - (fo:border-right="<string>" )? + ( (fo:border="#string" )? + (fo:border-top="#string" )? + (fo:border-bottom="#string" )? + (fo:border-left="#string" )? + (fo:border-right="#string" )? ) ( (style:border-line-width=" START_liststring]string]string] @@ -13990,8 +13990,8 @@

style:header-footer-prope (fo:padding-left="string]" )? (fo:padding-right="string]" )? ) (fo:background-color="transparent | string]" )? - (style:shadow="none | <string>" )? - (style:dynamic-spacing="<boolean>" )? + (style:shadow="none | #string" )? + (style:dynamic-spacing="#boolean" )? (<style:background-image ... >)? )>  @@ -14044,7 +14044,7 @@

style:header-left Element

Child Relations - <style:header-left (style:display="<boolean>" )? + <style:header-left (style:display="#boolean" )? ( (<text:tracked-changes ... >)? @@ -14162,7 +14162,7 @@

style:list-level-properties (text:space-before="string]" )? (text:min-label-width="string]" )? (text:min-label-distance="string]" )? - (style:font-name="<string>" )? + (style:font-name="#string" )? (fo:width="string]" )? (fo:height="string]" )? (style:vertical-rel="page | page-content | frame | frame-content | paragraph | paragraph-content | char | line | baseline | text" )? @@ -14206,7 +14206,7 @@

style:map Element

Child Relations - <style:map style:condition="<string>" style:apply-style-name="(<NCName>)?" (style:base-cell-address="string]" )? + <style:map style:condition="#string" style:apply-style-name="(#NCName)?" (style:base-cell-address="string]" )? >  @@ -14273,9 +14273,9 @@

style:master-page Element

Child Relations - <style:master-page style:name="<NCName>" (style:display-name="<string>" )? - style:page-layout-name="(<NCName>)?" (draw:style-name="(<NCName>)?" )? - (style:next-style-name="(<NCName>)?" )? + <style:master-page style:name="#NCName" (style:display-name="#string" )? + style:page-layout-name="(#NCName)?" (draw:style-name="(#NCName)?" )? + (style:next-style-name="(#NCName)?" )? (<style:header ... > (<style:header-left ... >)? )? (<style:footer ... > (<style:footer-left ... >)? @@ -14315,7 +14315,7 @@

style:page-layout Element

Child Relations - <style:page-layout style:name="<NCName>" (style:page-usage="all | left | right | mirrored" )? + <style:page-layout style:name="#NCName" (style:page-usage="all | left | right | mirrored" )? ( (<style:page-layout-properties ... >)? (<style:header-style ... >)? @@ -14403,14 +14403,14 @@

style:page-layout-propertie <style:page-layout-properties ( (fo:page-width="string]" )? (fo:page-height="string]" )? - ( (style:num-format="(1 | i | I | <string>)?" | - (style:num-format="a | A" (style:num-letter-sync="<boolean>" )? + ( (style:num-format="(1 | i | I | #string)?" | + (style:num-format="a | A" (style:num-letter-sync="#boolean" )? ))? )? - ( (style:num-prefix="<string>" )? - (style:num-suffix="<string>" )? - ) (style:paper-tray-name="default | <string>" )? + ( (style:num-prefix="#string" )? + (style:num-suffix="#string" )? + ) (style:paper-tray-name="default | #string" )? (style:print-orientation="portrait | landscape" )? ( (fo:margin-left="string] | string]" )? @@ -14420,11 +14420,11 @@

style:page-layout-propertie (fo:margin-bottom="string] | string]" )? ) (fo:margin="string] | string]" )? - ( (fo:border="<string>" )? - (fo:border-top="<string>" )? - (fo:border-bottom="<string>" )? - (fo:border-left="<string>" )? - (fo:border-right="<string>" )? + ( (fo:border="#string" )? + (fo:border-top="#string" )? + (fo:border-bottom="#string" )? + (fo:border-left="#string" )? + (fo:border-right="#string" )? ) ( (style:border-line-width=" START_liststring]string]string] @@ -14447,30 +14447,30 @@

style:page-layout-propertie (fo:padding-bottom="string]" )? (fo:padding-left="string]" )? (fo:padding-right="string]" )? - ) (style:shadow="none | <string>" )? + ) (style:shadow="none | #string" )? (fo:background-color="transparent | string]" )? - (style:register-truth-ref-style-name="(<NCName>)?" )? + (style:register-truth-ref-style-name="(#NCName)?" )? (style:print=" START_list(headers | grid | annotations | objects | charts | drawings | formulas | zero-values)* END_list" )? (style:print-page-order="ttb | ltr" )? - (style:first-page-number="<positiveInteger> | continue" )? + (style:first-page-number="#positiveInteger | continue" )? (style:scale-to="string]" )? - (style:scale-to-pages="<positiveInteger>" )? + (style:scale-to-pages="#positiveInteger" )? (style:table-centering="horizontal | vertical | both | none" )? (style:footnote-max-height="string]" )? (style:writing-mode="lr-tb | rl-tb | tb-rl | tb-lr | lr | rl | tb | page" )? (style:layout-grid-mode="none | line | both" )? - (style:layout-grid-standard-mode="<boolean>" )? + (style:layout-grid-standard-mode="#boolean" )? (style:layout-grid-base-height="string]" )? (style:layout-grid-ruby-height="string]" )? - (style:layout-grid-lines="<positiveInteger>" )? + (style:layout-grid-lines="#positiveInteger" )? (style:layout-grid-base-width="string]" )? (style:layout-grid-color="string]" )? - (style:layout-grid-ruby-below="<boolean>" )? - (style:layout-grid-print="<boolean>" )? - (style:layout-grid-display="<boolean>" )? - (style:layout-grid-snap-to="<boolean>" )? + (style:layout-grid-ruby-below="#boolean" )? + (style:layout-grid-print="#boolean" )? + (style:layout-grid-display="#boolean" )? + (style:layout-grid-snap-to="#boolean" )? (<style:background-image ... >)? (<style:columns ... >)? (<style:footnote-sep ... >)? @@ -14560,22 +14560,22 @@

style:paragraph-properties El ( (fo:line-height="normal | string] | string]" )? (style:line-height-at-least="string]" )? (style:line-spacing="string]" )? - (style:font-independent-line-spacing="<boolean>" )? + (style:font-independent-line-spacing="#boolean" )? (fo:text-align="start | end | left | right | center | justify" )? (fo:text-align-last="start | center | justify" )? - (style:justify-single-word="<boolean>" )? + (style:justify-single-word="#boolean" )? (fo:keep-together="auto | always" )? - (fo:widows="<nonNegativeInteger>" )? - (fo:orphans="<nonNegativeInteger>" )? + (fo:widows="#nonNegativeInteger" )? + (fo:orphans="#nonNegativeInteger" )? (style:tab-stop-distance="string]" )? (fo:hyphenation-keep="auto | page" )? - (fo:hyphenation-ladder-count="no-limit | <positiveInteger>" )? - (style:register-true="<boolean>" )? + (fo:hyphenation-ladder-count="no-limit | #positiveInteger" )? + (style:register-true="#boolean" )? ( (fo:margin-left="string] | string]" )? (fo:margin-right="string] | string]" )? ) (fo:text-indent="string] | string]" )? - (style:auto-text-indent="<boolean>" )? + (style:auto-text-indent="#boolean" )? ( (fo:margin-top="string] | string]" )? (fo:margin-bottom="string] | string]" )? @@ -14585,11 +14585,11 @@

style:paragraph-properties El (fo:break-after="auto | column | page" )? ) (fo:background-color="transparent | string]" )? - ( (fo:border="<string>" )? - (fo:border-top="<string>" )? - (fo:border-bottom="<string>" )? - (fo:border-left="<string>" )? - (fo:border-right="<string>" )? + ( (fo:border="#string" )? + (fo:border-top="#string" )? + (fo:border-bottom="#string" )? + (fo:border-left="#string" )? + (fo:border-right="#string" )? ) ( (style:border-line-width=" START_liststring]string]string] @@ -14606,25 +14606,25 @@

style:paragraph-properties El (style:border-line-width-right=" START_liststring]string]string] END_list" )? - ) (style:join-border="<boolean>" )? + ) (style:join-border="#boolean" )? ( (fo:padding="string]" )? (fo:padding-top="string]" )? (fo:padding-bottom="string]" )? (fo:padding-left="string]" )? (fo:padding-right="string]" )? - ) (style:shadow="none | <string>" )? + ) (style:shadow="none | #string" )? (fo:keep-with-next="auto | always" )? - (text:number-lines="<boolean>" )? - (text:line-number="<nonNegativeInteger>" )? + (text:number-lines="#boolean" )? + (text:line-number="#nonNegativeInteger" )? (style:text-autospace="none | ideograph-alpha" )? (style:punctuation-wrap="simple | hanging" )? (style:line-break="normal | strict" )? (style:vertical-align="top | middle | bottom | auto | baseline" )? (style:writing-mode="lr-tb | rl-tb | tb-rl | tb-lr | lr | rl | tb | page" )? - (style:writing-mode-automatic="<boolean>" )? - (style:snap-to-layout-grid="<boolean>" )? - (style:page-number="<positiveInteger> | auto" )? + (style:writing-mode-automatic="#boolean" )? + (style:snap-to-layout-grid="#boolean" )? + (style:page-number="#positiveInteger | auto" )? (style:background-transparency="string]" )? (<style:tab-stops ... >)? (<style:drop-cap ... >)? @@ -14657,7 +14657,7 @@

style:presentation-page-l Child Relations - <style:presentation-page-layout style:name="<NCName>" (style:display-name="<string>" )? + <style:presentation-page-layout style:name="#NCName" (style:display-name="#string" )? (<presentation:placeholder ... >)* >  @@ -14817,9 +14817,9 @@

style:section-properties Elemen ( (fo:margin-left="string] | string]" )? (fo:margin-right="string] | string]" )? - ) (style:protect="<boolean>" )? - (style:editable="<boolean>" )? - (text:dont-balance-text-columns="<boolean>" )? + ) (style:protect="#boolean" )? + (style:editable="#boolean" )? + (text:dont-balance-text-columns="#boolean" )? (style:writing-mode="lr-tb | rl-tb | tb-rl | tb-lr | lr | rl | tb | page" )? (<style:background-image ... >)? (<style:columns ... >)? @@ -14884,17 +14884,17 @@

style:style Element

Child Relations - <style:style style:name="<NCName>" (style:display-name="<string>" )? - (style:parent-style-name="(<NCName>)?" )? - (style:next-style-name="(<NCName>)?" )? - (style:list-level="(<positiveInteger>)?" )? - (style:list-style-name="(<NCName>)?" )? - (style:master-page-name="(<NCName>)?" )? - (style:auto-update="<boolean>" )? - (style:data-style-name="(<NCName>)?" )? - (style:percentage-data-style-name="(<NCName>)?" )? - (style:class="<string>" )? - (style:default-outline-level="(<positiveInteger>)?" )? + <style:style style:name="#NCName" (style:display-name="#string" )? + (style:parent-style-name="(#NCName)?" )? + (style:next-style-name="(#NCName)?" )? + (style:list-level="(#positiveInteger)?" )? + (style:list-style-name="(#NCName)?" )? + (style:master-page-name="(#NCName)?" )? + (style:auto-update="#boolean" )? + (style:data-style-name="(#NCName)?" )? + (style:percentage-data-style-name="(#NCName)?" )? + (style:class="#string" )? + (style:default-outline-level="(#positiveInteger)?" )? (style:family="text" (<style:text-properties ... >)? ) | @@ -14963,10 +14963,10 @@

style:tab-stop Element (new in O <style:tab-stop style:position="string]" style:type="left | center | right" | EMPTY | (style:type="char" style:char="string]" ) (style:leader-type="none | single | double" )? (style:leader-style="none | solid | dotted | dash | long-dash | dot-dash | dot-dot-dash | wave" )? - (style:leader-width="auto | normal | bold | thin | medium | thick | <positiveInteger> | string] | string]" )? + (style:leader-width="auto | normal | bold | thin | medium | thick | #positiveInteger | string] | string]" )? (style:leader-color="font-color | string]" )? (style:leader-text="string]" )? - (style:leader-text-style="(<NCName>)?" )? + (style:leader-text-style="(#NCName)?" )? >  @@ -15060,19 +15060,19 @@

style:table-cell-properties (style:direction="ltr | ttb" )? (style:glyph-orientation-vertical="auto | 0 | 0deg | 0rad | 0grad" )? (style:writing-mode="lr-tb | rl-tb | tb-rl | tb-lr | lr | rl | tb | page" )? - (style:shadow="none | <string>" )? + (style:shadow="none | #string" )? (fo:background-color="transparent | string]" )? - ( (fo:border="<string>" )? - (fo:border-top="<string>" )? - (fo:border-bottom="<string>" )? - (fo:border-left="<string>" )? - (fo:border-right="<string>" )? - ) (style:diagonal-tl-br="<string>" )? + ( (fo:border="#string" )? + (fo:border-top="#string" )? + (fo:border-bottom="#string" )? + (fo:border-left="#string" )? + (fo:border-right="#string" )? + ) (style:diagonal-tl-br="#string" )? (style:diagonal-tl-br-widths=" START_liststring]string]string] END_list" )? - (style:diagonal-bl-tr="<string>" )? + (style:diagonal-bl-tr="#string" )? (style:diagonal-bl-tr-widths=" START_liststring]string]string] END_list" )? @@ -15099,15 +15099,15 @@

style:table-cell-properties (fo:padding-left="string]" )? (fo:padding-right="string]" )? ) (fo:wrap-option="no-wrap | wrap" )? - (style:rotation-angle="<string>" )? + (style:rotation-angle="#string" )? (style:rotation-align="none | bottom | top | center" )? (style:cell-protect="none | hidden-and-protected | START_list(protected | formula-hidden)+ END_list" )? - (style:print-content="<boolean>" )? - (style:decimal-places="<nonNegativeInteger>" )? - (style:repeat-content="<boolean>" )? - (style:shrink-to-fit="<boolean>" )? + (style:print-content="#boolean" )? + (style:decimal-places="#nonNegativeInteger" )? + (style:repeat-content="#boolean" )? + (style:shrink-to-fit="#boolean" )? (<style:background-image ... >)? )>  @@ -15143,7 +15143,7 @@

style:table-column-propert <style:table-column-properties ( (style:column-width="string]" )? (style:rel-column-width="string]" )? - (style:use-optimal-column-width="<boolean>" )? + (style:use-optimal-column-width="#boolean" )? ( (fo:break-before="auto | column | page" )? (fo:break-after="auto | column | page" )? @@ -15203,17 +15203,17 @@

style:table-properties Element<positiveInteger> | auto" )? + (style:page-number="#positiveInteger | auto" )? ( (fo:break-before="auto | column | page" )? (fo:break-after="auto | column | page" )? ) (fo:background-color="transparent | string]" )? - (style:shadow="none | <string>" )? + (style:shadow="none | #string" )? (fo:keep-with-next="auto | always" )? - (style:may-break-between-rows="<boolean>" )? + (style:may-break-between-rows="#boolean" )? (table:border-model="collapsing | separating" )? (style:writing-mode="lr-tb | rl-tb | tb-rl | tb-lr | lr | rl | tb | page" )? - (table:display="<boolean>" )? + (table:display="#boolean" )? (<style:background-image ... >)? )>  @@ -15252,7 +15252,7 @@

style:table-row-properties El <style:table-row-properties ( (style:row-height="string]" )? (style:min-row-height="string]" )? - (style:use-optimal-row-height="<boolean>" )? + (style:use-optimal-row-height="#boolean" )? (fo:background-color="transparent | string]" )? ( (fo:break-before="auto | column | page" )? @@ -15385,29 +15385,29 @@

style:text-properties Element< ( (fo:font-variant="normal | small-caps" )? (fo:text-transform="none | lowercase | uppercase | capitalize" )? (fo:color="string]" )? - (style:use-window-font-color="<boolean>" )? - (style:text-outline="<boolean>" )? + (style:use-window-font-color="#boolean" )? + (style:text-outline="#boolean" )? (style:text-line-through-type="none | single | double" )? (style:text-line-through-style="none | solid | dotted | dash | long-dash | dot-dash | dot-dot-dash | wave" )? - (style:text-line-through-width="auto | normal | bold | thin | medium | thick | <positiveInteger> | string] | string]" )? + (style:text-line-through-width="auto | normal | bold | thin | medium | thick | #positiveInteger | string] | string]" )? (style:text-line-through-color="font-color | string]" )? - (style:text-line-through-text="<string>" )? - (style:text-line-through-text-style="(<NCName>)?" )? + (style:text-line-through-text="#string" )? + (style:text-line-through-text-style="(#NCName)?" )? (style:text-position=" START_liststring] | super | sub(string])? END_list" )? - (style:font-name="<string>" )? - (style:font-name-asian="<string>" )? - (style:font-name-complex="<string>" )? - (fo:font-family="<string>" )? - (style:font-family-asian="<string>" )? - (style:font-family-complex="<string>" )? + (style:font-name="#string" )? + (style:font-name-asian="#string" )? + (style:font-name-complex="#string" )? + (fo:font-family="#string" )? + (style:font-family-asian="#string" )? + (style:font-family-complex="#string" )? (style:font-family-generic="roman | swiss | modern | decorative | script | system" )? (style:font-family-generic-asian="roman | swiss | modern | decorative | script | system" )? (style:font-family-generic-complex="roman | swiss | modern | decorative | script | system" )? - (style:font-style-name="<string>" )? - (style:font-style-name-asian="<string>" )? - (style:font-style-name-complex="<string>" )? + (style:font-style-name="#string" )? + (style:font-style-name-asian="#string" )? + (style:font-style-name-complex="#string" )? (style:font-pitch="fixed | variable" )? (style:font-pitch-asian="fixed | variable" )? (style:font-pitch-complex="fixed | variable" )? @@ -15431,21 +15431,21 @@

style:text-properties Element< (fo:script="token]" )? (style:script-asian="token]" )? (style:script-complex="token]" )? - (style:rfc-language-tag="<language>" )? - (style:rfc-language-tag-asian="<language>" )? - (style:rfc-language-tag-complex="<language>" )? + (style:rfc-language-tag="#language" )? + (style:rfc-language-tag-asian="#language" )? + (style:rfc-language-tag-complex="#language" )? (fo:font-style="normal | italic | oblique" )? (style:font-style-asian="normal | italic | oblique" )? (style:font-style-complex="normal | italic | oblique" )? (style:font-relief="none | embossed | engraved" )? - (fo:text-shadow="none | <string>" )? + (fo:text-shadow="none | #string" )? (style:text-underline-type="none | single | double" )? (style:text-underline-style="none | solid | dotted | dash | long-dash | dot-dash | dot-dot-dash | wave" )? - (style:text-underline-width="auto | normal | bold | thin | medium | thick | <positiveInteger> | string] | string]" )? + (style:text-underline-width="auto | normal | bold | thin | medium | thick | #positiveInteger | string] | string]" )? (style:text-underline-color="font-color | string]" )? (style:text-overline-type="none | single | double" )? (style:text-overline-style="none | solid | dotted | dash | long-dash | dot-dash | dot-dot-dash | wave" )? - (style:text-overline-width="auto | normal | bold | thin | medium | thick | <positiveInteger> | string] | string]" )? + (style:text-overline-width="auto | normal | bold | thin | medium | thick | #positiveInteger | string] | string]" )? (style:text-overline-color="font-color | string]" )? (style:text-overline-mode="continuous | skip-white-space" )? (fo:font-weight="normal | bold | 100 | 200 | 300 | 400 | 500 | 600 | 700 | 800 | 900" )? @@ -15453,8 +15453,8 @@

style:text-properties Element< (style:font-weight-complex="normal | bold | 100 | 200 | 300 | 400 | 500 | 600 | 700 | 800 | 900" )? (style:text-underline-mode="continuous | skip-white-space" )? (style:text-line-through-mode="continuous | skip-white-space" )? - (style:letter-kerning="<boolean>" )? - (style:text-blinking="<boolean>" )? + (style:letter-kerning="#boolean" )? + (style:text-blinking="#boolean" )? (fo:background-color="transparent | string]" )? (style:text-combine="none | letters | lines" )? (style:text-combine-start-char="string]" )? @@ -15463,11 +15463,11 @@

style:text-properties Element< START_listnone | accent | dot | circle | discabove | below END_list" )? (style:text-scale="string]" )? - (style:text-rotation-angle="<string>" )? + (style:text-rotation-angle="#string" )? (style:text-rotation-scale="fixed | line-height" )? - (fo:hyphenate="<boolean>" )? - (fo:hyphenation-remain-char-count="<positiveInteger>" )? - (fo:hyphenation-push-char-count="<positiveInteger>" )? + (fo:hyphenate="#boolean" )? + (fo:hyphenation-remain-char-count="#positiveInteger" )? + (fo:hyphenation-push-char-count="#positiveInteger" )? (text:display="true" | text:display="none" | (text:display="condition" text:condition="none" ))? EMPTY)>  @@ -15499,7 +15499,7 @@

svg:definition-src Element

Child Relations <svg:definition-src - (xlink:type="simple" xlink:href="<anyIRI>" (xlink:actuate="onRequest" )? + (xlink:type="simple" xlink:href="#anyIRI" (xlink:actuate="onRequest" )? )>  @@ -15573,7 +15573,7 @@

svg:font-face-format Element Child Relations - <svg:font-face-format (svg:string="<string>" )? + <svg:font-face-format (svg:string="#string" )? >  @@ -15600,7 +15600,7 @@

svg:font-face-name Element

Child Relations - <svg:font-face-name (svg:name="<string>" )? + <svg:font-face-name (svg:name="#string" )? >  @@ -15658,7 +15658,7 @@

svg:font-face-uri Element

Child Relations <svg:font-face-uri - (xlink:type="simple" xlink:href="<anyIRI>" (xlink:actuate="onRequest" )? + (xlink:type="simple" xlink:href="#anyIRI" (xlink:actuate="onRequest" )? )(<svg:font-face-format ... >)* >  @@ -15695,9 +15695,9 @@

svg:linearGradient Element

Child Relations <svg:linearGradient (svg:gradientUnits="objectBoundingBox" )? - (svg:gradientTransform="<string>" )? + (svg:gradientTransform="#string" )? (svg:spreadMethod="pad | reflect | repeat" )? - draw:name="<NCName>" (draw:display-name="<string>" )? + draw:name="#NCName" (draw:display-name="#string" )? (svg:x1="string] | string]" )? (svg:y1="string] | string]" )? (svg:x2="string] | string]" )? @@ -15739,9 +15739,9 @@

svg:radialGradient Element

Child Relations <svg:radialGradient (svg:gradientUnits="objectBoundingBox" )? - (svg:gradientTransform="<string>" )? + (svg:gradientTransform="#string" )? (svg:spreadMethod="pad | reflect | repeat" )? - draw:name="<NCName>" (draw:display-name="<string>" )? + draw:name="#NCName" (draw:display-name="#string" )? (svg:cx="string] | string]" )? (svg:cy="string] | string]" )? (svg:r="string] | string]" )? @@ -15776,8 +15776,8 @@

svg:stop Element

Child Relations - <svg:stop svg:offset="<double> | string]" (svg:stop-color="string]" )? - (svg:stop-opacity="<double>" )? + <svg:stop svg:offset="#double | string]" (svg:stop-color="string]" )? + (svg:stop-opacity="#double" )? >  @@ -15851,7 +15851,7 @@

table:background Element (new Child Relations - <table:background table:style-name="(<NCName>)?" >  + <table:background table:style-name="(#NCName)?" > 
@@ -15879,7 +15879,7 @@

table:body Element (new in ODF 1.2) Child Relations <table:body - (table:style-name="(<NCName>)?" (table:paragraph-style-name="(<NCName>)?" )? + (table:style-name="(#NCName)?" (table:paragraph-style-name="(#NCName)?" )? )>  @@ -15918,13 +15918,13 @@

table:calculation-settings El Child Relations - <table:calculation-settings (table:case-sensitive="<boolean>" )? - (table:precision-as-shown="<boolean>" )? - (table:search-criteria-must-apply-to-whole-cell="<boolean>" )? - (table:automatic-find-labels="<boolean>" )? - (table:use-regular-expressions="<boolean>" )? - (table:use-wildcards="<boolean>" )? - (table:null-year="<positiveInteger>" )? + <table:calculation-settings (table:case-sensitive="#boolean" )? + (table:precision-as-shown="#boolean" )? + (table:search-criteria-must-apply-to-whole-cell="#boolean" )? + (table:automatic-find-labels="#boolean" )? + (table:use-regular-expressions="#boolean" )? + (table:use-wildcards="#boolean" )? + (table:null-year="#positiveInteger" )? (<table:null-date ... >)? (<table:iteration ... >)? >  @@ -15957,7 +15957,7 @@

table:cell-address Element

Child Relations <table:cell-address - (table:column="<integer>" table:row="<integer>" table:table="<integer>" )>  + (table:column="#integer" table:row="#integer" table:table="#integer" )> 
@@ -15990,8 +15990,8 @@

table:cell-content-change Elem Child Relations - <table:cell-content-change table:id="<string>" (table:acceptance-state="accepted | rejected | pending" )? - (table:rejecting-change-id="<string>" )? + <table:cell-content-change table:id="#string" (table:acceptance-state="accepted | rejected | pending" )? + (table:rejecting-change-id="#string" )? <table:cell-address ... ><office:change-info ... > (<table:dependencies ... >)? (<table:deletions ... >)? <table:previous ... >>  @@ -16022,7 +16022,7 @@

table:cell-content-deletion Child Relations - <table:cell-content-deletion (table:id="<string>" )? + <table:cell-content-deletion (table:id="#string" )? (<table:cell-address ... >)? (<table:change-track-table-cell ... >)? >  @@ -16060,10 +16060,10 @@

table:cell-range-source Element< Child Relations - <table:cell-range-source table:name="<string>" table:last-column-spanned="<positiveInteger>" table:last-row-spanned="<positiveInteger>" xlink:type="simple" xlink:href="<anyIRI>" (xlink:actuate="onRequest" )? - (table:filter-name="<string>" )? - (table:filter-options="<string>" )? - (table:refresh-delay="<duration>" )? + <table:cell-range-source table:name="#string" table:last-column-spanned="#positiveInteger" table:last-row-spanned="#positiveInteger" xlink:type="simple" xlink:href="#anyIRI" (xlink:actuate="onRequest" )? + (table:filter-name="#string" )? + (table:filter-options="#string" )? + (table:refresh-delay="#duration" )? >  @@ -16090,7 +16090,7 @@

table:change-deletion Element< Child Relations - <table:change-deletion (table:id="<string>" )? + <table:change-deletion (table:id="#string" )? >  @@ -16137,19 +16137,19 @@

table:change-track-table-c Child Relations <table:change-track-table-cell (table:cell-address="string]" )? - (table:matrix-covered="<boolean>" )? - (table:formula="<string>" )? - (table:number-matrix-columns-spanned="<positiveInteger>" )? - (table:number-matrix-rows-spanned="<positiveInteger>" )? + (table:matrix-covered="#boolean" )? + (table:formula="#string" )? + (table:number-matrix-columns-spanned="#positiveInteger" )? + (table:number-matrix-rows-spanned="#positiveInteger" )? ( - (office:value-type="float" office:value="<double>" ) | - (office:value-type="percentage" office:value="<double>" ) | - (office:value-type="currency" office:value="<double>" (office:currency="<string>" )? + (office:value-type="float" office:value="#double" ) | + (office:value-type="percentage" office:value="#double" ) | + (office:value-type="currency" office:value="#double" (office:currency="#string" )? ) | - (office:value-type="date" office:date-value="<date> | <dateTime>" ) | - (office:value-type="time" office:time-value="<duration>" ) | - (office:value-type="boolean" office:boolean-value="<boolean>" ) | - (office:value-type="string" (office:string-value="<string>" )? + (office:value-type="date" office:date-value="#date | #dateTime" ) | + (office:value-type="time" office:time-value="#duration" ) | + (office:value-type="boolean" office:boolean-value="#boolean" ) | + (office:value-type="string" (office:string-value="#string" )? ))? (<text:p ... >)* >  @@ -16185,8 +16185,8 @@

table:consolidation Element

Child Relations - <table:consolidation table:function="average | count | countnums | max | min | product | stdev | stdevp | sum | var | varp | <string>" table:source-cell-range-addresses="<string>" table:target-cell-address="string]" (table:use-labels="none | row | column | both" )? - (table:link-to-source-data="<boolean>" )? + <table:consolidation table:function="average | count | countnums | max | min | product | stdev | stdevp | sum | var | varp | #string" table:source-cell-range-addresses="#string" table:target-cell-address="string]" (table:use-labels="none | row | column | both" )? + (table:link-to-source-data="#boolean" )? >  @@ -16221,9 +16221,9 @@

table:content-validation Elemen Child Relations - <table:content-validation table:name="<string>" (table:condition="<string>" )? + <table:content-validation table:name="#string" (table:condition="#string" )? (table:base-cell-address="string]" )? - (table:allow-empty-cell="<boolean>" )? + (table:allow-empty-cell="#boolean" )? (table:display-list="none | unsorted | sort-ascending" )? (<table:help-message ... >)? (<table:error-message ... > | @@ -16345,29 +16345,29 @@

table:covered-table-cell Elemen Child Relations - <table:covered-table-cell (table:number-columns-repeated="<positiveInteger>" )? - (table:style-name="(<NCName>)?" )? - (table:content-validation-name="<string>" )? - (table:formula="<string>" )? + <table:covered-table-cell (table:number-columns-repeated="#positiveInteger" )? + (table:style-name="(#NCName)?" )? + (table:content-validation-name="#string" )? + (table:formula="#string" )? ( - (office:value-type="float" office:value="<double>" ) | - (office:value-type="percentage" office:value="<double>" ) | - (office:value-type="currency" office:value="<double>" (office:currency="<string>" )? + (office:value-type="float" office:value="#double" ) | + (office:value-type="percentage" office:value="#double" ) | + (office:value-type="currency" office:value="#double" (office:currency="#string" )? ) | - (office:value-type="date" office:date-value="<date> | <dateTime>" ) | - (office:value-type="time" office:time-value="<duration>" ) | - (office:value-type="boolean" office:boolean-value="<boolean>" ) | - (office:value-type="string" (office:string-value="<string>" )? + (office:value-type="date" office:date-value="#date | #dateTime" ) | + (office:value-type="time" office:time-value="#duration" ) | + (office:value-type="boolean" office:boolean-value="#boolean" ) | + (office:value-type="string" (office:string-value="#string" )? ))? - (table:protect="<boolean>" )? - (table:protected="<boolean>" )? - (xml:id="<ID>" )? + (table:protect="#boolean" )? + (table:protected="#boolean" )? + (xml:id="#ID" )? ( - (xhtml:about="<anyURI> | string]" xhtml:property=" + (xhtml:about="#anyURI | string]" xhtml:property=" START_list(string])+ END_list" ( (xhtml:datatype="string]" )? - (xhtml:content="<string>" )? + (xhtml:content="#string" )? )))? ( (<table:cell-range-source ... >)? @@ -16430,7 +16430,7 @@

table:data-pilot-display-i Child Relations - <table:data-pilot-display-info table:enabled="<boolean>" table:data-field="<string>" table:member-count="<nonNegativeInteger>" table:display-member-mode="from-top | from-bottom" >  + <table:data-pilot-display-info table:enabled="#boolean" table:data-field="#string" table:member-count="#nonNegativeInteger" table:display-member-mode="from-top | from-bottom" > 
@@ -16465,10 +16465,10 @@

table:data-pilot-field Element Child Relations - <table:data-pilot-field table:source-field-name="<string>" table:orientation="row | column | data | hidden" | - (table:orientation="page" table:selected-page="<string>" ) (table:is-data-layout-field="<string>" )? - (table:function="auto | average | count | countnums | max | min | product | stdev | stdevp | sum | var | varp | <string>" )? - (table:used-hierarchy="<integer>" )? + <table:data-pilot-field table:source-field-name="#string" table:orientation="row | column | data | hidden" | + (table:orientation="page" table:selected-page="#string" ) (table:is-data-layout-field="#string" )? + (table:function="auto | average | count | countnums | max | min | product | stdev | stdevp | sum | var | varp | #string" )? + (table:used-hierarchy="#integer" )? (<table:data-pilot-level ... >)? (<table:data-pilot-field-reference ... >)? (<table:data-pilot-groups ... >)? @@ -16502,8 +16502,8 @@

table:data-pilot-field- Child Relations - <table:data-pilot-field-reference table:field-name="<string>" - (table:member-type="named" table:member-name="<string>" ) | table:member-type="previous | next" table:type="none | member-difference | member-percentage | member-percentage-difference | running-total | row-percentage | column-percentage | total-percentage | index" >  + <table:data-pilot-field-reference table:field-name="#string" + (table:member-type="named" table:member-name="#string" ) | table:member-type="previous | next" table:type="none | member-difference | member-percentage | member-percentage-difference | running-total | row-percentage | column-percentage | total-percentage | index" > 
@@ -16530,7 +16530,7 @@

table:data-pilot-group Element Child Relations - <table:data-pilot-group table:name="<string>" (<table:data-pilot-group-member ... >)+ >  + <table:data-pilot-group table:name="#string" (<table:data-pilot-group-member ... >)+ > 
@@ -16556,7 +16556,7 @@

table:data-pilot-group-mem Child Relations - <table:data-pilot-group-member table:name="<string>" >  + <table:data-pilot-group-member table:name="#string" > 
@@ -16589,7 +16589,7 @@

table:data-pilot-groups Element< Child Relations - <table:data-pilot-groups table:source-field-name="<string>" table:date-start="<date> | <dateTime> | auto" | table:start="<double> | auto" table:date-end="<date> | <dateTime> | auto" | table:end="<double> | auto" table:step="<double>" table:grouped-by="seconds | minutes | hours | days | months | quarters | years" (<table:data-pilot-group ... >)+ >  + <table:data-pilot-groups table:source-field-name="#string" table:date-start="#date | #dateTime | auto" | table:start="#double | auto" table:date-end="#date | #dateTime | auto" | table:end="#double | auto" table:step="#double" table:grouped-by="seconds | minutes | hours | days | months | quarters | years" (<table:data-pilot-group ... >)+ > 
@@ -16616,7 +16616,7 @@

table:data-pilot-layout-inf Child Relations - <table:data-pilot-layout-info table:layout-mode="tabular-layout | outline-subtotals-top | outline-subtotals-bottom" table:add-empty-lines="<boolean>" >  + <table:data-pilot-layout-info table:layout-mode="tabular-layout | outline-subtotals-top | outline-subtotals-bottom" table:add-empty-lines="#boolean" > 
@@ -16647,7 +16647,7 @@

table:data-pilot-level Element Child Relations - <table:data-pilot-level (table:show-empty="<boolean>" )? + <table:data-pilot-level (table:show-empty="#boolean" )? (<table:data-pilot-subtotals ... >)? (<table:data-pilot-members ... >)? (<table:data-pilot-display-info ... >)? @@ -16681,8 +16681,8 @@

table:data-pilot-member Element< Child Relations - <table:data-pilot-member table:name="<string>" (table:display="<boolean>" )? - (table:show-details="<boolean>" )? + <table:data-pilot-member table:name="#string" (table:display="#boolean" )? + (table:show-details="#boolean" )? >  @@ -16739,7 +16739,7 @@

table:data-pilot-sort-info El Child Relations <table:data-pilot-sort-info - (table:sort-mode="data" table:data-field="<string>" ) | table:sort-mode="none | manual | name" table:order="ascending | descending" >  + (table:sort-mode="data" table:data-field="#string" ) | table:sort-mode="none | manual | name" table:order="ascending | descending" > 
@@ -16765,7 +16765,7 @@

table:data-pilot-subtotal Elem Child Relations - <table:data-pilot-subtotal table:function="auto | average | count | countnums | max | min | product | stdev | stdevp | sum | var | varp | <string>" >  + <table:data-pilot-subtotal table:function="auto | average | count | countnums | max | min | product | stdev | stdevp | sum | var | varp | #string" > 
@@ -16831,13 +16831,13 @@

table:data-pilot-table Element Child Relations - <table:data-pilot-table table:name="<string>" (table:application-data="<string>" )? + <table:data-pilot-table table:name="#string" (table:application-data="#string" )? (table:grand-total="none | row | column | both" )? - (table:ignore-empty-rows="<boolean>" )? - (table:identify-categories="<boolean>" )? - table:target-range-address="string] | string] | string]" (table:buttons="<string>" )? - (table:show-filter-button="<boolean>" )? - (table:drill-down-on-double-click="<boolean>" )? + (table:ignore-empty-rows="#boolean" )? + (table:identify-categories="#boolean" )? + table:target-range-address="string] | string] | string]" (table:buttons="#string" )? + (table:show-filter-button="#boolean" )? + (table:drill-down-on-double-click="#boolean" )? (<table:database-source-sql ... > | <table:database-source-query ... > | <table:database-source-table ... > | <table:source-service ... > | <table:source-cell-range ... >)? (<table:data-pilot-field ... >)+ >  @@ -16910,15 +16910,15 @@

table:database-range Element Child Relations - <table:database-range (table:name="<string>" )? - (table:is-selection="<boolean>" )? - (table:on-update-keep-styles="<boolean>" )? - (table:on-update-keep-size="<boolean>" )? - (table:has-persistent-data="<boolean>" )? + <table:database-range (table:name="#string" )? + (table:is-selection="#boolean" )? + (table:on-update-keep-styles="#boolean" )? + (table:on-update-keep-size="#boolean" )? + (table:has-persistent-data="#boolean" )? (table:orientation="column | row" )? - (table:contains-header="<boolean>" )? - (table:display-filter-buttons="<boolean>" )? - table:target-range-address="string] | string] | string]" (table:refresh-delay="<boolean>" )? + (table:contains-header="#boolean" )? + (table:display-filter-buttons="#boolean" )? + table:target-range-address="string] | string] | string]" (table:refresh-delay="#boolean" )? (<table:database-source-sql ... > | <table:database-source-query ... > | <table:database-source-table ... >)? (<table:filter ... >)? (<table:sort ... >)? @@ -16981,7 +16981,7 @@

table:database-source-query Child Relations - <table:database-source-query table:database-name="<string>" table:query-name="<string>" >  + <table:database-source-query table:database-name="#string" table:query-name="#string" > 
@@ -17010,7 +17010,7 @@

table:database-source-sql Elem Child Relations - <table:database-source-sql table:database-name="<string>" table:sql-statement="<string>" (table:parse-sql-statement="<boolean>" )? + <table:database-source-sql table:database-name="#string" table:sql-statement="#string" (table:parse-sql-statement="#boolean" )? >  @@ -17039,7 +17039,7 @@

table:database-source-table Child Relations - <table:database-source-table table:database-name="<string>" table:database-table-name="<string>" >  + <table:database-source-table table:database-name="#string" table:database-table-name="#string" > 
@@ -17132,10 +17132,10 @@

table:deletion Element

Child Relations - <table:deletion table:type="row | column | table" table:position="<integer>" (table:table="<integer>" )? - (table:multi-deletion-spanned="<integer>" )? - table:id="<string>" (table:acceptance-state="accepted | rejected | pending" )? - (table:rejecting-change-id="<string>" )? + <table:deletion table:type="row | column | table" table:position="#integer" (table:table="#integer" )? + (table:multi-deletion-spanned="#integer" )? + table:id="#string" (table:acceptance-state="accepted | rejected | pending" )? + (table:rejecting-change-id="#string" )? <office:change-info ... > (<table:dependencies ... >)? (<table:deletions ... >)? (<table:cut-offs ... >)? @@ -17224,7 +17224,7 @@

table:dependency Element

Child Relations - <table:dependency table:id="<string>" >  + <table:dependency table:id="#string" > 
@@ -17304,7 +17304,7 @@

table:error-macro Element

Child Relations - <table:error-macro (table:execute="<boolean>" )? + <table:error-macro (table:execute="#boolean" )? >  @@ -17334,8 +17334,8 @@

table:error-message Element

Child Relations - <table:error-message (table:title="<string>" )? - (table:display="<boolean>" )? + <table:error-message (table:title="#string" )? + (table:display="#boolean" )? (table:message-type="stop | warning | information" )? (<text:p ... >)* >  @@ -17365,7 +17365,7 @@

table:even-columns Element ( Child Relations <table:even-columns - (table:style-name="(<NCName>)?" (table:paragraph-style-name="(<NCName>)?" )? + (table:style-name="(#NCName)?" (table:paragraph-style-name="(#NCName)?" )? )>  @@ -17394,7 +17394,7 @@

table:even-rows Element (new in Child Relations <table:even-rows - (table:style-name="(<NCName>)?" (table:paragraph-style-name="(<NCName>)?" )? + (table:style-name="(#NCName)?" (table:paragraph-style-name="(#NCName)?" )? )>  @@ -17431,7 +17431,7 @@

table:filter Element

<table:filter (table:target-range-address="string] | string] | string]" )? (table:condition-source="self | cell-range" )? (table:condition-source-range-address="string] | string] | string]" )? - (table:display-duplicates="<boolean>" )? + (table:display-duplicates="#boolean" )? <table:filter-condition ... > | <table:filter-and ... > | <table:filter-or ... >>  @@ -17493,7 +17493,7 @@

table:filter-condition Element Child Relations - <table:filter-condition table:field-number="<nonNegativeInteger>" table:value="<string> | <double>" table:operator="<string>" (table:case-sensitive="<string>" )? + <table:filter-condition table:field-number="#nonNegativeInteger" table:value="#string | #double" table:operator="#string" (table:case-sensitive="#string" )? (table:data-type="text | number" )? (<table:filter-set-item ... >)* >  @@ -17549,7 +17549,7 @@

table:filter-set-item Element& Child Relations - <table:filter-set-item table:value="<string>" >  + <table:filter-set-item table:value="#string" > 
@@ -17577,7 +17577,7 @@

table:first-column Element ( Child Relations <table:first-column - (table:style-name="(<NCName>)?" (table:paragraph-style-name="(<NCName>)?" )? + (table:style-name="(#NCName)?" (table:paragraph-style-name="(#NCName)?" )? )>  @@ -17606,7 +17606,7 @@

table:first-row Element (new in Child Relations <table:first-row - (table:style-name="(<NCName>)?" (table:paragraph-style-name="(<NCName>)?" )? + (table:style-name="(#NCName)?" (table:paragraph-style-name="(#NCName)?" )? )>  @@ -17635,8 +17635,8 @@

table:help-message Element

Child Relations - <table:help-message (table:title="<string>" )? - (table:display="<boolean>" )? + <table:help-message (table:title="#string" )? + (table:display="#boolean" )? (<text:p ... >)* >  @@ -17667,8 +17667,8 @@

table:highlighted-range Element< Child Relations <table:highlighted-range (table:cell-range-address="string] | string] | string]" )? - table:direction="from-another-table | to-another-table | from-same-table" (table:contains-error="<boolean>" )? - | table:marked-invalid="<boolean>" >  + table:direction="from-another-table | to-another-table | from-same-table" (table:contains-error="#boolean" )? + | table:marked-invalid="#boolean" > 
@@ -17703,10 +17703,10 @@

table:insertion Element

Child Relations - <table:insertion table:type="row | column | table" table:position="<integer>" (table:count="<positiveInteger>" )? - (table:table="<integer>" )? - table:id="<string>" (table:acceptance-state="accepted | rejected | pending" )? - (table:rejecting-change-id="<string>" )? + <table:insertion table:type="row | column | table" table:position="#integer" (table:count="#positiveInteger" )? + (table:table="#integer" )? + table:id="#string" (table:acceptance-state="accepted | rejected | pending" )? + (table:rejecting-change-id="#string" )? <office:change-info ... > (<table:dependencies ... >)? (<table:deletions ... >)? >  @@ -17736,7 +17736,7 @@

table:insertion-cut-off Element< Child Relations - <table:insertion-cut-off table:id="<string>" table:position="<integer>" >  + <table:insertion-cut-off table:id="#string" table:position="#integer" > 
@@ -17765,8 +17765,8 @@

table:iteration Element

Child Relations <table:iteration (table:status="enable | disable" )? - (table:steps="<positiveInteger>" )? - (table:maximum-difference="<double>" )? + (table:steps="#positiveInteger" )? + (table:maximum-difference="#double" )? >  @@ -17853,7 +17853,7 @@

table:last-column Element (ne Child Relations <table:last-column - (table:style-name="(<NCName>)?" (table:paragraph-style-name="(<NCName>)?" )? + (table:style-name="(#NCName)?" (table:paragraph-style-name="(#NCName)?" )? )>  @@ -17882,7 +17882,7 @@

table:last-row Element (new in O Child Relations <table:last-row - (table:style-name="(<NCName>)?" (table:paragraph-style-name="(<NCName>)?" )? + (table:style-name="(#NCName)?" (table:paragraph-style-name="(#NCName)?" )? )>  @@ -17916,8 +17916,8 @@

table:movement Element

Child Relations - <table:movement table:id="<string>" (table:acceptance-state="accepted | rejected | pending" )? - (table:rejecting-change-id="<string>" )? + <table:movement table:id="#string" (table:acceptance-state="accepted | rejected | pending" )? + (table:rejecting-change-id="#string" )? <table:source-range-address ... ><table:target-range-address ... ><office:change-info ... > (<table:dependencies ... >)? (<table:deletions ... >)? >  @@ -17948,8 +17948,8 @@

table:movement-cut-off Element Child Relations - <table:movement-cut-off table:position="<integer>" | - (table:start-position="<integer>" table:end-position="<integer>" )>  + <table:movement-cut-off table:position="#integer" | + (table:start-position="#integer" table:end-position="#integer" )> 
@@ -17978,7 +17978,7 @@

table:named-expression Element Child Relations <table:named-expression - (table:name="<string>" table:expression="<string>" (table:base-cell-address="string]" )? + (table:name="#string" table:expression="#string" (table:base-cell-address="string]" )? )>  @@ -18041,7 +18041,7 @@

table:named-range Element

Child Relations <table:named-range - (table:name="<string>" table:cell-range-address="string] | string] | string]" (table:base-cell-address="string]" )? + (table:name="#string" table:cell-range-address="string] | string] | string]" (table:base-cell-address="string]" )? (table:range-usable-as="none | START_list(print-range | filter | repeat-row | repeat-column)+ END_list" )? @@ -18073,7 +18073,7 @@

table:null-date Element

Child Relations <table:null-date (table:value-type="date" )? - (table:date-value="<date>" )? + (table:date-value="#date" )? >  @@ -18102,7 +18102,7 @@

table:odd-columns Element (ne Child Relations <table:odd-columns - (table:style-name="(<NCName>)?" (table:paragraph-style-name="(<NCName>)?" )? + (table:style-name="(#NCName)?" (table:paragraph-style-name="(#NCName)?" )? )>  @@ -18131,7 +18131,7 @@

table:odd-rows Element (new in O Child Relations <table:odd-rows - (table:style-name="(<NCName>)?" (table:paragraph-style-name="(<NCName>)?" )? + (table:style-name="(#NCName)?" (table:paragraph-style-name="(#NCName)?" )? )>  @@ -18159,7 +18159,7 @@

table:operation Element

Child Relations - <table:operation table:name="trace-dependents | remove-dependents | trace-precedents | remove-precedents | trace-errors" table:index="<nonNegativeInteger>" >  + <table:operation table:name="trace-dependents | remove-dependents | trace-precedents | remove-precedents | trace-errors" table:index="#nonNegativeInteger" > 
@@ -18186,7 +18186,7 @@

table:previous Element

Child Relations - <table:previous (table:id="<string>" )? + <table:previous (table:id="#string" )? <table:change-track-table-cell ... >>  @@ -18221,13 +18221,13 @@

table:scenario Element

Child Relations - <table:scenario table:scenario-ranges="<string>" table:is-active="<boolean>" (table:display-border="<boolean>" )? + <table:scenario table:scenario-ranges="#string" table:is-active="#boolean" (table:display-border="#boolean" )? (table:border-color="string]" )? - (table:copy-back="<boolean>" )? - (table:copy-styles="<boolean>" )? - (table:copy-formulas="<boolean>" )? - (table:comment="<string>" )? - (table:protected="<boolean>" )? + (table:copy-back="#boolean" )? + (table:copy-styles="#boolean" )? + (table:copy-formulas="#boolean" )? + (table:comment="#string" )? + (table:protected="#boolean" )? >  @@ -18306,14 +18306,14 @@

table:sort Element

Child Relations - <table:sort (table:bind-styles-to-content="<boolean>" )? + <table:sort (table:bind-styles-to-content="#boolean" )? (table:target-range-address="string] | string] | string]" )? - (table:case-sensitive="<boolean>" )? + (table:case-sensitive="#boolean" )? (table:language="token]" )? (table:country="token]" )? (table:script="token]" )? - (table:rfc-language-tag="<language>" )? - (table:algorithm="<string>" )? + (table:rfc-language-tag="#language" )? + (table:algorithm="#string" )? (table:embedded-number-behavior="alpha-numeric | integer | double" )? (<table:sort-by ... >)+ >  @@ -18343,7 +18343,7 @@

table:sort-by Element

Child Relations - <table:sort-by table:field-number="<nonNegativeInteger>" (table:data-type="text | number | automatic | <string>" )? + <table:sort-by table:field-number="#nonNegativeInteger" (table:data-type="text | number | automatic | #string" )? (table:order="ascending | descending" )? >  @@ -18372,7 +18372,7 @@

table:sort-groups Element

Child Relations - <table:sort-groups (table:data-type="text | number | automatic | <string>" )? + <table:sort-groups (table:data-type="text | number | automatic | #string" )? (table:order="ascending | descending" )? >  @@ -18437,8 +18437,8 @@

table:source-range-address El Child Relations <table:source-range-address - (table:column="<integer>" table:row="<integer>" table:table="<integer>" ) | - (table:start-column="<integer>" table:start-row="<integer>" table:start-table="<integer>" table:end-column="<integer>" table:end-row="<integer>" table:end-table="<integer>" )>  + (table:column="#integer" table:row="#integer" table:table="#integer" ) | + (table:start-column="#integer" table:start-row="#integer" table:start-table="#integer" table:end-column="#integer" table:end-row="#integer" table:end-table="#integer" )> 
@@ -18468,8 +18468,8 @@

table:source-service Element Child Relations - <table:source-service table:name="<string>" table:source-name="<string>" table:object-name="<string>" (table:user-name="<string>" )? - (table:password="<string>" )? + <table:source-service table:name="#string" table:source-name="#string" table:object-name="#string" (table:user-name="#string" )? + (table:password="#string" )? >  @@ -18497,7 +18497,7 @@

table:subtotal-field Element Child Relations - <table:subtotal-field table:field-number="<nonNegativeInteger>" table:function="average | count | countnums | max | min | product | stdev | stdevp | sum | var | varp | <string>" >  + <table:subtotal-field table:field-number="#nonNegativeInteger" table:function="average | count | countnums | max | min | product | stdev | stdevp | sum | var | varp | #string" > 
@@ -18524,7 +18524,7 @@

table:subtotal-rule Element

Child Relations - <table:subtotal-rule table:group-by-field-number="<nonNegativeInteger>" (<table:subtotal-field ... >)* >  + <table:subtotal-rule table:group-by-field-number="#nonNegativeInteger" (<table:subtotal-field ... >)* > 
@@ -18554,9 +18554,9 @@

table:subtotal-rules Element Child Relations - <table:subtotal-rules (table:bind-styles-to-content="<boolean>" )? - (table:case-sensitive="<boolean>" )? - (table:page-breaks-on-group-change="<boolean>" )? + <table:subtotal-rules (table:bind-styles-to-content="#boolean" )? + (table:case-sensitive="#boolean" )? + (table:page-breaks-on-group-change="#boolean" )? (<table:sort-groups ... >)? (<table:subtotal-rule ... >)* >  @@ -18632,22 +18632,22 @@

table:table Element

Child Relations - <table:table (table:name="<string>" )? - (table:style-name="(<NCName>)?" )? - (table:template-name="<string>" )? - (table:use-first-row-styles="<boolean>" )? - (table:use-last-row-styles="<boolean>" )? - (table:use-first-column-styles="<boolean>" )? - (table:use-last-column-styles="<boolean>" )? - (table:use-banding-rows-styles="<boolean>" )? - (table:use-banding-columns-styles="<boolean>" )? - (table:protected="<boolean>" )? - (table:protection-key="<string>" )? - (table:protection-key-digest-algorithm="<anyIRI>" )? - (table:print="<boolean>" )? - (table:print-ranges="<string>" )? - (xml:id="<ID>" )? - (table:is-sub-table="<boolean>" )? + <table:table (table:name="#string" )? + (table:style-name="(#NCName)?" )? + (table:template-name="#string" )? + (table:use-first-row-styles="#boolean" )? + (table:use-last-row-styles="#boolean" )? + (table:use-first-column-styles="#boolean" )? + (table:use-last-column-styles="#boolean" )? + (table:use-banding-rows-styles="#boolean" )? + (table:use-banding-columns-styles="#boolean" )? + (table:protected="#boolean" )? + (table:protection-key="#string" )? + (table:protection-key-digest-algorithm="#anyIRI" )? + (table:print="#boolean" )? + (table:print-ranges="#string" )? + (xml:id="#ID" )? + (table:is-sub-table="#boolean" )? (<table:title ... >)? (<table:desc ... >)? (<table:table-source ... >)? @@ -18761,34 +18761,34 @@

table:table-cell Element

Child Relations - <table:table-cell (table:number-columns-repeated="<positiveInteger>" )? - (table:style-name="(<NCName>)?" )? - (table:content-validation-name="<string>" )? - (table:formula="<string>" )? + <table:table-cell (table:number-columns-repeated="#positiveInteger" )? + (table:style-name="(#NCName)?" )? + (table:content-validation-name="#string" )? + (table:formula="#string" )? ( - (office:value-type="float" office:value="<double>" ) | - (office:value-type="percentage" office:value="<double>" ) | - (office:value-type="currency" office:value="<double>" (office:currency="<string>" )? + (office:value-type="float" office:value="#double" ) | + (office:value-type="percentage" office:value="#double" ) | + (office:value-type="currency" office:value="#double" (office:currency="#string" )? ) | - (office:value-type="date" office:date-value="<date> | <dateTime>" ) | - (office:value-type="time" office:time-value="<duration>" ) | - (office:value-type="boolean" office:boolean-value="<boolean>" ) | - (office:value-type="string" (office:string-value="<string>" )? + (office:value-type="date" office:date-value="#date | #dateTime" ) | + (office:value-type="time" office:time-value="#duration" ) | + (office:value-type="boolean" office:boolean-value="#boolean" ) | + (office:value-type="string" (office:string-value="#string" )? ))? - (table:protect="<boolean>" )? - (table:protected="<boolean>" )? - (xml:id="<ID>" )? + (table:protect="#boolean" )? + (table:protected="#boolean" )? + (xml:id="#ID" )? ( - (xhtml:about="<anyURI> | string]" xhtml:property=" + (xhtml:about="#anyURI | string]" xhtml:property=" START_list(string])+ END_list" ( (xhtml:datatype="string]" )? - (xhtml:content="<string>" )? + (xhtml:content="#string" )? )))? - (table:number-columns-spanned="<positiveInteger>" )? - (table:number-rows-spanned="<positiveInteger>" )? - (table:number-matrix-columns-spanned="<positiveInteger>" )? - (table:number-matrix-rows-spanned="<positiveInteger>" )? + (table:number-columns-spanned="#positiveInteger" )? + (table:number-rows-spanned="#positiveInteger" )? + (table:number-matrix-columns-spanned="#positiveInteger" )? + (table:number-matrix-rows-spanned="#positiveInteger" )? ( (<table:cell-range-source ... >)? (<office:annotation ... >)? @@ -18826,11 +18826,11 @@

table:table-column Element

Child Relations - <table:table-column (table:number-columns-repeated="<positiveInteger>" )? - (table:style-name="(<NCName>)?" )? + <table:table-column (table:number-columns-repeated="#positiveInteger" )? + (table:style-name="(#NCName)?" )? (table:visibility="visible | collapse | filter" )? - (table:default-cell-style-name="(<NCName>)?" )? - (xml:id="<ID>" )? + (table:default-cell-style-name="(#NCName)?" )? + (xml:id="#ID" )? >  @@ -18862,7 +18862,7 @@

table:table-column-group Elemen Child Relations - <table:table-column-group (table:display="<boolean>" )? + <table:table-column-group (table:display="#boolean" )? (<table:table-column-group ... > | (<table:table-columns ... > | (<table:table-column ... >)+ (<table:table-header-columns ... > (<table:table-columns ... > | (<table:table-column ... >)+ )? )? @@ -18986,11 +18986,11 @@

table:table-row Element

Child Relations - <table:table-row (table:number-rows-repeated="<positiveInteger>" )? - (table:style-name="(<NCName>)?" )? - (table:default-cell-style-name="(<NCName>)?" )? + <table:table-row (table:number-rows-repeated="#positiveInteger" )? + (table:style-name="(#NCName)?" )? + (table:default-cell-style-name="(#NCName)?" )? (table:visibility="visible | collapse | filter" )? - (xml:id="<ID>" )? + (xml:id="#ID" )? (<table:table-cell ... > | <table:covered-table-cell ... >)+ >  @@ -19023,7 +19023,7 @@

table:table-row-group Element< Child Relations - <table:table-row-group (table:display="<boolean>" )? + <table:table-row-group (table:display="#boolean" )? (<table:table-row-group ... > | (<table:table-rows ... > | ( (<text:soft-page-break ... >)? <table:table-row ... >)+ (<table:table-header-rows ... > (<table:table-rows ... > | ( (<text:soft-page-break ... >)? @@ -19095,11 +19095,11 @@

table:table-source Element

Child Relations <table:table-source (table:mode="copy-all | copy-results-only" )? - (table:table-name="<string>" )? - xlink:type="simple" xlink:href="<anyIRI>" (xlink:actuate="onRequest" )? - (table:filter-name="<string>" )? - (table:filter-options="<string>" )? - (table:refresh-delay="<duration>" )? + (table:table-name="#string" )? + xlink:type="simple" xlink:href="#anyIRI" (xlink:actuate="onRequest" )? + (table:filter-name="#string" )? + (table:filter-options="#string" )? + (table:refresh-delay="#duration" )? >  @@ -19140,7 +19140,7 @@

table:table-template Element&nb Child Relations - <table:table-template table:name="<string>" table:first-row-start-column="row | column" table:first-row-end-column="row | column" table:last-row-start-column="row | column" table:last-row-end-column="row | column" (<table:first-row ... >)? + <table:table-template table:name="#string" table:first-row-start-column="row | column" table:first-row-end-column="row | column" table:last-row-start-column="row | column" table:last-row-end-column="row | column" (<table:first-row ... >)? (<table:last-row ... >)? (<table:first-column ... >)? (<table:last-column ... >)? @@ -19184,8 +19184,8 @@

table:target-range-address El Child Relations <table:target-range-address - (table:column="<integer>" table:row="<integer>" table:table="<integer>" ) | - (table:start-column="<integer>" table:start-row="<integer>" table:start-table="<integer>" table:end-column="<integer>" table:end-row="<integer>" table:end-table="<integer>" )>  + (table:column="#integer" table:row="#integer" table:table="#integer" ) | + (table:start-column="#integer" table:start-row="#integer" table:start-table="#integer" table:end-column="#integer" table:end-row="#integer" table:end-table="#integer" )> 
@@ -19241,7 +19241,7 @@

table:tracked-changes Element< Child Relations - <table:tracked-changes (table:track-changes="<boolean>" )? + <table:tracked-changes (table:track-changes="#boolean" )? (<table:cell-content-change ... > | <table:insertion ... > | <table:deletion ... > | <table:movement ... >)* >  @@ -19410,13 +19410,13 @@

text:a Element

Child Relations - <text:a (office:name="<string>" )? - (office:title="<string>" )? - xlink:type="simple" xlink:href="<anyIRI>" (xlink:actuate="onRequest" )? - (office:target-frame-name="_self | _blank | _parent | _top | <string>" )? + <text:a (office:name="#string" )? + (office:title="#string" )? + xlink:type="simple" xlink:href="#anyIRI" (xlink:actuate="onRequest" )? + (office:target-frame-name="_self | _blank | _parent | _top | #string" )? (xlink:show="new | replace" )? - (text:style-name="(<NCName>)?" )? - (text:visited-style-name="(<NCName>)?" )? + (text:style-name="(#NCName)?" )? + (text:visited-style-name="(#NCName)?" )? (<office:event-listeners ... >)? (TEXT | <text:s ... > | <text:tab ... > | <text:line-break ... > | <text:soft-page-break ... > | <text:span ... > | <text:meta ... > | <text:bookmark ... > | <text:bookmark-start ... > | <text:bookmark-end ... > | <text:reference-mark ... > | <text:reference-mark-start ... > | <text:reference-mark-end ... > | <text:note ... > | <text:ruby ... > | <office:annotation ... > | <office:annotation-end ... > | <text:change ... > | <text:change-start ... > | <text:change-end ... > | <draw:rect ... > | <draw:line ... > | <draw:polyline ... > | <draw:polygon ... > | <draw:regular-polygon ... > | <draw:path ... > | <draw:circle ... > | <draw:ellipse ... > | <draw:g ... > | <draw:page-thumbnail ... > | <draw:frame ... > | <draw:measure ... > | <draw:caption ... > | <draw:connector ... > | <draw:control ... > | <dr3d:scene ... > | <draw:custom-shape ... > | <draw:a ... > | <text:date ... > | <text:time ... > | <text:page-number ... > | <text:page-continuation ... > | <text:sender-firstname ... > | <text:sender-lastname ... > | <text:sender-initials ... > | <text:sender-title ... > | <text:sender-position ... > | <text:sender-email ... > | <text:sender-phone-private ... > | <text:sender-fax ... > | <text:sender-company ... > | <text:sender-phone-work ... > | <text:sender-street ... > | <text:sender-city ... > | <text:sender-postal-code ... > | <text:sender-country ... > | <text:sender-state-or-province ... > | <text:author-name ... > | <text:author-initials ... > | <text:chapter ... > | <text:file-name ... > | <text:template-name ... > | <text:sheet-name ... > | <text:variable-set ... > | <text:variable-get ... > | <text:variable-input ... > | <text:user-field-get ... > | <text:user-field-input ... > | <text:sequence ... > | <text:expression ... > | <text:text-input ... > | <text:initial-creator ... > | <text:creation-date ... > | <text:creation-time ... > | <text:description ... > | <text:user-defined ... > | <text:print-time ... > | <text:print-date ... > | <text:printed-by ... > | <text:title ... > | <text:subject ... > | <text:keywords ... > | <text:editing-cycles ... > | <text:editing-duration ... > | <text:modification-time ... > | <text:modification-date ... > | <text:creator ... > | <CHOICE_NAME_CLASS ... > | <text:database-display ... > | <text:database-next ... > | <text:database-row-select ... > | <text:database-row-number ... > | <text:database-name ... > | <text:page-variable-set ... > | <text:page-variable-get ... > | <text:placeholder ... > | <text:conditional-text ... > | <text:hidden-text ... > | <CHOICE_NAME_CLASS ... > | <text:note-ref ... > | <text:sequence-ref ... > | <text:script ... > | <text:execute-macro ... > | <text:hidden-paragraph ... > | <text:dde-connection ... > | <text:measure ... > | <text:table-formula ... > | <text:meta-field ... > | <text:toc-mark-start ... > | <text:toc-mark-end ... > | <text:toc-mark ... > | <text:user-index-mark-start ... > | <text:user-index-mark-end ... > | <text:user-index-mark ... > | <text:alphabetical-index-mark-start ... > | <text:alphabetical-index-mark-end ... > | <text:alphabetical-index-mark ... > | <text:bibliography-mark ... > | <presentation:header ... > | <presentation:footer ... > | <presentation:date-time ... >)+ >  @@ -19463,11 +19463,11 @@

text:alphabetical-index Element< Child Relations - <text:alphabetical-index (text:style-name="(<NCName>)?" )? - text:name="<string>" (text:protected="<boolean>" )? - (text:protection-key="<string>" )? - (text:protection-key-digest-algorithm="<anyIRI>" )? - (xml:id="<ID>" )? + <text:alphabetical-index (text:style-name="(#NCName)?" )? + text:name="#string" (text:protected="#boolean" )? + (text:protection-key="#string" )? + (text:protection-key-digest-algorithm="#anyIRI" )? + (xml:id="#ID" )? <text:alphabetical-index-source ... ><text:index-body ... >>  @@ -19503,7 +19503,7 @@

text:alphabetical Child Relations - <text:alphabetical-index-auto-mark-file xlink:type="simple" xlink:href="<anyIRI>" >  + <text:alphabetical-index-auto-mark-file xlink:type="simple" xlink:href="#anyIRI" > 
@@ -19535,7 +19535,7 @@

text:alphabetical Child Relations - <text:alphabetical-index-entry-template text:outline-level="1 | 2 | 3 | separator" text:style-name="(<NCName>)?" (<text:index-entry-chapter ... > | <text:index-entry-page-number ... > | <text:index-entry-text ... > | <text:index-entry-span ... > | <text:index-entry-tab-stop ... >)* >  + <text:alphabetical-index-entry-template text:outline-level="1 | 2 | 3 | separator" text:style-name="(#NCName)?" (<text:index-entry-chapter ... > | <text:index-entry-page-number ... > | <text:index-entry-text ... > | <text:index-entry-span ... > | <text:index-entry-tab-stop ... >)* > 
@@ -19573,12 +19573,12 @@

text:alphabetical-index-mar Child Relations - <text:alphabetical-index-mark text:string-value="<string>" (text:key1="<string>" )? - (text:key2="<string>" )? - (text:string-value-phonetic="<string>" )? - (text:key1-phonetic="<string>" )? - (text:key2-phonetic="<string>" )? - (text:main-entry="<boolean>" )? + <text:alphabetical-index-mark text:string-value="#string" (text:key1="#string" )? + (text:key2="#string" )? + (text:string-value-phonetic="#string" )? + (text:key1-phonetic="#string" )? + (text:key2-phonetic="#string" )? + (text:main-entry="#boolean" )? >  @@ -19611,7 +19611,7 @@

text:alphabetical-index Child Relations - <text:alphabetical-index-mark-end text:id="<string>" >  + <text:alphabetical-index-mark-end text:id="#string" > 
@@ -19649,12 +19649,12 @@

text:alphabetical-ind Child Relations - <text:alphabetical-index-mark-start text:id="<string>" (text:key1="<string>" )? - (text:key2="<string>" )? - (text:string-value-phonetic="<string>" )? - (text:key1-phonetic="<string>" )? - (text:key2-phonetic="<string>" )? - (text:main-entry="<boolean>" )? + <text:alphabetical-index-mark-start text:id="#string" (text:key1="#string" )? + (text:key2="#string" )? + (text:string-value-phonetic="#string" )? + (text:key1-phonetic="#string" )? + (text:key2-phonetic="#string" )? + (text:main-entry="#boolean" )? >  @@ -19699,21 +19699,21 @@

text:alphabetical-index-s Child Relations <text:alphabetical-index-source (text:index-scope="document | chapter" )? - (text:relative-tab-stop-position="<boolean>" )? - (text:ignore-case="<boolean>" )? - (text:main-entry-style-name="(<NCName>)?" )? - (text:alphabetical-separators="<boolean>" )? - (text:combine-entries="<boolean>" )? - (text:combine-entries-with-dash="<boolean>" )? - (text:combine-entries-with-pp="<boolean>" )? - (text:use-keys-as-entries="<boolean>" )? - (text:capitalize-entries="<boolean>" )? - (text:comma-separated="<boolean>" )? + (text:relative-tab-stop-position="#boolean" )? + (text:ignore-case="#boolean" )? + (text:main-entry-style-name="(#NCName)?" )? + (text:alphabetical-separators="#boolean" )? + (text:combine-entries="#boolean" )? + (text:combine-entries-with-dash="#boolean" )? + (text:combine-entries-with-pp="#boolean" )? + (text:use-keys-as-entries="#boolean" )? + (text:capitalize-entries="#boolean" )? + (text:comma-separated="#boolean" )? (fo:language="token]" )? (fo:country="token]" )? (fo:script="token]" )? - (style:rfc-language-tag="<language>" )? - (text:sort-algorithm="<string>" )? + (style:rfc-language-tag="#language" )? + (text:sort-algorithm="#string" )? (<text:index-title-template ... >)? (<text:alphabetical-index-entry-template ... >)* >  @@ -19748,7 +19748,7 @@

text:author-initials Element Child Relations - <text:author-initials (text:fixed="<boolean>" )? + <text:author-initials (text:fixed="#boolean" )? TEXT>  @@ -19782,7 +19782,7 @@

text:author-name Element

Child Relations - <text:author-name (text:fixed="<boolean>" )? + <text:author-name (text:fixed="#boolean" )? TEXT>  @@ -19828,11 +19828,11 @@

text:bibliography Element

Child Relations - <text:bibliography (text:style-name="(<NCName>)?" )? - text:name="<string>" (text:protected="<boolean>" )? - (text:protection-key="<string>" )? - (text:protection-key-digest-algorithm="<anyIRI>" )? - (xml:id="<ID>" )? + <text:bibliography (text:style-name="(#NCName)?" )? + text:name="#string" (text:protected="#boolean" )? + (text:protection-key="#string" )? + (text:protection-key-digest-algorithm="#anyIRI" )? + (xml:id="#ID" )? <text:bibliography-source ... ><text:index-body ... >>  @@ -19868,15 +19868,15 @@

text:bibliography-config Child Relations - <text:bibliography-configuration (text:prefix="<string>" )? - (text:suffix="<string>" )? - (text:numbered-entries="<boolean>" )? - (text:sort-by-position="<boolean>" )? + <text:bibliography-configuration (text:prefix="#string" )? + (text:suffix="#string" )? + (text:numbered-entries="#boolean" )? + (text:sort-by-position="#boolean" )? (fo:language="token]" )? (fo:country="token]" )? (fo:script="token]" )? - (style:rfc-language-tag="<language>" )? - (text:sort-algorithm="<string>" )? + (style:rfc-language-tag="#language" )? + (text:sort-algorithm="#string" )? (<text:sort-key ... >)* >  @@ -19907,7 +19907,7 @@

text:bibliography-entry Child Relations - <text:bibliography-entry-template text:bibliography-type="article | book | booklet | conference | custom1 | custom2 | custom3 | custom4 | custom5 | email | inbook | incollection | inproceedings | journal | manual | mastersthesis | misc | phdthesis | proceedings | techreport | unpublished | www" text:style-name="(<NCName>)?" (<text:index-entry-span ... > | <text:index-entry-tab-stop ... > | <text:index-entry-bibliography ... >)* >  + <text:bibliography-entry-template text:bibliography-type="article | book | booklet | conference | custom1 | custom2 | custom3 | custom4 | custom5 | email | inbook | incollection | inproceedings | journal | manual | mastersthesis | misc | phdthesis | proceedings | techreport | unpublished | www" text:style-name="(#NCName)?" (<text:index-entry-span ... > | <text:index-entry-tab-stop ... > | <text:index-entry-bibliography ... >)* > 
@@ -19971,7 +19971,7 @@

text:bibliography-mark Element Child Relations - <text:bibliography-mark text:bibliography-type="article | book | booklet | conference | custom1 | custom2 | custom3 | custom4 | custom5 | email | inbook | incollection | inproceedings | journal | manual | mastersthesis | misc | phdthesis | proceedings | techreport | unpublished | www" (CHOICE_NAME_CLASS="<string>" )* TEXT>  + <text:bibliography-mark text:bibliography-type="article | book | booklet | conference | custom1 | custom2 | custom3 | custom4 | custom5 | email | inbook | incollection | inproceedings | journal | manual | mastersthesis | misc | phdthesis | proceedings | techreport | unpublished | www" (CHOICE_NAME_CLASS="#string" )* TEXT> 
@@ -20032,7 +20032,7 @@

text:bookmark Element

Child Relations - <text:bookmark text:name="<string>" (xml:id="<ID>" )? + <text:bookmark text:name="#string" (xml:id="#ID" )? >  @@ -20065,7 +20065,7 @@

text:bookmark-end Element

Child Relations - <text:bookmark-end text:name="<string>" >  + <text:bookmark-end text:name="#string" > 
@@ -20099,7 +20099,7 @@

text:bookmark-ref Element

Child Relations - <CHOICE_NAME_CLASS TEXT (text:ref-name="<string>" )? + <CHOICE_NAME_CLASS TEXT (text:ref-name="#string" )? (text:reference-format="page | chapter | direction | text | number-no-superior | number-all-superior | number" )? >  @@ -20138,13 +20138,13 @@

text:bookmark-start Element

Child Relations - <text:bookmark-start text:name="<string>" (xml:id="<ID>" )? + <text:bookmark-start text:name="#string" (xml:id="#ID" )? ( - (xhtml:about="<anyURI> | string]" xhtml:property=" + (xhtml:about="#anyURI | string]" xhtml:property=" START_list(string])+ END_list" ( (xhtml:datatype="string]" )? - (xhtml:content="<string>" )? + (xhtml:content="#string" )? )))? >  @@ -20191,7 +20191,7 @@

text:change Element

Child Relations - <text:change text:change-id="<IDREF>" >  + <text:change text:change-id="#IDREF" > 
@@ -20236,7 +20236,7 @@

text:change-end Element

Child Relations - <text:change-end text:change-id="<IDREF>" >  + <text:change-end text:change-id="#IDREF" > 
@@ -20281,7 +20281,7 @@

text:change-start Element

Child Relations - <text:change-start text:change-id="<IDREF>" >  + <text:change-start text:change-id="#IDREF" > 
@@ -20312,7 +20312,7 @@

text:changed-region Element

Child Relations <text:changed-region - (xml:id="<ID>" (text:id="<NCName>" )? + (xml:id="#ID" (text:id="#NCName" )? )<text:insertion ... > | <text:deletion ... > | <text:format-change ... >>  @@ -20347,7 +20347,7 @@

text:chapter Element

Child Relations - <text:chapter text:display="name | number | number-and-name | plain-number-and-name | plain-number" text:outline-level="<nonNegativeInteger>" TEXT>  + <text:chapter text:display="name | number | number-and-name | plain-number-and-name | plain-number" text:outline-level="#nonNegativeInteger" TEXT> 
@@ -20382,8 +20382,8 @@

text:character-count Element Child Relations - <CHOICE_NAME_CLASS ( (style:num-format="(1 | i | I | <string>)?" | - (style:num-format="a | A" (style:num-letter-sync="<boolean>" )? + <CHOICE_NAME_CLASS ( (style:num-format="(1 | i | I | #string)?" | + (style:num-format="a | A" (style:num-letter-sync="#boolean" )? ))? )? TEXT>  @@ -20422,7 +20422,7 @@

text:conditional-text Element< Child Relations - <text:conditional-text text:condition="<string>" text:string-value-if-true="<string>" text:string-value-if-false="<string>" (text:current-value="<boolean>" )? + <text:conditional-text text:condition="#string" text:string-value-if-true="#string" text:string-value-if-false="#string" (text:current-value="#boolean" )? TEXT>  @@ -20458,9 +20458,9 @@

text:creation-date Element

Child Relations - <text:creation-date (text:fixed="<boolean>" )? - (style:data-style-name="(<NCName>)?" )? - (text:date-value="<date> | <dateTime>" )? + <text:creation-date (text:fixed="#boolean" )? + (style:data-style-name="(#NCName)?" )? + (text:date-value="#date | #dateTime" )? TEXT>  @@ -20496,9 +20496,9 @@

text:creation-time Element

Child Relations - <text:creation-time (text:fixed="<boolean>" )? - (style:data-style-name="(<NCName>)?" )? - (text:time-value="<time> | <dateTime>" )? + <text:creation-time (text:fixed="#boolean" )? + (style:data-style-name="(#NCName)?" )? + (text:time-value="#time | #dateTime" )? TEXT>  @@ -20532,7 +20532,7 @@

text:creator Element

Child Relations - <text:creator (text:fixed="<boolean>" )? + <text:creator (text:fixed="#boolean" )? TEXT>  @@ -20572,9 +20572,9 @@

text:database-display Element< Child Relations <text:database-display - (text:table-name="<string>" (text:table-type="table | query | command" )? - text:database-name="<string>" | EMPTY | <form:connection-resource ... >) (style:data-style-name="(<NCName>)?" )? - text:column-name="<string>" TEXT>  + (text:table-name="#string" (text:table-type="table | query | command" )? + text:database-name="#string" | EMPTY | <form:connection-resource ... >) (style:data-style-name="(#NCName)?" )? + text:column-name="#string" TEXT> 
@@ -20611,8 +20611,8 @@

text:database-name Element

Child Relations <text:database-name - (text:table-name="<string>" (text:table-type="table | query | command" )? - text:database-name="<string>" | EMPTY | <form:connection-resource ... >)TEXT>  + (text:table-name="#string" (text:table-type="table | query | command" )? + text:database-name="#string" | EMPTY | <form:connection-resource ... >)TEXT> 
@@ -20649,8 +20649,8 @@

text:database-next Element

Child Relations <text:database-next - (text:table-name="<string>" (text:table-type="table | query | command" )? - text:database-name="<string>" | EMPTY | <form:connection-resource ... >) (text:condition="<string>" )? + (text:table-name="#string" (text:table-type="table | query | command" )? + text:database-name="#string" | EMPTY | <form:connection-resource ... >) (text:condition="#string" )? >  @@ -20692,12 +20692,12 @@

text:database-row-number Elemen Child Relations <text:database-row-number - (text:table-name="<string>" (text:table-type="table | query | command" )? - text:database-name="<string>" | EMPTY | <form:connection-resource ... >) ( (style:num-format="(1 | i | I | <string>)?" | - (style:num-format="a | A" (style:num-letter-sync="<boolean>" )? + (text:table-name="#string" (text:table-type="table | query | command" )? + text:database-name="#string" | EMPTY | <form:connection-resource ... >) ( (style:num-format="(1 | i | I | #string)?" | + (style:num-format="a | A" (style:num-letter-sync="#boolean" )? ))? )? - (text:value="<nonNegativeInteger>" )? + (text:value="#nonNegativeInteger" )? TEXT>  @@ -20736,9 +20736,9 @@

text:database-row-select Elemen Child Relations <text:database-row-select - (text:table-name="<string>" (text:table-type="table | query | command" )? - text:database-name="<string>" | EMPTY | <form:connection-resource ... >) (text:condition="<string>" )? - (text:row-number="<nonNegativeInteger>" )? + (text:table-name="#string" (text:table-type="table | query | command" )? + text:database-name="#string" | EMPTY | <form:connection-resource ... >) (text:condition="#string" )? + (text:row-number="#nonNegativeInteger" )? >  @@ -20775,10 +20775,10 @@

text:date Element

Child Relations - <text:date (text:fixed="<boolean>" )? - (style:data-style-name="(<NCName>)?" )? - (text:date-value="<date> | <dateTime>" )? - (text:date-adjust="<duration>" )? + <text:date (text:fixed="#boolean" )? + (style:data-style-name="(#NCName)?" )? + (text:date-value="#date | #dateTime" )? + (text:date-adjust="#duration" )? TEXT>  @@ -20812,7 +20812,7 @@

text:dde-connection Element

Child Relations - <text:dde-connection text:connection-name="<string>" TEXT>  + <text:dde-connection text:connection-name="#string" TEXT> 
@@ -20842,7 +20842,7 @@

text:dde-connection-decl Elemen Child Relations - <text:dde-connection-decl office:name="<string>" office:dde-application="<string>" office:dde-topic="<string>" office:dde-item="<string>" (office:automatic-update="<boolean>" )? + <text:dde-connection-decl office:name="#string" office:dde-application="#string" office:dde-topic="#string" office:dde-item="#string" (office:automatic-update="#boolean" )? >  @@ -20971,7 +20971,7 @@

text:description Element

Child Relations - <text:description (text:fixed="<boolean>" )? + <text:description (text:fixed="#boolean" )? TEXT>  @@ -21005,7 +21005,7 @@

text:editing-cycles Element

Child Relations - <text:editing-cycles (text:fixed="<boolean>" )? + <text:editing-cycles (text:fixed="#boolean" )? TEXT>  @@ -21041,9 +21041,9 @@

text:editing-duration Element< Child Relations - <text:editing-duration (text:fixed="<boolean>" )? - (style:data-style-name="(<NCName>)?" )? - (text:duration="<duration>" )? + <text:editing-duration (text:fixed="#boolean" )? + (style:data-style-name="(#NCName)?" )? + (text:duration="#duration" )? TEXT>  @@ -21078,7 +21078,7 @@

text:execute-macro Element

Child Relations - <text:execute-macro (text:name="<string>" )? + <text:execute-macro (text:name="#string" )? (<office:event-listeners ... >)? TEXT>  @@ -21128,19 +21128,19 @@

text:expression Element

Child Relations - <text:expression (text:formula="<string>" )? + <text:expression (text:formula="#string" )? ( - (office:value-type="float" office:value="<double>" ) | - (office:value-type="percentage" office:value="<double>" ) | - (office:value-type="currency" office:value="<double>" (office:currency="<string>" )? + (office:value-type="float" office:value="#double" ) | + (office:value-type="percentage" office:value="#double" ) | + (office:value-type="currency" office:value="#double" (office:currency="#string" )? ) | - (office:value-type="date" office:date-value="<date> | <dateTime>" ) | - (office:value-type="time" office:time-value="<duration>" ) | - (office:value-type="boolean" office:boolean-value="<boolean>" ) | - (office:value-type="string" (office:string-value="<string>" )? + (office:value-type="date" office:date-value="#date | #dateTime" ) | + (office:value-type="time" office:time-value="#duration" ) | + (office:value-type="boolean" office:boolean-value="#boolean" ) | + (office:value-type="string" (office:string-value="#string" )? ))? (text:display="value | formula" )? - (style:data-style-name="(<NCName>)?" )? + (style:data-style-name="(#NCName)?" )? TEXT>  @@ -21176,7 +21176,7 @@

text:file-name Element

Child Relations <text:file-name (text:display="full | path | name | name-and-extension" )? - (text:fixed="<boolean>" )? + (text:fixed="#boolean" )? TEXT>  @@ -21386,22 +21386,22 @@

text:h Element

Child Relations - <text:h text:outline-level="<positiveInteger>" (text:restart-numbering="<boolean>" )? - (text:start-value="<nonNegativeInteger>" )? - (text:is-list-header="<boolean>" )? - (text:style-name="(<NCName>)?" )? + <text:h text:outline-level="#positiveInteger" (text:restart-numbering="#boolean" )? + (text:start-value="#nonNegativeInteger" )? + (text:is-list-header="#boolean" )? + (text:style-name="(#NCName)?" )? (text:class-names=" -START_list(<NCName>)* +START_list(#NCName)* END_list" )? - (text:cond-style-name="(<NCName>)?" )? - (xml:id="<ID>" (text:id="<NCName>" )? + (text:cond-style-name="(#NCName)?" )? + (xml:id="#ID" (text:id="#NCName" )? )? ( - (xhtml:about="<anyURI> | string]" xhtml:property=" + (xhtml:about="#anyURI | string]" xhtml:property=" START_list(string])+ END_list" ( (xhtml:datatype="string]" )? - (xhtml:content="<string>" )? + (xhtml:content="#string" )? )))? (<text:number ... >)? (TEXT | <text:s ... > | <text:tab ... > | <text:line-break ... > | <text:soft-page-break ... > | <text:span ... > | <text:meta ... > | <text:bookmark ... > | <text:bookmark-start ... > | <text:bookmark-end ... > | <text:reference-mark ... > | <text:reference-mark-start ... > | <text:reference-mark-end ... > | <text:note ... > | <text:ruby ... > | <office:annotation ... > | <office:annotation-end ... > | <text:change ... > | <text:change-start ... > | <text:change-end ... > | <draw:rect ... > | <draw:line ... > | <draw:polyline ... > | <draw:polygon ... > | <draw:regular-polygon ... > | <draw:path ... > | <draw:circle ... > | <draw:ellipse ... > | <draw:g ... > | <draw:page-thumbnail ... > | <draw:frame ... > | <draw:measure ... > | <draw:caption ... > | <draw:connector ... > | <draw:control ... > | <dr3d:scene ... > | <draw:custom-shape ... > | <draw:a ... > | <text:date ... > | <text:time ... > | <text:page-number ... > | <text:page-continuation ... > | <text:sender-firstname ... > | <text:sender-lastname ... > | <text:sender-initials ... > | <text:sender-title ... > | <text:sender-position ... > | <text:sender-email ... > | <text:sender-phone-private ... > | <text:sender-fax ... > | <text:sender-company ... > | <text:sender-phone-work ... > | <text:sender-street ... > | <text:sender-city ... > | <text:sender-postal-code ... > | <text:sender-country ... > | <text:sender-state-or-province ... > | <text:author-name ... > | <text:author-initials ... > | <text:chapter ... > | <text:file-name ... > | <text:template-name ... > | <text:sheet-name ... > | <text:variable-set ... > | <text:variable-get ... > | <text:variable-input ... > | <text:user-field-get ... > | <text:user-field-input ... > | <text:sequence ... > | <text:expression ... > | <text:text-input ... > | <text:initial-creator ... > | <text:creation-date ... > | <text:creation-time ... > | <text:description ... > | <text:user-defined ... > | <text:print-time ... > | <text:print-date ... > | <text:printed-by ... > | <text:title ... > | <text:subject ... > | <text:keywords ... > | <text:editing-cycles ... > | <text:editing-duration ... > | <text:modification-time ... > | <text:modification-date ... > | <text:creator ... > | <CHOICE_NAME_CLASS ... > | <text:database-display ... > | <text:database-next ... > | <text:database-row-select ... > | <text:database-row-number ... > | <text:database-name ... > | <text:page-variable-set ... > | <text:page-variable-get ... > | <text:placeholder ... > | <text:conditional-text ... > | <text:hidden-text ... > | <CHOICE_NAME_CLASS ... > | <text:note-ref ... > | <text:sequence-ref ... > | <text:script ... > | <text:execute-macro ... > | <text:hidden-paragraph ... > | <text:dde-connection ... > | <text:measure ... > | <text:table-formula ... > | <text:meta-field ... > | <text:toc-mark-start ... > | <text:toc-mark-end ... > | <text:toc-mark ... > | <text:user-index-mark-start ... > | <text:user-index-mark-end ... > | <text:user-index-mark ... > | <text:alphabetical-index-mark-start ... > | <text:alphabetical-index-mark-end ... > | <text:alphabetical-index-mark ... > | <text:bibliography-mark ... > | <presentation:header ... > | <presentation:footer ... > | <presentation:date-time ... > | <text:a ... >)* >  @@ -21438,7 +21438,7 @@

text:hidden-paragraph Element< Child Relations - <text:hidden-paragraph text:condition="<string>" (text:is-hidden="<boolean>" )? + <text:hidden-paragraph text:condition="#string" (text:is-hidden="#boolean" )? TEXT>  @@ -21474,7 +21474,7 @@

text:hidden-text Element

Child Relations - <text:hidden-text text:condition="<string>" text:string-value="<string>" (text:is-hidden="<boolean>" )? + <text:hidden-text text:condition="#string" text:string-value="#string" (text:is-hidden="#boolean" )? TEXT>  @@ -21520,11 +21520,11 @@

text:illustration-index Element< Child Relations - <text:illustration-index (text:style-name="(<NCName>)?" )? - text:name="<string>" (text:protected="<boolean>" )? - (text:protection-key="<string>" )? - (text:protection-key-digest-algorithm="<anyIRI>" )? - (xml:id="<ID>" )? + <text:illustration-index (text:style-name="(#NCName)?" )? + text:name="#string" (text:protected="#boolean" )? + (text:protection-key="#string" )? + (text:protection-key-digest-algorithm="#anyIRI" )? + (xml:id="#ID" )? <text:illustration-index-source ... ><text:index-body ... >>  @@ -21557,7 +21557,7 @@

text:illustration Child Relations <text:illustration-index-entry-template - (text:style-name="(<NCName>)?" (<text:index-entry-chapter ... > | <text:index-entry-page-number ... > | <text:index-entry-text ... > | <text:index-entry-span ... > | <text:index-entry-tab-stop ... >)* )>  + (text:style-name="(#NCName)?" (<text:index-entry-chapter ... > | <text:index-entry-page-number ... > | <text:index-entry-text ... > | <text:index-entry-span ... > | <text:index-entry-tab-stop ... >)* )> 
@@ -21590,9 +21590,9 @@

text:illustration-index-s Child Relations <text:illustration-index-source (text:index-scope="document | chapter" )? - (text:relative-tab-stop-position="<boolean>" )? - (text:use-caption="<boolean>" )? - (text:caption-sequence-name="<string>" )? + (text:relative-tab-stop-position="#boolean" )? + (text:use-caption="#boolean" )? + (text:caption-sequence-name="#string" )? (text:caption-sequence-format="text | category-and-value | caption" )? (<text:index-title-template ... >)? (<text:illustration-index-entry-template ... >)? @@ -21631,8 +21631,8 @@

text:image-count Element

Child Relations - <CHOICE_NAME_CLASS ( (style:num-format="(1 | i | I | <string>)?" | - (style:num-format="a | A" (style:num-letter-sync="<boolean>" )? + <CHOICE_NAME_CLASS ( (style:num-format="(1 | i | I | #string)?" | + (style:num-format="a | A" (style:num-letter-sync="#boolean" )? ))? )? TEXT>  @@ -21729,7 +21729,7 @@

text:index-entry-bibliogra Child Relations - <text:index-entry-bibliography (text:style-name="(<NCName>)?" )? + <text:index-entry-bibliography (text:style-name="(#NCName)?" )? text:bibliography-data-field="address | annote | author | bibliography-type | booktitle | chapter | custom1 | custom2 | custom3 | custom4 | custom5 | edition | editor | howpublished | identifier | institution | isbn | issn | journal | month | note | number | organizations | pages | publisher | report-type | school | series | title | url | volume | year" >  @@ -21763,9 +21763,9 @@

text:index-entry-chapter Elemen Child Relations - <text:index-entry-chapter (text:style-name="(<NCName>)?" )? + <text:index-entry-chapter (text:style-name="(#NCName)?" )? (text:display="name | number | number-and-name | plain-number | plain-number-and-name" )? - (text:outline-level="<positiveInteger>" )? + (text:outline-level="#positiveInteger" )? >  @@ -21792,7 +21792,7 @@

text:index-entry-link-end Elem Child Relations - <text:index-entry-link-end (text:style-name="(<NCName>)?" )? + <text:index-entry-link-end (text:style-name="(#NCName)?" )? >  @@ -21819,7 +21819,7 @@

text:index-entry-link-start Child Relations - <text:index-entry-link-start (text:style-name="(<NCName>)?" )? + <text:index-entry-link-start (text:style-name="(#NCName)?" )? >  @@ -21851,7 +21851,7 @@

text:index-entry-page-numbe Child Relations - <text:index-entry-page-number (text:style-name="(<NCName>)?" )? + <text:index-entry-page-number (text:style-name="(#NCName)?" )? >  @@ -21885,7 +21885,7 @@

text:index-entry-span Element< Child Relations - <text:index-entry-span (text:style-name="(<NCName>)?" )? + <text:index-entry-span (text:style-name="(#NCName)?" )? TEXT>  @@ -21922,7 +21922,7 @@

text:index-entry-tab-stop Elem Child Relations - <text:index-entry-tab-stop (text:style-name="(<NCName>)?" )? + <text:index-entry-tab-stop (text:style-name="(#NCName)?" )? (style:leader-char="string]" )? style:type="right" | (style:type="left" style:position="string]" )>  @@ -21956,7 +21956,7 @@

text:index-entry-text Element< Child Relations - <text:index-entry-text (text:style-name="(<NCName>)?" )? + <text:index-entry-text (text:style-name="(#NCName)?" )? >  @@ -21983,7 +21983,7 @@

text:index-source-style Element< Child Relations - <text:index-source-style text:style-name="<NCName>" >  + <text:index-source-style text:style-name="#NCName" > 
@@ -22011,7 +22011,7 @@

text:index-source-styles Elemen Child Relations - <text:index-source-styles text:outline-level="<positiveInteger>" (<text:index-source-style ... >)* >  + <text:index-source-styles text:outline-level="#positiveInteger" (<text:index-source-style ... >)* > 
@@ -22083,11 +22083,11 @@

text:index-title Element

Child Relations - <text:index-title (text:style-name="(<NCName>)?" )? - text:name="<string>" (text:protected="<boolean>" )? - (text:protection-key="<string>" )? - (text:protection-key-digest-algorithm="<anyIRI>" )? - (xml:id="<ID>" )? + <text:index-title (text:style-name="(#NCName)?" )? + text:name="#string" (text:protected="#boolean" )? + (text:protection-key="#string" )? + (text:protection-key-digest-algorithm="#anyIRI" )? + (xml:id="#ID" )? (<text:h ... > | <text:p ... > | <text:list ... > | <text:numbered-paragraph ... > | <table:table ... > | <text:section ... > | <text:soft-page-break ... > | <text:table-of-content ... > | <text:illustration-index ... > | <text:table-index ... > | <text:object-index ... > | <text:user-index ... > | <text:alphabetical-index ... > | <text:bibliography ... > | <draw:rect ... > | <draw:line ... > | <draw:polyline ... > | <draw:polygon ... > | <draw:regular-polygon ... > | <draw:path ... > | <draw:circle ... > | <draw:ellipse ... > | <draw:g ... > | <draw:page-thumbnail ... > | <draw:frame ... > | <draw:measure ... > | <draw:caption ... > | <draw:connector ... > | <draw:control ... > | <dr3d:scene ... > | <draw:custom-shape ... > | <draw:a ... > | <text:change ... > | <text:change-start ... > | <text:change-end ... > | <text:index-title ... >)* >  @@ -22121,7 +22121,7 @@

text:index-title-template Elem Child Relations - <text:index-title-template (text:style-name="(<NCName>)?" )? + <text:index-title-template (text:style-name="(#NCName)?" )? TEXT>  @@ -22155,7 +22155,7 @@

text:initial-creator Element Child Relations - <text:initial-creator (text:fixed="<boolean>" )? + <text:initial-creator (text:fixed="#boolean" )? TEXT>  @@ -22215,7 +22215,7 @@

text:keywords Element

Child Relations - <text:keywords (text:fixed="<boolean>" )? + <text:keywords (text:fixed="#boolean" )? TEXT>  @@ -22284,18 +22284,18 @@

text:linenumbering-conf Child Relations - <text:linenumbering-configuration (text:number-lines="<boolean>" )? - ( (style:num-format="(1 | i | I | <string>)?" | - (style:num-format="a | A" (style:num-letter-sync="<boolean>" )? + <text:linenumbering-configuration (text:number-lines="#boolean" )? + ( (style:num-format="(1 | i | I | #string)?" | + (style:num-format="a | A" (style:num-letter-sync="#boolean" )? ))? )? - (text:style-name="(<NCName>)?" )? - (text:increment="<nonNegativeInteger>" )? + (text:style-name="(#NCName)?" )? + (text:increment="#nonNegativeInteger" )? (text:number-position="left | right | inner | outer" )? (text:offset="string]" )? - (text:count-empty-lines="<boolean>" )? - (text:count-in-text-boxes="<boolean>" )? - (text:restart-on-page="<boolean>" )? + (text:count-empty-lines="#boolean" )? + (text:count-in-text-boxes="#boolean" )? + (text:restart-on-page="#boolean" )? (<text:linenumbering-separator ... >)? >  @@ -22324,7 +22324,7 @@

text:linenumbering-separato Child Relations - <text:linenumbering-separator (text:increment="<nonNegativeInteger>" )? + <text:linenumbering-separator (text:increment="#nonNegativeInteger" )? TEXT>  @@ -22384,10 +22384,10 @@

text:list Element

Child Relations - <text:list (text:style-name="(<NCName>)?" )? - (text:continue-numbering="<boolean>" )? - (text:continue-list="<IDREF>" )? - (xml:id="<ID>" )? + <text:list (text:style-name="(#NCName)?" )? + (text:continue-numbering="#boolean" )? + (text:continue-list="#IDREF" )? + (xml:id="#ID" )? (<text:list-header ... >)? (<text:list-item ... >)* >  @@ -22420,7 +22420,7 @@

text:list-header Element

Child Relations - <text:list-header (xml:id="<ID>" )? + <text:list-header (xml:id="#ID" )? ( (<text:number ... >)? (<text:p ... > | <text:h ... > | <text:list ... > | <text:soft-page-break ... >)* )>  @@ -22456,9 +22456,9 @@

text:list-item Element

Child Relations - <text:list-item (text:start-value="<nonNegativeInteger>" )? - (text:style-override="(<NCName>)?" )? - (xml:id="<ID>" )? + <text:list-item (text:start-value="#nonNegativeInteger" )? + (text:style-override="(#NCName)?" )? + (xml:id="#ID" )? ( (<text:number ... >)? (<text:p ... > | <text:h ... > | <text:list ... > | <text:soft-page-break ... >)* )>  @@ -22494,10 +22494,10 @@

text:list-level-style-bulle Child Relations - <text:list-level-style-bullet text:level="<positiveInteger>" (text:style-name="(<NCName>)?" )? + <text:list-level-style-bullet text:level="#positiveInteger" (text:style-name="(#NCName)?" )? text:bullet-char="string]" - ( (style:num-prefix="<string>" )? - (style:num-suffix="<string>" )? + ( (style:num-prefix="#string" )? + (style:num-suffix="#string" )? ) (text:bullet-relative-size="string]" )? (<style:list-level-properties ... >)? (<style:text-properties ... >)? @@ -22533,8 +22533,8 @@

text:list-level-style-image Child Relations - <text:list-level-style-image text:level="<positiveInteger>" - (xlink:type="simple" xlink:href="<anyIRI>" (xlink:show="embed" )? + <text:list-level-style-image text:level="#positiveInteger" + (xlink:type="simple" xlink:href="#anyIRI" (xlink:show="embed" )? (xlink:actuate="onLoad" )? ) | <office:binary-data ... > (<style:list-level-properties ... >)? >  @@ -22573,15 +22573,15 @@

text:list-level-style-numbe Child Relations - <text:list-level-style-number text:level="<positiveInteger>" (text:style-name="(<NCName>)?" )? - (style:num-format="(1 | i | I | <string>)?" | - (style:num-format="a | A" (style:num-letter-sync="<boolean>" )? + <text:list-level-style-number text:level="#positiveInteger" (text:style-name="(#NCName)?" )? + (style:num-format="(1 | i | I | #string)?" | + (style:num-format="a | A" (style:num-letter-sync="#boolean" )? ))? - ( (style:num-prefix="<string>" )? - (style:num-suffix="<string>" )? - ) (text:display-levels="<positiveInteger>" )? - (text:start-value="<positiveInteger>" )? + ( (style:num-prefix="#string" )? + (style:num-suffix="#string" )? + ) (text:display-levels="#positiveInteger" )? + (text:start-value="#positiveInteger" )? (<style:list-level-properties ... >)? (<style:text-properties ... >)? >  @@ -22617,8 +22617,8 @@

text:list-style Element

Child Relations - <text:list-style style:name="<NCName>" (style:display-name="<string>" )? - (text:consecutive-numbering="<boolean>" )? + <text:list-style style:name="#NCName" (style:display-name="#string" )? + (text:consecutive-numbering="#boolean" )? (<text:list-level-style-number ... > | <text:list-level-style-bullet ... > | <text:list-level-style-image ... >)* >  @@ -22818,13 +22818,13 @@

text:meta Element (new in ODF 1.2) Child Relations <text:meta ( - (xhtml:about="<anyURI> | string]" xhtml:property=" + (xhtml:about="#anyURI | string]" xhtml:property=" START_list(string])+ END_list" ( (xhtml:datatype="string]" )? - (xhtml:content="<string>" )? + (xhtml:content="#string" )? )))? - (xml:id="<ID>" )? + (xml:id="#ID" )? (TEXT | <text:s ... > | <text:tab ... > | <text:line-break ... > | <text:soft-page-break ... > | <text:span ... > | <text:meta ... > | <text:bookmark ... > | <text:bookmark-start ... > | <text:bookmark-end ... > | <text:reference-mark ... > | <text:reference-mark-start ... > | <text:reference-mark-end ... > | <text:note ... > | <text:ruby ... > | <office:annotation ... > | <office:annotation-end ... > | <text:change ... > | <text:change-start ... > | <text:change-end ... > | <draw:rect ... > | <draw:line ... > | <draw:polyline ... > | <draw:polygon ... > | <draw:regular-polygon ... > | <draw:path ... > | <draw:circle ... > | <draw:ellipse ... > | <draw:g ... > | <draw:page-thumbnail ... > | <draw:frame ... > | <draw:measure ... > | <draw:caption ... > | <draw:connector ... > | <draw:control ... > | <dr3d:scene ... > | <draw:custom-shape ... > | <draw:a ... > | <text:date ... > | <text:time ... > | <text:page-number ... > | <text:page-continuation ... > | <text:sender-firstname ... > | <text:sender-lastname ... > | <text:sender-initials ... > | <text:sender-title ... > | <text:sender-position ... > | <text:sender-email ... > | <text:sender-phone-private ... > | <text:sender-fax ... > | <text:sender-company ... > | <text:sender-phone-work ... > | <text:sender-street ... > | <text:sender-city ... > | <text:sender-postal-code ... > | <text:sender-country ... > | <text:sender-state-or-province ... > | <text:author-name ... > | <text:author-initials ... > | <text:chapter ... > | <text:file-name ... > | <text:template-name ... > | <text:sheet-name ... > | <text:variable-set ... > | <text:variable-get ... > | <text:variable-input ... > | <text:user-field-get ... > | <text:user-field-input ... > | <text:sequence ... > | <text:expression ... > | <text:text-input ... > | <text:initial-creator ... > | <text:creation-date ... > | <text:creation-time ... > | <text:description ... > | <text:user-defined ... > | <text:print-time ... > | <text:print-date ... > | <text:printed-by ... > | <text:title ... > | <text:subject ... > | <text:keywords ... > | <text:editing-cycles ... > | <text:editing-duration ... > | <text:modification-time ... > | <text:modification-date ... > | <text:creator ... > | <CHOICE_NAME_CLASS ... > | <text:database-display ... > | <text:database-next ... > | <text:database-row-select ... > | <text:database-row-number ... > | <text:database-name ... > | <text:page-variable-set ... > | <text:page-variable-get ... > | <text:placeholder ... > | <text:conditional-text ... > | <text:hidden-text ... > | <CHOICE_NAME_CLASS ... > | <text:note-ref ... > | <text:sequence-ref ... > | <text:script ... > | <text:execute-macro ... > | <text:hidden-paragraph ... > | <text:dde-connection ... > | <text:measure ... > | <text:table-formula ... > | <text:meta-field ... > | <text:toc-mark-start ... > | <text:toc-mark-end ... > | <text:toc-mark ... > | <text:user-index-mark-start ... > | <text:user-index-mark-end ... > | <text:user-index-mark ... > | <text:alphabetical-index-mark-start ... > | <text:alphabetical-index-mark-end ... > | <text:alphabetical-index-mark ... > | <text:bibliography-mark ... > | <presentation:header ... > | <presentation:footer ... > | <presentation:date-time ... > | <text:a ... >)* >  @@ -22987,7 +22987,7 @@

text:meta-field Element (new in Child Relations - <text:meta-field xml:id="<ID>" (style:data-style-name="(<NCName>)?" )? + <text:meta-field xml:id="#ID" (style:data-style-name="(#NCName)?" )? (TEXT | <text:s ... > | <text:tab ... > | <text:line-break ... > | <text:soft-page-break ... > | <text:span ... > | <text:meta ... > | <text:bookmark ... > | <text:bookmark-start ... > | <text:bookmark-end ... > | <text:reference-mark ... > | <text:reference-mark-start ... > | <text:reference-mark-end ... > | <text:note ... > | <text:ruby ... > | <office:annotation ... > | <office:annotation-end ... > | <text:change ... > | <text:change-start ... > | <text:change-end ... > | <draw:rect ... > | <draw:line ... > | <draw:polyline ... > | <draw:polygon ... > | <draw:regular-polygon ... > | <draw:path ... > | <draw:circle ... > | <draw:ellipse ... > | <draw:g ... > | <draw:page-thumbnail ... > | <draw:frame ... > | <draw:measure ... > | <draw:caption ... > | <draw:connector ... > | <draw:control ... > | <dr3d:scene ... > | <draw:custom-shape ... > | <draw:a ... > | <text:date ... > | <text:time ... > | <text:page-number ... > | <text:page-continuation ... > | <text:sender-firstname ... > | <text:sender-lastname ... > | <text:sender-initials ... > | <text:sender-title ... > | <text:sender-position ... > | <text:sender-email ... > | <text:sender-phone-private ... > | <text:sender-fax ... > | <text:sender-company ... > | <text:sender-phone-work ... > | <text:sender-street ... > | <text:sender-city ... > | <text:sender-postal-code ... > | <text:sender-country ... > | <text:sender-state-or-province ... > | <text:author-name ... > | <text:author-initials ... > | <text:chapter ... > | <text:file-name ... > | <text:template-name ... > | <text:sheet-name ... > | <text:variable-set ... > | <text:variable-get ... > | <text:variable-input ... > | <text:user-field-get ... > | <text:user-field-input ... > | <text:sequence ... > | <text:expression ... > | <text:text-input ... > | <text:initial-creator ... > | <text:creation-date ... > | <text:creation-time ... > | <text:description ... > | <text:user-defined ... > | <text:print-time ... > | <text:print-date ... > | <text:printed-by ... > | <text:title ... > | <text:subject ... > | <text:keywords ... > | <text:editing-cycles ... > | <text:editing-duration ... > | <text:modification-time ... > | <text:modification-date ... > | <text:creator ... > | <CHOICE_NAME_CLASS ... > | <text:database-display ... > | <text:database-next ... > | <text:database-row-select ... > | <text:database-row-number ... > | <text:database-name ... > | <text:page-variable-set ... > | <text:page-variable-get ... > | <text:placeholder ... > | <text:conditional-text ... > | <text:hidden-text ... > | <CHOICE_NAME_CLASS ... > | <text:note-ref ... > | <text:sequence-ref ... > | <text:script ... > | <text:execute-macro ... > | <text:hidden-paragraph ... > | <text:dde-connection ... > | <text:measure ... > | <text:table-formula ... > | <text:meta-field ... > | <text:toc-mark-start ... > | <text:toc-mark-end ... > | <text:toc-mark ... > | <text:user-index-mark-start ... > | <text:user-index-mark-end ... > | <text:user-index-mark ... > | <text:alphabetical-index-mark-start ... > | <text:alphabetical-index-mark-end ... > | <text:alphabetical-index-mark ... > | <text:bibliography-mark ... > | <presentation:header ... > | <presentation:footer ... > | <presentation:date-time ... > | <text:a ... >)* >  @@ -23023,9 +23023,9 @@

text:modification-date Element Child Relations - <text:modification-date (text:fixed="<boolean>" )? - (style:data-style-name="(<NCName>)?" )? - (text:date-value="<date>" )? + <text:modification-date (text:fixed="#boolean" )? + (style:data-style-name="(#NCName)?" )? + (text:date-value="#date" )? TEXT>  @@ -23061,9 +23061,9 @@

text:modification-time Element Child Relations - <text:modification-time (text:fixed="<boolean>" )? - (style:data-style-name="(<NCName>)?" )? - (text:time-value="<time>" )? + <text:modification-time (text:fixed="#boolean" )? + (style:data-style-name="(#NCName)?" )? + (text:time-value="#time" )? TEXT>  @@ -23099,7 +23099,7 @@

text:note Element

Child Relations - <text:note text:note-class="footnote | endnote" (text:id="<string>" )? + <text:note text:note-class="footnote | endnote" (text:id="#string" )? <text:note-citation ... ><text:note-body ... >>  @@ -23187,7 +23187,7 @@

text:note-citation Element

Child Relations - <text:note-citation (text:label="<string>" )? + <text:note-citation (text:label="#string" )? TEXT>  @@ -23275,7 +23275,7 @@

text:note-ref Element

Child Relations - <text:note-ref TEXT (text:ref-name="<string>" )? + <text:note-ref TEXT (text:ref-name="#string" )? (text:reference-format="page | chapter | direction | text" )? text:note-class="footnote | endnote" >  @@ -23318,16 +23318,16 @@

text:notes-configuration Elemen Child Relations - <text:notes-configuration text:note-class="footnote | endnote" (text:citation-style-name="(<NCName>)?" )? - (text:citation-body-style-name="(<NCName>)?" )? - (text:default-style-name="(<NCName>)?" )? - (text:master-page-name="(<NCName>)?" )? - (text:start-value="<nonNegativeInteger>" )? + <text:notes-configuration text:note-class="footnote | endnote" (text:citation-style-name="(#NCName)?" )? + (text:citation-body-style-name="(#NCName)?" )? + (text:default-style-name="(#NCName)?" )? + (text:master-page-name="(#NCName)?" )? + (text:start-value="#nonNegativeInteger" )? - ( (style:num-prefix="<string>" )? - (style:num-suffix="<string>" )? - ) ( (style:num-format="(1 | i | I | <string>)?" | - (style:num-format="a | A" (style:num-letter-sync="<boolean>" )? + ( (style:num-prefix="#string" )? + (style:num-suffix="#string" )? + ) ( (style:num-format="(1 | i | I | #string)?" | + (style:num-format="a | A" (style:num-letter-sync="#boolean" )? ))? )? (text:start-numbering-at="document | chapter | page" )? @@ -23362,7 +23362,7 @@

text:number Element

Child Relations - <text:number <string>>  + <text:number #string
@@ -23404,9 +23404,9 @@

text:numbered-paragraph Element< Child Relations - <text:numbered-paragraph text:list-id="<NCName>" (text:level="<positiveInteger>" )? - (text:style-name="(<NCName>)?" text:continue-numbering="<boolean>" text:start-value="<nonNegativeInteger>" )? - (xml:id="<ID>" )? + <text:numbered-paragraph text:list-id="#NCName" (text:level="#positiveInteger" )? + (text:style-name="(#NCName)?" text:continue-numbering="#boolean" text:start-value="#nonNegativeInteger" )? + (xml:id="#ID" )? (<text:number ... >)? <text:p ... > | <text:h ... >>  @@ -23443,8 +23443,8 @@

text:object-count Element

Child Relations - <CHOICE_NAME_CLASS ( (style:num-format="(1 | i | I | <string>)?" | - (style:num-format="a | A" (style:num-letter-sync="<boolean>" )? + <CHOICE_NAME_CLASS ( (style:num-format="(1 | i | I | #string)?" | + (style:num-format="a | A" (style:num-letter-sync="#boolean" )? ))? )? TEXT>  @@ -23492,11 +23492,11 @@

text:object-index Element

Child Relations - <text:object-index (text:style-name="(<NCName>)?" )? - text:name="<string>" (text:protected="<boolean>" )? - (text:protection-key="<string>" )? - (text:protection-key-digest-algorithm="<anyIRI>" )? - (xml:id="<ID>" )? + <text:object-index (text:style-name="(#NCName)?" )? + text:name="#string" (text:protected="#boolean" )? + (text:protection-key="#string" )? + (text:protection-key-digest-algorithm="#anyIRI" )? + (xml:id="#ID" )? <text:object-index-source ... ><text:index-body ... >>  @@ -23529,7 +23529,7 @@

text:object-index-entry Child Relations <text:object-index-entry-template - (text:style-name="(<NCName>)?" (<text:index-entry-chapter ... > | <text:index-entry-page-number ... > | <text:index-entry-text ... > | <text:index-entry-span ... > | <text:index-entry-tab-stop ... >)* )>  + (text:style-name="(#NCName)?" (<text:index-entry-chapter ... > | <text:index-entry-page-number ... > | <text:index-entry-text ... > | <text:index-entry-span ... > | <text:index-entry-tab-stop ... >)* )> 
@@ -23564,12 +23564,12 @@

text:object-index-source Elemen Child Relations <text:object-index-source (text:index-scope="document | chapter" )? - (text:relative-tab-stop-position="<boolean>" )? - (text:use-spreadsheet-objects="<boolean>" )? - (text:use-math-objects="<boolean>" )? - (text:use-draw-objects="<boolean>" )? - (text:use-chart-objects="<boolean>" )? - (text:use-other-objects="<boolean>" )? + (text:relative-tab-stop-position="#boolean" )? + (text:use-spreadsheet-objects="#boolean" )? + (text:use-math-objects="#boolean" )? + (text:use-draw-objects="#boolean" )? + (text:use-chart-objects="#boolean" )? + (text:use-other-objects="#boolean" )? (<text:index-title-template ... >)? (<text:object-index-entry-template ... >)? >  @@ -23608,15 +23608,15 @@

text:outline-level-style Elemen Child Relations - <text:outline-level-style text:level="<positiveInteger>" (text:style-name="(<NCName>)?" )? - (style:num-format="(1 | i | I | <string>)?" | - (style:num-format="a | A" (style:num-letter-sync="<boolean>" )? + <text:outline-level-style text:level="#positiveInteger" (text:style-name="(#NCName)?" )? + (style:num-format="(1 | i | I | #string)?" | + (style:num-format="a | A" (style:num-letter-sync="#boolean" )? ))? - ( (style:num-prefix="<string>" )? - (style:num-suffix="<string>" )? - ) (text:display-levels="<positiveInteger>" )? - (text:start-value="<positiveInteger>" )? + ( (style:num-prefix="#string" )? + (style:num-suffix="#string" )? + ) (text:display-levels="#positiveInteger" )? + (text:start-value="#positiveInteger" )? (<style:list-level-properties ... >)? (<style:text-properties ... >)? >  @@ -23646,7 +23646,7 @@

text:outline-style Element

Child Relations - <text:outline-style style:name="<NCName>" (<text:outline-level-style ... >)+ >  + <text:outline-style style:name="#NCName" (<text:outline-level-style ... >)+ > 
@@ -23853,19 +23853,19 @@

text:p Element

Child Relations - <text:p (text:style-name="(<NCName>)?" )? + <text:p (text:style-name="(#NCName)?" )? (text:class-names=" -START_list(<NCName>)* +START_list(#NCName)* END_list" )? - (text:cond-style-name="(<NCName>)?" )? - (xml:id="<ID>" (text:id="<NCName>" )? + (text:cond-style-name="(#NCName)?" )? + (xml:id="#ID" (text:id="#NCName" )? )? ( - (xhtml:about="<anyURI> | string]" xhtml:property=" + (xhtml:about="#anyURI | string]" xhtml:property=" START_list(string])+ END_list" ( (xhtml:datatype="string]" )? - (xhtml:content="<string>" )? + (xhtml:content="#string" )? )))? (TEXT | <text:s ... > | <text:tab ... > | <text:line-break ... > | <text:soft-page-break ... > | <text:span ... > | <text:meta ... > | <text:bookmark ... > | <text:bookmark-start ... > | <text:bookmark-end ... > | <text:reference-mark ... > | <text:reference-mark-start ... > | <text:reference-mark-end ... > | <text:note ... > | <text:ruby ... > | <office:annotation ... > | <office:annotation-end ... > | <text:change ... > | <text:change-start ... > | <text:change-end ... > | <draw:rect ... > | <draw:line ... > | <draw:polyline ... > | <draw:polygon ... > | <draw:regular-polygon ... > | <draw:path ... > | <draw:circle ... > | <draw:ellipse ... > | <draw:g ... > | <draw:page-thumbnail ... > | <draw:frame ... > | <draw:measure ... > | <draw:caption ... > | <draw:connector ... > | <draw:control ... > | <dr3d:scene ... > | <draw:custom-shape ... > | <draw:a ... > | <text:date ... > | <text:time ... > | <text:page-number ... > | <text:page-continuation ... > | <text:sender-firstname ... > | <text:sender-lastname ... > | <text:sender-initials ... > | <text:sender-title ... > | <text:sender-position ... > | <text:sender-email ... > | <text:sender-phone-private ... > | <text:sender-fax ... > | <text:sender-company ... > | <text:sender-phone-work ... > | <text:sender-street ... > | <text:sender-city ... > | <text:sender-postal-code ... > | <text:sender-country ... > | <text:sender-state-or-province ... > | <text:author-name ... > | <text:author-initials ... > | <text:chapter ... > | <text:file-name ... > | <text:template-name ... > | <text:sheet-name ... > | <text:variable-set ... > | <text:variable-get ... > | <text:variable-input ... > | <text:user-field-get ... > | <text:user-field-input ... > | <text:sequence ... > | <text:expression ... > | <text:text-input ... > | <text:initial-creator ... > | <text:creation-date ... > | <text:creation-time ... > | <text:description ... > | <text:user-defined ... > | <text:print-time ... > | <text:print-date ... > | <text:printed-by ... > | <text:title ... > | <text:subject ... > | <text:keywords ... > | <text:editing-cycles ... > | <text:editing-duration ... > | <text:modification-time ... > | <text:modification-date ... > | <text:creator ... > | <CHOICE_NAME_CLASS ... > | <text:database-display ... > | <text:database-next ... > | <text:database-row-select ... > | <text:database-row-number ... > | <text:database-name ... > | <text:page-variable-set ... > | <text:page-variable-get ... > | <text:placeholder ... > | <text:conditional-text ... > | <text:hidden-text ... > | <CHOICE_NAME_CLASS ... > | <text:note-ref ... > | <text:sequence-ref ... > | <text:script ... > | <text:execute-macro ... > | <text:hidden-paragraph ... > | <text:dde-connection ... > | <text:measure ... > | <text:table-formula ... > | <text:meta-field ... > | <text:toc-mark-start ... > | <text:toc-mark-end ... > | <text:toc-mark ... > | <text:user-index-mark-start ... > | <text:user-index-mark-end ... > | <text:user-index-mark ... > | <text:alphabetical-index-mark-start ... > | <text:alphabetical-index-mark-end ... > | <text:alphabetical-index-mark ... > | <text:bibliography-mark ... > | <presentation:header ... > | <presentation:footer ... > | <presentation:date-time ... > | <text:a ... >)* >  @@ -23893,7 +23893,7 @@

text:page Element

Child Relations - <text:page text:master-page-name="(<NCName>)?" >  + <text:page text:master-page-name="(#NCName)?" > 
@@ -23927,7 +23927,7 @@

text:page-continuation Element Child Relations - <text:page-continuation text:select-page="previous | next" (text:string-value="<string>" )? + <text:page-continuation text:select-page="previous | next" (text:string-value="#string" )? TEXT>  @@ -23963,8 +23963,8 @@

text:page-count Element

Child Relations - <CHOICE_NAME_CLASS ( (style:num-format="(1 | i | I | <string>)?" | - (style:num-format="a | A" (style:num-letter-sync="<boolean>" )? + <CHOICE_NAME_CLASS ( (style:num-format="(1 | i | I | #string)?" | + (style:num-format="a | A" (style:num-letter-sync="#boolean" )? ))? )? TEXT>  @@ -24005,12 +24005,12 @@

text:page-number Element

Child Relations - <text:page-number ( (style:num-format="(1 | i | I | <string>)?" | - (style:num-format="a | A" (style:num-letter-sync="<boolean>" )? + <text:page-number ( (style:num-format="(1 | i | I | #string)?" | + (style:num-format="a | A" (style:num-letter-sync="#boolean" )? ))? )? - (text:fixed="<boolean>" )? - (text:page-adjust="<integer>" )? + (text:fixed="#boolean" )? + (text:page-adjust="#integer" )? (text:select-page="previous | current | next" )? TEXT>  @@ -24073,8 +24073,8 @@

text:page-variable-get Element Child Relations - <text:page-variable-get ( (style:num-format="(1 | i | I | <string>)?" | - (style:num-format="a | A" (style:num-letter-sync="<boolean>" )? + <text:page-variable-get ( (style:num-format="(1 | i | I | #string)?" | + (style:num-format="a | A" (style:num-letter-sync="#boolean" )? ))? )? TEXT>  @@ -24111,8 +24111,8 @@

text:page-variable-set Element Child Relations - <text:page-variable-set (text:active="<boolean>" )? - (text:page-adjust="<integer>" )? + <text:page-variable-set (text:active="#boolean" )? + (text:page-adjust="#integer" )? TEXT>  @@ -24148,8 +24148,8 @@

text:paragraph-count Element Child Relations - <CHOICE_NAME_CLASS ( (style:num-format="(1 | i | I | <string>)?" | - (style:num-format="a | A" (style:num-letter-sync="<boolean>" )? + <CHOICE_NAME_CLASS ( (style:num-format="(1 | i | I | #string)?" | + (style:num-format="a | A" (style:num-letter-sync="#boolean" )? ))? )? TEXT>  @@ -24186,7 +24186,7 @@

text:placeholder Element

Child Relations - <text:placeholder text:placeholder-type="text | table | text-box | image | object" (text:description="<string>" )? + <text:placeholder text:placeholder-type="text | table | text-box | image | object" (text:description="#string" )? TEXT>  @@ -24222,9 +24222,9 @@

text:print-date Element

Child Relations - <text:print-date (text:fixed="<boolean>" )? - (style:data-style-name="(<NCName>)?" )? - (text:date-value="<date>" )? + <text:print-date (text:fixed="#boolean" )? + (style:data-style-name="(#NCName)?" )? + (text:date-value="#date" )? TEXT>  @@ -24260,9 +24260,9 @@

text:print-time Element

Child Relations - <text:print-time (text:fixed="<boolean>" )? - (style:data-style-name="(<NCName>)?" )? - (text:time-value="<time>" )? + <text:print-time (text:fixed="#boolean" )? + (style:data-style-name="(#NCName)?" )? + (text:time-value="#time" )? TEXT>  @@ -24296,7 +24296,7 @@

text:printed-by Element

Child Relations - <text:printed-by (text:fixed="<boolean>" )? + <text:printed-by (text:fixed="#boolean" )? TEXT>  @@ -24329,7 +24329,7 @@

text:reference-mark Element

Child Relations - <text:reference-mark text:name="<string>" >  + <text:reference-mark text:name="#string" > 
@@ -24361,7 +24361,7 @@

text:reference-mark-end Element< Child Relations - <text:reference-mark-end text:name="<string>" >  + <text:reference-mark-end text:name="#string" > 
@@ -24393,7 +24393,7 @@

text:reference-mark-start Elem Child Relations - <text:reference-mark-start text:name="<string>" >  + <text:reference-mark-start text:name="#string" > 
@@ -24427,7 +24427,7 @@

text:reference-ref Element

Child Relations - <CHOICE_NAME_CLASS TEXT (text:ref-name="<string>" )? + <CHOICE_NAME_CLASS TEXT (text:ref-name="#string" )? (text:reference-format="page | chapter | direction | text | number-no-superior | number-all-superior | number" )? >  @@ -24463,7 +24463,7 @@

text:ruby Element

Child Relations - <text:ruby (text:style-name="(<NCName>)?" )? + <text:ruby (text:style-name="(#NCName)?" )? <text:ruby-base ... ><text:ruby-text ... >>  @@ -24645,7 +24645,7 @@

text:ruby-text Element

Child Relations - <text:ruby-text (text:style-name="(<NCName>)?" )? + <text:ruby-text (text:style-name="(#NCName)?" )? TEXT>  @@ -24678,7 +24678,7 @@

text:s Element

Child Relations - <text:s (text:c="<nonNegativeInteger>" )? + <text:s (text:c="#nonNegativeInteger" )? >  @@ -24715,7 +24715,7 @@

text:script Element

Child Relations <text:script - (xlink:type="simple" xlink:href="<anyIRI>" ) | TEXT (script:language="<string>" )? + (xlink:type="simple" xlink:href="#anyIRI" ) | TEXT (script:language="#string" )? >  @@ -24799,13 +24799,13 @@

text:section Element

Child Relations - <text:section (text:style-name="(<NCName>)?" )? - text:name="<string>" (text:protected="<boolean>" )? - (text:protection-key="<string>" )? - (text:protection-key-digest-algorithm="<anyIRI>" )? - (xml:id="<ID>" )? + <text:section (text:style-name="(#NCName)?" )? + text:name="#string" (text:protected="#boolean" )? + (text:protection-key="#string" )? + (text:protection-key-digest-algorithm="#anyIRI" )? + (xml:id="#ID" )? (text:display="true | none" | - (text:display="condition" text:condition="<string>" ))? + (text:display="condition" text:condition="#string" ))? (<text:section-source ... > | <office:dde-source ... >)? (<text:h ... > | <text:p ... > | <text:list ... > | <text:numbered-paragraph ... > | <table:table ... > | <text:section ... > | <text:soft-page-break ... > | <text:table-of-content ... > | <text:illustration-index ... > | <text:table-index ... > | <text:object-index ... > | <text:user-index ... > | <text:alphabetical-index ... > | <text:bibliography ... > | <draw:rect ... > | <draw:line ... > | <draw:polyline ... > | <draw:polygon ... > | <draw:regular-polygon ... > | <draw:path ... > | <draw:circle ... > | <draw:ellipse ... > | <draw:g ... > | <draw:page-thumbnail ... > | <draw:frame ... > | <draw:measure ... > | <draw:caption ... > | <draw:connector ... > | <draw:control ... > | <dr3d:scene ... > | <draw:custom-shape ... > | <draw:a ... > | <text:change ... > | <text:change-start ... > | <text:change-end ... >)* >  @@ -24837,10 +24837,10 @@

text:section-source Element

Child Relations - <text:section-source (xlink:type="simple" xlink:href="<anyIRI>" (xlink:show="embed" )? + <text:section-source (xlink:type="simple" xlink:href="#anyIRI" (xlink:show="embed" )? )? - (text:section-name="<string>" )? - (text:filter-name="<string>" )? + (text:section-name="#string" )? + (text:filter-name="#string" )? >  @@ -24874,7 +24874,7 @@

text:sender-city Element

Child Relations - <text:sender-city (text:fixed="<boolean>" )? + <text:sender-city (text:fixed="#boolean" )? TEXT>  @@ -24908,7 +24908,7 @@

text:sender-company Element

Child Relations - <text:sender-company (text:fixed="<boolean>" )? + <text:sender-company (text:fixed="#boolean" )? TEXT>  @@ -24942,7 +24942,7 @@

text:sender-country Element

Child Relations - <text:sender-country (text:fixed="<boolean>" )? + <text:sender-country (text:fixed="#boolean" )? TEXT>  @@ -24976,7 +24976,7 @@

text:sender-email Element

Child Relations - <text:sender-email (text:fixed="<boolean>" )? + <text:sender-email (text:fixed="#boolean" )? TEXT>  @@ -25010,7 +25010,7 @@

text:sender-fax Element

Child Relations - <text:sender-fax (text:fixed="<boolean>" )? + <text:sender-fax (text:fixed="#boolean" )? TEXT>  @@ -25044,7 +25044,7 @@

text:sender-firstname Element< Child Relations - <text:sender-firstname (text:fixed="<boolean>" )? + <text:sender-firstname (text:fixed="#boolean" )? TEXT>  @@ -25078,7 +25078,7 @@

text:sender-initials Element Child Relations - <text:sender-initials (text:fixed="<boolean>" )? + <text:sender-initials (text:fixed="#boolean" )? TEXT>  @@ -25112,7 +25112,7 @@

text:sender-lastname Element Child Relations - <text:sender-lastname (text:fixed="<boolean>" )? + <text:sender-lastname (text:fixed="#boolean" )? TEXT>  @@ -25146,7 +25146,7 @@

text:sender-phone-private Elem Child Relations - <text:sender-phone-private (text:fixed="<boolean>" )? + <text:sender-phone-private (text:fixed="#boolean" )? TEXT>  @@ -25180,7 +25180,7 @@

text:sender-phone-work Element Child Relations - <text:sender-phone-work (text:fixed="<boolean>" )? + <text:sender-phone-work (text:fixed="#boolean" )? TEXT>  @@ -25214,7 +25214,7 @@

text:sender-position Element Child Relations - <text:sender-position (text:fixed="<boolean>" )? + <text:sender-position (text:fixed="#boolean" )? TEXT>  @@ -25248,7 +25248,7 @@

text:sender-postal-code Element< Child Relations - <text:sender-postal-code (text:fixed="<boolean>" )? + <text:sender-postal-code (text:fixed="#boolean" )? TEXT>  @@ -25282,7 +25282,7 @@

text:sender-state-or-provi Child Relations - <text:sender-state-or-province (text:fixed="<boolean>" )? + <text:sender-state-or-province (text:fixed="#boolean" )? TEXT>  @@ -25316,7 +25316,7 @@

text:sender-street Element

Child Relations - <text:sender-street (text:fixed="<boolean>" )? + <text:sender-street (text:fixed="#boolean" )? TEXT>  @@ -25350,7 +25350,7 @@

text:sender-title Element

Child Relations - <text:sender-title (text:fixed="<boolean>" )? + <text:sender-title (text:fixed="#boolean" )? TEXT>  @@ -25389,12 +25389,12 @@

text:sequence Element

Child Relations - <text:sequence text:name="<string>" (text:formula="<string>" )? - ( (style:num-format="(1 | i | I | <string>)?" | - (style:num-format="a | A" (style:num-letter-sync="<boolean>" )? + <text:sequence text:name="#string" (text:formula="#string" )? + ( (style:num-format="(1 | i | I | #string)?" | + (style:num-format="a | A" (style:num-letter-sync="#boolean" )? ))? )? - (text:ref-name="<string>" )? + (text:ref-name="#string" )? TEXT>  @@ -25423,7 +25423,7 @@

text:sequence-decl Element

Child Relations - <text:sequence-decl text:name="<string>" text:display-outline-level="<nonNegativeInteger>" (text:separation-character="string]" )? + <text:sequence-decl text:name="#string" text:display-outline-level="#nonNegativeInteger" (text:separation-character="string]" )? >  @@ -25492,7 +25492,7 @@

text:sequence-ref Element

Child Relations - <text:sequence-ref TEXT (text:ref-name="<string>" )? + <text:sequence-ref TEXT (text:ref-name="#string" )? (text:reference-format="page | chapter | direction | text | category-and-value | caption | value" )? >  @@ -25600,7 +25600,7 @@

text:sort-key Element

Child Relations <text:sort-key - (text:key="address | annote | author | bibliography-type | booktitle | chapter | custom1 | custom2 | custom3 | custom4 | custom5 | edition | editor | howpublished | identifier | institution | isbn | issn | journal | month | note | number | organizations | pages | publisher | report-type | school | series | title | url | volume | year" (text:sort-ascending="<boolean>" )? + (text:key="address | annote | author | bibliography-type | booktitle | chapter | custom1 | custom2 | custom3 | custom4 | custom5 | edition | editor | howpublished | identifier | institution | isbn | issn | journal | month | note | number | organizations | pages | publisher | report-type | school | series | title | url | volume | year" (text:sort-ascending="#boolean" )? )>  @@ -25763,9 +25763,9 @@

text:span Element

Child Relations - <text:span (text:style-name="(<NCName>)?" )? + <text:span (text:style-name="(#NCName)?" )? (text:class-names=" -START_list(<NCName>)* +START_list(#NCName)* END_list" )? (TEXT | <text:s ... > | <text:tab ... > | <text:line-break ... > | <text:soft-page-break ... > | <text:span ... > | <text:meta ... > | <text:bookmark ... > | <text:bookmark-start ... > | <text:bookmark-end ... > | <text:reference-mark ... > | <text:reference-mark-start ... > | <text:reference-mark-end ... > | <text:note ... > | <text:ruby ... > | <office:annotation ... > | <office:annotation-end ... > | <text:change ... > | <text:change-start ... > | <text:change-end ... > | <draw:rect ... > | <draw:line ... > | <draw:polyline ... > | <draw:polygon ... > | <draw:regular-polygon ... > | <draw:path ... > | <draw:circle ... > | <draw:ellipse ... > | <draw:g ... > | <draw:page-thumbnail ... > | <draw:frame ... > | <draw:measure ... > | <draw:caption ... > | <draw:connector ... > | <draw:control ... > | <dr3d:scene ... > | <draw:custom-shape ... > | <draw:a ... > | <text:date ... > | <text:time ... > | <text:page-number ... > | <text:page-continuation ... > | <text:sender-firstname ... > | <text:sender-lastname ... > | <text:sender-initials ... > | <text:sender-title ... > | <text:sender-position ... > | <text:sender-email ... > | <text:sender-phone-private ... > | <text:sender-fax ... > | <text:sender-company ... > | <text:sender-phone-work ... > | <text:sender-street ... > | <text:sender-city ... > | <text:sender-postal-code ... > | <text:sender-country ... > | <text:sender-state-or-province ... > | <text:author-name ... > | <text:author-initials ... > | <text:chapter ... > | <text:file-name ... > | <text:template-name ... > | <text:sheet-name ... > | <text:variable-set ... > | <text:variable-get ... > | <text:variable-input ... > | <text:user-field-get ... > | <text:user-field-input ... > | <text:sequence ... > | <text:expression ... > | <text:text-input ... > | <text:initial-creator ... > | <text:creation-date ... > | <text:creation-time ... > | <text:description ... > | <text:user-defined ... > | <text:print-time ... > | <text:print-date ... > | <text:printed-by ... > | <text:title ... > | <text:subject ... > | <text:keywords ... > | <text:editing-cycles ... > | <text:editing-duration ... > | <text:modification-time ... > | <text:modification-date ... > | <text:creator ... > | <CHOICE_NAME_CLASS ... > | <text:database-display ... > | <text:database-next ... > | <text:database-row-select ... > | <text:database-row-number ... > | <text:database-name ... > | <text:page-variable-set ... > | <text:page-variable-get ... > | <text:placeholder ... > | <text:conditional-text ... > | <text:hidden-text ... > | <CHOICE_NAME_CLASS ... > | <text:note-ref ... > | <text:sequence-ref ... > | <text:script ... > | <text:execute-macro ... > | <text:hidden-paragraph ... > | <text:dde-connection ... > | <text:measure ... > | <text:table-formula ... > | <text:meta-field ... > | <text:toc-mark-start ... > | <text:toc-mark-end ... > | <text:toc-mark ... > | <text:user-index-mark-start ... > | <text:user-index-mark-end ... > | <text:user-index-mark ... > | <text:alphabetical-index-mark-start ... > | <text:alphabetical-index-mark-end ... > | <text:alphabetical-index-mark ... > | <text:bibliography-mark ... > | <presentation:header ... > | <presentation:footer ... > | <presentation:date-time ... > | <text:a ... >)* >  @@ -25800,7 +25800,7 @@

text:subject Element

Child Relations - <text:subject (text:fixed="<boolean>" )? + <text:subject (text:fixed="#boolean" )? TEXT>  @@ -25833,7 +25833,7 @@

text:tab Element

Child Relations - <text:tab (text:tab-ref="<nonNegativeInteger>" )? + <text:tab (text:tab-ref="#nonNegativeInteger" )? >  @@ -25869,8 +25869,8 @@

text:table-count Element

Child Relations - <CHOICE_NAME_CLASS ( (style:num-format="(1 | i | I | <string>)?" | - (style:num-format="a | A" (style:num-letter-sync="<boolean>" )? + <CHOICE_NAME_CLASS ( (style:num-format="(1 | i | I | #string)?" | + (style:num-format="a | A" (style:num-letter-sync="#boolean" )? ))? )? TEXT>  @@ -25908,9 +25908,9 @@

text:table-formula Element

Child Relations - <text:table-formula (text:formula="<string>" )? + <text:table-formula (text:formula="#string" )? (text:display="value | formula" )? - (style:data-style-name="(<NCName>)?" )? + (style:data-style-name="(#NCName)?" )? TEXT>  @@ -25956,11 +25956,11 @@

text:table-index Element

Child Relations - <text:table-index (text:style-name="(<NCName>)?" )? - text:name="<string>" (text:protected="<boolean>" )? - (text:protection-key="<string>" )? - (text:protection-key-digest-algorithm="<anyIRI>" )? - (xml:id="<ID>" )? + <text:table-index (text:style-name="(#NCName)?" )? + text:name="#string" (text:protected="#boolean" )? + (text:protection-key="#string" )? + (text:protection-key-digest-algorithm="#anyIRI" )? + (xml:id="#ID" )? <text:table-index-source ... ><text:index-body ... >>  @@ -25993,7 +25993,7 @@

text:table-index-entry-t Child Relations <text:table-index-entry-template - (text:style-name="(<NCName>)?" (<text:index-entry-chapter ... > | <text:index-entry-page-number ... > | <text:index-entry-text ... > | <text:index-entry-span ... > | <text:index-entry-tab-stop ... >)* )>  + (text:style-name="(#NCName)?" (<text:index-entry-chapter ... > | <text:index-entry-page-number ... > | <text:index-entry-text ... > | <text:index-entry-span ... > | <text:index-entry-tab-stop ... >)* )> 
@@ -26026,9 +26026,9 @@

text:table-index-source Element< Child Relations <text:table-index-source (text:index-scope="document | chapter" )? - (text:relative-tab-stop-position="<boolean>" )? - (text:use-caption="<boolean>" )? - (text:caption-sequence-name="<string>" )? + (text:relative-tab-stop-position="#boolean" )? + (text:use-caption="#boolean" )? + (text:caption-sequence-name="#string" )? (text:caption-sequence-format="text | category-and-value | caption" )? (<text:index-title-template ... >)? (<text:table-index-entry-template ... >)? @@ -26077,11 +26077,11 @@

text:table-of-content Element< Child Relations - <text:table-of-content (text:style-name="(<NCName>)?" )? - text:name="<string>" (text:protected="<boolean>" )? - (text:protection-key="<string>" )? - (text:protection-key-digest-algorithm="<anyIRI>" )? - (xml:id="<ID>" )? + <text:table-of-content (text:style-name="(#NCName)?" )? + text:name="#string" (text:protected="#boolean" )? + (text:protection-key="#string" )? + (text:protection-key-digest-algorithm="#anyIRI" )? + (xml:id="#ID" )? <text:table-of-content-source ... ><text:index-body ... >>  @@ -26116,7 +26116,7 @@

text:table-of-conte Child Relations - <text:table-of-content-entry-template text:outline-level="<positiveInteger>" text:style-name="(<NCName>)?" (<text:index-entry-chapter ... > | <text:index-entry-page-number ... > | <text:index-entry-text ... > | <text:index-entry-span ... > | <text:index-entry-tab-stop ... > | <text:index-entry-link-start ... > | <text:index-entry-link-end ... >)* >  + <text:table-of-content-entry-template text:outline-level="#positiveInteger" text:style-name="(#NCName)?" (<text:index-entry-chapter ... > | <text:index-entry-page-number ... > | <text:index-entry-text ... > | <text:index-entry-span ... > | <text:index-entry-tab-stop ... > | <text:index-entry-link-start ... > | <text:index-entry-link-end ... >)* > 
@@ -26150,12 +26150,12 @@

text:table-of-content-sourc Child Relations - <text:table-of-content-source (text:outline-level="<positiveInteger>" )? - (text:use-outline-level="<boolean>" )? - (text:use-index-marks="<boolean>" )? - (text:use-index-source-styles="<boolean>" )? + <text:table-of-content-source (text:outline-level="#positiveInteger" )? + (text:use-outline-level="#boolean" )? + (text:use-index-marks="#boolean" )? + (text:use-index-source-styles="#boolean" )? (text:index-scope="document | chapter" )? - (text:relative-tab-stop-position="<boolean>" )? + (text:relative-tab-stop-position="#boolean" )? (<text:index-title-template ... >)? (<text:table-of-content-entry-template ... >)* (<text:index-source-styles ... >)* >  @@ -26224,7 +26224,7 @@

text:text-input Element

Child Relations - <text:text-input (text:description="<string>" )? + <text:text-input (text:description="#string" )? TEXT>  @@ -26261,10 +26261,10 @@

text:time Element

Child Relations - <text:time (text:fixed="<boolean>" )? - (style:data-style-name="(<NCName>)?" )? - (text:time-value="<time> | <dateTime>" )? - (text:time-adjust="<duration>" )? + <text:time (text:fixed="#boolean" )? + (style:data-style-name="(#NCName)?" )? + (text:time-value="#time | #dateTime" )? + (text:time-adjust="#duration" )? TEXT>  @@ -26298,7 +26298,7 @@

text:title Element

Child Relations - <text:title (text:fixed="<boolean>" )? + <text:title (text:fixed="#boolean" )? TEXT>  @@ -26332,7 +26332,7 @@

text:toc-mark Element

Child Relations - <text:toc-mark text:string-value="<string>" (text:outline-level="<positiveInteger>" )? + <text:toc-mark text:string-value="#string" (text:outline-level="#positiveInteger" )? >  @@ -26365,7 +26365,7 @@

text:toc-mark-end Element

Child Relations - <text:toc-mark-end text:id="<string>" >  + <text:toc-mark-end text:id="#string" > 
@@ -26399,7 +26399,7 @@

text:toc-mark-start Element

Child Relations <text:toc-mark-start - (text:id="<string>" (text:outline-level="<positiveInteger>" )? + (text:id="#string" (text:outline-level="#positiveInteger" )? )>  @@ -26431,7 +26431,7 @@

text:tracked-changes Element Child Relations - <text:tracked-changes (text:track-changes="<boolean>" )? + <text:tracked-changes (text:track-changes="#boolean" )? (<text:changed-region ... >)* >  @@ -26472,13 +26472,13 @@

text:user-defined Element

Child Relations - <text:user-defined (text:fixed="<boolean>" )? - text:name="<string>" (style:data-style-name="(<NCName>)?" )? - (office:value="<double>" )? - (office:date-value="<date> | <dateTime>" )? - (office:time-value="<duration>" )? - (office:boolean-value="<boolean>" )? - (office:string-value="<string>" )? + <text:user-defined (text:fixed="#boolean" )? + text:name="#string" (style:data-style-name="(#NCName)?" )? + (office:value="#double" )? + (office:date-value="#date | #dateTime" )? + (office:time-value="#duration" )? + (office:boolean-value="#boolean" )? + (office:string-value="#string" )? TEXT>  @@ -26519,17 +26519,17 @@

text:user-field-decl Element Child Relations - <text:user-field-decl text:name="<string>" ( (text:formula="<string>" )? + <text:user-field-decl text:name="#string" ( (text:formula="#string" )? )? - (office:value-type="float" office:value="<double>" ) | - (office:value-type="percentage" office:value="<double>" ) | - (office:value-type="currency" office:value="<double>" (office:currency="<string>" )? + (office:value-type="float" office:value="#double" ) | + (office:value-type="percentage" office:value="#double" ) | + (office:value-type="currency" office:value="#double" (office:currency="#string" )? ) | - (office:value-type="date" office:date-value="<date> | <dateTime>" ) | - (office:value-type="time" office:time-value="<duration>" ) | - (office:value-type="boolean" office:boolean-value="<boolean>" ) | - (office:value-type="string" (office:string-value="<string>" )? + (office:value-type="date" office:date-value="#date | #dateTime" ) | + (office:value-type="time" office:time-value="#duration" ) | + (office:value-type="boolean" office:boolean-value="#boolean" ) | + (office:value-type="string" (office:string-value="#string" )? )>  @@ -26599,8 +26599,8 @@

text:user-field-get Element

Child Relations - <text:user-field-get text:name="<string>" (text:display="value | formula | none" )? - (style:data-style-name="(<NCName>)?" )? + <text:user-field-get text:name="#string" (text:display="value | formula | none" )? + (style:data-style-name="(#NCName)?" )? TEXT>  @@ -26636,8 +26636,8 @@

text:user-field-input Element< Child Relations - <text:user-field-input text:name="<string>" (text:description="<string>" )? - (style:data-style-name="(<NCName>)?" )? + <text:user-field-input text:name="#string" (text:description="#string" )? + (style:data-style-name="(#NCName)?" )? TEXT>  @@ -26683,11 +26683,11 @@

text:user-index Element

Child Relations - <text:user-index (text:style-name="(<NCName>)?" )? - text:name="<string>" (text:protected="<boolean>" )? - (text:protection-key="<string>" )? - (text:protection-key-digest-algorithm="<anyIRI>" )? - (xml:id="<ID>" )? + <text:user-index (text:style-name="(#NCName)?" )? + text:name="#string" (text:protected="#boolean" )? + (text:protection-key="#string" )? + (text:protection-key-digest-algorithm="#anyIRI" )? + (xml:id="#ID" )? <text:user-index-source ... ><text:index-body ... >>  @@ -26720,7 +26720,7 @@

text:user-index-entry-tem Child Relations - <text:user-index-entry-template text:outline-level="<positiveInteger>" text:style-name="(<NCName>)?" (<text:index-entry-chapter ... > | <text:index-entry-page-number ... > | <text:index-entry-text ... > | <text:index-entry-span ... > | <text:index-entry-tab-stop ... >)* >  + <text:user-index-entry-template text:outline-level="#positiveInteger" text:style-name="(#NCName)?" (<text:index-entry-chapter ... > | <text:index-entry-page-number ... > | <text:index-entry-text ... > | <text:index-entry-span ... > | <text:index-entry-tab-stop ... >)* > 
@@ -26754,8 +26754,8 @@

text:user-index-mark Element Child Relations - <text:user-index-mark text:string-value="<string>" (text:outline-level="<positiveInteger>" )? - text:index-name="<string>" >  + <text:user-index-mark text:string-value="#string" (text:outline-level="#positiveInteger" )? + text:index-name="#string" > 
@@ -26787,7 +26787,7 @@

text:user-index-mark-end Elemen Child Relations - <text:user-index-mark-end text:id="<string>" >  + <text:user-index-mark-end text:id="#string" > 
@@ -26821,8 +26821,8 @@

text:user-index-mark-start El Child Relations - <text:user-index-mark-start text:id="<string>" (text:outline-level="<positiveInteger>" )? - text:index-name="<string>" >  + <text:user-index-mark-start text:id="#string" (text:outline-level="#positiveInteger" )? + text:index-name="#string" > 
@@ -26861,15 +26861,15 @@

text:user-index-source Element Child Relations <text:user-index-source (text:index-scope="document | chapter" )? - (text:relative-tab-stop-position="<boolean>" )? - (text:use-index-marks="<boolean>" )? - (text:use-index-source-styles="<boolean>" )? - (text:use-graphics="<boolean>" )? - (text:use-tables="<boolean>" )? - (text:use-floating-frames="<boolean>" )? - (text:use-objects="<boolean>" )? - (text:copy-outline-levels="<boolean>" )? - text:index-name="<string>" (<text:index-title-template ... >)? + (text:relative-tab-stop-position="#boolean" )? + (text:use-index-marks="#boolean" )? + (text:use-index-source-styles="#boolean" )? + (text:use-graphics="#boolean" )? + (text:use-tables="#boolean" )? + (text:use-floating-frames="#boolean" )? + (text:use-objects="#boolean" )? + (text:copy-outline-levels="#boolean" )? + text:index-name="#string" (<text:index-title-template ... >)? (<text:user-index-entry-template ... >)* (<text:index-source-styles ... >)* >  @@ -26897,7 +26897,7 @@

text:variable-decl Element

Child Relations - <text:variable-decl text:name="<string>" office:value-type="float | time | date | percentage | currency | boolean | string" >  + <text:variable-decl text:name="#string" office:value-type="float | time | date | percentage | currency | boolean | string" > 
@@ -26966,8 +26966,8 @@

text:variable-get Element

Child Relations - <text:variable-get text:name="<string>" (text:display="value | formula" )? - (style:data-style-name="(<NCName>)?" )? + <text:variable-get text:name="#string" (text:display="value | formula" )? + (style:data-style-name="(#NCName)?" )? TEXT>  @@ -27005,9 +27005,9 @@

text:variable-input Element

Child Relations - <text:variable-input text:name="<string>" (text:description="<string>" )? + <text:variable-input text:name="#string" (text:description="#string" )? office:value-type="float | time | date | percentage | currency | boolean | string" (text:display="value | none" )? - (style:data-style-name="(<NCName>)?" )? + (style:data-style-name="(#NCName)?" )? TEXT>  @@ -27057,18 +27057,18 @@

text:variable-set Element

Child Relations - <text:variable-set text:name="<string>" (text:formula="<string>" )? + <text:variable-set text:name="#string" (text:formula="#string" )? - (office:value-type="float" office:value="<double>" ) | - (office:value-type="percentage" office:value="<double>" ) | - (office:value-type="currency" office:value="<double>" (office:currency="<string>" )? + (office:value-type="float" office:value="#double" ) | + (office:value-type="percentage" office:value="#double" ) | + (office:value-type="currency" office:value="#double" (office:currency="#string" )? ) | - (office:value-type="date" office:date-value="<date> | <dateTime>" ) | - (office:value-type="time" office:time-value="<duration>" ) | - (office:value-type="boolean" office:boolean-value="<boolean>" ) | - (office:value-type="string" (office:string-value="<string>" )? + (office:value-type="date" office:date-value="#date | #dateTime" ) | + (office:value-type="time" office:time-value="#duration" ) | + (office:value-type="boolean" office:boolean-value="#boolean" ) | + (office:value-type="string" (office:string-value="#string" )? ) (text:display="value | none" )? - (style:data-style-name="(<NCName>)?" )? + (style:data-style-name="(#NCName)?" )? TEXT>  @@ -27104,8 +27104,8 @@

text:word-count Element

Child Relations - <CHOICE_NAME_CLASS ( (style:num-format="(1 | i | I | <string>)?" | - (style:num-format="a | A" (style:num-letter-sync="<boolean>" )? + <CHOICE_NAME_CLASS ( (style:num-format="(1 | i | I | #string)?" | + (style:num-format="a | A" (style:num-letter-sync="#boolean" )? ))? )? TEXT>  @@ -27161,7 +27161,7 @@

anim:audio-level Attribute

RNG Relations - anim:audio-level="<double>"   + anim:audio-level="#double"  
@@ -27238,7 +27238,7 @@

anim:command Attribute

RNG Relations - anim:command="<string>"   + anim:command="#string"  
@@ -27267,7 +27267,7 @@

anim:formula Attribute

RNG Relations - anim:formula="<string>"   + anim:formula="#string"  
@@ -27296,7 +27296,7 @@

anim:id Attribute

RNG Relations - anim:id="<NCName>"   + anim:id="#NCName"  
@@ -27321,7 +27321,7 @@

anim:iterate-interval Attribute< RNG Relations - anim:iterate-interval="<duration>"   + anim:iterate-interval="#duration"  
@@ -27346,7 +27346,7 @@

anim:iterate-type Attribute

RNG Relations - anim:iterate-type="<string>"   + anim:iterate-type="#string"  
@@ -27371,7 +27371,7 @@

anim:name Attribute

RNG Relations - anim:name="<string>"   + anim:name="#string"  
@@ -27403,7 +27403,7 @@

anim:sub-item Attribute

RNG Relations - anim:sub-item="<string>"   + anim:sub-item="#string"  
@@ -27428,7 +27428,7 @@

anim:value Attribute

RNG Relations - anim:value="<string>"   + anim:value="#string"  
@@ -27453,7 +27453,7 @@

chart:angle-offset Attribute&nb RNG Relations - chart:angle-offset="<string>"   + chart:angle-offset="#string"  
@@ -27478,7 +27478,7 @@

chart:attached-axis Attribute< RNG Relations - chart:attached-axis="<string>"   + chart:attached-axis="#string"  
@@ -27504,7 +27504,7 @@

chart:auto-position Attribute& RNG Relations - chart:auto-position="<boolean>"   + chart:auto-position="#boolean"  
@@ -27530,7 +27530,7 @@

chart:auto-size Attribute (ne RNG Relations - chart:auto-size="<boolean>"   + chart:auto-size="#boolean"  
@@ -27556,7 +27556,7 @@

chart:automatic-content Attrib RNG Relations - chart:automatic-content="<boolean>"   + chart:automatic-content="#boolean"  
@@ -27611,7 +27611,7 @@

chart:axis-position Attribute& RNG Relations - chart:axis-position="start | end | <double>"   + chart:axis-position="start | end | #double"  
@@ -27690,7 +27690,7 @@

chart:column-mapping Attribute RNG Relations - chart:column-mapping="<string>"   + chart:column-mapping="#string"  
@@ -27716,7 +27716,7 @@

chart:connect-bars Attribute&nb RNG Relations - chart:connect-bars="<boolean>"   + chart:connect-bars="#boolean"  
@@ -27770,7 +27770,7 @@

chart:data-label-symbol Attrib RNG Relations - chart:data-label-symbol="<boolean>"   + chart:data-label-symbol="#boolean"  
@@ -27796,7 +27796,7 @@

chart:data-label-text Attribute< RNG Relations - chart:data-label-text="<boolean>"   + chart:data-label-text="#boolean"  
@@ -27850,7 +27850,7 @@

chart:deep Attribute (new in ODF 1 RNG Relations - chart:deep="<boolean>"   + chart:deep="#boolean"  
@@ -27904,7 +27904,7 @@

chart:display-equation Attribut RNG Relations - chart:display-equation="<boolean>"   + chart:display-equation="#boolean"  
@@ -27930,7 +27930,7 @@

chart:display-label Attribute& RNG Relations - chart:display-label="<boolean>"   + chart:display-label="#boolean"  
@@ -27956,7 +27956,7 @@

chart:display-r-square Attribut RNG Relations - chart:display-r-square="<boolean>"   + chart:display-r-square="#boolean"  
@@ -28014,7 +28014,7 @@

chart:error-lower-indicato RNG Relations - chart:error-lower-indicator="<boolean>"   + chart:error-lower-indicator="#boolean"  
@@ -28039,7 +28039,7 @@

chart:error-lower-limit Attrib RNG Relations - chart:error-lower-limit="<double>"   + chart:error-lower-limit="#double"  
@@ -28064,7 +28064,7 @@

chart:error-lower-range Attrib RNG Relations - chart:error-lower-range="<string>"   + chart:error-lower-range="#string"  
@@ -28089,7 +28089,7 @@

chart:error-margin Attribute&nb RNG Relations - chart:error-margin="<double>"   + chart:error-margin="#double"  
@@ -28114,7 +28114,7 @@

chart:error-percentage Attribut RNG Relations - chart:error-percentage="<double>"   + chart:error-percentage="#double"  
@@ -28140,7 +28140,7 @@

chart:error-upper-indicato RNG Relations - chart:error-upper-indicator="<boolean>"   + chart:error-upper-indicator="#boolean"  
@@ -28165,7 +28165,7 @@

chart:error-upper-limit Attrib RNG Relations - chart:error-upper-limit="<double>"   + chart:error-upper-limit="#double"  
@@ -28190,7 +28190,7 @@

chart:error-upper-range Attrib RNG Relations - chart:error-upper-range="<string>"   + chart:error-upper-range="#string"  
@@ -28215,7 +28215,7 @@

chart:gap-width Attribute (ne RNG Relations - chart:gap-width="<integer>"   + chart:gap-width="#integer"  
@@ -28241,7 +28241,7 @@

chart:group-bars-per-axis At RNG Relations - chart:group-bars-per-axis="<boolean>"   + chart:group-bars-per-axis="#boolean"  
@@ -28292,7 +28292,7 @@

chart:include-hidden-cells RNG Relations - chart:include-hidden-cells="<boolean>"   + chart:include-hidden-cells="#boolean"  
@@ -28344,7 +28344,7 @@

chart:interval-major Attribute RNG Relations - chart:interval-major="<double>"   + chart:interval-major="#double"  
@@ -28369,7 +28369,7 @@

chart:interval-minor-divi RNG Relations - chart:interval-minor-divisor="<positiveInteger>"   + chart:interval-minor-divisor="#positiveInteger"  
@@ -28395,7 +28395,7 @@

chart:japanese-candle-stic RNG Relations - chart:japanese-candle-stick="<boolean>"   + chart:japanese-candle-stick="#boolean"  
@@ -28447,7 +28447,7 @@

chart:label-cell-address Attr RNG Relations - chart:label-cell-address="<string>"   + chart:label-cell-address="#string"  
@@ -28632,7 +28632,7 @@

chart:lines Attribute (new in ODF RNG Relations - chart:lines="<boolean>"   + chart:lines="#boolean"  
@@ -28658,7 +28658,7 @@

chart:link-data-style- RNG Relations - chart:link-data-style-to-source="<boolean>"   + chart:link-data-style-to-source="#boolean"  
@@ -28684,7 +28684,7 @@

chart:logarithmic Attribute  RNG Relations - chart:logarithmic="<boolean>"   + chart:logarithmic="#boolean"  
@@ -28709,7 +28709,7 @@

chart:maximum Attribute (new in RNG Relations - chart:maximum="<double>"   + chart:maximum="#double"  
@@ -28735,7 +28735,7 @@

chart:mean-value Attribute ( RNG Relations - chart:mean-value="<boolean>"   + chart:mean-value="#boolean"  
@@ -28760,7 +28760,7 @@

chart:minimum Attribute (new in RNG Relations - chart:minimum="<double>"   + chart:minimum="#double"  
@@ -28785,7 +28785,7 @@

chart:name Attribute

RNG Relations - chart:name="<string>"   + chart:name="#string"  
@@ -28810,7 +28810,7 @@

chart:origin Attribute (new in O RNG Relations - chart:origin="<double>"   + chart:origin="#double"  
@@ -28835,7 +28835,7 @@

chart:overlap Attribute (new in RNG Relations - chart:overlap="<integer>"   + chart:overlap="#integer"  
@@ -28861,7 +28861,7 @@

chart:percentage Attribute ( RNG Relations - chart:percentage="<boolean>"   + chart:percentage="#boolean"  
@@ -28886,7 +28886,7 @@

chart:pie-offset Attribute ( RNG Relations - chart:pie-offset="<nonNegativeInteger>"   + chart:pie-offset="#nonNegativeInteger"  
@@ -28940,7 +28940,7 @@

chart:repeated Attribute

RNG Relations - chart:repeated="<positiveInteger>"   + chart:repeated="#positiveInteger"  
@@ -28966,7 +28966,7 @@

chart:reverse-direction Attrib RNG Relations - chart:reverse-direction="<boolean>"   + chart:reverse-direction="#boolean"  
@@ -28992,7 +28992,7 @@

chart:right-angled-axes Attrib RNG Relations - chart:right-angled-axes="<boolean>"   + chart:right-angled-axes="#boolean"  
@@ -29017,7 +29017,7 @@

chart:row-mapping Attribute

RNG Relations - chart:row-mapping="<string>"   + chart:row-mapping="#string"  
@@ -29043,7 +29043,7 @@

chart:scale-text Attribute ( RNG Relations - chart:scale-text="<boolean>"   + chart:scale-text="#boolean"  
@@ -29123,7 +29123,7 @@

chart:sort-by-x-values Attribut RNG Relations - chart:sort-by-x-values="<boolean>"   + chart:sort-by-x-values="#boolean"  
@@ -29148,7 +29148,7 @@

chart:spline-order Attribute&nb RNG Relations - chart:spline-order="<positiveInteger>"   + chart:spline-order="#positiveInteger"  
@@ -29173,7 +29173,7 @@

chart:spline-resolution Attrib RNG Relations - chart:spline-resolution="<positiveInteger>"   + chart:spline-resolution="#positiveInteger"  
@@ -29199,7 +29199,7 @@

chart:stacked Attribute (new in RNG Relations - chart:stacked="<boolean>"   + chart:stacked="#boolean"  
@@ -29243,7 +29243,7 @@

chart:style-name Attribute

RNG Relations - chart:style-name="(<NCName>)?"   + chart:style-name="(#NCName)?"  
@@ -29462,7 +29462,7 @@

chart:text-overlap Attribute&nb RNG Relations - chart:text-overlap="<boolean>"   + chart:text-overlap="#boolean"  
@@ -29488,7 +29488,7 @@

chart:three-dimensional Attrib RNG Relations - chart:three-dimensional="<boolean>"   + chart:three-dimensional="#boolean"  
@@ -29541,7 +29541,7 @@

chart:tick-marks-major-in RNG Relations - chart:tick-marks-major-inner="<boolean>"   + chart:tick-marks-major-inner="#boolean"  
@@ -29567,7 +29567,7 @@

chart:tick-marks-major-ou RNG Relations - chart:tick-marks-major-outer="<boolean>"   + chart:tick-marks-major-outer="#boolean"  
@@ -29593,7 +29593,7 @@

chart:tick-marks-minor-in RNG Relations - chart:tick-marks-minor-inner="<boolean>"   + chart:tick-marks-minor-inner="#boolean"  
@@ -29619,7 +29619,7 @@

chart:tick-marks-minor-ou RNG Relations - chart:tick-marks-minor-outer="<boolean>"   + chart:tick-marks-minor-outer="#boolean"  
@@ -29671,7 +29671,7 @@

chart:values-cell-rang RNG Relations - chart:values-cell-range-address="<string>"   + chart:values-cell-range-address="#string"  
@@ -29697,7 +29697,7 @@

chart:vertical Attribute (new RNG Relations - chart:vertical="<boolean>"   + chart:vertical="#boolean"  
@@ -29723,7 +29723,7 @@

chart:visible Attribute (new in RNG Relations - chart:visible="<boolean>"   + chart:visible="#boolean"  
@@ -29752,7 +29752,7 @@

config:name Attribute

RNG Relations - config:name="<string>"   + config:name="#string"  
@@ -29809,7 +29809,7 @@

db:additional-column-st RNG Relations - db:additional-column-statement="<string>"   + db:additional-column-statement="#string"  
@@ -29835,7 +29835,7 @@

db:append-table-alias-name RNG Relations - db:append-table-alias-name="<boolean>"   + db:append-table-alias-name="#boolean"  
@@ -29862,7 +29862,7 @@

db:apply-command Attribute ( RNG Relations - db:apply-command="<boolean>"   + db:apply-command="#boolean"  
@@ -29888,7 +29888,7 @@

db:as-template Attribute (new RNG Relations - db:as-template="<boolean>"   + db:as-template="#boolean"  
@@ -29913,7 +29913,7 @@

db:base-dn Attribute (new in ODF 1 RNG Relations - db:base-dn="<string>"   + db:base-dn="#string"  
@@ -29969,7 +29969,7 @@

db:catalog-name Attribute (ne RNG Relations - db:catalog-name="<string>"   + db:catalog-name="#string"  
@@ -29996,7 +29996,7 @@

db:command Attribute (new in ODF 1 RNG Relations - db:command="<string>"   + db:command="#string"  
@@ -30022,7 +30022,7 @@

db:data-source-setting- RNG Relations - db:data-source-setting-is-list="<boolean>"   + db:data-source-setting-is-list="#boolean"  
@@ -30047,7 +30047,7 @@

db:data-source-setting-nam RNG Relations - db:data-source-setting-name="<string>"   + db:data-source-setting-name="#string"  
@@ -30155,7 +30155,7 @@

db:database-name Attribute ( RNG Relations - db:database-name="<string>"   + db:database-name="#string"  
@@ -30180,7 +30180,7 @@

db:decimal Attribute (new in ODF 1 RNG Relations - db:decimal="<string>"   + db:decimal="#string"  
@@ -30205,7 +30205,7 @@

db:default-cell-style-name RNG Relations - db:default-cell-style-name="(<NCName>)?"   + db:default-cell-style-name="(#NCName)?"  
@@ -30231,7 +30231,7 @@

db:default-row-style-name At RNG Relations - db:default-row-style-name="(<NCName>)?"   + db:default-row-style-name="(#NCName)?"  
@@ -30290,7 +30290,7 @@

db:description Attribute (new RNG Relations - db:description="<string>"   + db:description="#string"  
@@ -30316,7 +30316,7 @@

db:enable-sql92-check Attribute< RNG Relations - db:enable-sql92-check="<boolean>"   + db:enable-sql92-check="#boolean"  
@@ -30367,7 +30367,7 @@

db:escape-processing Attribute RNG Relations - db:escape-processing="<boolean>"   + db:escape-processing="#boolean"  
@@ -30392,7 +30392,7 @@

db:extension Attribute (new in O RNG Relations - db:extension="<string>"   + db:extension="#string"  
@@ -30417,7 +30417,7 @@

db:field Attribute (new in ODF 1.2) RNG Relations - db:field="<string>"   + db:field="#string"  
@@ -30442,7 +30442,7 @@

db:hostname Attribute (new in ODF RNG Relations - db:hostname="<string>"   + db:hostname="#string"  
@@ -30468,7 +30468,7 @@

db:ignore-driver-privilege RNG Relations - db:ignore-driver-privileges="<boolean>"   + db:ignore-driver-privileges="#boolean"  
@@ -30494,7 +30494,7 @@

db:is-ascending Attribute (ne RNG Relations - db:is-ascending="<boolean>"   + db:is-ascending="#boolean"  
@@ -30520,7 +30520,7 @@

db:is-autoincrement Attribute& RNG Relations - db:is-autoincrement="<boolean>"   + db:is-autoincrement="#boolean"  
@@ -30546,7 +30546,7 @@

db:is-clustered Attribute (ne RNG Relations - db:is-clustered="<boolean>"   + db:is-clustered="#boolean"  
@@ -30572,7 +30572,7 @@

db:is-empty-allowed Attribute& RNG Relations - db:is-empty-allowed="<boolean>"   + db:is-empty-allowed="#boolean"  
@@ -30599,7 +30599,7 @@

db:is-first-row-header-lin RNG Relations - db:is-first-row-header-line="<boolean>"   + db:is-first-row-header-line="#boolean"  
@@ -30651,7 +30651,7 @@

db:is-password-required Attrib RNG Relations - db:is-password-required="<boolean>"   + db:is-password-required="#boolean"  
@@ -30677,7 +30677,7 @@

db:is-table-name-lengt RNG Relations - db:is-table-name-length-limited="<boolean>"   + db:is-table-name-length-limited="#boolean"  
@@ -30703,7 +30703,7 @@

db:is-unique Attribute (new in O RNG Relations - db:is-unique="<boolean>"   + db:is-unique="#boolean"  
@@ -30728,7 +30728,7 @@

db:local-socket Attribute (ne RNG Relations - db:local-socket="<string>"   + db:local-socket="#string"  
@@ -30753,7 +30753,7 @@

db:login-timeout Attribute ( RNG Relations - db:login-timeout="<positiveInteger>"   + db:login-timeout="#positiveInteger"  
@@ -30778,7 +30778,7 @@

db:max-row-count Attribute ( RNG Relations - db:max-row-count="<integer>"   + db:max-row-count="#integer"  
@@ -30803,7 +30803,7 @@

db:media-type Attribute (new in RNG Relations - db:media-type="<string>"   + db:media-type="#string"  
@@ -30840,7 +30840,7 @@

db:name Attribute (new in ODF 1.2) RNG Relations - db:name="<string>"   + db:name="#string"  
@@ -30866,7 +30866,7 @@

db:parameter-name-subst RNG Relations - db:parameter-name-substitution="<boolean>"   + db:parameter-name-substitution="#boolean"  
@@ -30891,7 +30891,7 @@

db:port Attribute (new in ODF 1.2) RNG Relations - db:port="<positiveInteger>"   + db:port="#positiveInteger"  
@@ -30916,7 +30916,7 @@

db:precision Attribute (new in O RNG Relations - db:precision="<positiveInteger>"   + db:precision="#positiveInteger"  
@@ -30941,7 +30941,7 @@

db:referenced-table-name Attr RNG Relations - db:referenced-table-name="<string>"   + db:referenced-table-name="#string"  
@@ -30966,7 +30966,7 @@

db:related-column-name Attribut RNG Relations - db:related-column-name="<string>"   + db:related-column-name="#string"  
@@ -30991,7 +30991,7 @@

db:row-retrieving-statemen RNG Relations - db:row-retrieving-statement="<string>"   + db:row-retrieving-statement="#string"  
@@ -31016,7 +31016,7 @@

db:scale Attribute (new in ODF 1.2) RNG Relations - db:scale="<positiveInteger>"   + db:scale="#positiveInteger"  
@@ -31043,7 +31043,7 @@

db:schema-name Attribute (new RNG Relations - db:schema-name="<string>"   + db:schema-name="#string"  
@@ -31070,7 +31070,7 @@

db:show-deleted Attribute (ne RNG Relations - db:show-deleted="<boolean>"   + db:show-deleted="#boolean"  
@@ -31095,7 +31095,7 @@

db:string Attribute (new in ODF 1.2 RNG Relations - db:string="<string>"   + db:string="#string"  
@@ -31122,7 +31122,7 @@

db:style-name Attribute (new in RNG Relations - db:style-name="(<NCName>)?"   + db:style-name="(#NCName)?"  
@@ -31148,7 +31148,7 @@

db:suppress-version-column RNG Relations - db:suppress-version-columns="<boolean>"   + db:suppress-version-columns="#boolean"  
@@ -31173,7 +31173,7 @@

db:system-driver-settings At RNG Relations - db:system-driver-settings="<string>"   + db:system-driver-settings="#string"  
@@ -31198,7 +31198,7 @@

db:thousand Attribute (new in ODF RNG Relations - db:thousand="<string>"   + db:thousand="#string"  
@@ -31228,7 +31228,7 @@

db:title Attribute (new in ODF 1.2) RNG Relations - db:title="<string>"   + db:title="#string"  
@@ -31280,7 +31280,7 @@

db:type[2] Attribute (new in ODF 1.2) RNG Relations - db:type="<string>"   + db:type="#string"  
@@ -31333,7 +31333,7 @@

db:type-name Attribute (new in O RNG Relations - db:type-name="<string>"   + db:type-name="#string"  
@@ -31388,7 +31388,7 @@

db:use-catalog Attribute (new RNG Relations - db:use-catalog="<boolean>"   + db:use-catalog="#boolean"  
@@ -31414,7 +31414,7 @@

db:use-system-user Attribute&nb RNG Relations - db:use-system-user="<boolean>"   + db:use-system-user="#boolean"  
@@ -31439,7 +31439,7 @@

db:user-name Attribute (new in O RNG Relations - db:user-name="<string>"   + db:user-name="#string"  
@@ -31465,7 +31465,7 @@

db:visible Attribute (new in ODF 1 RNG Relations - db:visible="<boolean>"   + db:visible="#boolean"  
@@ -31594,7 +31594,7 @@

dr3d:close-back Attribute (ne RNG Relations - dr3d:close-back="<boolean>"   + dr3d:close-back="#boolean"  
@@ -31620,7 +31620,7 @@

dr3d:close-front Attribute ( RNG Relations - dr3d:close-front="<boolean>"   + dr3d:close-front="#boolean"  
@@ -31824,7 +31824,7 @@

dr3d:enabled Attribute

RNG Relations - dr3d:enabled="<boolean>"   + dr3d:enabled="#boolean"  
@@ -31849,7 +31849,7 @@

dr3d:end-angle Attribute (new RNG Relations - dr3d:end-angle="<string>"   + dr3d:end-angle="#string"  
@@ -31900,7 +31900,7 @@

dr3d:horizontal-segments Attr RNG Relations - dr3d:horizontal-segments="<nonNegativeInteger>"   + dr3d:horizontal-segments="#nonNegativeInteger"  
@@ -31955,7 +31955,7 @@

dr3d:lighting-mode[2] Attribute RNG Relations - dr3d:lighting-mode="<boolean>"   + dr3d:lighting-mode="#boolean"  
@@ -32168,7 +32168,7 @@

dr3d:shadow-slant Attribute

RNG Relations - dr3d:shadow-slant="<string>"   + dr3d:shadow-slant="#string"  
@@ -32244,7 +32244,7 @@

dr3d:specular Attribute

RNG Relations - dr3d:specular="<boolean>"   + dr3d:specular="#boolean"  
@@ -32433,7 +32433,7 @@

dr3d:transform Attribute

RNG Relations - dr3d:transform="<string>"   + dr3d:transform="#string"  
@@ -32458,7 +32458,7 @@

dr3d:vertical-segments Attribut RNG Relations - dr3d:vertical-segments="<nonNegativeInteger>"   + dr3d:vertical-segments="#nonNegativeInteger"  
@@ -32594,7 +32594,7 @@

draw:angle Attribute

RNG Relations - draw:angle="<string>"   + draw:angle="#string"  
@@ -32619,7 +32619,7 @@

draw:archive Attribute

RNG Relations - draw:archive="<string>"   + draw:archive="#string"  
@@ -32645,7 +32645,7 @@

draw:auto-grow-height Attribute< RNG Relations - draw:auto-grow-height="<boolean>"   + draw:auto-grow-height="#boolean"  
@@ -32671,7 +32671,7 @@

draw:auto-grow-width Attribute RNG Relations - draw:auto-grow-width="<boolean>"   + draw:auto-grow-width="#boolean"  
@@ -32773,7 +32773,7 @@

draw:caption-angle Attribute&nb RNG Relations - draw:caption-angle="<string>"   + draw:caption-angle="#string"  
@@ -32878,7 +32878,7 @@

draw:caption-fit-line-len RNG Relations - draw:caption-fit-line-length="<boolean>"   + draw:caption-fit-line-length="#boolean"  
@@ -32944,7 +32944,7 @@

draw:caption-id Attribute (ne RNG Relations - draw:caption-id="<IDREF>"   + draw:caption-id="#IDREF"  
@@ -33073,7 +33073,7 @@

draw:chain-next-name Attribute RNG Relations - draw:chain-next-name="<string>"   + draw:chain-next-name="#string"  
@@ -33098,7 +33098,7 @@

draw:class-id Attribute

RNG Relations - draw:class-id="<string>"   + draw:class-id="#string"  
@@ -33145,7 +33145,7 @@

draw:class-names Attribute

RNG Relations draw:class-names=" -START_list(<NCName>)* +START_list(#NCName)* END_list"   @@ -33171,7 +33171,7 @@

draw:code Attribute

RNG Relations - draw:code="<string>"   + draw:code="#string"  
@@ -33223,7 +33223,7 @@

draw:color-inversion Attribute RNG Relations - draw:color-inversion="<boolean>"   + draw:color-inversion="#boolean"  
@@ -33329,7 +33329,7 @@

draw:concentric- RNG Relations - draw:concentric-gradient-fill-allowed="<boolean>"   + draw:concentric-gradient-fill-allowed="#boolean"  
@@ -33379,7 +33379,7 @@

draw:control Attribute

RNG Relations - draw:control="<IDREF>"   + draw:control="#IDREF"  
@@ -33404,7 +33404,7 @@

draw:copy-of Attribute

RNG Relations - draw:copy-of="<string>"   + draw:copy-of="#string"  
@@ -33457,7 +33457,7 @@

draw:corners Attribute

RNG Relations - draw:corners="<positiveInteger>"   + draw:corners="#positiveInteger"  
@@ -33534,7 +33534,7 @@

draw:data Attribute

RNG Relations - draw:data="<string>"   + draw:data="#string"  
@@ -33559,7 +33559,7 @@

draw:decimal-places Attribute& RNG Relations - draw:decimal-places="<nonNegativeInteger>"   + draw:decimal-places="#nonNegativeInteger"  
@@ -33619,7 +33619,7 @@

draw:display-name Attribute

RNG Relations - draw:display-name="<string>"   + draw:display-name="#string"  
@@ -33697,7 +33697,7 @@

draw:dots1 Attribute

RNG Relations - draw:dots1="<integer>"   + draw:dots1="#integer"  
@@ -33748,7 +33748,7 @@

draw:dots2 Attribute

RNG Relations - draw:dots2="<integer>"   + draw:dots2="#integer"  
@@ -33853,7 +33853,7 @@

draw:end-angle Attribute

RNG Relations - draw:end-angle="<string>"   + draw:end-angle="#string"  
@@ -33903,7 +33903,7 @@

draw:end-glue-point Attribute< RNG Relations - draw:end-glue-point="<nonNegativeInteger>"   + draw:end-glue-point="#nonNegativeInteger"  
@@ -34028,7 +34028,7 @@

draw:end-shape Attribute

RNG Relations - draw:end-shape="<IDREF>"   + draw:end-shape="#IDREF"  
@@ -34078,7 +34078,7 @@

draw:enhanced-path Attribute RNG Relations - draw:enhanced-path="<string>"   + draw:enhanced-path="#string"  
@@ -34135,7 +34135,7 @@

draw:extrusion Attribute

RNG Relations - draw:extrusion="<boolean>"   + draw:extrusion="#boolean"  
@@ -34161,7 +34161,7 @@

draw:extrusion-allowed Attribut RNG Relations - draw:extrusion-allowed="<boolean>"   + draw:extrusion-allowed="#boolean"  
@@ -34212,7 +34212,7 @@

draw:extrusion-color Attribute RNG Relations - draw:extrusion-color="<boolean>"   + draw:extrusion-color="#boolean"  
@@ -34239,7 +34239,7 @@

draw:extrusion-depth Attribute RNG Relations draw:extrusion-depth=" -START_liststring]<double> +START_liststring]#double END_list"   @@ -34316,7 +34316,7 @@

draw:extrusion-first- RNG Relations - draw:extrusion-first-light-harsh="<boolean>"   + draw:extrusion-first-light-harsh="#boolean"  
@@ -34367,7 +34367,7 @@

draw:extrusion-light-face At RNG Relations - draw:extrusion-light-face="<boolean>"   + draw:extrusion-light-face="#boolean"  
@@ -34393,7 +34393,7 @@

draw:extrusion-metal Attribute RNG Relations - draw:extrusion-metal="<boolean>"   + draw:extrusion-metal="#boolean"  
@@ -34418,7 +34418,7 @@

draw:extrusion- RNG Relations - draw:extrusion-number-of-line-segments="<integer>"   + draw:extrusion-number-of-line-segments="#integer"  
@@ -34471,7 +34471,7 @@

draw:extrusion-rotation- RNG Relations draw:extrusion-rotation-angle=" -START_list<string><string> +START_list#string#string END_list"   @@ -34548,7 +34548,7 @@

draw:extrusion-secon RNG Relations - draw:extrusion-second-light-harsh="<boolean>"   + draw:extrusion-second-light-harsh="#boolean"  
@@ -34625,7 +34625,7 @@

draw:extrusion-skew Attribute< RNG Relations draw:extrusion-skew=" -START_list<double><string> +START_list#double#string END_list"   @@ -34758,7 +34758,7 @@

draw:fill-gradient-name Attrib RNG Relations - draw:fill-gradient-name="(<NCName>)?"   + draw:fill-gradient-name="(#NCName)?"  
@@ -34784,7 +34784,7 @@

draw:fill-hatch-name Attribute RNG Relations - draw:fill-hatch-name="(<NCName>)?"   + draw:fill-hatch-name="(#NCName)?"  
@@ -34811,7 +34811,7 @@

draw:fill-hatch-solid Attribute< RNG Relations - draw:fill-hatch-solid="<boolean>"   + draw:fill-hatch-solid="#boolean"  
@@ -34864,7 +34864,7 @@

draw:fill-image-name Attribute RNG Relations - draw:fill-image-name="(<NCName>)?"   + draw:fill-image-name="(#NCName)?"  
@@ -35002,7 +35002,7 @@

draw:filter-name Attribute

RNG Relations - draw:filter-name="<string>"   + draw:filter-name="#string"  
@@ -35028,7 +35028,7 @@

draw:fit-to-contour Attribute& RNG Relations - draw:fit-to-contour="<boolean>"   + draw:fit-to-contour="#boolean"  
@@ -35054,7 +35054,7 @@

draw:fit-to-size Attribute ( RNG Relations - draw:fit-to-size="<boolean>"   + draw:fit-to-size="#boolean"  
@@ -35079,7 +35079,7 @@

draw:formula Attribute

RNG Relations - draw:formula="<string>"   + draw:formula="#string"  
@@ -35105,7 +35105,7 @@

draw:frame-display-border At RNG Relations - draw:frame-display-border="<boolean>"   + draw:frame-display-border="#boolean"  
@@ -35131,7 +35131,7 @@

draw:frame-display-scroll RNG Relations - draw:frame-display-scrollbar="<boolean>"   + draw:frame-display-scrollbar="#boolean"  
@@ -35206,7 +35206,7 @@

draw:frame-name Attribute

RNG Relations - draw:frame-name="<string>"   + draw:frame-name="#string"  
@@ -35256,7 +35256,7 @@

draw:glue-point-lea RNG Relations - draw:glue-point-leaving-directions="<string>"   + draw:glue-point-leaving-directions="#string"  
@@ -35308,7 +35308,7 @@

draw:glue-points Attribute

RNG Relations - draw:glue-points="<string>"   + draw:glue-points="#string"  
@@ -35334,7 +35334,7 @@

draw:gradient-step-count Attr RNG Relations - draw:gradient-step-count="<nonNegativeInteger>"   + draw:gradient-step-count="#nonNegativeInteger"  
@@ -35435,7 +35435,7 @@

draw:handle-mirror-horiz RNG Relations - draw:handle-mirror-horizontal="<boolean>"   + draw:handle-mirror-horizontal="#boolean"  
@@ -35461,7 +35461,7 @@

draw:handle-mirror-vertica RNG Relations - draw:handle-mirror-vertical="<boolean>"   + draw:handle-mirror-vertical="#boolean"  
@@ -35486,7 +35486,7 @@

draw:handle-polar Attribute

RNG Relations - draw:handle-polar="<string>"   + draw:handle-polar="#string"  
@@ -35511,7 +35511,7 @@

draw:handle-position Attribute RNG Relations - draw:handle-position="<string>"   + draw:handle-position="#string"  
@@ -35536,7 +35536,7 @@

draw:handle-radius-ra RNG Relations - draw:handle-radius-range-maximum="<string>"   + draw:handle-radius-range-maximum="#string"  
@@ -35561,7 +35561,7 @@

draw:handle-radius-ra RNG Relations - draw:handle-radius-range-minimum="<string>"   + draw:handle-radius-range-minimum="#string"  
@@ -35586,7 +35586,7 @@

draw:handle-range-x-maximu RNG Relations - draw:handle-range-x-maximum="<string>"   + draw:handle-range-x-maximum="#string"  
@@ -35611,7 +35611,7 @@

draw:handle-range-x-minimu RNG Relations - draw:handle-range-x-minimum="<string>"   + draw:handle-range-x-minimum="#string"  
@@ -35636,7 +35636,7 @@

draw:handle-range-y-maximu RNG Relations - draw:handle-range-y-maximum="<string>"   + draw:handle-range-y-maximum="#string"  
@@ -35661,7 +35661,7 @@

draw:handle-range-y-minimu RNG Relations - draw:handle-range-y-minimum="<string>"   + draw:handle-range-y-minimum="#string"  
@@ -35687,7 +35687,7 @@

draw:handle-switched Attribute RNG Relations - draw:handle-switched="<boolean>"   + draw:handle-switched="#boolean"  
@@ -35713,7 +35713,7 @@

draw:id[1] Attribute

RNG Relations - draw:id="<nonNegativeInteger>"   + draw:id="#nonNegativeInteger"  
@@ -35761,7 +35761,7 @@

draw:id[2] Attribute

RNG Relations - draw:id="<NCName>"   + draw:id="#NCName"  
@@ -35860,7 +35860,7 @@

draw:layer Attribute

RNG Relations - draw:layer="<string>"   + draw:layer="#string"  
@@ -35962,7 +35962,7 @@

draw:marker-end Attribute (ne RNG Relations - draw:marker-end="(<NCName>)?"   + draw:marker-end="(#NCName)?"  
@@ -35988,7 +35988,7 @@

draw:marker-end-center Attribut RNG Relations - draw:marker-end-center="<boolean>"   + draw:marker-end-center="#boolean"  
@@ -36038,7 +36038,7 @@

draw:marker-start Attribute  RNG Relations - draw:marker-start="(<NCName>)?"   + draw:marker-start="(#NCName)?"  
@@ -36064,7 +36064,7 @@

draw:marker-start-center Attr RNG Relations - draw:marker-start-center="<boolean>"   + draw:marker-start-center="#boolean"  
@@ -36114,7 +36114,7 @@

draw:master-page-name Attribute< RNG Relations - draw:master-page-name="(<NCName>)?"   + draw:master-page-name="(#NCName)?"  
@@ -36140,7 +36140,7 @@

draw:may-script Attribute

RNG Relations - draw:may-script="<boolean>"   + draw:may-script="#boolean"  
@@ -36221,7 +36221,7 @@

draw:mime-type Attribute

RNG Relations - draw:mime-type="<string>"   + draw:mime-type="#string"  
@@ -36247,7 +36247,7 @@

draw:mirror-horizontal Attribut RNG Relations - draw:mirror-horizontal="<boolean>"   + draw:mirror-horizontal="#boolean"  
@@ -36273,7 +36273,7 @@

draw:mirror-vertical Attribute RNG Relations - draw:mirror-vertical="<boolean>"   + draw:mirror-vertical="#boolean"  
@@ -36298,7 +36298,7 @@

draw:modifiers Attribute

RNG Relations - draw:modifiers="<string>"   + draw:modifiers="#string"  
@@ -36344,7 +36344,7 @@

draw:name[1] Attribute

RNG Relations - draw:name="<string>"   + draw:name="#string"  
@@ -36377,7 +36377,7 @@

draw:name[2] Attribute

RNG Relations - draw:name="<NCName>"   + draw:name="#NCName"  
@@ -36402,7 +36402,7 @@

draw:nav-order Attribute (new RNG Relations - draw:nav-order="<IDREFS>"   + draw:nav-order="#IDREFS"  
@@ -36454,7 +36454,7 @@

draw:notify-on-update- RNG Relations - draw:notify-on-update-of-ranges="<string> | <string>"   + draw:notify-on-update-of-ranges="#string | #string"  
@@ -36479,7 +36479,7 @@

draw:object Attribute

RNG Relations - draw:object="<string>"   + draw:object="#string"  
@@ -36504,7 +36504,7 @@

draw:ole-draw-aspect Attribute RNG Relations - draw:ole-draw-aspect="<nonNegativeInteger>"   + draw:ole-draw-aspect="#nonNegativeInteger"  
@@ -36557,7 +36557,7 @@

draw:opacity-name Attribute  RNG Relations - draw:opacity-name="(<NCName>)?"   + draw:opacity-name="(#NCName)?"  
@@ -36582,7 +36582,7 @@

draw:page-number Attribute

RNG Relations - draw:page-number="<positiveInteger>"   + draw:page-number="#positiveInteger"  
@@ -36608,7 +36608,7 @@

draw:parallel Attribute (new in RNG Relations - draw:parallel="<boolean>"   + draw:parallel="#boolean"  
@@ -36633,7 +36633,7 @@

draw:path-stretchpoint-x Attr RNG Relations - draw:path-stretchpoint-x="<double>"   + draw:path-stretchpoint-x="#double"  
@@ -36658,7 +36658,7 @@

draw:path-stretchpoint-y Attr RNG Relations - draw:path-stretchpoint-y="<double>"   + draw:path-stretchpoint-y="#double"  
@@ -36738,7 +36738,7 @@

draw:protected Attribute

RNG Relations - draw:protected="<boolean>"   + draw:protected="#boolean"  
@@ -36765,7 +36765,7 @@

draw:recreate-on-edit Attribute< RNG Relations - draw:recreate-on-edit="<boolean>"   + draw:recreate-on-edit="#boolean"  
@@ -36815,7 +36815,7 @@

draw:rotation Attribute

RNG Relations - draw:rotation="<string>"   + draw:rotation="#string"  
@@ -36997,7 +36997,7 @@

draw:shape-id Attribute

RNG Relations - draw:shape-id="<IDREF>"   + draw:shape-id="#IDREF"  
@@ -37048,7 +37048,7 @@

draw:show-unit Attribute (new RNG Relations - draw:show-unit="<boolean>"   + draw:show-unit="#boolean"  
@@ -37099,7 +37099,7 @@

draw:start-angle Attribute

RNG Relations - draw:start-angle="<string>"   + draw:start-angle="#string"  
@@ -37149,7 +37149,7 @@

draw:start-glue-point Attribute< RNG Relations - draw:start-glue-point="<nonNegativeInteger>"   + draw:start-glue-point="#nonNegativeInteger"  
@@ -37274,7 +37274,7 @@

draw:start-shape Attribute

RNG Relations - draw:start-shape="<IDREF>"   + draw:start-shape="#IDREF"  
@@ -37326,7 +37326,7 @@

draw:stroke-dash Attribute ( RNG Relations - draw:stroke-dash="(<NCName>)?"   + draw:stroke-dash="(#NCName)?"  
@@ -37352,7 +37352,7 @@

draw:stroke-dash-names Attribut RNG Relations draw:stroke-dash-names=" -START_list(<NCName>)* +START_list(#NCName)* END_list"   @@ -37519,7 +37519,7 @@

draw:style-name Attribute

RNG Relations - draw:style-name="(<NCName>)?"   + draw:style-name="(#NCName)?"  
@@ -37569,7 +37569,7 @@

draw:text-areas Attribute

RNG Relations - draw:text-areas="<string>"   + draw:text-areas="#string"  
@@ -37595,7 +37595,7 @@

draw:text-path Attribute

RNG Relations - draw:text-path="<boolean>"   + draw:text-path="#boolean"  
@@ -37621,7 +37621,7 @@

draw:text-path-allowed Attribut RNG Relations - draw:text-path-allowed="<boolean>"   + draw:text-path-allowed="#boolean"  
@@ -37674,7 +37674,7 @@

draw:text-path-same RNG Relations - draw:text-path-same-letter-heights="<boolean>"   + draw:text-path-same-letter-heights="#boolean"  
@@ -37725,7 +37725,7 @@

draw:text-rotate-angle Attribut RNG Relations - draw:text-rotate-angle="<string>"   + draw:text-rotate-angle="#string"  
@@ -37764,7 +37764,7 @@

draw:text-style-name Attribute RNG Relations - draw:text-style-name="(<NCName>)?"   + draw:text-style-name="(#NCName)?"  
@@ -37890,7 +37890,7 @@

draw:transform Attribute

RNG Relations - draw:transform="<string>"   + draw:transform="#string"  
@@ -37946,7 +37946,7 @@

draw:type[2] Attribute

RNG Relations - draw:type="non-primitive | <string>"   + draw:type="non-primitive | #string"  
@@ -38005,7 +38005,7 @@

draw:value Attribute

RNG Relations - draw:value="<string>"   + draw:value="#string"  
@@ -38178,7 +38178,7 @@

draw:z-index Attribute

RNG Relations - draw:z-index="<nonNegativeInteger>"   + draw:z-index="#nonNegativeInteger"  
@@ -38241,7 +38241,7 @@

fo:border Attribute (new in ODF 1.2 RNG Relations - fo:border="<string>"   + fo:border="#string"  
@@ -38270,7 +38270,7 @@

fo:border-bottom Attribute ( RNG Relations - fo:border-bottom="<string>"   + fo:border-bottom="#string"  
@@ -38299,7 +38299,7 @@

fo:border-left Attribute (new RNG Relations - fo:border-left="<string>"   + fo:border-left="#string"  
@@ -38328,7 +38328,7 @@

fo:border-right Attribute (ne RNG Relations - fo:border-right="<string>"   + fo:border-right="#string"  
@@ -38357,7 +38357,7 @@

fo:border-top Attribute (new in RNG Relations - fo:border-top="<string>"   + fo:border-top="#string"  
@@ -38493,7 +38493,7 @@

fo:column-count Attribute (ne RNG Relations - fo:column-count="<positiveInteger>"   + fo:column-count="#positiveInteger"  
@@ -38595,7 +38595,7 @@

fo:font-family Attribute (new RNG Relations - fo:font-family="<string>"   + fo:font-family="#string"  
@@ -38760,7 +38760,7 @@

fo:hyphenate Attribute (new in O RNG Relations - fo:hyphenate="<boolean>"   + fo:hyphenate="#boolean"  
@@ -38812,7 +38812,7 @@

fo:hyphenation-ladder-coun RNG Relations - fo:hyphenation-ladder-count="no-limit | <positiveInteger>"   + fo:hyphenation-ladder-count="no-limit | #positiveInteger"  
@@ -38837,7 +38837,7 @@

fo:hyphenation-push-cha RNG Relations - fo:hyphenation-push-char-count="<positiveInteger>"   + fo:hyphenation-push-char-count="#positiveInteger"  
@@ -38862,7 +38862,7 @@

fo:hyphenation-remain RNG Relations - fo:hyphenation-remain-char-count="<positiveInteger>"   + fo:hyphenation-remain-char-count="#positiveInteger"  
@@ -39335,7 +39335,7 @@

fo:orphans Attribute (new in ODF 1 RNG Relations - fo:orphans="<nonNegativeInteger>"   + fo:orphans="#nonNegativeInteger"  
@@ -39769,7 +39769,7 @@

fo:text-shadow Attribute (new RNG Relations - fo:text-shadow="none | <string>"   + fo:text-shadow="none | #string"  
@@ -39822,7 +39822,7 @@

fo:widows Attribute (new in ODF 1.2 RNG Relations - fo:widows="<nonNegativeInteger>"   + fo:widows="#nonNegativeInteger"  
@@ -39900,7 +39900,7 @@

form:allow-deletes Attribute RNG Relations - form:allow-deletes="<boolean>"   + form:allow-deletes="#boolean"  
@@ -39926,7 +39926,7 @@

form:allow-inserts Attribute RNG Relations - form:allow-inserts="<boolean>"   + form:allow-inserts="#boolean"  
@@ -39952,7 +39952,7 @@

form:allow-updates Attribute RNG Relations - form:allow-updates="<boolean>"   + form:allow-updates="#boolean"  
@@ -39978,7 +39978,7 @@

form:apply-design-mode Attribut RNG Relations - form:apply-design-mode="<boolean>"   + form:apply-design-mode="#boolean"  
@@ -40004,7 +40004,7 @@

form:apply-filter Attribute

RNG Relations - form:apply-filter="<boolean>"   + form:apply-filter="#boolean"  
@@ -40030,7 +40030,7 @@

form:auto-complete Attribute RNG Relations - form:auto-complete="<boolean>"   + form:auto-complete="#boolean"  
@@ -40056,7 +40056,7 @@

form:automatic-focus Attribute RNG Relations - form:automatic-focus="<boolean>"   + form:automatic-focus="#boolean"  
@@ -40081,7 +40081,7 @@

form:bound-column Attribute

RNG Relations - form:bound-column="<string>"   + form:bound-column="#string"  
@@ -40135,7 +40135,7 @@

form:command Attribute

RNG Relations - form:command="<string>"   + form:command="#string"  
@@ -40242,7 +40242,7 @@

form:convert-empty-to-null RNG Relations - form:convert-empty-to-null="<boolean>"   + form:convert-empty-to-null="#boolean"  
@@ -40269,7 +40269,7 @@

form:current-selected Attribute< RNG Relations - form:current-selected="<boolean>"   + form:current-selected="#boolean"  
@@ -40322,7 +40322,7 @@

form:current-value[1] Attribute RNG Relations - form:current-value="<time>"   + form:current-value="#time"  
@@ -40348,7 +40348,7 @@

form:current-value[2] Attribute RNG Relations - form:current-value="<double>"   + form:current-value="#double"  
@@ -40378,7 +40378,7 @@

form:current-value[3] Attribute RNG Relations - form:current-value="<string>"   + form:current-value="#string"  
@@ -40404,7 +40404,7 @@

form:current-value[4] Attribute RNG Relations - form:current-value="<date>"   + form:current-value="#date"  
@@ -40439,7 +40439,7 @@

form:data-field Attribute

RNG Relations - form:data-field="<string>"   + form:data-field="#string"  
@@ -40465,7 +40465,7 @@

form:datasource Attribute

RNG Relations - form:datasource="<anyIRI> | <string>"   + form:datasource="#anyIRI | #string"  
@@ -40491,7 +40491,7 @@

form:default-button Attribute< RNG Relations - form:default-button="<boolean>"   + form:default-button="#boolean"  
@@ -40521,7 +40521,7 @@

form:delay-for-repeat Attribute< RNG Relations - form:delay-for-repeat="<duration>"   + form:delay-for-repeat="#duration"  
@@ -40546,7 +40546,7 @@

form:detail-fields Attribute RNG Relations - form:detail-fields="<string>"   + form:detail-fields="#string"  
@@ -40590,7 +40590,7 @@

form:disabled Attribute

RNG Relations - form:disabled="<boolean>"   + form:disabled="#boolean"  
@@ -40617,7 +40617,7 @@

form:dropdown Attribute

RNG Relations - form:dropdown="<boolean>"   + form:dropdown="#boolean"  
@@ -40667,7 +40667,7 @@

form:enctype Attribute

RNG Relations - form:enctype="<string>"   + form:enctype="#string"  
@@ -40693,7 +40693,7 @@

form:escape-processing Attribut RNG Relations - form:escape-processing="<boolean>"   + form:escape-processing="#boolean"  
@@ -40718,7 +40718,7 @@

form:filter Attribute

RNG Relations - form:filter="<string>"   + form:filter="#string"  
@@ -40744,7 +40744,7 @@

form:focus-on-click Attribute< RNG Relations - form:focus-on-click="<boolean>"   + form:focus-on-click="#boolean"  
@@ -40770,7 +40770,7 @@

form:for Attribute

RNG Relations - form:for="<string>"   + form:for="#string"  
@@ -40815,7 +40815,7 @@

form:id Attribute

RNG Relations - form:id="<NCName>"   + form:id="#NCName"  
@@ -40841,7 +40841,7 @@

form:ignore-result Attribute RNG Relations - form:ignore-result="<boolean>"   + form:ignore-result="#boolean"  
@@ -40897,7 +40897,7 @@

form:image-data Attribute

RNG Relations - form:image-data="<anyIRI>"   + form:image-data="#anyIRI"  
@@ -40982,7 +40982,7 @@

form:is-tristate Attribute

RNG Relations - form:is-tristate="<boolean>"   + form:is-tristate="#boolean"  
@@ -41014,7 +41014,7 @@

form:label Attribute

RNG Relations - form:label="<string>"   + form:label="#string"  
@@ -41052,7 +41052,7 @@

form:linked-cell Attribute ( RNG Relations - form:linked-cell="string] | <string>"   + form:linked-cell="string] | #string"  
@@ -41104,7 +41104,7 @@

form:list-source Attribute

RNG Relations - form:list-source="<string>"   + form:list-source="#string"  
@@ -41160,7 +41160,7 @@

form:master-fields Attribute RNG Relations - form:master-fields="<string>"   + form:master-fields="#string"  
@@ -41193,7 +41193,7 @@

form:max-length Attribute

RNG Relations - form:max-length="<nonNegativeInteger>"   + form:max-length="#nonNegativeInteger"  
@@ -41219,7 +41219,7 @@

form:max-value[1] Attribute

RNG Relations - form:max-value="<double>"   + form:max-value="#double"  
@@ -41245,7 +41245,7 @@

form:max-value[2] Attribute

RNG Relations - form:max-value="<time>"   + form:max-value="#time"  
@@ -41271,7 +41271,7 @@

form:max-value[3] Attribute

RNG Relations - form:max-value="<date>"   + form:max-value="#date"  
@@ -41297,7 +41297,7 @@

form:max-value[4] Attribute

RNG Relations - form:max-value="<string>"   + form:max-value="#string"  
@@ -41323,7 +41323,7 @@

form:max-value[5] Attribute

RNG Relations - form:max-value="<integer>"   + form:max-value="#integer"  
@@ -41350,7 +41350,7 @@

form:method Attribute

RNG Relations - form:method="get | post | <string>"   + form:method="get | post | #string"  
@@ -41376,7 +41376,7 @@

form:min-value[1] Attribute

RNG Relations - form:min-value="<integer>"   + form:min-value="#integer"  
@@ -41402,7 +41402,7 @@

form:min-value[2] Attribute

RNG Relations - form:min-value="<time>"   + form:min-value="#time"  
@@ -41428,7 +41428,7 @@

form:min-value[3] Attribute

RNG Relations - form:min-value="<string>"   + form:min-value="#string"  
@@ -41454,7 +41454,7 @@

form:min-value[4] Attribute

RNG Relations - form:min-value="<date>"   + form:min-value="#date"  
@@ -41480,7 +41480,7 @@

form:min-value[5] Attribute

RNG Relations - form:min-value="<double>"   + form:min-value="#double"  
@@ -41506,7 +41506,7 @@

form:multi-line Attribute

RNG Relations - form:multi-line="<boolean>"   + form:multi-line="#boolean"  
@@ -41532,7 +41532,7 @@

form:multiple Attribute

RNG Relations - form:multiple="<boolean>"   + form:multiple="#boolean"  
@@ -41579,7 +41579,7 @@

form:name Attribute

RNG Relations - form:name="<string>"   + form:name="#string"  
@@ -41631,7 +41631,7 @@

form:order Attribute

RNG Relations - form:order="<string>"   + form:order="#string"  
@@ -41682,7 +41682,7 @@

form:page-step-size Attribute< RNG Relations - form:page-step-size="<positiveInteger>"   + form:page-step-size="#positiveInteger"  
@@ -41726,7 +41726,7 @@

form:printable Attribute

RNG Relations - form:printable="<boolean>"   + form:printable="#boolean"  
@@ -41752,7 +41752,7 @@

form:property-name Attribute RNG Relations - form:property-name="<string>"   + form:property-name="#string"  
@@ -41786,7 +41786,7 @@

form:readonly Attribute

RNG Relations - form:readonly="<boolean>"   + form:readonly="#boolean"  
@@ -41817,7 +41817,7 @@

form:repeat Attribute (new in ODF RNG Relations - form:repeat="<boolean>"   + form:repeat="#boolean"  
@@ -41844,7 +41844,7 @@

form:selected Attribute

RNG Relations - form:selected="<boolean>"   + form:selected="#boolean"  
@@ -41870,7 +41870,7 @@

form:size Attribute

RNG Relations - form:size="<nonNegativeInteger>"   + form:size="#nonNegativeInteger"  
@@ -41899,7 +41899,7 @@

form:source-cell-range Attribut RNG Relations - form:source-cell-range="string] | string] | string] | <string>"   + form:source-cell-range="string] | string] | string] | #string"  
@@ -41928,7 +41928,7 @@

form:spin-button Attribute ( RNG Relations - form:spin-button="<boolean>"   + form:spin-button="#boolean"  
@@ -41980,7 +41980,7 @@

form:step-size Attribute

RNG Relations - form:step-size="<positiveInteger>"   + form:step-size="#positiveInteger"  
@@ -42047,7 +42047,7 @@

form:tab-index Attribute

RNG Relations - form:tab-index="<nonNegativeInteger>"   + form:tab-index="#nonNegativeInteger"  
@@ -42088,7 +42088,7 @@

form:tab-stop Attribute

RNG Relations - form:tab-stop="<boolean>"   + form:tab-stop="#boolean"  
@@ -42113,7 +42113,7 @@

form:text-style-name Attribute RNG Relations - form:text-style-name="(<NCName>)?"   + form:text-style-name="(#NCName)?"  
@@ -42156,7 +42156,7 @@

form:title Attribute

RNG Relations - form:title="<string>"   + form:title="#string"  
@@ -42182,7 +42182,7 @@

form:toggle Attribute

RNG Relations - form:toggle="<boolean>"   + form:toggle="#boolean"  
@@ -42208,7 +42208,7 @@

form:validation Attribute

RNG Relations - form:validation="<boolean>"   + form:validation="#boolean"  
@@ -42234,7 +42234,7 @@

form:value[1] Attribute

RNG Relations - form:value="<date>"   + form:value="#date"  
@@ -42260,7 +42260,7 @@

form:value[2] Attribute

RNG Relations - form:value="<double>"   + form:value="#double"  
@@ -42286,7 +42286,7 @@

form:value[3] Attribute

RNG Relations - form:value="<time>"   + form:value="#time"  
@@ -42324,7 +42324,7 @@

form:value[4] Attribute

RNG Relations - form:value="<string>"   + form:value="#string"  
@@ -42376,7 +42376,7 @@

form:xforms-list-source Attrib RNG Relations - form:xforms-list-source="<string>"   + form:xforms-list-source="#string"  
@@ -42401,7 +42401,7 @@

form:xforms-submission Attribut RNG Relations - form:xforms-submission="<string>"   + form:xforms-submission="#string"  
@@ -42431,7 +42431,7 @@

grddl:transformation Attribute RNG Relations grddl:transformation=" -START_list(<anyIRI>)* +START_list(#anyIRI)* END_list"   @@ -42457,7 +42457,7 @@

meta:cell-count Attribute (ne RNG Relations - meta:cell-count="<nonNegativeInteger>"   + meta:cell-count="#nonNegativeInteger"  
@@ -42482,7 +42482,7 @@

meta:character-count Attribute RNG Relations - meta:character-count="<nonNegativeInteger>"   + meta:character-count="#nonNegativeInteger"  
@@ -42507,7 +42507,7 @@

meta:date Attribute (new in ODF 1.2 RNG Relations - meta:date="<dateTime>"   + meta:date="#dateTime"  
@@ -42532,7 +42532,7 @@

meta:delay Attribute (new in ODF 1 RNG Relations - meta:delay="<duration>"   + meta:delay="#duration"  
@@ -42557,7 +42557,7 @@

meta:draw-count Attribute (ne RNG Relations - meta:draw-count="<nonNegativeInteger>"   + meta:draw-count="#nonNegativeInteger"  
@@ -42582,7 +42582,7 @@

meta:frame-count Attribute ( RNG Relations - meta:frame-count="<nonNegativeInteger>"   + meta:frame-count="#nonNegativeInteger"  
@@ -42607,7 +42607,7 @@

meta:image-count Attribute ( RNG Relations - meta:image-count="<nonNegativeInteger>"   + meta:image-count="#nonNegativeInteger"  
@@ -42632,7 +42632,7 @@

meta:name Attribute (new in ODF 1.2 RNG Relations - meta:name="<string>"   + meta:name="#string"  
@@ -42657,7 +42657,7 @@

meta:non-whitespac RNG Relations - meta:non-whitespace-character-count="<nonNegativeInteger>"   + meta:non-whitespace-character-count="#nonNegativeInteger"  
@@ -42682,7 +42682,7 @@

meta:object-count Attribute  RNG Relations - meta:object-count="<nonNegativeInteger>"   + meta:object-count="#nonNegativeInteger"  
@@ -42707,7 +42707,7 @@

meta:ole-object-count Attribute< RNG Relations - meta:ole-object-count="<nonNegativeInteger>"   + meta:ole-object-count="#nonNegativeInteger"  
@@ -42732,7 +42732,7 @@

meta:page-count Attribute (ne RNG Relations - meta:page-count="<nonNegativeInteger>"   + meta:page-count="#nonNegativeInteger"  
@@ -42757,7 +42757,7 @@

meta:paragraph-count Attribute RNG Relations - meta:paragraph-count="<nonNegativeInteger>"   + meta:paragraph-count="#nonNegativeInteger"  
@@ -42782,7 +42782,7 @@

meta:row-count Attribute (new RNG Relations - meta:row-count="<nonNegativeInteger>"   + meta:row-count="#nonNegativeInteger"  
@@ -42807,7 +42807,7 @@

meta:sentence-count Attribute& RNG Relations - meta:sentence-count="<nonNegativeInteger>"   + meta:sentence-count="#nonNegativeInteger"  
@@ -42832,7 +42832,7 @@

meta:syllable-count Attribute& RNG Relations - meta:syllable-count="<nonNegativeInteger>"   + meta:syllable-count="#nonNegativeInteger"  
@@ -42857,7 +42857,7 @@

meta:table-count Attribute ( RNG Relations - meta:table-count="<nonNegativeInteger>"   + meta:table-count="#nonNegativeInteger"  
@@ -43012,7 +43012,7 @@

meta:word-count Attribute (ne RNG Relations - meta:word-count="<nonNegativeInteger>"   + meta:word-count="#nonNegativeInteger"  
@@ -43039,7 +43039,7 @@

number:automatic-order Attribut RNG Relations - number:automatic-order="<boolean>"   + number:automatic-order="#boolean"  
@@ -43078,7 +43078,7 @@

number:calendar Attribute

RNG Relations - number:calendar="gregorian | gengou | ROC | hanja_yoil | hanja | hijri | jewish | buddhist | <string>"   + number:calendar="gregorian | gengou | ROC | hanja_yoil | hanja | hijri | jewish | buddhist | #string"  
@@ -43137,7 +43137,7 @@

number:decimal-places Attribute< RNG Relations - number:decimal-places="<integer>"   + number:decimal-places="#integer"  
@@ -43162,7 +43162,7 @@

number:decimal-replacement RNG Relations - number:decimal-replacement="<string>"   + number:decimal-replacement="#string"  
@@ -43187,7 +43187,7 @@

number:denominator-value Attr RNG Relations - number:denominator-value="<integer>"   + number:denominator-value="#integer"  
@@ -43212,7 +43212,7 @@

number:display-factor Attribute< RNG Relations - number:display-factor="<double>"   + number:display-factor="#double"  
@@ -43267,7 +43267,7 @@

number:grouping Attribute

RNG Relations - number:grouping="<boolean>"   + number:grouping="#boolean"  
@@ -43324,7 +43324,7 @@

number:min-denominator-d RNG Relations - number:min-denominator-digits="<integer>"   + number:min-denominator-digits="#integer"  
@@ -43349,7 +43349,7 @@

number:min-exponent-digits RNG Relations - number:min-exponent-digits="<integer>"   + number:min-exponent-digits="#integer"  
@@ -43376,7 +43376,7 @@

number:min-integer-digits At RNG Relations - number:min-integer-digits="<integer>"   + number:min-integer-digits="#integer"  
@@ -43401,7 +43401,7 @@

number:min-numerator-digit RNG Relations - number:min-numerator-digits="<integer>"   + number:min-numerator-digits="#integer"  
@@ -43426,7 +43426,7 @@

number:position Attribute

RNG Relations - number:position="<integer>"   + number:position="#integer"  
@@ -43452,7 +43452,7 @@

number:possessive-form Attribut RNG Relations - number:possessive-form="<boolean>"   + number:possessive-form="#boolean"  
@@ -43484,7 +43484,7 @@

number:rfc-language-tag Attrib RNG Relations - number:rfc-language-tag="<language>"   + number:rfc-language-tag="#language"  
@@ -43576,7 +43576,7 @@

number:textual Attribute

RNG Relations - number:textual="<boolean>"   + number:textual="#boolean"  
@@ -43607,7 +43607,7 @@

number:title Attribute

RNG Relations - number:title="<string>"   + number:title="#string"  
@@ -43669,7 +43669,7 @@

number:transliteration-f RNG Relations - number:transliteration-format="<string>"   + number:transliteration-format="#string"  
@@ -43759,7 +43759,7 @@

number:truncate-on-overflo RNG Relations - number:truncate-on-overflow="<boolean>"   + number:truncate-on-overflow="#boolean"  
@@ -43786,7 +43786,7 @@

office:automatic-update Attrib RNG Relations - office:automatic-update="<boolean>"   + office:automatic-update="#boolean"  
@@ -43822,7 +43822,7 @@

office:boolean-value Attribute RNG Relations - office:boolean-value="<boolean>"   + office:boolean-value="#boolean"  
@@ -43883,7 +43883,7 @@

office:currency Attribute

RNG Relations - office:currency="<string>"   + office:currency="#string"  
@@ -43919,7 +43919,7 @@

office:date-value Attribute

RNG Relations - office:date-value="<date> | <dateTime>"   + office:date-value="#date | #dateTime"  
@@ -43945,7 +43945,7 @@

office:dde-application Attribut RNG Relations - office:dde-application="<string>"   + office:dde-application="#string"  
@@ -43971,7 +43971,7 @@

office:dde-item Attribute

RNG Relations - office:dde-item="<string>"   + office:dde-item="#string"  
@@ -43997,7 +43997,7 @@

office:dde-topic Attribute

RNG Relations - office:dde-topic="<string>"   + office:dde-topic="#string"  
@@ -44023,7 +44023,7 @@

office:display Attribute

RNG Relations - office:display="<boolean>"   + office:display="#boolean"  
@@ -44048,7 +44048,7 @@

office:mimetype Attribute

RNG Relations - office:mimetype="<string>"   + office:mimetype="#string"  
@@ -44081,7 +44081,7 @@

office:name Attribute

RNG Relations - office:name="<string>"   + office:name="#string"  
@@ -44107,7 +44107,7 @@

office:server-map Attribute

RNG Relations - office:server-map="<boolean>"   + office:server-map="#boolean"  
@@ -44142,7 +44142,7 @@

office:string-value Attribute< RNG Relations - office:string-value="<string>"   + office:string-value="#string"  
@@ -44173,7 +44173,7 @@

office:target-frame Attribute< RNG Relations - office:target-frame="_self | _blank | _parent | _top | <string>"   + office:target-frame="_self | _blank | _parent | _top | #string"  
@@ -44207,7 +44207,7 @@

office:target-frame-name Attr RNG Relations - office:target-frame-name="_self | _blank | _parent | _top | <string>"   + office:target-frame-name="_self | _blank | _parent | _top | #string"  
@@ -44242,7 +44242,7 @@

office:time-value Attribute

RNG Relations - office:time-value="<duration>"   + office:time-value="#duration"  
@@ -44268,7 +44268,7 @@

office:title Attribute (new in O RNG Relations - office:title="<string>"   + office:title="#string"  
@@ -44305,7 +44305,7 @@

office:value Attribute

RNG Relations - office:value="<double>"   + office:value="#double"  
@@ -44728,7 +44728,7 @@

presentation:b RNG Relations - presentation:background-objects-visible="<boolean>"   + presentation:background-objects-visible="#boolean"  
@@ -44754,7 +44754,7 @@

presentation:backgroun RNG Relations - presentation:background-visible="<boolean>"   + presentation:background-visible="#boolean"  
@@ -44842,7 +44842,7 @@

presentation:class-names Attr RNG Relations presentation:class-names=" -START_list(<NCName>)* +START_list(#NCName)* END_list"   @@ -44871,7 +44871,7 @@

presentation:delay Attribute RNG Relations - presentation:delay="<duration>"   + presentation:delay="#duration"  
@@ -44953,7 +44953,7 @@

presentation:display-da RNG Relations - presentation:display-date-time="<boolean>"   + presentation:display-date-time="#boolean"  
@@ -44979,7 +44979,7 @@

presentation:display-foote RNG Relations - presentation:display-footer="<boolean>"   + presentation:display-footer="#boolean"  
@@ -45005,7 +45005,7 @@

presentation:display-heade RNG Relations - presentation:display-header="<boolean>"   + presentation:display-header="#boolean"  
@@ -45031,7 +45031,7 @@

presentation:display- RNG Relations - presentation:display-page-number="<boolean>"   + presentation:display-page-number="#boolean"  
@@ -45056,7 +45056,7 @@

presentation:duration Attribute< RNG Relations - presentation:duration="<duration>"   + presentation:duration="#duration"  
@@ -45127,7 +45127,7 @@

presentation:endless Attribute RNG Relations - presentation:endless="<boolean>"   + presentation:endless="#boolean"  
@@ -45153,7 +45153,7 @@

presentation:force-manual At RNG Relations - presentation:force-manual="<boolean>"   + presentation:force-manual="#boolean"  
@@ -45179,7 +45179,7 @@

presentation:full-screen Attr RNG Relations - presentation:full-screen="<boolean>"   + presentation:full-screen="#boolean"  
@@ -45208,7 +45208,7 @@

presentation:group-id Attribute< RNG Relations - presentation:group-id="<string>"   + presentation:group-id="#string"  
@@ -45237,7 +45237,7 @@

presentation:master-elemen RNG Relations - presentation:master-element="<IDREF>"   + presentation:master-element="#IDREF"  
@@ -45263,7 +45263,7 @@

presentation:mouse-as-pen At RNG Relations - presentation:mouse-as-pen="<boolean>"   + presentation:mouse-as-pen="#boolean"  
@@ -45289,7 +45289,7 @@

presentation:mouse-visible RNG Relations - presentation:mouse-visible="<boolean>"   + presentation:mouse-visible="#boolean"  
@@ -45317,7 +45317,7 @@

presentation:name Attribute

RNG Relations - presentation:name="<string>"   + presentation:name="#string"  
@@ -45417,7 +45417,7 @@

presentation:pages Attribute RNG Relations - presentation:pages="<string>"   + presentation:pages="#string"  
@@ -45445,7 +45445,7 @@

presentation:path-id Attribute RNG Relations - presentation:path-id="<string>"   + presentation:path-id="#string"  
@@ -45470,7 +45470,7 @@

presentation:pause Attribute RNG Relations - presentation:pause="<duration>"   + presentation:pause="#duration"  
@@ -45497,7 +45497,7 @@

presentation:placeholder Attr RNG Relations - presentation:placeholder="<boolean>"   + presentation:placeholder="#boolean"  
@@ -45523,7 +45523,7 @@

presentation:play-full Attribut RNG Relations - presentation:play-full="<boolean>"   + presentation:play-full="#boolean"  
@@ -45549,7 +45549,7 @@

presentatio RNG Relations - presentation:presentation-page-layout-name="(<NCName>)?"   + presentation:presentation-page-layout-name="(#NCName)?"  
@@ -45613,7 +45613,7 @@

presentation:preset-id Attribut RNG Relations - presentation:preset-id="<string>"   + presentation:preset-id="#string"  
@@ -45642,7 +45642,7 @@

presentation:preset-sub-t RNG Relations - presentation:preset-sub-type="<string>"   + presentation:preset-sub-type="#string"  
@@ -45667,7 +45667,7 @@

presentation:show Attribute

RNG Relations - presentation:show="<string>"   + presentation:show="#string"  
@@ -45693,7 +45693,7 @@

presentati RNG Relations - presentation:show-end-of-presentation-slide="<boolean>"   + presentation:show-end-of-presentation-slide="#boolean"  
@@ -45719,7 +45719,7 @@

presentation:show-logo Attribut RNG Relations - presentation:show-logo="<boolean>"   + presentation:show-logo="#boolean"  
@@ -45802,7 +45802,7 @@

presentation:start-page Attrib RNG Relations - presentation:start-page="<string>"   + presentation:start-page="#string"  
@@ -45857,7 +45857,7 @@

presentation:start-w RNG Relations - presentation:start-with-navigator="<boolean>"   + presentation:start-with-navigator="#boolean"  
@@ -45883,7 +45883,7 @@

presentation:stay-on-top Attr RNG Relations - presentation:stay-on-top="<boolean>"   + presentation:stay-on-top="#boolean"  
@@ -45929,7 +45929,7 @@

presentation:style-name Attrib RNG Relations - presentation:style-name="(<NCName>)?"   + presentation:style-name="(#NCName)?"  
@@ -46125,7 +46125,7 @@

presentation:use-date- RNG Relations - presentation:use-date-time-name="<string>"   + presentation:use-date-time-name="#string"  
@@ -46152,7 +46152,7 @@

presentation:use-footer-n RNG Relations - presentation:use-footer-name="<string>"   + presentation:use-footer-name="#string"  
@@ -46179,7 +46179,7 @@

presentation:use-header-n RNG Relations - presentation:use-header-name="<string>"   + presentation:use-header-name="#string"  
@@ -46206,7 +46206,7 @@

presentation:user-transf RNG Relations - presentation:user-transformed="<boolean>"   + presentation:user-transformed="#boolean"  
@@ -46231,7 +46231,7 @@

presentation:verb Attribute

RNG Relations - presentation:verb="<nonNegativeInteger>"   + presentation:verb="#nonNegativeInteger"  
@@ -46283,7 +46283,7 @@

script:event-name Attribute

RNG Relations - script:event-name="<string>"   + script:event-name="#string"  
@@ -46310,7 +46310,7 @@

script:language Attribute

RNG Relations - script:language="<string>"   + script:language="#string"  
@@ -46335,7 +46335,7 @@

script:macro-name Attribute

RNG Relations - script:macro-name="<string>"   + script:macro-name="#string"  
@@ -46459,7 +46459,7 @@

smil:attributeName Attribute RNG Relations - smil:attributeName="<string>"   + smil:attributeName="#string"  
@@ -46493,7 +46493,7 @@

smil:autoReverse Attribute

RNG Relations - smil:autoReverse="<boolean>"   + smil:autoReverse="#boolean"  
@@ -46528,7 +46528,7 @@

smil:begin Attribute

RNG Relations - smil:begin="<string>"   + smil:begin="#string"  
@@ -46557,7 +46557,7 @@

smil:by Attribute

RNG Relations - smil:by="<string>"   + smil:by="#string"  
@@ -46682,7 +46682,7 @@

smil:dur Attribute

RNG Relations - smil:dur="<string>"   + smil:dur="#string"  
@@ -46717,7 +46717,7 @@

smil:end Attribute

RNG Relations - smil:end="<string>"   + smil:end="#string"  
@@ -46748,7 +46748,7 @@

smil:endsync Attribute

RNG Relations - smil:endsync="first | last | all | media | <IDREF>"   + smil:endsync="first | last | all | media | #IDREF"  
@@ -46881,7 +46881,7 @@

smil:from Attribute

RNG Relations - smil:from="<string>"   + smil:from="#string"  
@@ -46908,7 +46908,7 @@

smil:keySplines Attribute

RNG Relations - smil:keySplines="<string>"   + smil:keySplines="#string"  
@@ -46935,7 +46935,7 @@

smil:keyTimes Attribute

RNG Relations - smil:keyTimes="<string>"   + smil:keyTimes="#string"  
@@ -47030,7 +47030,7 @@

smil:repeatDur Attribute

RNG Relations - smil:repeatDur="<string>"   + smil:repeatDur="#string"  
@@ -47130,7 +47130,7 @@

smil:subtype Attribute

RNG Relations - smil:subtype="<string>"   + smil:subtype="#string"  
@@ -47162,7 +47162,7 @@

smil:targetElement Attribute RNG Relations - smil:targetElement="<IDREF>"   + smil:targetElement="#IDREF"  
@@ -47192,7 +47192,7 @@

smil:to Attribute

RNG Relations - smil:to="<string>"   + smil:to="#string"  
@@ -47218,7 +47218,7 @@

smil:type Attribute

RNG Relations - smil:type="<string>"   + smil:type="#string"  
@@ -47247,7 +47247,7 @@

smil:values Attribute

RNG Relations - smil:values="<string>"   + smil:values="#string"  
@@ -47299,7 +47299,7 @@

style:apply-style-name Attribut RNG Relations - style:apply-style-name="(<NCName>)?"   + style:apply-style-name="(#NCName)?"  
@@ -47325,7 +47325,7 @@

style:auto-text-indent Attribut RNG Relations - style:auto-text-indent="<boolean>"   + style:auto-text-indent="#boolean"  
@@ -47351,7 +47351,7 @@

style:auto-update Attribute

RNG Relations - style:auto-update="<boolean>"   + style:auto-update="#boolean"  
@@ -47637,7 +47637,7 @@

style:class Attribute

RNG Relations - style:class="<string>"   + style:class="#string"  
@@ -47713,7 +47713,7 @@

style:condition Attribute

RNG Relations - style:condition="<string>"   + style:condition="#string"  
@@ -47808,7 +47808,7 @@

style:data-style-name Attribute< RNG Relations - style:data-style-name="(<NCName>)?"   + style:data-style-name="(#NCName)?"  
@@ -47833,7 +47833,7 @@

style:decimal-places Attribute RNG Relations - style:decimal-places="<nonNegativeInteger>"   + style:decimal-places="#nonNegativeInteger"  
@@ -47858,7 +47858,7 @@

style:default-outline-leve RNG Relations - style:default-outline-level="(<positiveInteger>)?"   + style:default-outline-level="(#positiveInteger)?"  
@@ -47883,7 +47883,7 @@

style:diagonal-bl-tr Attribute RNG Relations - style:diagonal-bl-tr="<string>"   + style:diagonal-bl-tr="#string"  
@@ -47935,7 +47935,7 @@

style:diagonal-tl-br Attribute RNG Relations - style:diagonal-tl-br="<string>"   + style:diagonal-tl-br="#string"  
@@ -48018,7 +48018,7 @@

style:display Attribute

RNG Relations - style:display="<boolean>"   + style:display="#boolean"  
@@ -48053,7 +48053,7 @@

style:display-name Attribute RNG Relations - style:display-name="<string>"   + style:display-name="#string"  
@@ -48154,7 +48154,7 @@

style:dynamic-spacing Attribute< RNG Relations - style:dynamic-spacing="<boolean>"   + style:dynamic-spacing="#boolean"  
@@ -48181,7 +48181,7 @@

style:editable Attribute (new RNG Relations - style:editable="<boolean>"   + style:editable="#boolean"  
@@ -48504,7 +48504,7 @@

style:filter-name Attribute  RNG Relations - style:filter-name="<string>"   + style:filter-name="#string"  
@@ -48530,7 +48530,7 @@

style:first-page-number Attrib RNG Relations - style:first-page-number="<positiveInteger> | continue"   + style:first-page-number="#positiveInteger | continue"  
@@ -48556,7 +48556,7 @@

style:flow-with-text Attribute RNG Relations - style:flow-with-text="<boolean>"   + style:flow-with-text="#boolean"  
@@ -48581,7 +48581,7 @@

style:font-adornments Attribute< RNG Relations - style:font-adornments="<string>"   + style:font-adornments="#string"  
@@ -48682,7 +48682,7 @@

style:font-family-asian Attrib RNG Relations - style:font-family-asian="<string>"   + style:font-family-asian="#string"  
@@ -48707,7 +48707,7 @@

style:font-family-complex At RNG Relations - style:font-family-complex="<string>"   + style:font-family-complex="#string"  
@@ -48824,7 +48824,7 @@

style:font-indepen RNG Relations - style:font-independent-line-spacing="<boolean>"   + style:font-independent-line-spacing="#boolean"  
@@ -48850,7 +48850,7 @@

style:font-name Attribute (ne RNG Relations - style:font-name="<string>"   + style:font-name="#string"  
@@ -48875,7 +48875,7 @@

style:font-name-asian Attribute< RNG Relations - style:font-name-asian="<string>"   + style:font-name-asian="#string"  
@@ -48900,7 +48900,7 @@

style:font-name-complex Attrib RNG Relations - style:font-name-complex="<string>"   + style:font-name-complex="#string"  
@@ -49212,7 +49212,7 @@

style:font-style-name Attribute< RNG Relations - style:font-style-name="<string>"   + style:font-style-name="#string"  
@@ -49237,7 +49237,7 @@

style:font-style-name-asia RNG Relations - style:font-style-name-asian="<string>"   + style:font-style-name-asian="#string"  
@@ -49262,7 +49262,7 @@

style:font-style-name-co RNG Relations - style:font-style-name-complex="<string>"   + style:font-style-name-complex="#string"  
@@ -49505,7 +49505,7 @@

style:join-border Attribute  RNG Relations - style:join-border="<boolean>"   + style:join-border="#boolean"  
@@ -49531,7 +49531,7 @@

style:justify-single-word At RNG Relations - style:justify-single-word="<boolean>"   + style:justify-single-word="#boolean"  
@@ -49682,7 +49682,7 @@

style:layout-grid-display At RNG Relations - style:layout-grid-display="<boolean>"   + style:layout-grid-display="#boolean"  
@@ -49707,7 +49707,7 @@

style:layout-grid-lines Attrib RNG Relations - style:layout-grid-lines="<positiveInteger>"   + style:layout-grid-lines="#positiveInteger"  
@@ -49760,7 +49760,7 @@

style:layout-grid-print Attrib RNG Relations - style:layout-grid-print="<boolean>"   + style:layout-grid-print="#boolean"  
@@ -49786,7 +49786,7 @@

style:layout-grid-ruby-be RNG Relations - style:layout-grid-ruby-below="<boolean>"   + style:layout-grid-ruby-below="#boolean"  
@@ -49837,7 +49837,7 @@

style:layout-grid-snap-to At RNG Relations - style:layout-grid-snap-to="<boolean>"   + style:layout-grid-snap-to="#boolean"  
@@ -49863,7 +49863,7 @@

style:layout-grid-stan RNG Relations - style:layout-grid-standard-mode="<boolean>"   + style:layout-grid-standard-mode="#boolean"  
@@ -49996,7 +49996,7 @@

style:leader-text-style Attrib RNG Relations - style:leader-text-style="(<NCName>)?"   + style:leader-text-style="(#NCName)?"  
@@ -50056,7 +50056,7 @@

style:leader-width Attribute&nb RNG Relations - style:leader-width="auto | normal | bold | thin | medium | thick | <positiveInteger> | string] | string]"   + style:leader-width="auto | normal | bold | thin | medium | thick | #positiveInteger | string] | string]"  
@@ -50135,7 +50135,7 @@

style:legend-expan RNG Relations - style:legend-expansion-aspect-ratio="<double>"   + style:legend-expansion-aspect-ratio="#double"  
@@ -50161,7 +50161,7 @@

style:length Attribute (new in O RNG Relations - style:length="word | <positiveInteger>"   + style:length="word | #positiveInteger"  
@@ -50187,7 +50187,7 @@

style:letter-kerning Attribute RNG Relations - style:letter-kerning="<boolean>"   + style:letter-kerning="#boolean"  
@@ -50320,7 +50320,7 @@

style:lines Attribute (new in ODF RNG Relations - style:lines="<positiveInteger>"   + style:lines="#positiveInteger"  
@@ -50345,7 +50345,7 @@

style:list-level Attribute ( RNG Relations - style:list-level="(<positiveInteger>)?"   + style:list-level="(#positiveInteger)?"  
@@ -50370,7 +50370,7 @@

style:list-style-name Attribute< RNG Relations - style:list-style-name="(<NCName>)?"   + style:list-style-name="(#NCName)?"  
@@ -50395,7 +50395,7 @@

style:master-page-name Attribut RNG Relations - style:master-page-name="(<NCName>)?"   + style:master-page-name="(#NCName)?"  
@@ -50421,7 +50421,7 @@

style:may-break-between-r RNG Relations - style:may-break-between-rows="<boolean>"   + style:may-break-between-rows="#boolean"  
@@ -50505,7 +50505,7 @@

style:name[1] Attribute

RNG Relations - style:name="<string>"   + style:name="#string"  
@@ -50543,7 +50543,7 @@

style:name[2] Attribute

RNG Relations - style:name="<NCName>"   + style:name="#NCName"  
@@ -50569,7 +50569,7 @@

style:next-style-name Attribute< RNG Relations - style:next-style-name="(<NCName>)?"   + style:next-style-name="(#NCName)?"  
@@ -50613,7 +50613,7 @@

style:num-format[1] Attribute

RNG Relations - style:num-format="(1 | i | I | <string>)?"   + style:num-format="(1 | i | I | #string)?"  
@@ -50696,7 +50696,7 @@

style:num-letter-sync Attribute< RNG Relations - style:num-letter-sync="<boolean>"   + style:num-letter-sync="#boolean"  
@@ -50725,7 +50725,7 @@

style:num-prefix Attribute

RNG Relations - style:num-prefix="<string>"   + style:num-prefix="#string"  
@@ -50754,7 +50754,7 @@

style:num-suffix Attribute

RNG Relations - style:num-suffix="<string>"   + style:num-suffix="#string"  
@@ -50780,7 +50780,7 @@

style:number-wrapped-p RNG Relations - style:number-wrapped-paragraphs="no-limit | <positiveInteger>"   + style:number-wrapped-paragraphs="no-limit | #positiveInteger"  
@@ -50833,7 +50833,7 @@

style:page-layout-name Attribut RNG Relations - style:page-layout-name="(<NCName>)?"   + style:page-layout-name="(#NCName)?"  
@@ -50860,7 +50860,7 @@

style:page-number Attribute  RNG Relations - style:page-number="<positiveInteger> | auto"   + style:page-number="#positiveInteger | auto"  
@@ -50914,7 +50914,7 @@

style:paper-tray-name Attribute< RNG Relations - style:paper-tray-name="default | <string>"   + style:paper-tray-name="default | #string"  
@@ -50939,7 +50939,7 @@

style:parent-style-name Attrib RNG Relations - style:parent-style-name="(<NCName>)?"   + style:parent-style-name="(#NCName)?"  
@@ -50964,7 +50964,7 @@

style:percentage-data RNG Relations - style:percentage-data-style-name="(<NCName>)?"   + style:percentage-data-style-name="(#NCName)?"  
@@ -51086,7 +51086,7 @@

style:print-content Attribute& RNG Relations - style:print-content="<boolean>"   + style:print-content="#boolean"  
@@ -51165,7 +51165,7 @@

style:protect[1] Attribute (new RNG Relations - style:protect="<boolean>"   + style:protect="#boolean"  
@@ -51248,7 +51248,7 @@

style:register-true Attribute& RNG Relations - style:register-true="<boolean>"   + style:register-true="#boolean"  
@@ -51273,7 +51273,7 @@

style:register-tru RNG Relations - style:register-truth-ref-style-name="(<NCName>)?"   + style:register-truth-ref-style-name="(#NCName)?"  
@@ -51463,7 +51463,7 @@

style:repeat-content Attribute RNG Relations - style:repeat-content="<boolean>"   + style:repeat-content="#boolean"  
@@ -51490,7 +51490,7 @@

style:rfc-language-tag Attribut RNG Relations - style:rfc-language-tag="<language>"   + style:rfc-language-tag="#language"  
@@ -51515,7 +51515,7 @@

style:rfc-language-tag-as RNG Relations - style:rfc-language-tag-asian="<language>"   + style:rfc-language-tag-asian="#language"  
@@ -51540,7 +51540,7 @@

style:rfc-language-tag- RNG Relations - style:rfc-language-tag-complex="<language>"   + style:rfc-language-tag-complex="#language"  
@@ -51594,7 +51594,7 @@

style:rotation-angle Attribute RNG Relations - style:rotation-angle="<string>"   + style:rotation-angle="#string"  
@@ -51750,7 +51750,7 @@

style:scale-to-pages Attribute RNG Relations - style:scale-to-pages="<positiveInteger>"   + style:scale-to-pages="#positiveInteger"  
@@ -51859,7 +51859,7 @@

style:shadow Attribute (new in O RNG Relations - style:shadow="none | <string>"   + style:shadow="none | #string"  
@@ -51886,7 +51886,7 @@

style:shrink-to-fit Attribute& RNG Relations - style:shrink-to-fit="<boolean>"   + style:shrink-to-fit="#boolean"  
@@ -51912,7 +51912,7 @@

style:snap-to-layout-grid At RNG Relations - style:snap-to-layout-grid="<boolean>"   + style:snap-to-layout-grid="#boolean"  
@@ -51966,7 +51966,7 @@

style:style-name Attribute ( RNG Relations - style:style-name="(<NCName>)?"   + style:style-name="(#NCName)?"  
@@ -52097,7 +52097,7 @@

style:text-blinking Attribute& RNG Relations - style:text-blinking="<boolean>"   + style:text-blinking="#boolean"  
@@ -52316,7 +52316,7 @@

style:text-line-through-t RNG Relations - style:text-line-through-text="<string>"   + style:text-line-through-text="#string"  
@@ -52341,7 +52341,7 @@

style:text-line-thr RNG Relations - style:text-line-through-text-style="(<NCName>)?"   + style:text-line-through-text-style="(#NCName)?"  
@@ -52401,7 +52401,7 @@

style:text-line-through- RNG Relations - style:text-line-through-width="auto | normal | bold | thin | medium | thick | <positiveInteger> | string] | string]"   + style:text-line-through-width="auto | normal | bold | thin | medium | thick | #positiveInteger | string] | string]"  
@@ -52427,7 +52427,7 @@

style:text-outline Attribute&nb RNG Relations - style:text-outline="<boolean>"   + style:text-outline="#boolean"  
@@ -52571,7 +52571,7 @@

style:text-overline-width At RNG Relations - style:text-overline-width="auto | normal | bold | thin | medium | thick | <positiveInteger> | string] | string]"   + style:text-overline-width="auto | normal | bold | thin | medium | thick | #positiveInteger | string] | string]"  
@@ -52625,7 +52625,7 @@

style:text-rotation-angle At RNG Relations - style:text-rotation-angle="<string>"   + style:text-rotation-angle="#string"  
@@ -52820,7 +52820,7 @@

style:text-underline-width RNG Relations - style:text-underline-width="auto | normal | bold | thin | medium | thick | <positiveInteger> | string] | string]"   + style:text-underline-width="auto | normal | bold | thin | medium | thick | #positiveInteger | string] | string]"  
@@ -52952,7 +52952,7 @@

style:use-optimal-colum RNG Relations - style:use-optimal-column-width="<boolean>"   + style:use-optimal-column-width="#boolean"  
@@ -52978,7 +52978,7 @@

style:use-optimal-row-hei RNG Relations - style:use-optimal-row-height="<boolean>"   + style:use-optimal-row-height="#boolean"  
@@ -53004,7 +53004,7 @@

style:use-window-font-colo RNG Relations - style:use-window-font-color="<boolean>"   + style:use-window-font-color="#boolean"  
@@ -53188,7 +53188,7 @@

style:volatile Attribute

RNG Relations - style:volatile="<boolean>"   + style:volatile="#boolean"  
@@ -53298,7 +53298,7 @@

style:wrap-contour Attribute&nb RNG Relations - style:wrap-contour="<boolean>"   + style:wrap-contour="#boolean"  
@@ -53412,7 +53412,7 @@

style:writing-mode-automa RNG Relations - style:writing-mode-automatic="<boolean>"   + style:writing-mode-automatic="#boolean"  
@@ -53437,7 +53437,7 @@

svg:accent-height Attribute

RNG Relations - svg:accent-height="<integer>"   + svg:accent-height="#integer"  
@@ -53462,7 +53462,7 @@

svg:alphabetic Attribute

RNG Relations - svg:alphabetic="<integer>"   + svg:alphabetic="#integer"  
@@ -53487,7 +53487,7 @@

svg:ascent Attribute

RNG Relations - svg:ascent="<integer>"   + svg:ascent="#integer"  
@@ -53512,7 +53512,7 @@

svg:bbox Attribute

RNG Relations - svg:bbox="<string>"   + svg:bbox="#string"  
@@ -53537,7 +53537,7 @@

svg:cap-height Attribute

RNG Relations - svg:cap-height="<integer>"   + svg:cap-height="#integer"  
@@ -53677,7 +53677,7 @@

svg:d Attribute

RNG Relations - svg:d="<string>"   + svg:d="#string"  
@@ -53702,7 +53702,7 @@

svg:descent Attribute

RNG Relations - svg:descent="<integer>"   + svg:descent="#integer"  
@@ -53754,7 +53754,7 @@

svg:font-family Attribute

RNG Relations - svg:font-family="<string>"   + svg:font-family="#string"  
@@ -53978,7 +53978,7 @@

svg:gradientTransform Attribute< RNG Relations - svg:gradientTransform="<string>"   + svg:gradientTransform="#string"  
@@ -54029,7 +54029,7 @@

svg:hanging Attribute

RNG Relations - svg:hanging="<integer>"   + svg:hanging="#integer"  
@@ -54129,7 +54129,7 @@

svg:ideographic Attribute

RNG Relations - svg:ideographic="<integer>"   + svg:ideographic="#integer"  
@@ -54154,7 +54154,7 @@

svg:mathematical Attribute

RNG Relations - svg:mathematical="<integer>"   + svg:mathematical="#integer"  
@@ -54179,7 +54179,7 @@

svg:name Attribute (new in ODF 1.1) RNG Relations - svg:name="<string>"   + svg:name="#string"  
@@ -54205,7 +54205,7 @@

svg:offset Attribute

RNG Relations - svg:offset="<double> | string]"   + svg:offset="#double | string]"  
@@ -54230,7 +54230,7 @@

svg:origin Attribute

RNG Relations - svg:origin="<string>"   + svg:origin="#string"  
@@ -54255,7 +54255,7 @@

svg:overline-position Attribute< RNG Relations - svg:overline-position="<integer>"   + svg:overline-position="#integer"  
@@ -54280,7 +54280,7 @@

svg:overline-thickness Attribut RNG Relations - svg:overline-thickness="<integer>"   + svg:overline-thickness="#integer"  
@@ -54305,7 +54305,7 @@

svg:panose-1 Attribute

RNG Relations - svg:panose-1="<string>"   + svg:panose-1="#string"  
@@ -54330,7 +54330,7 @@

svg:path Attribute

RNG Relations - svg:path="<string>"   + svg:path="#string"  
@@ -54513,7 +54513,7 @@

svg:slope Attribute

RNG Relations - svg:slope="<integer>"   + svg:slope="#integer"  
@@ -54566,7 +54566,7 @@

svg:stemh Attribute

RNG Relations - svg:stemh="<integer>"   + svg:stemh="#integer"  
@@ -54591,7 +54591,7 @@

svg:stemv Attribute

RNG Relations - svg:stemv="<integer>"   + svg:stemv="#integer"  
@@ -54641,7 +54641,7 @@

svg:stop-opacity Attribute

RNG Relations - svg:stop-opacity="<double>"   + svg:stop-opacity="#double"  
@@ -54666,7 +54666,7 @@

svg:strikethrough-position RNG Relations - svg:strikethrough-position="<integer>"   + svg:strikethrough-position="#integer"  
@@ -54691,7 +54691,7 @@

svg:strikethrough-thicknes RNG Relations - svg:strikethrough-thickness="<integer>"   + svg:strikethrough-thickness="#integer"  
@@ -54716,7 +54716,7 @@

svg:string Attribute

RNG Relations - svg:string="<string>"   + svg:string="#string"  
@@ -54873,7 +54873,7 @@

svg:underline-position Attribut RNG Relations - svg:underline-position="<integer>"   + svg:underline-position="#integer"  
@@ -54898,7 +54898,7 @@

svg:underline-thickness Attrib RNG Relations - svg:underline-thickness="<integer>"   + svg:underline-thickness="#integer"  
@@ -54923,7 +54923,7 @@

svg:unicode-range Attribute

RNG Relations - svg:unicode-range="<string>"   + svg:unicode-range="#string"  
@@ -54948,7 +54948,7 @@

svg:units-per-em Attribute

RNG Relations - svg:units-per-em="<integer>"   + svg:units-per-em="#integer"  
@@ -54973,7 +54973,7 @@

svg:v-alphabetic Attribute

RNG Relations - svg:v-alphabetic="<integer>"   + svg:v-alphabetic="#integer"  
@@ -54998,7 +54998,7 @@

svg:v-hanging Attribute

RNG Relations - svg:v-hanging="<integer>"   + svg:v-hanging="#integer"  
@@ -55023,7 +55023,7 @@

svg:v-ideographic Attribute

RNG Relations - svg:v-ideographic="<integer>"   + svg:v-ideographic="#integer"  
@@ -55048,7 +55048,7 @@

svg:v-mathematical Attribute RNG Relations - svg:v-mathematical="<integer>"   + svg:v-mathematical="#integer"  
@@ -55084,7 +55084,7 @@

svg:viewBox Attribute

RNG Relations svg:viewBox=" -START_list<integer><integer><integer><integer> +START_list#integer#integer#integer#integer END_list"   @@ -55186,7 +55186,7 @@

svg:widths Attribute

RNG Relations - svg:widths="<string>"   + svg:widths="#string"  
@@ -55288,7 +55288,7 @@

svg:x-height Attribute

RNG Relations - svg:x-height="<integer>"   + svg:x-height="#integer"  
@@ -55643,7 +55643,7 @@

table:add-empty-lines Attribute< RNG Relations - table:add-empty-lines="<boolean>"   + table:add-empty-lines="#boolean"  
@@ -55668,7 +55668,7 @@

table:algorithm Attribute

RNG Relations - table:algorithm="<string>"   + table:algorithm="#string"  
@@ -55722,7 +55722,7 @@

table:allow-empty-cell Attribut RNG Relations - table:allow-empty-cell="<boolean>"   + table:allow-empty-cell="#boolean"  
@@ -55747,7 +55747,7 @@

table:application-data Attribut RNG Relations - table:application-data="<string>"   + table:application-data="#string"  
@@ -55773,7 +55773,7 @@

table:automatic-find-label RNG Relations - table:automatic-find-labels="<boolean>"   + table:automatic-find-labels="#boolean"  
@@ -55827,7 +55827,7 @@

table:bind-styles-to-cont RNG Relations - table:bind-styles-to-content="<boolean>"   + table:bind-styles-to-content="#boolean"  
@@ -55903,7 +55903,7 @@

table:buttons Attribute

RNG Relations - table:buttons="<string>"   + table:buttons="#string"  
@@ -55929,7 +55929,7 @@

table:case-sensitive[1] Attribute RNG Relations - table:case-sensitive="<string>"   + table:case-sensitive="#string"  
@@ -55958,7 +55958,7 @@

table:case-sensitive[2] Attribute RNG Relations - table:case-sensitive="<boolean>"   + table:case-sensitive="#boolean"  
@@ -56010,7 +56010,7 @@

table:cell-range Attribute

RNG Relations - table:cell-range="<string>"   + table:cell-range="#string"  
@@ -56038,7 +56038,7 @@

table:cell-range-address[1] A RNG Relations - table:cell-range-address="<string>"   + table:cell-range-address="#string"  
@@ -56095,7 +56095,7 @@

table:column Attribute

RNG Relations - table:column="<integer>"   + table:column="#integer"  
@@ -56120,7 +56120,7 @@

table:comment Attribute

RNG Relations - table:comment="<string>"   + table:comment="#string"  
@@ -56145,7 +56145,7 @@

table:condition Attribute

RNG Relations - table:condition="<string>"   + table:condition="#string"  
@@ -56224,7 +56224,7 @@

table:contains-error Attribute RNG Relations - table:contains-error="<boolean>"   + table:contains-error="#boolean"  
@@ -56250,7 +56250,7 @@

table:contains-header Attribute< RNG Relations - table:contains-header="<boolean>"   + table:contains-header="#boolean"  
@@ -56276,7 +56276,7 @@

table:content-validation RNG Relations - table:content-validation-name="<string>"   + table:content-validation-name="#string"  
@@ -56302,7 +56302,7 @@

table:copy-back Attribute

RNG Relations - table:copy-back="<boolean>"   + table:copy-back="#boolean"  
@@ -56328,7 +56328,7 @@

table:copy-formulas Attribute< RNG Relations - table:copy-formulas="<boolean>"   + table:copy-formulas="#boolean"  
@@ -56354,7 +56354,7 @@

table:copy-styles Attribute

RNG Relations - table:copy-styles="<boolean>"   + table:copy-styles="#boolean"  
@@ -56379,7 +56379,7 @@

table:count Attribute

RNG Relations - table:count="<positiveInteger>"   + table:count="#positiveInteger"  
@@ -56457,7 +56457,7 @@

table:data-field Attribute

RNG Relations - table:data-field="<string>"   + table:data-field="#string"  
@@ -56487,7 +56487,7 @@

table:data-type[1] Attribute

RNG Relations - table:data-type="text | number | automatic | <string>"   + table:data-type="text | number | automatic | #string"  
@@ -56541,7 +56541,7 @@

table:database-name Attribute< RNG Relations - table:database-name="<string>"   + table:database-name="#string"  
@@ -56566,7 +56566,7 @@

table:database-table-name At RNG Relations - table:database-table-name="<string>"   + table:database-table-name="#string"  
@@ -56593,7 +56593,7 @@

table:date-end Attribute

RNG Relations - table:date-end="<date> | <dateTime> | auto"   + table:date-end="#date | #dateTime | auto"  
@@ -56620,7 +56620,7 @@

table:date-start Attribute

RNG Relations - table:date-start="<date> | <dateTime> | auto"   + table:date-start="#date | #dateTime | auto"  
@@ -56645,7 +56645,7 @@

table:date-value Attribute ( RNG Relations - table:date-value="<date>"   + table:date-value="#date"  
@@ -56671,7 +56671,7 @@

table:default-cell-style RNG Relations - table:default-cell-style-name="(<NCName>)?"   + table:default-cell-style-name="(#NCName)?"  
@@ -56729,7 +56729,7 @@

table:display Attribute

RNG Relations - table:display="<boolean>"   + table:display="#boolean"  
@@ -56755,7 +56755,7 @@

table:display-border Attribute RNG Relations - table:display-border="<boolean>"   + table:display-border="#boolean"  
@@ -56781,7 +56781,7 @@

table:display-duplicates Attr RNG Relations - table:display-duplicates="<boolean>"   + table:display-duplicates="#boolean"  
@@ -56807,7 +56807,7 @@

table:display-filter-butt RNG Relations - table:display-filter-buttons="<boolean>"   + table:display-filter-buttons="#boolean"  
@@ -56886,7 +56886,7 @@

table:drill-down-on-d RNG Relations - table:drill-down-on-double-click="<boolean>"   + table:drill-down-on-double-click="#boolean"  
@@ -56939,7 +56939,7 @@

table:enabled Attribute

RNG Relations - table:enabled="<boolean>"   + table:enabled="#boolean"  
@@ -56965,7 +56965,7 @@

table:end Attribute

RNG Relations - table:end="<double> | auto"   + table:end="#double | auto"  
@@ -57033,7 +57033,7 @@

table:end-column Attribute

RNG Relations - table:end-column="<integer>"   + table:end-column="#integer"  
@@ -57058,7 +57058,7 @@

table:end-position Attribute RNG Relations - table:end-position="<integer>"   + table:end-position="#integer"  
@@ -57084,7 +57084,7 @@

table:end-row Attribute

RNG Relations - table:end-row="<integer>"   + table:end-row="#integer"  
@@ -57110,7 +57110,7 @@

table:end-table Attribute

RNG Relations - table:end-table="<integer>"   + table:end-table="#integer"  
@@ -57220,7 +57220,7 @@

table:execute Attribute

RNG Relations - table:execute="<boolean>"   + table:execute="#boolean"  
@@ -57245,7 +57245,7 @@

table:expression Attribute

RNG Relations - table:expression="<string>"   + table:expression="#string"  
@@ -57270,7 +57270,7 @@

table:field-name Attribute

RNG Relations - table:field-name="<string>"   + table:field-name="#string"  
@@ -57297,7 +57297,7 @@

table:field-number Attribute RNG Relations - table:field-number="<nonNegativeInteger>"   + table:field-number="#nonNegativeInteger"  
@@ -57323,7 +57323,7 @@

table:filter-name Attribute

RNG Relations - table:filter-name="<string>"   + table:filter-name="#string"  
@@ -57349,7 +57349,7 @@

table:filter-options Attribute RNG Relations - table:filter-options="<string>"   + table:filter-options="#string"  
@@ -57428,7 +57428,7 @@

table:formula Attribute

RNG Relations - table:formula="<string>"   + table:formula="#string"  
@@ -57467,7 +57467,7 @@

table:function[1] Attribute

RNG Relations - table:function="auto | average | count | countnums | max | min | product | stdev | stdevp | sum | var | varp | <string>"   + table:function="auto | average | count | countnums | max | min | product | stdev | stdevp | sum | var | varp | #string"  
@@ -57505,7 +57505,7 @@

table:function[2] Attribute

RNG Relations - table:function="average | count | countnums | max | min | product | stdev | stdevp | sum | var | varp | <string>"   + table:function="average | count | countnums | max | min | product | stdev | stdevp | sum | var | varp | #string"  
@@ -57558,7 +57558,7 @@

table:group-by-field-numbe RNG Relations - table:group-by-field-number="<nonNegativeInteger>"   + table:group-by-field-number="#nonNegativeInteger"  
@@ -57615,7 +57615,7 @@

table:has-persistent-data At RNG Relations - table:has-persistent-data="<boolean>"   + table:has-persistent-data="#boolean"  
@@ -57648,7 +57648,7 @@

table:id Attribute

RNG Relations - table:id="<string>"   + table:id="#string"  
@@ -57674,7 +57674,7 @@

table:identify-categories At RNG Relations - table:identify-categories="<boolean>"   + table:identify-categories="#boolean"  
@@ -57700,7 +57700,7 @@

table:ignore-empty-rows Attrib RNG Relations - table:ignore-empty-rows="<boolean>"   + table:ignore-empty-rows="#boolean"  
@@ -57725,7 +57725,7 @@

table:index Attribute

RNG Relations - table:index="<nonNegativeInteger>"   + table:index="#nonNegativeInteger"  
@@ -57751,7 +57751,7 @@

table:is-active Attribute

RNG Relations - table:is-active="<boolean>"   + table:is-active="#boolean"  
@@ -57776,7 +57776,7 @@

table:is-data-layout-field RNG Relations - table:is-data-layout-field="<string>"   + table:is-data-layout-field="#string"  
@@ -57802,7 +57802,7 @@

table:is-selection Attribute RNG Relations - table:is-selection="<boolean>"   + table:is-selection="#boolean"  
@@ -57828,7 +57828,7 @@

table:is-sub-table Attribute RNG Relations - table:is-sub-table="<boolean>"   + table:is-sub-table="#boolean"  
@@ -57905,7 +57905,7 @@

table:last-column-spanned At RNG Relations - table:last-column-spanned="<positiveInteger>"   + table:last-column-spanned="#positiveInteger"  
@@ -57956,7 +57956,7 @@

table:last-row-spanned Attribut RNG Relations - table:last-row-spanned="<positiveInteger>"   + table:last-row-spanned="#positiveInteger"  
@@ -58035,7 +58035,7 @@

table:link-to-source-data At RNG Relations - table:link-to-source-data="<boolean>"   + table:link-to-source-data="#boolean"  
@@ -58061,7 +58061,7 @@

table:marked-invalid Attribute RNG Relations - table:marked-invalid="<boolean>"   + table:marked-invalid="#boolean"  
@@ -58087,7 +58087,7 @@

table:matrix-covered Attribute RNG Relations - table:matrix-covered="<boolean>"   + table:matrix-covered="#boolean"  
@@ -58112,7 +58112,7 @@

table:maximum-difference Attr RNG Relations - table:maximum-difference="<double>"   + table:maximum-difference="#double"  
@@ -58137,7 +58137,7 @@

table:member-count Attribute RNG Relations - table:member-count="<nonNegativeInteger>"   + table:member-count="#nonNegativeInteger"  
@@ -58162,7 +58162,7 @@

table:member-name Attribute

RNG Relations - table:member-name="<string>"   + table:member-name="#string"  
@@ -58293,7 +58293,7 @@

table:multi-deletion-span RNG Relations - table:multi-deletion-spanned="<integer>"   + table:multi-deletion-spanned="#integer"  
@@ -58360,7 +58360,7 @@

table:name[2] Attribute

RNG Relations - table:name="<string>"   + table:name="#string"  
@@ -58385,7 +58385,7 @@

table:null-year Attribute

RNG Relations - table:null-year="<positiveInteger>"   + table:null-year="#positiveInteger"  
@@ -58412,7 +58412,7 @@

table:number-columns-rep RNG Relations - table:number-columns-repeated="<positiveInteger>"   + table:number-columns-repeated="#positiveInteger"  
@@ -58437,7 +58437,7 @@

table:number-columns-span RNG Relations - table:number-columns-spanned="<positiveInteger>"   + table:number-columns-spanned="#positiveInteger"  
@@ -58463,7 +58463,7 @@

table:number-matri RNG Relations - table:number-matrix-columns-spanned="<positiveInteger>"   + table:number-matrix-columns-spanned="#positiveInteger"  
@@ -58489,7 +58489,7 @@

table:number-matrix-r RNG Relations - table:number-matrix-rows-spanned="<positiveInteger>"   + table:number-matrix-rows-spanned="#positiveInteger"  
@@ -58514,7 +58514,7 @@

table:number-rows-repeated RNG Relations - table:number-rows-repeated="<positiveInteger>"   + table:number-rows-repeated="#positiveInteger"  
@@ -58539,7 +58539,7 @@

table:number-rows-spanned At RNG Relations - table:number-rows-spanned="<positiveInteger>"   + table:number-rows-spanned="#positiveInteger"  
@@ -58564,7 +58564,7 @@

table:object-name Attribute

RNG Relations - table:object-name="<string>"   + table:object-name="#string"  
@@ -58590,7 +58590,7 @@

table:on-update-keep-size At RNG Relations - table:on-update-keep-size="<boolean>"   + table:on-update-keep-size="#boolean"  
@@ -58616,7 +58616,7 @@

table:on-update-keep-style RNG Relations - table:on-update-keep-styles="<boolean>"   + table:on-update-keep-styles="#boolean"  
@@ -58641,7 +58641,7 @@

table:operator Attribute

RNG Relations - table:operator="<string>"   + table:operator="#string"  
@@ -58778,7 +58778,7 @@

table:page-breaks-on RNG Relations - table:page-breaks-on-group-change="<boolean>"   + table:page-breaks-on-group-change="#boolean"  
@@ -58811,7 +58811,7 @@

table:paragraph-style-name RNG Relations - table:paragraph-style-name="(<NCName>)?"   + table:paragraph-style-name="(#NCName)?"  
@@ -58837,7 +58837,7 @@

table:parse-sql-statement At RNG Relations - table:parse-sql-statement="<boolean>"   + table:parse-sql-statement="#boolean"  
@@ -58862,7 +58862,7 @@

table:password Attribute

RNG Relations - table:password="<string>"   + table:password="#string"  
@@ -58890,7 +58890,7 @@

table:position Attribute

RNG Relations - table:position="<integer>"   + table:position="#integer"  
@@ -58916,7 +58916,7 @@

table:precision-as-shown Attr RNG Relations - table:precision-as-shown="<boolean>"   + table:precision-as-shown="#boolean"  
@@ -58942,7 +58942,7 @@

table:print Attribute

RNG Relations - table:print="<boolean>"   + table:print="#boolean"  
@@ -58967,7 +58967,7 @@

table:print-ranges Attribute RNG Relations - table:print-ranges="<string>"   + table:print-ranges="#string"  
@@ -58994,7 +58994,7 @@

table:protect Attribute

RNG Relations - table:protect="<boolean>"   + table:protect="#boolean"  
@@ -59023,7 +59023,7 @@

table:protected Attribute

RNG Relations - table:protected="<boolean>"   + table:protected="#boolean"  
@@ -59049,7 +59049,7 @@

table:protection-key Attribute RNG Relations - table:protection-key="<string>"   + table:protection-key="#string"  
@@ -59075,7 +59075,7 @@

table:protection RNG Relations - table:protection-key-digest-algorithm="<anyIRI>"   + table:protection-key-digest-algorithm="#anyIRI"  
@@ -59100,7 +59100,7 @@

table:query-name Attribute

RNG Relations - table:query-name="<string>"   + table:query-name="#string"  
@@ -59158,7 +59158,7 @@

table:refresh-delay[1] Attribute RNG Relations - table:refresh-delay="<duration>"   + table:refresh-delay="#duration"  
@@ -59185,7 +59185,7 @@

table:refresh-delay[2] Attribute RNG Relations - table:refresh-delay="<boolean>"   + table:refresh-delay="#boolean"  
@@ -59213,7 +59213,7 @@

table:rejecting-change-id At RNG Relations - table:rejecting-change-id="<string>"   + table:rejecting-change-id="#string"  
@@ -59238,7 +59238,7 @@

table:rfc-language-tag Attribut RNG Relations - table:rfc-language-tag="<language>"   + table:rfc-language-tag="#language"  
@@ -59265,7 +59265,7 @@

table:row Attribute

RNG Relations - table:row="<integer>"   + table:row="#integer"  
@@ -59290,7 +59290,7 @@

table:scenario-ranges Attribute< RNG Relations - table:scenario-ranges="<string>"   + table:scenario-ranges="#string"  
@@ -59341,7 +59341,7 @@

table:s RNG Relations - table:search-criteria-must-apply-to-whole-cell="<boolean>"   + table:search-criteria-must-apply-to-whole-cell="#boolean"  
@@ -59366,7 +59366,7 @@

table:selected-page Attribute< RNG Relations - table:selected-page="<string>"   + table:selected-page="#string"  
@@ -59392,7 +59392,7 @@

table:show-details Attribute RNG Relations - table:show-details="<boolean>"   + table:show-details="#boolean"  
@@ -59418,7 +59418,7 @@

table:show-empty Attribute

RNG Relations - table:show-empty="<boolean>"   + table:show-empty="#boolean"  
@@ -59444,7 +59444,7 @@

table:show-filter-button Attr RNG Relations - table:show-filter-button="<boolean>"   + table:show-filter-button="#boolean"  
@@ -59523,7 +59523,7 @@

table:source-cell-ra RNG Relations - table:source-cell-range-addresses="<string>"   + table:source-cell-range-addresses="#string"  
@@ -59549,7 +59549,7 @@

table:source-field-name Attrib RNG Relations - table:source-field-name="<string>"   + table:source-field-name="#string"  
@@ -59574,7 +59574,7 @@

table:source-name Attribute

RNG Relations - table:source-name="<string>"   + table:source-name="#string"  
@@ -59599,7 +59599,7 @@

table:sql-statement Attribute< RNG Relations - table:sql-statement="<string>"   + table:sql-statement="#string"  
@@ -59625,7 +59625,7 @@

table:start Attribute

RNG Relations - table:start="<double> | auto"   + table:start="#double | auto"  
@@ -59651,7 +59651,7 @@

table:start-column Attribute RNG Relations - table:start-column="<integer>"   + table:start-column="#integer"  
@@ -59676,7 +59676,7 @@

table:start-position Attribute RNG Relations - table:start-position="<integer>"   + table:start-position="#integer"  
@@ -59702,7 +59702,7 @@

table:start-row Attribute

RNG Relations - table:start-row="<integer>"   + table:start-row="#integer"  
@@ -59728,7 +59728,7 @@

table:start-table Attribute

RNG Relations - table:start-table="<integer>"   + table:start-table="#integer"  
@@ -59779,7 +59779,7 @@

table:step Attribute

RNG Relations - table:step="<double>"   + table:step="#double"  
@@ -59804,7 +59804,7 @@

table:steps Attribute

RNG Relations - table:steps="<positiveInteger>"   + table:steps="#positiveInteger"  
@@ -59830,7 +59830,7 @@

table:structure-protected At RNG Relations - table:structure-protected="<boolean>"   + table:structure-protected="#boolean"  
@@ -59869,7 +59869,7 @@

table:style-name Attribute

RNG Relations - table:style-name="(<NCName>)?"   + table:style-name="(#NCName)?"  
@@ -59898,7 +59898,7 @@

table:table Attribute

RNG Relations - table:table="<integer>"   + table:table="#integer"  
@@ -59941,7 +59941,7 @@

table:table-background Attribut RNG Relations - table:table-background="<boolean>"   + table:table-background="#boolean"  
@@ -59966,7 +59966,7 @@

table:table-name Attribute

RNG Relations - table:table-name="<string>"   + table:table-name="#string"  
@@ -60046,7 +60046,7 @@

table:template-name Attribute& RNG Relations - table:template-name="<string>"   + table:template-name="#string"  
@@ -60072,7 +60072,7 @@

table:title Attribute

RNG Relations - table:title="<string>"   + table:title="#string"  
@@ -60098,7 +60098,7 @@

table:track-changes Attribute< RNG Relations - table:track-changes="<boolean>"   + table:track-changes="#boolean"  
@@ -60187,7 +60187,7 @@

table:use-banding-col RNG Relations - table:use-banding-columns-styles="<boolean>"   + table:use-banding-columns-styles="#boolean"  
@@ -60213,7 +60213,7 @@

table:use-banding-rows-s RNG Relations - table:use-banding-rows-styles="<boolean>"   + table:use-banding-rows-styles="#boolean"  
@@ -60239,7 +60239,7 @@

table:use-first-column-s RNG Relations - table:use-first-column-styles="<boolean>"   + table:use-first-column-styles="#boolean"  
@@ -60265,7 +60265,7 @@

table:use-first-row-styles RNG Relations - table:use-first-row-styles="<boolean>"   + table:use-first-row-styles="#boolean"  
@@ -60319,7 +60319,7 @@

table:use-last-column-sty RNG Relations - table:use-last-column-styles="<boolean>"   + table:use-last-column-styles="#boolean"  
@@ -60345,7 +60345,7 @@

table:use-last-row-styles At RNG Relations - table:use-last-row-styles="<boolean>"   + table:use-last-row-styles="#boolean"  
@@ -60371,7 +60371,7 @@

table:use-regular-expres RNG Relations - table:use-regular-expressions="<boolean>"   + table:use-regular-expressions="#boolean"  
@@ -60397,7 +60397,7 @@

table:use-wildcards Attribute& RNG Relations - table:use-wildcards="<boolean>"   + table:use-wildcards="#boolean"  
@@ -60422,7 +60422,7 @@

table:used-hierarchy Attribute RNG Relations - table:used-hierarchy="<integer>"   + table:used-hierarchy="#integer"  
@@ -60447,7 +60447,7 @@

table:user-name Attribute

RNG Relations - table:user-name="<string>"   + table:user-name="#string"  
@@ -60474,7 +60474,7 @@

table:value[1] Attribute

RNG Relations - table:value="<string> | <double>"   + table:value="#string | #double"  
@@ -60500,7 +60500,7 @@

table:value[2] Attribute

RNG Relations - table:value="<string>"   + table:value="#string"  
@@ -60579,7 +60579,7 @@

text:active Attribute

RNG Relations - text:active="<boolean>"   + text:active="#boolean"  
@@ -60604,7 +60604,7 @@

text:address Attribute

RNG Relations - CHOICE_NAME_CLASS="<string>"   + CHOICE_NAME_CLASS="#string"  
@@ -60630,7 +60630,7 @@

text:alphabetical-separat RNG Relations - text:alphabetical-separators="<boolean>"   + text:alphabetical-separators="#boolean"  
@@ -60673,7 +60673,7 @@

text:anchor-page-number Attrib RNG Relations - text:anchor-page-number="<positiveInteger>"   + text:anchor-page-number="#positiveInteger"  
@@ -60773,7 +60773,7 @@

text:animation-delay Attribute RNG Relations - text:animation-delay="<duration>"   + text:animation-delay="#duration"  
@@ -60826,7 +60826,7 @@

text:animation-repeat Attribute< RNG Relations - text:animation-repeat="<nonNegativeInteger>"   + text:animation-repeat="#nonNegativeInteger"  
@@ -60852,7 +60852,7 @@

text:animation-start-insid RNG Relations - text:animation-start-inside="<boolean>"   + text:animation-start-inside="#boolean"  
@@ -60903,7 +60903,7 @@

text:animation-stop-inside RNG Relations - text:animation-stop-inside="<boolean>"   + text:animation-stop-inside="#boolean"  
@@ -60928,7 +60928,7 @@

text:annote Attribute

RNG Relations - CHOICE_NAME_CLASS="<string>"   + CHOICE_NAME_CLASS="#string"  
@@ -60953,7 +60953,7 @@

text:author Attribute

RNG Relations - CHOICE_NAME_CLASS="<string>"   + CHOICE_NAME_CLASS="#string"  
@@ -61081,7 +61081,7 @@

text:booktitle Attribute

RNG Relations - CHOICE_NAME_CLASS="<string>"   + CHOICE_NAME_CLASS="#string"  
@@ -61156,7 +61156,7 @@

text:c Attribute

RNG Relations - text:c="<nonNegativeInteger>"   + text:c="#nonNegativeInteger"  
@@ -61182,7 +61182,7 @@

text:capitalize-entries Attrib RNG Relations - text:capitalize-entries="<boolean>"   + text:capitalize-entries="#boolean"  
@@ -61236,7 +61236,7 @@

text:caption-sequence-name RNG Relations - text:caption-sequence-name="<string>"   + text:caption-sequence-name="#string"  
@@ -61263,7 +61263,7 @@

text:change-id Attribute

RNG Relations - text:change-id="<IDREF>"   + text:change-id="#IDREF"  
@@ -61288,7 +61288,7 @@

text:chapter Attribute

RNG Relations - CHOICE_NAME_CLASS="<string>"   + CHOICE_NAME_CLASS="#string"  
@@ -61313,7 +61313,7 @@

text:citation-body-style RNG Relations - text:citation-body-style-name="(<NCName>)?"   + text:citation-body-style-name="(#NCName)?"  
@@ -61338,7 +61338,7 @@

text:citation-style-name Attr RNG Relations - text:citation-style-name="(<NCName>)?"   + text:citation-style-name="(#NCName)?"  
@@ -61366,7 +61366,7 @@

text:class-names Attribute

RNG Relations text:class-names=" -START_list(<NCName>)* +START_list(#NCName)* END_list"   @@ -61392,7 +61392,7 @@

text:column-name Attribute

RNG Relations - text:column-name="<string>"   + text:column-name="#string"  
@@ -61418,7 +61418,7 @@

text:combine-entries Attribute RNG Relations - text:combine-entries="<boolean>"   + text:combine-entries="#boolean"  
@@ -61444,7 +61444,7 @@

text:combine-entries-wi RNG Relations - text:combine-entries-with-dash="<boolean>"   + text:combine-entries-with-dash="#boolean"  
@@ -61470,7 +61470,7 @@

text:combine-entries-with RNG Relations - text:combine-entries-with-pp="<boolean>"   + text:combine-entries-with-pp="#boolean"  
@@ -61496,7 +61496,7 @@

text:comma-separated Attribute RNG Relations - text:comma-separated="<boolean>"   + text:comma-separated="#boolean"  
@@ -61522,7 +61522,7 @@

text:cond-style-name Attribute RNG Relations - text:cond-style-name="(<NCName>)?"   + text:cond-style-name="(#NCName)?"  
@@ -61579,7 +61579,7 @@

text:condition[2] Attribute

RNG Relations - text:condition="<string>"   + text:condition="#string"  
@@ -61604,7 +61604,7 @@

text:connection-name Attribute RNG Relations - text:connection-name="<string>"   + text:connection-name="#string"  
@@ -61630,7 +61630,7 @@

text:consecutive-numbering RNG Relations - text:consecutive-numbering="<boolean>"   + text:consecutive-numbering="#boolean"  
@@ -61655,7 +61655,7 @@

text:continue-list Attribute&nb RNG Relations - text:continue-list="<IDREF>"   + text:continue-list="#IDREF"  
@@ -61682,7 +61682,7 @@

text:continue-numbering Attrib RNG Relations - text:continue-numbering="<boolean>"   + text:continue-numbering="#boolean"  
@@ -61708,7 +61708,7 @@

text:copy-outline-levels Attr RNG Relations - text:copy-outline-levels="<boolean>"   + text:copy-outline-levels="#boolean"  
@@ -61734,7 +61734,7 @@

text:count-empty-lines Attribut RNG Relations - text:count-empty-lines="<boolean>"   + text:count-empty-lines="#boolean"  
@@ -61760,7 +61760,7 @@

text:count-in-text-boxes Attr RNG Relations - text:count-in-text-boxes="<boolean>"   + text:count-in-text-boxes="#boolean"  
@@ -61786,7 +61786,7 @@

text:current-value Attribute RNG Relations - text:current-value="<boolean>"   + text:current-value="#boolean"  
@@ -61811,7 +61811,7 @@

text:custom1 Attribute

RNG Relations - CHOICE_NAME_CLASS="<string>"   + CHOICE_NAME_CLASS="#string"  
@@ -61836,7 +61836,7 @@

text:custom2 Attribute

RNG Relations - CHOICE_NAME_CLASS="<string>"   + CHOICE_NAME_CLASS="#string"  
@@ -61861,7 +61861,7 @@

text:custom3 Attribute

RNG Relations - CHOICE_NAME_CLASS="<string>"   + CHOICE_NAME_CLASS="#string"  
@@ -61886,7 +61886,7 @@

text:custom4 Attribute

RNG Relations - CHOICE_NAME_CLASS="<string>"   + CHOICE_NAME_CLASS="#string"  
@@ -61911,7 +61911,7 @@

text:custom5 Attribute

RNG Relations - CHOICE_NAME_CLASS="<string>"   + CHOICE_NAME_CLASS="#string"  
@@ -61940,7 +61940,7 @@

text:database-name Attribute RNG Relations - text:database-name="<string>"   + text:database-name="#string"  
@@ -61965,7 +61965,7 @@

text:date-adjust Attribute

RNG Relations - text:date-adjust="<duration>"   + text:date-adjust="#duration"  
@@ -61993,7 +61993,7 @@

text:date-value[1] Attribute

RNG Relations - text:date-value="<date> | <dateTime>"   + text:date-value="#date | #dateTime"  
@@ -62020,7 +62020,7 @@

text:date-value[2] Attribute

RNG Relations - text:date-value="<date>"   + text:date-value="#date"  
@@ -62045,7 +62045,7 @@

text:default-style-name Attrib RNG Relations - text:default-style-name="(<NCName>)?"   + text:default-style-name="(#NCName)?"  
@@ -62073,7 +62073,7 @@

text:description Attribute

RNG Relations - text:description="<string>"   + text:description="#string"  
@@ -62381,7 +62381,7 @@

text:display-levels Attribute< RNG Relations - text:display-levels="<positiveInteger>"   + text:display-levels="#positiveInteger"  
@@ -62406,7 +62406,7 @@

text:display-outline-level RNG Relations - text:display-outline-level="<nonNegativeInteger>"   + text:display-outline-level="#nonNegativeInteger"  
@@ -62432,7 +62432,7 @@

text:dont-balance-text- RNG Relations - text:dont-balance-text-columns="<boolean>"   + text:dont-balance-text-columns="#boolean"  
@@ -62457,7 +62457,7 @@

text:duration Attribute

RNG Relations - text:duration="<duration>"   + text:duration="#duration"  
@@ -62482,7 +62482,7 @@

text:edition Attribute

RNG Relations - CHOICE_NAME_CLASS="<string>"   + CHOICE_NAME_CLASS="#string"  
@@ -62507,7 +62507,7 @@

text:editor Attribute

RNG Relations - CHOICE_NAME_CLASS="<string>"   + CHOICE_NAME_CLASS="#string"  
@@ -62532,7 +62532,7 @@

text:filter-name Attribute

RNG Relations - text:filter-name="<string>"   + text:filter-name="#string"  
@@ -62594,7 +62594,7 @@

text:fixed Attribute

RNG Relations - text:fixed="<boolean>"   + text:fixed="#boolean"  
@@ -62651,7 +62651,7 @@

text:formula Attribute

RNG Relations - text:formula="<string>"   + text:formula="#string"  
@@ -62677,7 +62677,7 @@

text:global Attribute

RNG Relations - text:global="<boolean>"   + text:global="#boolean"  
@@ -62702,7 +62702,7 @@

text:howpublished Attribute

RNG Relations - CHOICE_NAME_CLASS="<string>"   + CHOICE_NAME_CLASS="#string"  
@@ -62734,7 +62734,7 @@

text:id[1] Attribute

RNG Relations - text:id="<string>"   + text:id="#string"  
@@ -62763,7 +62763,7 @@

text:id[2] Attribute

RNG Relations - text:id="<NCName>"   + text:id="#NCName"  
@@ -62788,7 +62788,7 @@

text:identifier Attribute

RNG Relations - CHOICE_NAME_CLASS="<string>"   + CHOICE_NAME_CLASS="#string"  
@@ -62814,7 +62814,7 @@

text:ignore-case Attribute

RNG Relations - text:ignore-case="<boolean>"   + text:ignore-case="#boolean"  
@@ -62840,7 +62840,7 @@

text:increment Attribute

RNG Relations - text:increment="<nonNegativeInteger>"   + text:increment="#nonNegativeInteger"  
@@ -62867,7 +62867,7 @@

text:index-name Attribute

RNG Relations - text:index-name="<string>"   + text:index-name="#string"  
@@ -62923,7 +62923,7 @@

text:institution Attribute

RNG Relations - CHOICE_NAME_CLASS="<string>"   + CHOICE_NAME_CLASS="#string"  
@@ -62950,7 +62950,7 @@

text:is-hidden Attribute

RNG Relations - text:is-hidden="<boolean>"   + text:is-hidden="#boolean"  
@@ -62976,7 +62976,7 @@

text:is-list-header Attribute< RNG Relations - text:is-list-header="<boolean>"   + text:is-list-header="#boolean"  
@@ -63001,7 +63001,7 @@

text:isbn Attribute

RNG Relations - CHOICE_NAME_CLASS="<string>"   + CHOICE_NAME_CLASS="#string"  
@@ -63026,7 +63026,7 @@

text:issn Attribute

RNG Relations - CHOICE_NAME_CLASS="<string>"   + CHOICE_NAME_CLASS="#string"  
@@ -63051,7 +63051,7 @@

text:journal Attribute

RNG Relations - CHOICE_NAME_CLASS="<string>"   + CHOICE_NAME_CLASS="#string"  
@@ -63133,7 +63133,7 @@

text:key1 Attribute

RNG Relations - text:key1="<string>"   + text:key1="#string"  
@@ -63159,7 +63159,7 @@

text:key1-phonetic Attribute RNG Relations - text:key1-phonetic="<string>"   + text:key1-phonetic="#string"  
@@ -63185,7 +63185,7 @@

text:key2 Attribute

RNG Relations - text:key2="<string>"   + text:key2="#string"  
@@ -63211,7 +63211,7 @@

text:key2-phonetic Attribute RNG Relations - text:key2-phonetic="<string>"   + text:key2-phonetic="#string"  
@@ -63263,7 +63263,7 @@

text:label Attribute

RNG Relations - text:label="<string>"   + text:label="#string"  
@@ -63319,7 +63319,7 @@

text:level Attribute

RNG Relations - text:level="<positiveInteger>"   + text:level="#positiveInteger"  
@@ -63345,7 +63345,7 @@

text:line-break Attribute (ne RNG Relations - text:line-break="<boolean>"   + text:line-break="#boolean"  
@@ -63370,7 +63370,7 @@

text:line-number Attribute ( RNG Relations - text:line-number="<nonNegativeInteger>"   + text:line-number="#nonNegativeInteger"  
@@ -63395,7 +63395,7 @@

text:list-id Attribute (new in O RNG Relations - text:list-id="<NCName>"   + text:list-id="#NCName"  
@@ -63473,7 +63473,7 @@

text:main-entry Attribute

RNG Relations - text:main-entry="<boolean>"   + text:main-entry="#boolean"  
@@ -63498,7 +63498,7 @@

text:main-entry-style-name RNG Relations - text:main-entry-style-name="(<NCName>)?"   + text:main-entry-style-name="(#NCName)?"  
@@ -63524,7 +63524,7 @@

text:master-page-name Attribute< RNG Relations - text:master-page-name="(<NCName>)?"   + text:master-page-name="(#NCName)?"  
@@ -63599,7 +63599,7 @@

text:month Attribute

RNG Relations - CHOICE_NAME_CLASS="<string>"   + CHOICE_NAME_CLASS="#string"  
@@ -63649,7 +63649,7 @@

text:name Attribute

RNG Relations - text:name="<string>"   + text:name="#string"  
@@ -63674,7 +63674,7 @@

text:note Attribute

RNG Relations - CHOICE_NAME_CLASS="<string>"   + CHOICE_NAME_CLASS="#string"  
@@ -63727,7 +63727,7 @@

text:number Attribute

RNG Relations - CHOICE_NAME_CLASS="<string>"   + CHOICE_NAME_CLASS="#string"  
@@ -63754,7 +63754,7 @@

text:number-lines Attribute

RNG Relations - text:number-lines="<boolean>"   + text:number-lines="#boolean"  
@@ -63808,7 +63808,7 @@

text:numbered-entries Attribute< RNG Relations - text:numbered-entries="<boolean>"   + text:numbered-entries="#boolean"  
@@ -63858,7 +63858,7 @@

text:organizations Attribute RNG Relations - CHOICE_NAME_CLASS="<string>"   + CHOICE_NAME_CLASS="#string"  
@@ -63893,7 +63893,7 @@

text:outline-level[1] Attribute RNG Relations - text:outline-level="<positiveInteger>"   + text:outline-level="#positiveInteger"  
@@ -63948,7 +63948,7 @@

text:outline-level[3] Attribute RNG Relations - text:outline-level="<nonNegativeInteger>"   + text:outline-level="#nonNegativeInteger"  
@@ -63974,7 +63974,7 @@

text:page-adjust Attribute

RNG Relations - text:page-adjust="<integer>"   + text:page-adjust="#integer"  
@@ -63999,7 +63999,7 @@

text:pages Attribute

RNG Relations - CHOICE_NAME_CLASS="<string>"   + CHOICE_NAME_CLASS="#string"  
@@ -64053,7 +64053,7 @@

text:prefix Attribute

RNG Relations - text:prefix="<string>"   + text:prefix="#string"  
@@ -64087,7 +64087,7 @@

text:protected Attribute

RNG Relations - text:protected="<boolean>"   + text:protected="#boolean"  
@@ -64120,7 +64120,7 @@

text:protection-key Attribute< RNG Relations - text:protection-key="<string>"   + text:protection-key="#string"  
@@ -64153,7 +64153,7 @@

text:protection-k RNG Relations - text:protection-key-digest-algorithm="<anyIRI>"   + text:protection-key-digest-algorithm="#anyIRI"  
@@ -64178,7 +64178,7 @@

text:publisher Attribute

RNG Relations - CHOICE_NAME_CLASS="<string>"   + CHOICE_NAME_CLASS="#string"  
@@ -64207,7 +64207,7 @@

text:ref-name Attribute

RNG Relations - text:ref-name="<string>"   + text:ref-name="#string"  
@@ -64332,7 +64332,7 @@

text:relative-tab-stop RNG Relations - text:relative-tab-stop-position="<boolean>"   + text:relative-tab-stop-position="#boolean"  
@@ -64357,7 +64357,7 @@

text:report-type Attribute

RNG Relations - CHOICE_NAME_CLASS="<string>"   + CHOICE_NAME_CLASS="#string"  
@@ -64383,7 +64383,7 @@

text:restart-numbering Attribut RNG Relations - text:restart-numbering="<boolean>"   + text:restart-numbering="#boolean"  
@@ -64409,7 +64409,7 @@

text:restart-on-page Attribute RNG Relations - text:restart-on-page="<boolean>"   + text:restart-on-page="#boolean"  
@@ -64434,7 +64434,7 @@

text:row-number Attribute

RNG Relations - text:row-number="<nonNegativeInteger>"   + text:row-number="#nonNegativeInteger"  
@@ -64459,7 +64459,7 @@

text:school Attribute

RNG Relations - CHOICE_NAME_CLASS="<string>"   + CHOICE_NAME_CLASS="#string"  
@@ -64484,7 +64484,7 @@

text:section-name Attribute

RNG Relations - text:section-name="<string>"   + text:section-name="#string"  
@@ -64589,7 +64589,7 @@

text:series Attribute

RNG Relations - CHOICE_NAME_CLASS="<string>"   + CHOICE_NAME_CLASS="#string"  
@@ -64615,7 +64615,7 @@

text:sort-algorithm Attribute< RNG Relations - text:sort-algorithm="<string>"   + text:sort-algorithm="#string"  
@@ -64641,7 +64641,7 @@

text:sort-ascending Attribute< RNG Relations - text:sort-ascending="<boolean>"   + text:sort-ascending="#boolean"  
@@ -64667,7 +64667,7 @@

text:sort-by-position Attribute< RNG Relations - text:sort-by-position="<boolean>"   + text:sort-by-position="#boolean"  
@@ -64748,7 +64748,7 @@

text:start-value[1] Attribute

RNG Relations - text:start-value="<nonNegativeInteger>"   + text:start-value="#nonNegativeInteger"  
@@ -64775,7 +64775,7 @@

text:start-value[2] Attribute

RNG Relations - text:start-value="<positiveInteger>"   + text:start-value="#positiveInteger"  
@@ -64804,7 +64804,7 @@

text:string-value Attribute

RNG Relations - text:string-value="<string>"   + text:string-value="#string"  
@@ -64829,7 +64829,7 @@

text:string-value-if-false RNG Relations - text:string-value-if-false="<string>"   + text:string-value-if-false="#string"  
@@ -64854,7 +64854,7 @@

text:string-value-if-true At RNG Relations - text:string-value-if-true="<string>"   + text:string-value-if-true="#string"  
@@ -64880,7 +64880,7 @@

text:string-value-phonetic RNG Relations - text:string-value-phonetic="<string>"   + text:string-value-phonetic="#string"  
@@ -64942,7 +64942,7 @@

text:style-name Attribute

RNG Relations - text:style-name="(<NCName>)?"   + text:style-name="(#NCName)?"  
@@ -64967,7 +64967,7 @@

text:style-override Attribute& RNG Relations - text:style-override="(<NCName>)?"   + text:style-override="(#NCName)?"  
@@ -64992,7 +64992,7 @@

text:suffix Attribute

RNG Relations - text:suffix="<string>"   + text:suffix="#string"  
@@ -65017,7 +65017,7 @@

text:tab-ref Attribute

RNG Relations - text:tab-ref="<nonNegativeInteger>"   + text:tab-ref="#nonNegativeInteger"  
@@ -65046,7 +65046,7 @@

text:table-name Attribute

RNG Relations - text:table-name="<string>"   + text:table-name="#string"  
@@ -65102,7 +65102,7 @@

text:time-adjust Attribute

RNG Relations - text:time-adjust="<duration>"   + text:time-adjust="#duration"  
@@ -65129,7 +65129,7 @@

text:time-value[1] Attribute

RNG Relations - text:time-value="<time>"   + text:time-value="#time"  
@@ -65157,7 +65157,7 @@

text:time-value[2] Attribute

RNG Relations - text:time-value="<time> | <dateTime>"   + text:time-value="#time | #dateTime"  
@@ -65182,7 +65182,7 @@

text:title Attribute

RNG Relations - CHOICE_NAME_CLASS="<string>"   + CHOICE_NAME_CLASS="#string"  
@@ -65208,7 +65208,7 @@

text:track-changes Attribute RNG Relations - text:track-changes="<boolean>"   + text:track-changes="#boolean"  
@@ -65233,7 +65233,7 @@

text:url Attribute

RNG Relations - CHOICE_NAME_CLASS="<string>"   + CHOICE_NAME_CLASS="#string"  
@@ -65260,7 +65260,7 @@

text:use-caption Attribute

RNG Relations - text:use-caption="<boolean>"   + text:use-caption="#boolean"  
@@ -65286,7 +65286,7 @@

text:use-chart-objects Attribut RNG Relations - text:use-chart-objects="<boolean>"   + text:use-chart-objects="#boolean"  
@@ -65312,7 +65312,7 @@

text:use-draw-objects Attribute< RNG Relations - text:use-draw-objects="<boolean>"   + text:use-draw-objects="#boolean"  
@@ -65338,7 +65338,7 @@

text:use-floating-frames Attr RNG Relations - text:use-floating-frames="<boolean>"   + text:use-floating-frames="#boolean"  
@@ -65364,7 +65364,7 @@

text:use-graphics Attribute

RNG Relations - text:use-graphics="<boolean>"   + text:use-graphics="#boolean"  
@@ -65391,7 +65391,7 @@

text:use-index-marks Attribute RNG Relations - text:use-index-marks="<boolean>"   + text:use-index-marks="#boolean"  
@@ -65418,7 +65418,7 @@

text:use-index-source-sty RNG Relations - text:use-index-source-styles="<boolean>"   + text:use-index-source-styles="#boolean"  
@@ -65444,7 +65444,7 @@

text:use-keys-as-entries Attr RNG Relations - text:use-keys-as-entries="<boolean>"   + text:use-keys-as-entries="#boolean"  
@@ -65470,7 +65470,7 @@

text:use-math-objects Attribute< RNG Relations - text:use-math-objects="<boolean>"   + text:use-math-objects="#boolean"  
@@ -65496,7 +65496,7 @@

text:use-objects Attribute

RNG Relations - text:use-objects="<boolean>"   + text:use-objects="#boolean"  
@@ -65522,7 +65522,7 @@

text:use-other-objects Attribut RNG Relations - text:use-other-objects="<boolean>"   + text:use-other-objects="#boolean"  
@@ -65548,7 +65548,7 @@

text:use-outline-level Attribut RNG Relations - text:use-outline-level="<boolean>"   + text:use-outline-level="#boolean"  
@@ -65574,7 +65574,7 @@

text:use-soft-page-breaks At RNG Relations - text:use-soft-page-breaks="<boolean>"   + text:use-soft-page-breaks="#boolean"  
@@ -65600,7 +65600,7 @@

text:use-spreadsheet-obje RNG Relations - text:use-spreadsheet-objects="<boolean>"   + text:use-spreadsheet-objects="#boolean"  
@@ -65626,7 +65626,7 @@

text:use-tables Attribute

RNG Relations - text:use-tables="<boolean>"   + text:use-tables="#boolean"  
@@ -65651,7 +65651,7 @@

text:value Attribute

RNG Relations - text:value="<nonNegativeInteger>"   + text:value="#nonNegativeInteger"  
@@ -65676,7 +65676,7 @@

text:visited-style-name Attrib RNG Relations - text:visited-style-name="(<NCName>)?"   + text:visited-style-name="(#NCName)?"  
@@ -65701,7 +65701,7 @@

text:volume Attribute

RNG Relations - CHOICE_NAME_CLASS="<string>"   + CHOICE_NAME_CLASS="#string"  
@@ -65726,7 +65726,7 @@

text:year Attribute

RNG Relations - CHOICE_NAME_CLASS="<string>"   + CHOICE_NAME_CLASS="#string"  
@@ -65771,7 +65771,7 @@

xforms:bind Attribute

RNG Relations - xforms:bind="<string>"   + xforms:bind="#string"  
@@ -65802,7 +65802,7 @@

xhtml:about Attribute (new in ODF RNG Relations - xhtml:about="<anyURI> | string]"   + xhtml:about="#anyURI | string]"  
@@ -65832,7 +65832,7 @@

xhtml:content Attribute (new in RNG Relations - xhtml:content="<string>"   + xhtml:content="#string"  
@@ -66027,7 +66027,7 @@

xlink:href Attribute

RNG Relations - xlink:href="<anyIRI>"   + xlink:href="#anyIRI"  
@@ -66174,7 +66174,7 @@

xlink:title Attribute (new in ODF RNG Relations - xlink:title="<string>"   + xlink:title="#string"  
@@ -66340,7 +66340,7 @@

xml:id Attribute (new in ODF 1.2)

RNG Relations - xml:id="<ID>"   + xml:id="#ID"  
diff --git a/generator/schema2template/src/test/resources/test-reference/odf/generation/odf-reference/odf-schema-1.3/OdfReference.html b/generator/schema2template/src/test/resources/test-reference/odf/generation/odf-reference/odf-schema-1.3/OdfReference.html index a2a1d8967a..8f38f431f4 100644 --- a/generator/schema2template/src/test/resources/test-reference/odf/generation/odf-reference/odf-schema-1.3/OdfReference.html +++ b/generator/schema2template/src/test/resources/test-reference/odf/generation/odf-reference/odf-schema-1.3/OdfReference.html @@ -81,23 +81,23 @@

anim:animate Element

Child Relations - <anim:animate (smil:targetElement="<IDREF>" )? - (anim:sub-item="<string>" )? - smil:attributeName="<string>" (smil:values="<string>" )? - (anim:formula="<string>" )? - (smil:to="<string>" )? - (smil:from="<string>" )? - (smil:by="<string>" )? + <anim:animate (smil:targetElement="#IDREF" )? + (anim:sub-item="#string" )? + smil:attributeName="#string" (smil:values="#string" )? + (anim:formula="#string" )? + (smil:to="#string" )? + (smil:from="#string" )? + (smil:by="#string" )? (smil:calcMode="discrete | linear | paced | spline" )? - (smil:keyTimes="<string>" )? - (smil:keySplines="<string>" )? + (smil:keyTimes="#string" )? + (smil:keySplines="#string" )? ( - ( (smil:begin="<string>" )? - (smil:end="<string>" )? - (smil:dur="<string>" )? + ( (smil:begin="#string" )? + (smil:end="#string" )? + (smil:dur="#string" )? - ( (smil:repeatDur="<string>" )? + ( (smil:repeatDur="#string" )? (smil:repeatCount="decimal] | indefinite" )? ) (smil:restart="never | always | whenNotActive | default" )? (smil:restartDefault="never | always | whenNotActive | inherit" )? @@ -105,7 +105,7 @@

anim:animate Element

(smil:fillDefault="remove | freeze | hold | transition | auto | inherit" )? ) (smil:accelerate="decimal]" )? (smil:decelerate="decimal]" )? - (smil:autoReverse="<boolean>" )? + (smil:autoReverse="#boolean" )? ) (smil:accumulate="none | sum" )? (smil:additive="replace | sum" )? >  @@ -164,27 +164,27 @@

anim:animateColor Element

Child Relations - <anim:animateColor (smil:targetElement="<IDREF>" )? - (anim:sub-item="<string>" )? - smil:attributeName="<string>" (smil:accumulate="none | sum" )? + <anim:animateColor (smil:targetElement="#IDREF" )? + (anim:sub-item="#string" )? + smil:attributeName="#string" (smil:accumulate="none | sum" )? (smil:additive="replace | sum" )? - (smil:values="<string>" )? - (anim:formula="<string>" )? - (smil:to="<string>" )? - (smil:from="<string>" )? - (smil:by="<string>" )? + (smil:values="#string" )? + (anim:formula="#string" )? + (smil:to="#string" )? + (smil:from="#string" )? + (smil:by="#string" )? (smil:calcMode="discrete | linear | paced | spline" )? - (smil:keyTimes="<string>" )? - (smil:keySplines="<string>" )? + (smil:keyTimes="#string" )? + (smil:keySplines="#string" )? (anim:color-interpolation="rgb | hsl" )? (anim:color-interpolation-direction="clockwise | counter-clockwise" )? ( - ( (smil:begin="<string>" )? - (smil:end="<string>" )? - (smil:dur="<string>" )? + ( (smil:begin="#string" )? + (smil:end="#string" )? + (smil:dur="#string" )? - ( (smil:repeatDur="<string>" )? + ( (smil:repeatDur="#string" )? (smil:repeatCount="decimal] | indefinite" )? ) (smil:restart="never | always | whenNotActive | default" )? (smil:restartDefault="never | always | whenNotActive | inherit" )? @@ -192,7 +192,7 @@

anim:animateColor Element

(smil:fillDefault="remove | freeze | hold | transition | auto | inherit" )? ) (smil:accelerate="decimal]" )? (smil:decelerate="decimal]" )? - (smil:autoReverse="<boolean>" )? + (smil:autoReverse="#boolean" )? )>  @@ -249,25 +249,25 @@

anim:animateMotion Element

Child Relations - <anim:animateMotion (svg:path="<string>" )? - (svg:origin="<string>" )? + <anim:animateMotion (svg:path="#string" )? + (svg:origin="#string" )? (smil:calcMode="discrete | linear | paced | spline" )? - (smil:targetElement="<IDREF>" )? - (anim:sub-item="<string>" )? - smil:attributeName="<string>" (smil:accumulate="none | sum" )? + (smil:targetElement="#IDREF" )? + (anim:sub-item="#string" )? + smil:attributeName="#string" (smil:accumulate="none | sum" )? (smil:additive="replace | sum" )? - (smil:values="<string>" )? - (anim:formula="<string>" )? - (smil:to="<string>" )? - (smil:from="<string>" )? - (smil:by="<string>" )? + (smil:values="#string" )? + (anim:formula="#string" )? + (smil:to="#string" )? + (smil:from="#string" )? + (smil:by="#string" )? ( - ( (smil:begin="<string>" )? - (smil:end="<string>" )? - (smil:dur="<string>" )? + ( (smil:begin="#string" )? + (smil:end="#string" )? + (smil:dur="#string" )? - ( (smil:repeatDur="<string>" )? + ( (smil:repeatDur="#string" )? (smil:repeatCount="decimal] | indefinite" )? ) (smil:restart="never | always | whenNotActive | default" )? (smil:restartDefault="never | always | whenNotActive | inherit" )? @@ -275,9 +275,9 @@

anim:animateMotion Element

(smil:fillDefault="remove | freeze | hold | transition | auto | inherit" )? ) (smil:accelerate="decimal]" )? (smil:decelerate="decimal]" )? - (smil:autoReverse="<boolean>" )? - ) (smil:keyTimes="<string>" )? - (smil:keySplines="<string>" )? + (smil:autoReverse="#boolean" )? + ) (smil:keyTimes="#string" )? + (smil:keySplines="#string" )? >  @@ -330,22 +330,22 @@

anim:animateTransform Element< Child Relations - <anim:animateTransform (smil:targetElement="<IDREF>" )? - (anim:sub-item="<string>" )? - smil:attributeName="<string>" (smil:accumulate="none | sum" )? + <anim:animateTransform (smil:targetElement="#IDREF" )? + (anim:sub-item="#string" )? + smil:attributeName="#string" (smil:accumulate="none | sum" )? (smil:additive="replace | sum" )? - (smil:values="<string>" )? - (anim:formula="<string>" )? - (smil:to="<string>" )? - (smil:from="<string>" )? - (smil:by="<string>" )? + (smil:values="#string" )? + (anim:formula="#string" )? + (smil:to="#string" )? + (smil:from="#string" )? + (smil:by="#string" )? svg:type="translate | scale | rotate | skewX | skewY" ( - ( (smil:begin="<string>" )? - (smil:end="<string>" )? - (smil:dur="<string>" )? + ( (smil:begin="#string" )? + (smil:end="#string" )? + (smil:dur="#string" )? - ( (smil:repeatDur="<string>" )? + ( (smil:repeatDur="#string" )? (smil:repeatCount="decimal] | indefinite" )? ) (smil:restart="never | always | whenNotActive | default" )? (smil:restartDefault="never | always | whenNotActive | inherit" )? @@ -353,7 +353,7 @@

anim:animateTransform Element< (smil:fillDefault="remove | freeze | hold | transition | auto | inherit" )? ) (smil:accelerate="decimal]" )? (smil:decelerate="decimal]" )? - (smil:autoReverse="<boolean>" )? + (smil:autoReverse="#boolean" )? )>  @@ -403,21 +403,21 @@

anim:audio Element

Child Relations <anim:audio (presentation:node-type="default | on-click | with-previous | after-previous | timing-root | main-sequence | interactive-sequence" )? - (presentation:preset-id="<string>" )? - (presentation:preset-sub-type="<string>" )? + (presentation:preset-id="#string" )? + (presentation:preset-sub-type="#string" )? (presentation:preset-class="custom | entrance | exit | emphasis | motion-path | ole-action | media-call" )? - (presentation:master-element="<IDREF>" )? - (presentation:group-id="<string>" )? - (xml:id="<ID>" (anim:id="<NCName>" )? + (presentation:master-element="#IDREF" )? + (presentation:group-id="#string" )? + (xml:id="#ID" (anim:id="#NCName" )? )? - (xlink:href="<anyIRI>" )? - (anim:audio-level="<double>" )? + (xlink:href="#anyIRI" )? + (anim:audio-level="#double" )? - ( (smil:begin="<string>" )? - (smil:end="<string>" )? - (smil:dur="<string>" )? + ( (smil:begin="#string" )? + (smil:end="#string" )? + (smil:dur="#string" )? - ( (smil:repeatDur="<string>" )? + ( (smil:repeatDur="#string" )? (smil:repeatCount="decimal] | indefinite" )? ) (smil:restart="never | always | whenNotActive | default" )? (smil:restartDefault="never | always | whenNotActive | inherit" )? @@ -467,17 +467,17 @@

anim:command Element

Child Relations <anim:command (presentation:node-type="default | on-click | with-previous | after-previous | timing-root | main-sequence | interactive-sequence" )? - (presentation:preset-id="<string>" )? - (presentation:preset-sub-type="<string>" )? + (presentation:preset-id="#string" )? + (presentation:preset-sub-type="#string" )? (presentation:preset-class="custom | entrance | exit | emphasis | motion-path | ole-action | media-call" )? - (presentation:master-element="<IDREF>" )? - (presentation:group-id="<string>" )? - (xml:id="<ID>" (anim:id="<NCName>" )? + (presentation:master-element="#IDREF" )? + (presentation:group-id="#string" )? + (xml:id="#ID" (anim:id="#NCName" )? )? - anim:command="<string>" (smil:begin="<string>" )? - (smil:end="<string>" )? - (smil:targetElement="<IDREF>" )? - (anim:sub-item="<string>" )? + anim:command="#string" (smil:begin="#string" )? + (smil:end="#string" )? + (smil:targetElement="#IDREF" )? + (anim:sub-item="#string" )? (<anim:param ... >)* >  @@ -544,24 +544,24 @@

anim:iterate Element

Child Relations <anim:iterate (presentation:node-type="default | on-click | with-previous | after-previous | timing-root | main-sequence | interactive-sequence" )? - (presentation:preset-id="<string>" )? - (presentation:preset-sub-type="<string>" )? + (presentation:preset-id="#string" )? + (presentation:preset-sub-type="#string" )? (presentation:preset-class="custom | entrance | exit | emphasis | motion-path | ole-action | media-call" )? - (presentation:master-element="<IDREF>" )? - (presentation:group-id="<string>" )? - (xml:id="<ID>" (anim:id="<NCName>" )? + (presentation:master-element="#IDREF" )? + (presentation:group-id="#string" )? + (xml:id="#ID" (anim:id="#NCName" )? )? - (smil:targetElement="<IDREF>" )? - (anim:sub-item="<string>" )? - (anim:iterate-type="<string>" )? - (anim:iterate-interval="<duration>" )? + (smil:targetElement="#IDREF" )? + (anim:sub-item="#string" )? + (anim:iterate-type="#string" )? + (anim:iterate-interval="#duration" )? ( - ( (smil:begin="<string>" )? - (smil:end="<string>" )? - (smil:dur="<string>" )? + ( (smil:begin="#string" )? + (smil:end="#string" )? + (smil:dur="#string" )? - ( (smil:repeatDur="<string>" )? + ( (smil:repeatDur="#string" )? (smil:repeatCount="decimal] | indefinite" )? ) (smil:restart="never | always | whenNotActive | default" )? (smil:restartDefault="never | always | whenNotActive | inherit" )? @@ -569,8 +569,8 @@

anim:iterate Element

(smil:fillDefault="remove | freeze | hold | transition | auto | inherit" )? ) (smil:accelerate="decimal]" )? (smil:decelerate="decimal]" )? - (smil:autoReverse="<boolean>" )? - ) (smil:endsync="first | last | all | media | <IDREF>" )? + (smil:autoReverse="#boolean" )? + ) (smil:endsync="first | last | all | media | #IDREF" )? (<anim:animate ... > | <anim:set ... > | <anim:animateMotion ... > | <anim:animateColor ... > | <anim:animateTransform ... > | <anim:transitionFilter ... > | <anim:par ... > | <anim:seq ... > | <anim:iterate ... > | <anim:audio ... > | <anim:command ... >)* >  @@ -633,20 +633,20 @@

anim:par Element

Child Relations <anim:par (presentation:node-type="default | on-click | with-previous | after-previous | timing-root | main-sequence | interactive-sequence" )? - (presentation:preset-id="<string>" )? - (presentation:preset-sub-type="<string>" )? + (presentation:preset-id="#string" )? + (presentation:preset-sub-type="#string" )? (presentation:preset-class="custom | entrance | exit | emphasis | motion-path | ole-action | media-call" )? - (presentation:master-element="<IDREF>" )? - (presentation:group-id="<string>" )? - (xml:id="<ID>" (anim:id="<NCName>" )? + (presentation:master-element="#IDREF" )? + (presentation:group-id="#string" )? + (xml:id="#ID" (anim:id="#NCName" )? )? ( - ( (smil:begin="<string>" )? - (smil:end="<string>" )? - (smil:dur="<string>" )? + ( (smil:begin="#string" )? + (smil:end="#string" )? + (smil:dur="#string" )? - ( (smil:repeatDur="<string>" )? + ( (smil:repeatDur="#string" )? (smil:repeatCount="decimal] | indefinite" )? ) (smil:restart="never | always | whenNotActive | default" )? (smil:restartDefault="never | always | whenNotActive | inherit" )? @@ -654,8 +654,8 @@

anim:par Element

(smil:fillDefault="remove | freeze | hold | transition | auto | inherit" )? ) (smil:accelerate="decimal]" )? (smil:decelerate="decimal]" )? - (smil:autoReverse="<boolean>" )? - ) (smil:endsync="first | last | all | media | <IDREF>" )? + (smil:autoReverse="#boolean" )? + ) (smil:endsync="first | last | all | media | #IDREF" )? (<anim:animate ... > | <anim:set ... > | <anim:animateMotion ... > | <anim:animateColor ... > | <anim:animateTransform ... > | <anim:transitionFilter ... > | <anim:par ... > | <anim:seq ... > | <anim:iterate ... > | <anim:audio ... > | <anim:command ... >)* >  @@ -683,7 +683,7 @@

anim:param Element

Child Relations - <anim:param anim:name="<string>" anim:value="<string>" >  + <anim:param anim:name="#string" anim:value="#string" > 
@@ -745,21 +745,21 @@

anim:seq Element

Child Relations <anim:seq (presentation:node-type="default | on-click | with-previous | after-previous | timing-root | main-sequence | interactive-sequence" )? - (presentation:preset-id="<string>" )? - (presentation:preset-sub-type="<string>" )? + (presentation:preset-id="#string" )? + (presentation:preset-sub-type="#string" )? (presentation:preset-class="custom | entrance | exit | emphasis | motion-path | ole-action | media-call" )? - (presentation:master-element="<IDREF>" )? - (presentation:group-id="<string>" )? - (xml:id="<ID>" (anim:id="<NCName>" )? + (presentation:master-element="#IDREF" )? + (presentation:group-id="#string" )? + (xml:id="#ID" (anim:id="#NCName" )? )? - (smil:endsync="first | last | all | media | <IDREF>" )? + (smil:endsync="first | last | all | media | #IDREF" )? ( - ( (smil:begin="<string>" )? - (smil:end="<string>" )? - (smil:dur="<string>" )? + ( (smil:begin="#string" )? + (smil:end="#string" )? + (smil:dur="#string" )? - ( (smil:repeatDur="<string>" )? + ( (smil:repeatDur="#string" )? (smil:repeatCount="decimal] | indefinite" )? ) (smil:restart="never | always | whenNotActive | default" )? (smil:restartDefault="never | always | whenNotActive | inherit" )? @@ -767,7 +767,7 @@

anim:seq Element

(smil:fillDefault="remove | freeze | hold | transition | auto | inherit" )? ) (smil:accelerate="decimal]" )? (smil:decelerate="decimal]" )? - (smil:autoReverse="<boolean>" )? + (smil:autoReverse="#boolean" )? )(<anim:animate ... > | <anim:set ... > | <anim:animateMotion ... > | <anim:animateColor ... > | <anim:animateTransform ... > | <anim:transitionFilter ... > | <anim:par ... > | <anim:seq ... > | <anim:iterate ... > | <anim:audio ... > | <anim:command ... >)* >  @@ -815,16 +815,16 @@

anim:set Element

Child Relations - <anim:set (smil:targetElement="<IDREF>" )? - (anim:sub-item="<string>" )? - smil:attributeName="<string>" (smil:to="<string>" )? + <anim:set (smil:targetElement="#IDREF" )? + (anim:sub-item="#string" )? + smil:attributeName="#string" (smil:to="#string" )? ( - ( (smil:begin="<string>" )? - (smil:end="<string>" )? - (smil:dur="<string>" )? + ( (smil:begin="#string" )? + (smil:end="#string" )? + (smil:dur="#string" )? - ( (smil:repeatDur="<string>" )? + ( (smil:repeatDur="#string" )? (smil:repeatCount="decimal] | indefinite" )? ) (smil:restart="never | always | whenNotActive | default" )? (smil:restartDefault="never | always | whenNotActive | inherit" )? @@ -832,7 +832,7 @@

anim:set Element

(smil:fillDefault="remove | freeze | hold | transition | auto | inherit" )? ) (smil:accelerate="decimal]" )? (smil:decelerate="decimal]" )? - (smil:autoReverse="<boolean>" )? + (smil:autoReverse="#boolean" )? ) (smil:accumulate="none | sum" )? (smil:additive="replace | sum" )? >  @@ -891,27 +891,27 @@

anim:transitionFilter Element< Child Relations - <anim:transitionFilter (smil:targetElement="<IDREF>" )? - (anim:sub-item="<string>" )? + <anim:transitionFilter (smil:targetElement="#IDREF" )? + (anim:sub-item="#string" )? (smil:accumulate="none | sum" )? (smil:additive="replace | sum" )? - (smil:values="<string>" )? - (anim:formula="<string>" )? - (smil:to="<string>" )? - (smil:from="<string>" )? - (smil:by="<string>" )? + (smil:values="#string" )? + (anim:formula="#string" )? + (smil:to="#string" )? + (smil:from="#string" )? + (smil:by="#string" )? (smil:calcMode="discrete | linear | paced | spline" )? - smil:type="<string>" (smil:subtype="<string>" )? + smil:type="#string" (smil:subtype="#string" )? (smil:direction="forward | reverse" )? (smil:fadeColor="string]" )? (smil:mode="in | out" )? ( - ( (smil:begin="<string>" )? - (smil:end="<string>" )? - (smil:dur="<string>" )? + ( (smil:begin="#string" )? + (smil:end="#string" )? + (smil:dur="#string" )? - ( (smil:repeatDur="<string>" )? + ( (smil:repeatDur="#string" )? (smil:repeatCount="decimal] | indefinite" )? ) (smil:restart="never | always | whenNotActive | default" )? (smil:restartDefault="never | always | whenNotActive | inherit" )? @@ -919,7 +919,7 @@

anim:transitionFilter Element< (smil:fillDefault="remove | freeze | hold | transition | auto | inherit" )? ) (smil:accelerate="decimal]" )? (smil:decelerate="decimal]" )? - (smil:autoReverse="<boolean>" )? + (smil:autoReverse="#boolean" )? )>  @@ -951,8 +951,8 @@

chart:axis Element

Child Relations - <chart:axis chart:dimension="x | y | z" (chart:name="<string>" )? - (chart:style-name="(<NCName>)?" )? + <chart:axis chart:dimension="x | y | z" (chart:name="#string" )? + (chart:style-name="(#NCName)?" )? (<chart:title ... >)? (<chart:categories ... >)? (<chart:grid ... >)* >  @@ -981,7 +981,7 @@

chart:categories Element

Child Relations - <chart:categories (table:cell-range-address="<string>" )? + <chart:categories (table:cell-range-address="#string" )? >  @@ -1043,11 +1043,11 @@

chart:chart Element

<chart:chart chart:class="QName]" ( (svg:width="string]" )? (svg:height="string]" )? - ) (chart:column-mapping="<string>" )? - (chart:row-mapping="<string>" )? - (chart:style-name="(<NCName>)?" )? - (xlink:type="simple" xlink:href="<anyIRI>" )? - (xml:id="<ID>" )? + ) (chart:column-mapping="#string" )? + (chart:row-mapping="#string" )? + (chart:style-name="(#NCName)?" )? + (xlink:type="simple" xlink:href="#anyIRI" )? + (xml:id="#ID" )? (<chart:title ... >)? (<chart:subtitle ... >)? (<chart:footer ... >)? @@ -1122,7 +1122,7 @@

chart:data-label Element (new <chart:data-label ( (svg:x="string]" )? (svg:y="string]" )? - ) (chart:style-name="(<NCName>)?" )? + ) (chart:style-name="(#NCName)?" )? (<text:p ... >)? >  @@ -1153,9 +1153,9 @@

chart:data-point Element

Child Relations - <chart:data-point (chart:repeated="<positiveInteger>" )? - (chart:style-name="(<NCName>)?" )? - (xml:id="<ID>" )? + <chart:data-point (chart:repeated="#positiveInteger" )? + (chart:style-name="(#NCName)?" )? + (xml:id="#ID" )? (<chart:data-label ... >)? >  @@ -1183,7 +1183,7 @@

chart:domain Element

Child Relations - <chart:domain (table:cell-range-address="<string>" )? + <chart:domain (table:cell-range-address="#string" )? >  @@ -1216,13 +1216,13 @@

chart:equation Element (new in O Child Relations - <chart:equation (chart:automatic-content="<boolean>" )? - (chart:display-r-square="<boolean>" )? - (chart:display-equation="<boolean>" )? + <chart:equation (chart:automatic-content="#boolean" )? + (chart:display-r-square="#boolean" )? + (chart:display-equation="#boolean" )? ( (svg:x="string]" )? (svg:y="string]" )? - ) (chart:style-name="(<NCName>)?" )? + ) (chart:style-name="(#NCName)?" )? (<text:p ... >)? >  @@ -1251,7 +1251,7 @@

chart:error-indicator Element< Child Relations - <chart:error-indicator (chart:style-name="(<NCName>)?" )? + <chart:error-indicator (chart:style-name="(#NCName)?" )? chart:dimension="x | y | z" >  @@ -1280,7 +1280,7 @@

chart:floor Element

Child Relations <chart:floor (svg:width="string]" )? - (chart:style-name="(<NCName>)?" )? + (chart:style-name="(#NCName)?" )? >  @@ -1311,11 +1311,11 @@

chart:footer Element

Child Relations - <chart:footer (table:cell-range="<string>" )? + <chart:footer (table:cell-range="#string" )? ( (svg:x="string]" )? (svg:y="string]" )? - ) (chart:style-name="(<NCName>)?" )? + ) (chart:style-name="(#NCName)?" )? (<text:p ... >)? >  @@ -1345,7 +1345,7 @@

chart:grid Element

Child Relations <chart:grid (chart:class="major | minor" )? - (chart:style-name="(<NCName>)?" )? + (chart:style-name="(#NCName)?" )? >  @@ -1416,11 +1416,11 @@

chart:legend Element

( (svg:x="string]" )? (svg:y="string]" )? ) (style:legend-expansion="wide | high | balanced" | - (style:legend-expansion="custom" style:legend-expansion-aspect-ratio="<double>" + (style:legend-expansion="custom" style:legend-expansion-aspect-ratio="#double" ( (svg:width="string]" )? (svg:height="string]" )? )))? - (chart:style-name="(<NCName>)?" )? + (chart:style-name="(#NCName)?" )? (<text:p ... >)? >  @@ -1448,7 +1448,7 @@

chart:mean-value Element

Child Relations - <chart:mean-value (chart:style-name="(<NCName>)?" )? + <chart:mean-value (chart:style-name="(#NCName)?" )? >  @@ -1508,8 +1508,8 @@

chart:plot-area Element

) ( (svg:width="string]" )? (svg:height="string]" )? - ) (chart:style-name="(<NCName>)?" )? - (table:cell-range-address="<string>" )? + ) (chart:style-name="(#NCName)?" )? + (table:cell-range-address="#string" )? (chart:data-source-has-labels="none | row | column | both" )? (dr3d:vrp="string]" )? (dr3d:vpn="string]" )? @@ -1517,12 +1517,12 @@

chart:plot-area Element

(dr3d:projection="parallel | perspective" )? (dr3d:distance="string]" )? (dr3d:focal-length="string]" )? - (dr3d:shadow-slant="<string>" )? + (dr3d:shadow-slant="#string" )? (dr3d:shade-mode="flat | phong | gouraud | draft" )? (dr3d:ambient-color="string]" )? - (dr3d:lighting-mode="<boolean>" )? - (dr3d:transform="<string>" )? - (xml:id="<ID>" )? + (dr3d:lighting-mode="#boolean" )? + (dr3d:transform="#string" )? + (xml:id="#ID" )? (<chart:coordinate-region ... >)? (<dr3d:light ... >)* (<chart:axis ... >)* (<chart:series ... >)* (<chart:stock-gain-marker ... >)? (<chart:stock-loss-marker ... >)? @@ -1556,7 +1556,7 @@

chart:regression-curve Element Child Relations - <chart:regression-curve (chart:style-name="(<NCName>)?" )? + <chart:regression-curve (chart:style-name="(#NCName)?" )? (<chart:equation ... >)? >  @@ -1595,12 +1595,12 @@

chart:series Element

Child Relations - <chart:series (chart:values-cell-range-address="<string>" )? - (chart:label-cell-address="<string>" )? + <chart:series (chart:values-cell-range-address="#string" )? + (chart:label-cell-address="#string" )? (chart:class="QName]" )? - (chart:attached-axis="<string>" )? - (chart:style-name="(<NCName>)?" )? - (xml:id="<ID>" )? + (chart:attached-axis="#string" )? + (chart:style-name="(#NCName)?" )? + (xml:id="#ID" )? (<chart:domain ... >)* (<chart:mean-value ... >)? (<chart:regression-curve ... >)* (<chart:error-indicator ... >)* (<chart:data-point ... >)* (<chart:data-label ... >)? >  @@ -1629,7 +1629,7 @@

chart:stock-gain-marker Element< Child Relations - <chart:stock-gain-marker (chart:style-name="(<NCName>)?" )? + <chart:stock-gain-marker (chart:style-name="(#NCName)?" )? >  @@ -1656,7 +1656,7 @@

chart:stock-loss-marker Element< Child Relations - <chart:stock-loss-marker (chart:style-name="(<NCName>)?" )? + <chart:stock-loss-marker (chart:style-name="(#NCName)?" )? >  @@ -1683,7 +1683,7 @@

chart:stock-range-line Element Child Relations - <chart:stock-range-line (chart:style-name="(<NCName>)?" )? + <chart:stock-range-line (chart:style-name="(#NCName)?" )? >  @@ -1714,11 +1714,11 @@

chart:subtitle Element

Child Relations - <chart:subtitle (table:cell-range="<string>" )? + <chart:subtitle (table:cell-range="#string" )? ( (svg:x="string]" )? (svg:y="string]" )? - ) (chart:style-name="(<NCName>)?" )? + ) (chart:style-name="(#NCName)?" )? (<text:p ... >)? >  @@ -1746,7 +1746,7 @@

chart:symbol-image Element ( Child Relations - <chart:symbol-image xlink:href="<anyIRI>" >  + <chart:symbol-image xlink:href="#anyIRI" > 
@@ -1777,11 +1777,11 @@

chart:title Element

Child Relations - <chart:title (table:cell-range="<string>" )? + <chart:title (table:cell-range="#string" )? ( (svg:x="string]" )? (svg:y="string]" )? - ) (chart:style-name="(<NCName>)?" )? + ) (chart:style-name="(#NCName)?" )? (<text:p ... >)? >  @@ -1811,7 +1811,7 @@

chart:wall Element

Child Relations <chart:wall (svg:width="string]" )? - (chart:style-name="(<NCName>)?" )? + (chart:style-name="(#NCName)?" )? >  @@ -1841,7 +1841,7 @@

config:config-item Element

Child Relations - <config:config-item config:name="<string>" config:type="boolean | short | int | long | double | string | datetime | base64Binary" TEXT>  + <config:config-item config:name="#string" config:type="boolean | short | int | long | double | string | datetime | base64Binary" TEXT> 
@@ -1872,7 +1872,7 @@

config:config-item-map-entr Child Relations - <config:config-item-map-entry (config:name="<string>" )? + <config:config-item-map-entry (config:name="#string" )? (<config:config-item ... > | <config:config-item-set ... > | <config:config-item-map-named ... > | <config:config-item-map-indexed ... >)+ >  @@ -1901,7 +1901,7 @@

config:config-item-map-in Child Relations - <config:config-item-map-indexed config:name="<string>" (<config:config-item-map-entry ... >)+ >  + <config:config-item-map-indexed config:name="#string" (<config:config-item-map-entry ... >)+ > 
@@ -1929,7 +1929,7 @@

config:config-item-map-name Child Relations - <config:config-item-map-named config:name="<string>" (<config:config-item-map-entry ... >)+ >  + <config:config-item-map-named config:name="#string" (<config:config-item-map-entry ... >)+ > 
@@ -1961,7 +1961,7 @@

config:config-item-set Element Child Relations - <config:config-item-set config:name="<string>" (<config:config-item ... > | <config:config-item-set ... > | <config:config-item-map-named ... > | <config:config-item-map-indexed ... >)+ >  + <config:config-item-set config:name="#string" (<config:config-item ... > | <config:config-item-set ... > | <config:config-item-map-named ... > | <config:config-item-map-indexed ... >)+ > 
@@ -1997,14 +1997,14 @@

db:application-connec Child Relations - <db:application-connection-settings (db:is-table-name-length-limited="<boolean>" )? - (db:enable-sql92-check="<boolean>" )? - (db:append-table-alias-name="<boolean>" )? - (db:ignore-driver-privileges="<boolean>" )? + <db:application-connection-settings (db:is-table-name-length-limited="#boolean" )? + (db:enable-sql92-check="#boolean" )? + (db:append-table-alias-name="#boolean" )? + (db:ignore-driver-privileges="#boolean" )? (db:boolean-comparison-mode="equal-integer | is-boolean | equal-boolean | equal-use-only-zero" )? - (db:use-catalog="<boolean>" )? - (db:max-row-count="<integer>" )? - (db:suppress-version-columns="<boolean>" )? + (db:use-catalog="#boolean" )? + (db:max-row-count="#integer" )? + (db:suppress-version-columns="#boolean" )? (<db:table-filter ... >)? (<db:table-type-filter ... >)? (<db:data-source-settings ... >)? @@ -2035,8 +2035,8 @@

db:auto-increment Element (ne Child Relations - <db:auto-increment (db:additional-column-statement="<string>" )? - (db:row-retrieving-statement="<string>" )? + <db:auto-increment (db:additional-column-statement="#string" )? + (db:row-retrieving-statement="#string" )? >  @@ -2109,20 +2109,20 @@

db:column Element (new in ODF 1.2) Child Relations - <db:column (db:visible="<boolean>" )? - (db:style-name="(<NCName>)?" )? - (db:default-cell-style-name="(<NCName>)?" )? - db:name="<string>" (db:title="<string>" )? - (db:description="<string>" )? + <db:column (db:visible="#boolean" )? + (db:style-name="(#NCName)?" )? + (db:default-cell-style-name="(#NCName)?" )? + db:name="#string" (db:title="#string" )? + (db:description="#string" )? ( - (office:value-type="float" office:value="<double>" ) | - (office:value-type="percentage" office:value="<double>" ) | - (office:value-type="currency" office:value="<double>" (office:currency="<string>" )? + (office:value-type="float" office:value="#double" ) | + (office:value-type="percentage" office:value="#double" ) | + (office:value-type="currency" office:value="#double" (office:currency="#string" )? ) | - (office:value-type="date" office:date-value="<date> | <dateTime>" ) | - (office:value-type="time" office:time-value="<duration>" ) | - (office:value-type="boolean" office:boolean-value="<boolean>" ) | - (office:value-type="string" (office:string-value="<string>" )? + (office:value-type="date" office:date-value="#date | #dateTime" ) | + (office:value-type="time" office:time-value="#duration" ) | + (office:value-type="boolean" office:boolean-value="#boolean" ) | + (office:value-type="string" (office:string-value="#string" )? ))? >  @@ -2170,22 +2170,22 @@

db:column-definition Element&nb Child Relations - <db:column-definition db:name="<string>" (db:data-type="bit | boolean | tinyint | smallint | integer | bigint | float | real | double | numeric | decimal | char | varchar | longvarchar | date | time | timestmp | binary | varbinary | longvarbinary | sqlnull | other | object | distinct | struct | array | blob | clob | ref" )? - (db:type-name="<string>" )? - (db:precision="<positiveInteger>" )? - (db:scale="<positiveInteger>" )? + <db:column-definition db:name="#string" (db:data-type="bit | boolean | tinyint | smallint | integer | bigint | float | real | double | numeric | decimal | char | varchar | longvarchar | date | time | timestmp | binary | varbinary | longvarbinary | sqlnull | other | object | distinct | struct | array | blob | clob | ref" )? + (db:type-name="#string" )? + (db:precision="#positiveInteger" )? + (db:scale="#positiveInteger" )? (db:is-nullable="no-nulls | nullable" )? - (db:is-empty-allowed="<boolean>" )? - (db:is-autoincrement="<boolean>" )? + (db:is-empty-allowed="#boolean" )? + (db:is-autoincrement="#boolean" )? ( - (office:value-type="float" office:value="<double>" ) | - (office:value-type="percentage" office:value="<double>" ) | - (office:value-type="currency" office:value="<double>" (office:currency="<string>" )? + (office:value-type="float" office:value="#double" ) | + (office:value-type="percentage" office:value="#double" ) | + (office:value-type="currency" office:value="#double" (office:currency="#string" )? ) | - (office:value-type="date" office:date-value="<date> | <dateTime>" ) | - (office:value-type="time" office:time-value="<duration>" ) | - (office:value-type="boolean" office:boolean-value="<boolean>" ) | - (office:value-type="string" (office:string-value="<string>" )? + (office:value-type="date" office:date-value="#date | #dateTime" ) | + (office:value-type="time" office:time-value="#duration" ) | + (office:value-type="boolean" office:boolean-value="#boolean" ) | + (office:value-type="string" (office:string-value="#string" )? ))? >  @@ -2277,12 +2277,12 @@

db:component Element (new in ODF 1 Child Relations - <db:component (xlink:type="simple" xlink:href="<anyIRI>" (xlink:show="none" )? + <db:component (xlink:type="simple" xlink:href="#anyIRI" (xlink:show="none" )? (xlink:actuate="onRequest" )? )? - (db:as-template="<boolean>" )? - db:name="<string>" (db:title="<string>" )? - (db:description="<string>" )? + (db:as-template="#boolean" )? + db:name="#string" (db:title="#string" )? + (db:description="#string" )? (<office:document ... > | <math:math ... >)? >  @@ -2316,8 +2316,8 @@

db:component-collection Element< Child Relations - <db:component-collection EMPTYdb:name="<string>" (db:title="<string>" )? - (db:description="<string>" )? + <db:component-collection EMPTYdb:name="#string" (db:title="#string" )? + (db:description="#string" )? (<db:component ... > | <db:component-collection ... >)* >  @@ -2377,7 +2377,7 @@

db:connection-resource Element Child Relations <db:connection-resource - (xlink:type="simple" xlink:href="<anyIRI>" (xlink:show="none" )? + (xlink:type="simple" xlink:href="#anyIRI" (xlink:show="none" )? (xlink:actuate="onRequest" )? )>  @@ -2438,8 +2438,8 @@

db:data-source-setting Element Child Relations - <db:data-source-setting (db:data-source-setting-is-list="<boolean>" )? - db:data-source-setting-name="<string>" db:data-source-setting-type="boolean | short | int | long | double | string" (<db:data-source-setting-value ... >)+ >  + <db:data-source-setting (db:data-source-setting-is-list="#boolean" )? + db:data-source-setting-name="#string" db:data-source-setting-type="boolean | short | int | long | double | string" (<db:data-source-setting-value ... >)+ > 
@@ -2464,7 +2464,7 @@

db:data-source-setting-valu Child Relations - <db:data-source-setting-value EMPTY<string>>  + <db:data-source-setting-value EMPTY#string
@@ -2547,10 +2547,10 @@

db:delimiter Element (new in ODF 1 Child Relations - <db:delimiter (db:field="<string>" )? - (db:string="<string>" )? - (db:decimal="<string>" )? - (db:thousand="<string>" )? + <db:delimiter (db:field="#string" )? + (db:string="#string" )? + (db:decimal="#string" )? + (db:thousand="#string" )? >  @@ -2585,11 +2585,11 @@

db:driver-settings Element ( Child Relations - <db:driver-settings (db:show-deleted="<boolean>" )? - (db:system-driver-settings="<string>" )? - (db:base-dn="<string>" )? - (db:is-first-row-header-line="<boolean>" )? - (db:parameter-name-substitution="<boolean>" )? + <db:driver-settings (db:show-deleted="#boolean" )? + (db:system-driver-settings="#string" )? + (db:base-dn="#string" )? + (db:is-first-row-header-line="#boolean" )? + (db:parameter-name-substitution="#boolean" )? (<db:auto-increment ... >)? (<db:delimiter ... >)? (<db:character-set ... >)? @@ -2623,7 +2623,7 @@

db:file-based-database Element Child Relations - <db:file-based-database xlink:type="simple" xlink:href="<anyIRI>" db:media-type="<string>" (db:extension="<string>" )? + <db:file-based-database xlink:type="simple" xlink:href="#anyIRI" db:media-type="#string" (db:extension="#string" )? >  @@ -2652,7 +2652,7 @@

db:filter-statement Element  Child Relations - <db:filter-statement db:command="<string>" (db:apply-command="<boolean>" )? + <db:filter-statement db:command="#string" (db:apply-command="#boolean" )? >  @@ -2710,9 +2710,9 @@

db:index Element (new in ODF 1.2)

Child Relations - <db:index db:name="<string>" (db:catalog-name="<string>" )? - (db:is-unique="<boolean>" )? - (db:is-clustered="<boolean>" )? + <db:index db:name="#string" (db:catalog-name="#string" )? + (db:is-unique="#boolean" )? + (db:is-clustered="#boolean" )? (<db:index-columns ... >)+ >  @@ -2740,7 +2740,7 @@

db:index-column Element (new in Child Relations - <db:index-column db:name="<string>" (db:is-ascending="<boolean>" )? + <db:index-column db:name="#string" (db:is-ascending="#boolean" )? >  @@ -2824,8 +2824,8 @@

db:key Element (new in ODF 1.2)

Child Relations - <db:key (db:name="<string>" )? - db:type="primary | unique | foreign" (db:referenced-table-name="<string>" )? + <db:key (db:name="#string" )? + db:type="primary | unique | foreign" (db:referenced-table-name="#string" )? (db:update-rule="cascade | restrict | set-null | no-action | set-default" )? (db:delete-rule="cascade | restrict | set-null | no-action | set-default" )? (<db:key-columns ... >)+ >  @@ -2855,8 +2855,8 @@

db:key-column Element (new in ODF Child Relations - <db:key-column (db:name="<string>" )? - (db:related-column-name="<string>" )? + <db:key-column (db:name="#string" )? + (db:related-column-name="#string" )? >  @@ -2938,9 +2938,9 @@

db:login Element (new in ODF 1.2)

Child Relations - <db:login (db:user-name="<string>" | db:use-system-user="<boolean>" )? - (db:is-password-required="<boolean>" )? - (db:login-timeout="<positiveInteger>" )? + <db:login (db:user-name="#string" | db:use-system-user="#boolean" )? + (db:is-password-required="#boolean" )? + (db:login-timeout="#positiveInteger" )? >  @@ -2969,7 +2969,7 @@

db:order-statement Element ( Child Relations - <db:order-statement db:command="<string>" (db:apply-command="<boolean>" )? + <db:order-statement db:command="#string" (db:apply-command="#boolean" )? >  @@ -3034,11 +3034,11 @@

db:query Element (new in ODF 1.2)

Child Relations - <db:query db:command="<string>" (db:escape-processing="<boolean>" )? - db:name="<string>" (db:title="<string>" )? - (db:description="<string>" )? - (db:style-name="(<NCName>)?" )? - (db:default-row-style-name="(<NCName>)?" )? + <db:query db:command="#string" (db:escape-processing="#boolean" )? + db:name="#string" (db:title="#string" )? + (db:description="#string" )? + (db:style-name="(#NCName)?" )? + (db:default-row-style-name="(#NCName)?" )? (<db:order-statement ... >)? (<db:filter-statement ... >)? (<db:columns ... >)? @@ -3074,8 +3074,8 @@

db:query-collection Element  Child Relations - <db:query-collection EMPTYdb:name="<string>" (db:title="<string>" )? - (db:description="<string>" )? + <db:query-collection EMPTYdb:name="#string" (db:title="#string" )? + (db:description="#string" )? (<db:query ... > | <db:query-collection ... >)* >  @@ -3160,9 +3160,9 @@

db:server-database Element ( Child Relations <db:server-database db:type="QName]" - (db:hostname="<string>" (db:port="<positiveInteger>" )? - ) | (db:local-socket="<string>" )? - (db:database-name="<string>" )? + (db:hostname="#string" (db:port="#positiveInteger" )? + ) | (db:local-socket="#string" )? + (db:database-name="#string" )? >  @@ -3195,9 +3195,9 @@

db:table-definition Element  Child Relations - <db:table-definition db:name="<string>" (db:catalog-name="<string>" )? - (db:schema-name="<string>" )? - (db:type="<string>" )? + <db:table-definition db:name="#string" (db:catalog-name="#string" )? + (db:schema-name="#string" )? + (db:type="#string" )? <db:column-definitions ... > (<db:keys ... >)? (<db:indices ... >)? >  @@ -3307,7 +3307,7 @@

db:table-filter-pattern Element< Child Relations - <db:table-filter-pattern EMPTY<string>>  + <db:table-filter-pattern EMPTY#string
@@ -3368,12 +3368,12 @@

db:table-representation Element< Child Relations - <db:table-representation EMPTYdb:name="<string>" (db:catalog-name="<string>" )? - (db:schema-name="<string>" )? - (db:title="<string>" )? - (db:description="<string>" )? - (db:style-name="(<NCName>)?" )? - (db:default-row-style-name="(<NCName>)?" )? + <db:table-representation EMPTYdb:name="#string" (db:catalog-name="#string" )? + (db:schema-name="#string" )? + (db:title="#string" )? + (db:description="#string" )? + (db:style-name="(#NCName)?" )? + (db:default-row-style-name="(#NCName)?" )? (<db:order-statement ... >)? (<db:filter-statement ... >)? (<db:columns ... >)? @@ -3433,8 +3433,8 @@

db:table-setting Element (new Child Relations <db:table-setting - ( (db:is-first-row-header-line="<boolean>" )? - (db:show-deleted="<boolean>" )? + ( (db:is-first-row-header-line="#boolean" )? + (db:show-deleted="#boolean" )? ) (<db:delimiter ... >)? (<db:character-set ... >)? >  @@ -3488,7 +3488,7 @@

db:table-type Element (new in ODF Child Relations - <db:table-type EMPTY<string>>  + <db:table-type EMPTY#string
@@ -3542,8 +3542,8 @@

db:update-table Element (new in Child Relations - <db:update-table db:name="<string>" (db:catalog-name="<string>" )? - (db:schema-name="<string>" )? + <db:update-table db:name="#string" (db:catalog-name="#string" )? + (db:schema-name="#string" )? >  @@ -3571,7 +3571,7 @@

dc:creator Element

Child Relations - <dc:creator <string>>  + <dc:creator #string
@@ -3598,7 +3598,7 @@

dc:date Element

Child Relations - <dc:date <dateTime>>  + <dc:date #dateTime
@@ -3623,7 +3623,7 @@

dc:description Element (new in O Child Relations - <dc:description <string>>  + <dc:description #string
@@ -3648,7 +3648,7 @@

dc:language Element (new in ODF 1.2 Child Relations - <dc:language <language>>  + <dc:language #language
@@ -3673,7 +3673,7 @@

dc:subject Element (new in ODF 1.2) Child Relations - <dc:subject <string>>  + <dc:subject #string
@@ -3698,7 +3698,7 @@

dc:title Element (new in ODF 1.2)

Child Relations - <dc:title <string>>  + <dc:title #string
@@ -3737,21 +3737,21 @@

dr3d:cube Element

<dr3d:cube ( (dr3d:min-edge="string]" )? (dr3d:max-edge="string]" )? - ) (draw:z-index="<nonNegativeInteger>" )? - (xml:id="<ID>" (draw:id="<NCName>" )? + ) (draw:z-index="#nonNegativeInteger" )? + (xml:id="#ID" (draw:id="#NCName" )? )? - (draw:layer="<string>" )? + (draw:layer="#string" )? - ( (draw:style-name="(<NCName>)?" )? + ( (draw:style-name="(#NCName)?" )? (draw:class-names=" -START_list(<NCName>)* +START_list(#NCName)* END_list" )? ) | - ( (presentation:style-name="(<NCName>)?" )? + ( (presentation:style-name="(#NCName)?" )? (presentation:class-names=" -START_list(<NCName>)* +START_list(#NCName)* END_list" )? - ) (dr3d:transform="<string>" )? + ) (dr3d:transform="#string" )? >  @@ -3788,23 +3788,23 @@

dr3d:extrude Element

Child Relations - <dr3d:extrude svg:d="<string>" svg:viewBox=" -START_list<integer><integer><integer><integer> -END_list" (xml:id="<ID>" (draw:id="<NCName>" )? + <dr3d:extrude svg:d="#string" svg:viewBox=" +START_list#integer#integer#integer#integer +END_list" (xml:id="#ID" (draw:id="#NCName" )? )? - (draw:z-index="<nonNegativeInteger>" )? - (draw:layer="<string>" )? + (draw:z-index="#nonNegativeInteger" )? + (draw:layer="#string" )? - ( (draw:style-name="(<NCName>)?" )? + ( (draw:style-name="(#NCName)?" )? (draw:class-names=" -START_list(<NCName>)* +START_list(#NCName)* END_list" )? ) | - ( (presentation:style-name="(<NCName>)?" )? + ( (presentation:style-name="(#NCName)?" )? (presentation:class-names=" -START_list(<NCName>)* +START_list(#NCName)* END_list" )? - ) (dr3d:transform="<string>" )? + ) (dr3d:transform="#string" )? >  @@ -3836,8 +3836,8 @@

dr3d:light Element

Child Relations <dr3d:light (dr3d:diffuse-color="string]" )? - dr3d:direction="string]" (dr3d:enabled="<boolean>" )? - (dr3d:specular="<boolean>" )? + dr3d:direction="string]" (dr3d:enabled="#boolean" )? + (dr3d:specular="#boolean" )? >  @@ -3875,22 +3875,22 @@

dr3d:rotate Element

Child Relations <dr3d:rotate svg:viewBox=" -START_list<integer><integer><integer><integer> -END_list" svg:d="<string>" (draw:z-index="<nonNegativeInteger>" )? - (xml:id="<ID>" (draw:id="<NCName>" )? +START_list#integer#integer#integer#integer +END_list" svg:d="#string" (draw:z-index="#nonNegativeInteger" )? + (xml:id="#ID" (draw:id="#NCName" )? )? - (draw:layer="<string>" )? + (draw:layer="#string" )? - ( (draw:style-name="(<NCName>)?" )? + ( (draw:style-name="(#NCName)?" )? (draw:class-names=" -START_list(<NCName>)* +START_list(#NCName)* END_list" )? ) | - ( (presentation:style-name="(<NCName>)?" )? + ( (presentation:style-name="(#NCName)?" )? (presentation:class-names=" -START_list(<NCName>)* +START_list(#NCName)* END_list" )? - ) (dr3d:transform="<string>" )? + ) (dr3d:transform="#string" )? >  @@ -3985,10 +3985,10 @@

dr3d:scene Element

(dr3d:projection="parallel | perspective" )? (dr3d:distance="string]" )? (dr3d:focal-length="string]" )? - (dr3d:shadow-slant="<string>" )? + (dr3d:shadow-slant="#string" )? (dr3d:shade-mode="flat | phong | gouraud | draft" )? (dr3d:ambient-color="string]" )? - (dr3d:lighting-mode="<boolean>" )? + (dr3d:lighting-mode="#boolean" )? ( (svg:x="string]" )? (svg:y="string]" )? @@ -3996,27 +3996,27 @@

dr3d:scene Element

( (svg:width="string]" )? (svg:height="string]" )? ) - ( (draw:style-name="(<NCName>)?" )? + ( (draw:style-name="(#NCName)?" )? (draw:class-names=" -START_list(<NCName>)* +START_list(#NCName)* END_list" )? ) | - ( (presentation:style-name="(<NCName>)?" )? + ( (presentation:style-name="(#NCName)?" )? (presentation:class-names=" -START_list(<NCName>)* +START_list(#NCName)* END_list" )? - ) (draw:z-index="<nonNegativeInteger>" )? - (xml:id="<ID>" (draw:id="<NCName>" )? + ) (draw:z-index="#nonNegativeInteger" )? + (xml:id="#ID" (draw:id="#NCName" )? )? - (draw:layer="<string>" )? + (draw:layer="#string" )? (table:end-cell-address="string]" )? (table:end-x="string]" )? (table:end-y="string]" )? - (table:table-background="<boolean>" )? + (table:table-background="#boolean" )? (text:anchor-type="page | frame | paragraph | char | as-char" )? - (text:anchor-page-number="<positiveInteger>" )? - (dr3d:transform="<string>" )? - (draw:caption-id="<IDREF>" )? + (text:anchor-page-number="#positiveInteger" )? + (dr3d:transform="#string" )? + (draw:caption-id="#IDREF" )? (<svg:title ... >)? (<svg:desc ... >)? (<dr3d:light ... >)* (<dr3d:scene ... > | <dr3d:extrude ... > | <dr3d:sphere ... > | <dr3d:rotate ... > | <dr3d:cube ... >)* (<draw:glue-point ... >)* >  @@ -4057,21 +4057,21 @@

dr3d:sphere Element

Child Relations <dr3d:sphere (dr3d:center="string]" )? (dr3d:size="string]" )? - (draw:z-index="<nonNegativeInteger>" )? - (xml:id="<ID>" (draw:id="<NCName>" )? + (draw:z-index="#nonNegativeInteger" )? + (xml:id="#ID" (draw:id="#NCName" )? )? - (draw:layer="<string>" )? + (draw:layer="#string" )? - ( (draw:style-name="(<NCName>)?" )? + ( (draw:style-name="(#NCName)?" )? (draw:class-names=" -START_list(<NCName>)* +START_list(#NCName)* END_list" )? ) | - ( (presentation:style-name="(<NCName>)?" )? + ( (presentation:style-name="(#NCName)?" )? (presentation:class-names=" -START_list(<NCName>)* +START_list(#NCName)* END_list" )? - ) (dr3d:transform="<string>" )? + ) (dr3d:transform="#string" )? >  @@ -4145,13 +4145,13 @@

draw:a Element

Child Relations - <draw:a xlink:type="simple" xlink:href="<anyIRI>" (xlink:actuate="onRequest" )? - (office:target-frame-name="_self | _blank | _parent | _top | <string>" )? + <draw:a xlink:type="simple" xlink:href="#anyIRI" (xlink:actuate="onRequest" )? + (office:target-frame-name="_self | _blank | _parent | _top | #string" )? (xlink:show="new | replace" )? - (office:name="<string>" )? - (office:title="<string>" )? - (office:server-map="<boolean>" )? - (xml:id="<ID>" )? + (office:name="#string" )? + (office:title="#string" )? + (office:server-map="#boolean" )? + (xml:id="#ID" )? <draw:rect ... > | <draw:line ... > | <draw:polyline ... > | <draw:polygon ... > | <draw:regular-polygon ... > | <draw:path ... > | <draw:circle ... > | <draw:ellipse ... > | <draw:g ... > | <draw:page-thumbnail ... > | <draw:frame ... > | <draw:measure ... > | <draw:caption ... > | <draw:connector ... > | <draw:control ... > | <dr3d:scene ... > | <draw:custom-shape ... >>  @@ -4187,13 +4187,13 @@

draw:applet Element

Child Relations - <draw:applet (draw:code="<string>" )? - (draw:object="<string>" )? - (draw:archive="<string>" )? - (draw:may-script="<boolean>" )? - (xml:id="<ID>" )? + <draw:applet (draw:code="#string" )? + (draw:object="#string" )? + (draw:archive="#string" )? + (draw:may-script="#boolean" )? + (xml:id="#ID" )? ( - (xlink:type="simple" xlink:href="<anyIRI>" (xlink:show="embed" )? + (xlink:type="simple" xlink:href="#anyIRI" (xlink:show="embed" )? (xlink:actuate="onLoad" )? ))? (<draw:param ... >)* >  @@ -4233,10 +4233,10 @@

draw:area-circle Element

Child Relations - <draw:area-circle (xlink:type="simple" xlink:href="<anyIRI>" (office:target-frame-name="_self | _blank | _parent | _top | <string>" )? + <draw:area-circle (xlink:type="simple" xlink:href="#anyIRI" (office:target-frame-name="_self | _blank | _parent | _top | #string" )? (xlink:show="new | replace" )? )? - (office:name="<string>" )? + (office:name="#string" )? (draw:nohref="nohref" )? svg:cx="string]" svg:cy="string]" svg:r="string]" (<svg:title ... >)? (<svg:desc ... >)? @@ -4281,13 +4281,13 @@

draw:area-polygon Element

Child Relations - <draw:area-polygon (xlink:type="simple" xlink:href="<anyIRI>" (office:target-frame-name="_self | _blank | _parent | _top | <string>" )? + <draw:area-polygon (xlink:type="simple" xlink:href="#anyIRI" (office:target-frame-name="_self | _blank | _parent | _top | #string" )? (xlink:show="new | replace" )? )? - (office:name="<string>" )? + (office:name="#string" )? (draw:nohref="nohref" )? svg:x="string]" svg:y="string]" svg:width="string]" svg:height="string]" svg:viewBox=" -START_list<integer><integer><integer><integer> +START_list#integer#integer#integer#integer END_list" draw:points="string]" (<svg:title ... >)? (<svg:desc ... >)? (<office:event-listeners ... >)? @@ -4329,10 +4329,10 @@

draw:area-rectangle Element

Child Relations - <draw:area-rectangle (xlink:type="simple" xlink:href="<anyIRI>" (office:target-frame-name="_self | _blank | _parent | _top | <string>" )? + <draw:area-rectangle (xlink:type="simple" xlink:href="#anyIRI" (office:target-frame-name="_self | _blank | _parent | _top | #string" )? (xlink:show="new | replace" )? )? - (office:name="<string>" )? + (office:name="#string" )? (draw:nohref="nohref" )? svg:x="string]" svg:y="string]" svg:width="string]" svg:height="string]" (<svg:title ... >)? (<svg:desc ... >)? @@ -4426,30 +4426,30 @@

draw:caption Element

(svg:height="string]" )? ) ( - ( (draw:z-index="<nonNegativeInteger>" )? - (xml:id="<ID>" (draw:id="<NCName>" )? + ( (draw:z-index="#nonNegativeInteger" )? + (xml:id="#ID" (draw:id="#NCName" )? )? - (draw:layer="<string>" )? + (draw:layer="#string" )? - ( (draw:style-name="(<NCName>)?" )? + ( (draw:style-name="(#NCName)?" )? (draw:class-names=" -START_list(<NCName>)* +START_list(#NCName)* END_list" )? ) | - ( (presentation:style-name="(<NCName>)?" )? + ( (presentation:style-name="(#NCName)?" )? (presentation:class-names=" -START_list(<NCName>)* +START_list(#NCName)* END_list" )? - ) (draw:transform="<string>" )? - (draw:name="<string>" )? + ) (draw:transform="#string" )? + (draw:name="#string" )? (table:end-cell-address="string]" )? (table:end-x="string]" )? (table:end-y="string]" )? - (table:table-background="<boolean>" )? + (table:table-background="#boolean" )? (text:anchor-type="page | frame | paragraph | char | as-char" )? - (text:anchor-page-number="<positiveInteger>" )? - ) (draw:text-style-name="(<NCName>)?" )? - ) (draw:caption-id="<IDREF>" )? + (text:anchor-page-number="#positiveInteger" )? + ) (draw:text-style-name="(#NCName)?" )? + ) (draw:caption-id="#IDREF" )? (<svg:title ... >)? (<svg:desc ... >)? (<office:event-listeners ... >)? @@ -4545,34 +4545,34 @@

draw:circle Element

( (svg:width="string]" )? (svg:height="string]" )? )) (draw:kind="full | section | cut | arc" )? - (draw:start-angle="<string>" )? - (draw:end-angle="<string>" )? + (draw:start-angle="#string" )? + (draw:end-angle="#string" )? ( - ( (draw:z-index="<nonNegativeInteger>" )? - (xml:id="<ID>" (draw:id="<NCName>" )? + ( (draw:z-index="#nonNegativeInteger" )? + (xml:id="#ID" (draw:id="#NCName" )? )? - (draw:layer="<string>" )? + (draw:layer="#string" )? - ( (draw:style-name="(<NCName>)?" )? + ( (draw:style-name="(#NCName)?" )? (draw:class-names=" -START_list(<NCName>)* +START_list(#NCName)* END_list" )? ) | - ( (presentation:style-name="(<NCName>)?" )? + ( (presentation:style-name="(#NCName)?" )? (presentation:class-names=" -START_list(<NCName>)* +START_list(#NCName)* END_list" )? - ) (draw:transform="<string>" )? - (draw:name="<string>" )? + ) (draw:transform="#string" )? + (draw:name="#string" )? (table:end-cell-address="string]" )? (table:end-x="string]" )? (table:end-y="string]" )? - (table:table-background="<boolean>" )? + (table:table-background="#boolean" )? (text:anchor-type="page | frame | paragraph | char | as-char" )? - (text:anchor-page-number="<positiveInteger>" )? - ) (draw:text-style-name="(<NCName>)?" )? - ) (draw:caption-id="<IDREF>" )? + (text:anchor-page-number="#positiveInteger" )? + ) (draw:text-style-name="(#NCName)?" )? + ) (draw:caption-id="#IDREF" )? (<svg:title ... >)? (<svg:desc ... >)? (<office:event-listeners ... >)? @@ -4662,43 +4662,43 @@

draw:connector Element

Child Relations <draw:connector (draw:type="standard | lines | line | curve" )? (svg:x1="string]" svg:y1="string]" )? - (draw:start-shape="<IDREF>" )? - (draw:start-glue-point="<nonNegativeInteger>" )? + (draw:start-shape="#IDREF" )? + (draw:start-glue-point="#nonNegativeInteger" )? (svg:x2="string]" svg:y2="string]" )? - (draw:end-shape="<IDREF>" )? - (draw:end-glue-point="<nonNegativeInteger>" )? + (draw:end-shape="#IDREF" )? + (draw:end-glue-point="#nonNegativeInteger" )? (draw:line-skew=" START_liststring](string](string])?)? END_list" )? - (svg:d="<string>" )? + (svg:d="#string" )? ( - ( (draw:z-index="<nonNegativeInteger>" )? - (xml:id="<ID>" (draw:id="<NCName>" )? + ( (draw:z-index="#nonNegativeInteger" )? + (xml:id="#ID" (draw:id="#NCName" )? )? - (draw:layer="<string>" )? + (draw:layer="#string" )? - ( (draw:style-name="(<NCName>)?" )? + ( (draw:style-name="(#NCName)?" )? (draw:class-names=" -START_list(<NCName>)* +START_list(#NCName)* END_list" )? ) | - ( (presentation:style-name="(<NCName>)?" )? + ( (presentation:style-name="(#NCName)?" )? (presentation:class-names=" -START_list(<NCName>)* +START_list(#NCName)* END_list" )? - ) (draw:transform="<string>" )? - (draw:name="<string>" )? + ) (draw:transform="#string" )? + (draw:name="#string" )? (table:end-cell-address="string]" )? (table:end-x="string]" )? (table:end-y="string]" )? - (table:table-background="<boolean>" )? + (table:table-background="#boolean" )? (text:anchor-type="page | frame | paragraph | char | as-char" )? - (text:anchor-page-number="<positiveInteger>" )? - ) (draw:text-style-name="(<NCName>)?" )? - ) (draw:caption-id="<IDREF>" )? + (text:anchor-page-number="#positiveInteger" )? + ) (draw:text-style-name="(#NCName)?" )? + ) (draw:caption-id="#IDREF" )? svg:viewBox=" -START_list<integer><integer><integer><integer> +START_list#integer#integer#integer#integer END_list" (<svg:title ... >)? (<svg:desc ... >)? (<office:event-listeners ... >)? @@ -4732,12 +4732,12 @@

draw:contour-path Element

Child Relations - <draw:contour-path draw:recreate-on-edit="<boolean>" + <draw:contour-path draw:recreate-on-edit="#boolean" ( (svg:width="string]" )? (svg:height="string]" )? )svg:viewBox=" -START_list<integer><integer><integer><integer> -END_list" svg:d="<string>" >  +START_list#integer#integer#integer#integer +END_list" svg:d="#string" > 
@@ -4767,11 +4767,11 @@

draw:contour-polygon Element Child Relations - <draw:contour-polygon draw:recreate-on-edit="<boolean>" + <draw:contour-polygon draw:recreate-on-edit="#boolean" ( (svg:width="string]" )? (svg:height="string]" )? )svg:viewBox=" -START_list<integer><integer><integer><integer> +START_list#integer#integer#integer#integer END_list" draw:points="string]" >  @@ -4846,7 +4846,7 @@

draw:control Element

Child Relations - <draw:control draw:control="<IDREF>" + <draw:control draw:control="#IDREF" ( (svg:x="string]" )? (svg:y="string]" )? ) @@ -4854,30 +4854,30 @@

draw:control Element

(svg:height="string]" )? ) ( - ( (draw:z-index="<nonNegativeInteger>" )? - (xml:id="<ID>" (draw:id="<NCName>" )? + ( (draw:z-index="#nonNegativeInteger" )? + (xml:id="#ID" (draw:id="#NCName" )? )? - (draw:layer="<string>" )? + (draw:layer="#string" )? - ( (draw:style-name="(<NCName>)?" )? + ( (draw:style-name="(#NCName)?" )? (draw:class-names=" -START_list(<NCName>)* +START_list(#NCName)* END_list" )? ) | - ( (presentation:style-name="(<NCName>)?" )? + ( (presentation:style-name="(#NCName)?" )? (presentation:class-names=" -START_list(<NCName>)* +START_list(#NCName)* END_list" )? - ) (draw:transform="<string>" )? - (draw:name="<string>" )? + ) (draw:transform="#string" )? + (draw:name="#string" )? (table:end-cell-address="string]" )? (table:end-x="string]" )? (table:end-y="string]" )? - (table:table-background="<boolean>" )? + (table:table-background="#boolean" )? (text:anchor-type="page | frame | paragraph | char | as-char" )? - (text:anchor-page-number="<positiveInteger>" )? - ) (draw:text-style-name="(<NCName>)?" )? - ) (draw:caption-id="<IDREF>" )? + (text:anchor-page-number="#positiveInteger" )? + ) (draw:text-style-name="(#NCName)?" )? + ) (draw:caption-id="#IDREF" )? (<svg:title ... >)? (<svg:desc ... >)? (<draw:glue-point ... >)* >  @@ -4960,7 +4960,7 @@

draw:custom-shape Element

Child Relations <draw:custom-shape (draw:engine="QName]" )? - (draw:data="<string>" )? + (draw:data="#string" )? ( (svg:x="string]" )? (svg:y="string]" )? @@ -4969,30 +4969,30 @@

draw:custom-shape Element

(svg:height="string]" )? ) ( - ( (draw:z-index="<nonNegativeInteger>" )? - (xml:id="<ID>" (draw:id="<NCName>" )? + ( (draw:z-index="#nonNegativeInteger" )? + (xml:id="#ID" (draw:id="#NCName" )? )? - (draw:layer="<string>" )? + (draw:layer="#string" )? - ( (draw:style-name="(<NCName>)?" )? + ( (draw:style-name="(#NCName)?" )? (draw:class-names=" -START_list(<NCName>)* +START_list(#NCName)* END_list" )? ) | - ( (presentation:style-name="(<NCName>)?" )? + ( (presentation:style-name="(#NCName)?" )? (presentation:class-names=" -START_list(<NCName>)* +START_list(#NCName)* END_list" )? - ) (draw:transform="<string>" )? - (draw:name="<string>" )? + ) (draw:transform="#string" )? + (draw:name="#string" )? (table:end-cell-address="string]" )? (table:end-x="string]" )? (table:end-y="string]" )? - (table:table-background="<boolean>" )? + (table:table-background="#boolean" )? (text:anchor-type="page | frame | paragraph | char | as-char" )? - (text:anchor-page-number="<positiveInteger>" )? - ) (draw:text-style-name="(<NCName>)?" )? - ) (draw:caption-id="<IDREF>" )? + (text:anchor-page-number="#positiveInteger" )? + ) (draw:text-style-name="(#NCName)?" )? + ) (draw:caption-id="#IDREF" )? (<svg:title ... >)? (<svg:desc ... >)? (<office:event-listeners ... >)? @@ -5091,34 +5091,34 @@

draw:ellipse Element

( (svg:width="string]" )? (svg:height="string]" )? )) (draw:kind="full | section | cut | arc" )? - (draw:start-angle="<string>" )? - (draw:end-angle="<string>" )? + (draw:start-angle="#string" )? + (draw:end-angle="#string" )? ( - ( (draw:z-index="<nonNegativeInteger>" )? - (xml:id="<ID>" (draw:id="<NCName>" )? + ( (draw:z-index="#nonNegativeInteger" )? + (xml:id="#ID" (draw:id="#NCName" )? )? - (draw:layer="<string>" )? + (draw:layer="#string" )? - ( (draw:style-name="(<NCName>)?" )? + ( (draw:style-name="(#NCName)?" )? (draw:class-names=" -START_list(<NCName>)* +START_list(#NCName)* END_list" )? ) | - ( (presentation:style-name="(<NCName>)?" )? + ( (presentation:style-name="(#NCName)?" )? (presentation:class-names=" -START_list(<NCName>)* +START_list(#NCName)* END_list" )? - ) (draw:transform="<string>" )? - (draw:name="<string>" )? + ) (draw:transform="#string" )? + (draw:name="#string" )? (table:end-cell-address="string]" )? (table:end-x="string]" )? (table:end-y="string]" )? - (table:table-background="<boolean>" )? + (table:table-background="#boolean" )? (text:anchor-type="page | frame | paragraph | char | as-char" )? - (text:anchor-page-number="<positiveInteger>" )? - ) (draw:text-style-name="(<NCName>)?" )? - ) (draw:caption-id="<IDREF>" )? + (text:anchor-page-number="#positiveInteger" )? + ) (draw:text-style-name="(#NCName)?" )? + ) (draw:caption-id="#IDREF" )? (<svg:title ... >)? (<svg:desc ... >)? (<office:event-listeners ... >)? @@ -5192,39 +5192,39 @@

draw:enhanced-geometry Element Child Relations - <draw:enhanced-geometry (draw:type="non-primitive | <string>" )? + <draw:enhanced-geometry (draw:type="non-primitive | #string" )? (svg:viewBox=" -START_list<integer><integer><integer><integer> +START_list#integer#integer#integer#integer END_list" )? - (draw:mirror-vertical="<boolean>" )? - (draw:mirror-horizontal="<boolean>" )? - (draw:text-rotate-angle="<string>" )? - (draw:extrusion-allowed="<boolean>" )? - (draw:text-path-allowed="<boolean>" )? - (draw:concentric-gradient-fill-allowed="<boolean>" )? - (draw:extrusion="<boolean>" )? + (draw:mirror-vertical="#boolean" )? + (draw:mirror-horizontal="#boolean" )? + (draw:text-rotate-angle="#string" )? + (draw:extrusion-allowed="#boolean" )? + (draw:text-path-allowed="#boolean" )? + (draw:concentric-gradient-fill-allowed="#boolean" )? + (draw:extrusion="#boolean" )? (draw:extrusion-brightness="string]" )? (draw:extrusion-depth=" -START_liststring]<double> +START_liststring]#double END_list" )? (draw:extrusion-diffusion="string]" )? - (draw:extrusion-number-of-line-segments="<integer>" )? - (draw:extrusion-light-face="<boolean>" )? - (draw:extrusion-first-light-harsh="<boolean>" )? - (draw:extrusion-second-light-harsh="<boolean>" )? + (draw:extrusion-number-of-line-segments="#integer" )? + (draw:extrusion-light-face="#boolean" )? + (draw:extrusion-first-light-harsh="#boolean" )? + (draw:extrusion-second-light-harsh="#boolean" )? (draw:extrusion-first-light-level="string]" )? (draw:extrusion-second-light-level="string]" )? (draw:extrusion-first-light-direction="string]" )? (draw:extrusion-second-light-direction="string]" )? - (draw:extrusion-metal="<boolean>" )? + (draw:extrusion-metal="#boolean" )? (dr3d:shade-mode="flat | phong | gouraud | draft" )? (draw:extrusion-rotation-angle=" -START_list<string><string> +START_list#string#string END_list" )? (draw:extrusion-rotation-center="string]" )? (draw:extrusion-shininess="string]" )? (draw:extrusion-skew=" -START_list<double><string> +START_list#double#string END_list" )? (draw:extrusion-specularity="string]" )? (dr3d:projection="parallel | perspective" )? @@ -5232,19 +5232,19 @@

draw:enhanced-geometry Element<boolean>" )? - (draw:enhanced-path="<string>" )? - (draw:path-stretchpoint-x="<double>" )? - (draw:path-stretchpoint-y="<double>" )? - (draw:text-areas="<string>" )? - (draw:glue-points="<string>" )? + (draw:extrusion-color="#boolean" )? + (draw:enhanced-path="#string" )? + (draw:path-stretchpoint-x="#double" )? + (draw:path-stretchpoint-y="#double" )? + (draw:text-areas="#string" )? + (draw:glue-points="#string" )? (draw:glue-point-type="none | segments | rectangle" )? - (draw:glue-point-leaving-directions="<string>" )? - (draw:text-path="<boolean>" )? + (draw:glue-point-leaving-directions="#string" )? + (draw:text-path="#boolean" )? (draw:text-path-mode="normal | path | shape" )? (draw:text-path-scale="path | shape" )? - (draw:text-path-same-letter-heights="<boolean>" )? - (draw:modifiers="<string>" )? + (draw:text-path-same-letter-heights="#boolean" )? + (draw:modifiers="#string" )? (<draw:equation ... >)* (<draw:handle ... >)* >  @@ -5272,8 +5272,8 @@

draw:equation Element

Child Relations - <draw:equation (draw:name="<string>" )? - (draw:formula="<string>" )? + <draw:equation (draw:name="#string" )? + (draw:formula="#string" )? >  @@ -5308,11 +5308,11 @@

draw:fill-image Element

Child Relations - <draw:fill-image draw:name="<NCName>" (draw:display-name="<string>" )? + <draw:fill-image draw:name="#NCName" (draw:display-name="#string" )? (svg:width="string]" )? (svg:height="string]" )? - (xlink:type="simple" xlink:href="<anyIRI>" (xlink:show="embed" )? + (xlink:type="simple" xlink:href="#anyIRI" (xlink:show="embed" )? (xlink:actuate="onLoad" )? ) | <office:binary-data ... >>  @@ -5345,10 +5345,10 @@

draw:floating-frame Element

Child Relations - <draw:floating-frame (draw:frame-name="<string>" )? - (xml:id="<ID>" )? + <draw:floating-frame (draw:frame-name="#string" )? + (xml:id="#ID" )? - (xlink:type="simple" xlink:href="<anyIRI>" (xlink:show="embed" )? + (xlink:type="simple" xlink:href="#anyIRI" (xlink:show="embed" )? (xlink:actuate="onLoad" )? )>  @@ -5444,29 +5444,29 @@

draw:frame Element

Child Relations <draw:frame ( - ( (draw:z-index="<nonNegativeInteger>" )? - (xml:id="<ID>" (draw:id="<NCName>" )? + ( (draw:z-index="#nonNegativeInteger" )? + (xml:id="#ID" (draw:id="#NCName" )? )? - (draw:layer="<string>" )? + (draw:layer="#string" )? - ( (draw:style-name="(<NCName>)?" )? + ( (draw:style-name="(#NCName)?" )? (draw:class-names=" -START_list(<NCName>)* +START_list(#NCName)* END_list" )? ) | - ( (presentation:style-name="(<NCName>)?" )? + ( (presentation:style-name="(#NCName)?" )? (presentation:class-names=" -START_list(<NCName>)* +START_list(#NCName)* END_list" )? - ) (draw:transform="<string>" )? - (draw:name="<string>" )? + ) (draw:transform="#string" )? + (draw:name="#string" )? (table:end-cell-address="string]" )? (table:end-x="string]" )? (table:end-y="string]" )? - (table:table-background="<boolean>" )? + (table:table-background="#boolean" )? (text:anchor-type="page | frame | paragraph | char | as-char" )? - (text:anchor-page-number="<positiveInteger>" )? - ) (draw:text-style-name="(<NCName>)?" )? + (text:anchor-page-number="#positiveInteger" )? + ) (draw:text-style-name="(#NCName)?" )? ) ( (svg:x="string]" )? (svg:y="string]" )? @@ -5476,11 +5476,11 @@

draw:frame Element

(svg:height="string]" )? ) (style:rel-width="string] | scale | scale-min" )? (style:rel-height="string] | scale | scale-min" )? - ) (draw:caption-id="<IDREF>" )? + ) (draw:caption-id="#IDREF" )? (presentation:class="title | outline | subtitle | text | graphic | object | chart | table | orgchart | page | notes | handout | header | footer | date-time | page-number" )? - (presentation:placeholder="<boolean>" )? - (presentation:user-transformed="<boolean>" )? - (draw:copy-of="<string>" )? + (presentation:placeholder="#boolean" )? + (presentation:user-transformed="#boolean" )? + (draw:copy-of="#string" )? (<draw:text-box ... > | <draw:image ... > | <draw:object ... > | <draw:object-ole ... > | <draw:applet ... > | <draw:floating-frame ... > | <draw:plugin ... > | <table:table ... >)* (<office:event-listeners ... >)? (<draw:glue-point ... >)* (<draw:image-map ... >)? (<svg:title ... >)? @@ -5573,27 +5573,27 @@

draw:g Element

Child Relations <draw:g (svg:y="string]" )? - (draw:z-index="<nonNegativeInteger>" )? - (draw:name="<string>" )? - (xml:id="<ID>" (draw:id="<NCName>" )? + (draw:z-index="#nonNegativeInteger" )? + (draw:name="#string" )? + (xml:id="#ID" (draw:id="#NCName" )? )? - ( (draw:style-name="(<NCName>)?" )? + ( (draw:style-name="(#NCName)?" )? (draw:class-names=" -START_list(<NCName>)* +START_list(#NCName)* END_list" )? ) | - ( (presentation:style-name="(<NCName>)?" )? + ( (presentation:style-name="(#NCName)?" )? (presentation:class-names=" -START_list(<NCName>)* +START_list(#NCName)* END_list" )? ) (table:end-cell-address="string]" )? (table:end-x="string]" )? (table:end-y="string]" )? - (table:table-background="<boolean>" )? + (table:table-background="#boolean" )? (text:anchor-type="page | frame | paragraph | char | as-char" )? - (text:anchor-page-number="<positiveInteger>" )? - (draw:caption-id="<IDREF>" )? + (text:anchor-page-number="#positiveInteger" )? + (draw:caption-id="#IDREF" )? (<svg:title ... >)? (<svg:desc ... >)? (<office:event-listeners ... >)? @@ -5642,7 +5642,7 @@

draw:glue-point Element

Child Relations - <draw:glue-point draw:id="<nonNegativeInteger>" svg:x="string] | string]" svg:y="string] | string]" (draw:align="top-left | top | top-right | left | center | right | bottom-left | bottom-right" )? + <draw:glue-point draw:id="#nonNegativeInteger" svg:x="string] | string]" svg:y="string] | string]" (draw:align="top-left | top | top-right | left | center | right | bottom-left | bottom-right" )? draw:escape-direction="auto | left | right | up | down | horizontal | vertical" >  @@ -5679,11 +5679,11 @@

draw:gradient Element

Child Relations - <draw:gradient (draw:name="<NCName>" )? - (draw:display-name="<string>" )? + <draw:gradient (draw:name="#NCName" )? + (draw:display-name="#string" )? draw:style="linear | axial | radial | ellipsoid | square | rectangular" (draw:cx="string]" )? (draw:cy="string]" )? - (draw:angle="<string>" )? + (draw:angle="#string" )? (draw:border="string]" )? (draw:start-color="string]" )? (draw:end-color="string]" )? @@ -5725,16 +5725,16 @@

draw:handle Element

Child Relations - <draw:handle (draw:handle-mirror-vertical="<boolean>" )? - (draw:handle-mirror-horizontal="<boolean>" )? - (draw:handle-switched="<boolean>" )? - draw:handle-position="<string>" (draw:handle-range-x-minimum="<string>" )? - (draw:handle-range-x-maximum="<string>" )? - (draw:handle-range-y-minimum="<string>" )? - (draw:handle-range-y-maximum="<string>" )? - (draw:handle-polar="<string>" )? - (draw:handle-radius-range-minimum="<string>" )? - (draw:handle-radius-range-maximum="<string>" )? + <draw:handle (draw:handle-mirror-vertical="#boolean" )? + (draw:handle-mirror-horizontal="#boolean" )? + (draw:handle-switched="#boolean" )? + draw:handle-position="#string" (draw:handle-range-x-minimum="#string" )? + (draw:handle-range-x-maximum="#string" )? + (draw:handle-range-y-minimum="#string" )? + (draw:handle-range-y-maximum="#string" )? + (draw:handle-polar="#string" )? + (draw:handle-radius-range-minimum="#string" )? + (draw:handle-radius-range-maximum="#string" )? >  @@ -5766,10 +5766,10 @@

draw:hatch Element

Child Relations - <draw:hatch draw:name="<NCName>" (draw:display-name="<string>" )? + <draw:hatch draw:name="#NCName" (draw:display-name="#string" )? draw:style="single | double | triple" (draw:color="string]" )? (draw:distance="string]" )? - (draw:rotation="<string>" )? + (draw:rotation="#string" )? >  @@ -5805,11 +5805,11 @@

draw:image Element

Child Relations - <draw:image (draw:filter-name="<string>" )? - (draw:mime-type="<string>" )? - (xml:id="<ID>" )? + <draw:image (draw:filter-name="#string" )? + (draw:mime-type="#string" )? + (xml:id="#ID" )? - (xlink:type="simple" xlink:href="<anyIRI>" (xlink:show="embed" )? + (xlink:type="simple" xlink:href="#anyIRI" (xlink:show="embed" )? (xlink:actuate="onLoad" )? ) | <office:binary-data ... >(<text:p ... > | <text:list ... >)* >  @@ -5869,7 +5869,7 @@

draw:layer Element

Child Relations - <draw:layer draw:name="<string>" (draw:protected="<boolean>" )? + <draw:layer draw:name="#string" (draw:protected="#boolean" )? (draw:display="always | screen | printer | none" )? (<svg:title ... >)? (<svg:desc ... >)? @@ -5979,30 +5979,30 @@

draw:line Element

Child Relations <draw:line svg:x1="string]" svg:y1="string]" svg:x2="string]" svg:y2="string]" ( - ( (draw:z-index="<nonNegativeInteger>" )? - (xml:id="<ID>" (draw:id="<NCName>" )? + ( (draw:z-index="#nonNegativeInteger" )? + (xml:id="#ID" (draw:id="#NCName" )? )? - (draw:layer="<string>" )? + (draw:layer="#string" )? - ( (draw:style-name="(<NCName>)?" )? + ( (draw:style-name="(#NCName)?" )? (draw:class-names=" -START_list(<NCName>)* +START_list(#NCName)* END_list" )? ) | - ( (presentation:style-name="(<NCName>)?" )? + ( (presentation:style-name="(#NCName)?" )? (presentation:class-names=" -START_list(<NCName>)* +START_list(#NCName)* END_list" )? - ) (draw:transform="<string>" )? - (draw:name="<string>" )? + ) (draw:transform="#string" )? + (draw:name="#string" )? (table:end-cell-address="string]" )? (table:end-x="string]" )? (table:end-y="string]" )? - (table:table-background="<boolean>" )? + (table:table-background="#boolean" )? (text:anchor-type="page | frame | paragraph | char | as-char" )? - (text:anchor-page-number="<positiveInteger>" )? - ) (draw:text-style-name="(<NCName>)?" )? - ) (draw:caption-id="<IDREF>" )? + (text:anchor-page-number="#positiveInteger" )? + ) (draw:text-style-name="(#NCName)?" )? + ) (draw:caption-id="#IDREF" )? (<svg:title ... >)? (<svg:desc ... >)? (<office:event-listeners ... >)? @@ -6035,10 +6035,10 @@

draw:marker Element

Child Relations - <draw:marker draw:name="<NCName>" (draw:display-name="<string>" )? + <draw:marker draw:name="#NCName" (draw:display-name="#string" )? svg:viewBox=" -START_list<integer><integer><integer><integer> -END_list" svg:d="<string>" >  +START_list#integer#integer#integer#integer +END_list" svg:d="#string" > 
@@ -6116,30 +6116,30 @@

draw:measure Element

Child Relations <draw:measure svg:x1="string]" svg:y1="string]" svg:x2="string]" svg:y2="string]" ( - ( (draw:z-index="<nonNegativeInteger>" )? - (xml:id="<ID>" (draw:id="<NCName>" )? + ( (draw:z-index="#nonNegativeInteger" )? + (xml:id="#ID" (draw:id="#NCName" )? )? - (draw:layer="<string>" )? + (draw:layer="#string" )? - ( (draw:style-name="(<NCName>)?" )? + ( (draw:style-name="(#NCName)?" )? (draw:class-names=" -START_list(<NCName>)* +START_list(#NCName)* END_list" )? ) | - ( (presentation:style-name="(<NCName>)?" )? + ( (presentation:style-name="(#NCName)?" )? (presentation:class-names=" -START_list(<NCName>)* +START_list(#NCName)* END_list" )? - ) (draw:transform="<string>" )? - (draw:name="<string>" )? + ) (draw:transform="#string" )? + (draw:name="#string" )? (table:end-cell-address="string]" )? (table:end-x="string]" )? (table:end-y="string]" )? - (table:table-background="<boolean>" )? + (table:table-background="#boolean" )? (text:anchor-type="page | frame | paragraph | char | as-char" )? - (text:anchor-page-number="<positiveInteger>" )? - ) (draw:text-style-name="(<NCName>)?" )? - ) (draw:caption-id="<IDREF>" )? + (text:anchor-page-number="#positiveInteger" )? + ) (draw:text-style-name="(#NCName)?" )? + ) (draw:caption-id="#IDREF" )? (<svg:title ... >)? (<svg:desc ... >)? (<office:event-listeners ... >)? @@ -6176,10 +6176,10 @@

draw:object Element

Child Relations - <draw:object (draw:notify-on-update-of-ranges="<string> | <string>" )? - (xml:id="<ID>" )? + <draw:object (draw:notify-on-update-of-ranges="#string | #string" )? + (xml:id="#ID" )? - (xlink:type="simple" xlink:href="<anyIRI>" (xlink:show="embed" )? + (xlink:type="simple" xlink:href="#anyIRI" (xlink:show="embed" )? (xlink:actuate="onLoad" )? ) | <office:document ... > | <math:math ... >>  @@ -6213,10 +6213,10 @@

draw:object-ole Element

Child Relations - <draw:object-ole (draw:class-id="<string>" )? - (xml:id="<ID>" )? + <draw:object-ole (draw:class-id="#string" )? + (xml:id="#ID" )? - (xlink:type="simple" xlink:href="<anyIRI>" (xlink:show="embed" )? + (xlink:type="simple" xlink:href="#anyIRI" (xlink:show="embed" )? (xlink:actuate="onLoad" )? ) | <office:binary-data ... >>  @@ -6252,11 +6252,11 @@

draw:opacity Element

Child Relations - <draw:opacity (draw:name="<NCName>" )? - (draw:display-name="<string>" )? + <draw:opacity (draw:name="#NCName" )? + (draw:display-name="#string" )? draw:style="linear | axial | radial | ellipsoid | square | rectangular" (draw:cx="string]" )? (draw:cy="string]" )? - (draw:angle="<string>" )? + (draw:angle="#string" )? (draw:border="string]" )? ( (draw:start="string]" )? @@ -6332,15 +6332,15 @@

draw:page Element

Child Relations - <draw:page (presentation:use-header-name="<string>" )? - (presentation:use-footer-name="<string>" )? - (presentation:use-date-time-name="<string>" )? - (draw:name="<string>" )? - (draw:style-name="(<NCName>)?" )? - draw:master-page-name="(<NCName>)?" (presentation:presentation-page-layout-name="(<NCName>)?" )? - (xml:id="<ID>" (draw:id="<NCName>" )? + <draw:page (presentation:use-header-name="#string" )? + (presentation:use-footer-name="#string" )? + (presentation:use-date-time-name="#string" )? + (draw:name="#string" )? + (draw:style-name="(#NCName)?" )? + draw:master-page-name="(#NCName)?" (presentation:presentation-page-layout-name="(#NCName)?" )? + (xml:id="#ID" (draw:id="#NCName" )? )? - (draw:nav-order="<IDREFS>" )? + (draw:nav-order="#IDREFS" )? (<svg:title ... >)? (<svg:desc ... >)? (<draw:layer-set ... >)? @@ -6423,7 +6423,7 @@

draw:page-thumbnail Element

Child Relations - <draw:page-thumbnail (draw:page-number="<positiveInteger>" )? + <draw:page-thumbnail (draw:page-number="#positiveInteger" )? ( (svg:x="string]" )? (svg:y="string]" )? @@ -6431,32 +6431,32 @@

draw:page-thumbnail Element

( (svg:width="string]" )? (svg:height="string]" )? ) (presentation:class="title | outline | subtitle | text | graphic | object | chart | table | orgchart | page | notes | handout | header | footer | date-time | page-number" )? - (presentation:placeholder="<boolean>" )? - (presentation:user-transformed="<boolean>" )? + (presentation:placeholder="#boolean" )? + (presentation:user-transformed="#boolean" )? - ( (draw:z-index="<nonNegativeInteger>" )? - (xml:id="<ID>" (draw:id="<NCName>" )? + ( (draw:z-index="#nonNegativeInteger" )? + (xml:id="#ID" (draw:id="#NCName" )? )? - (draw:layer="<string>" )? + (draw:layer="#string" )? - ( (draw:style-name="(<NCName>)?" )? + ( (draw:style-name="(#NCName)?" )? (draw:class-names=" -START_list(<NCName>)* +START_list(#NCName)* END_list" )? ) | - ( (presentation:style-name="(<NCName>)?" )? + ( (presentation:style-name="(#NCName)?" )? (presentation:class-names=" -START_list(<NCName>)* +START_list(#NCName)* END_list" )? - ) (draw:transform="<string>" )? - (draw:name="<string>" )? + ) (draw:transform="#string" )? + (draw:name="#string" )? (table:end-cell-address="string]" )? (table:end-x="string]" )? (table:end-y="string]" )? - (table:table-background="<boolean>" )? + (table:table-background="#boolean" )? (text:anchor-type="page | frame | paragraph | char | as-char" )? - (text:anchor-page-number="<positiveInteger>" )? - ) (draw:caption-id="<IDREF>" )? + (text:anchor-page-number="#positiveInteger" )? + ) (draw:caption-id="#IDREF" )? (<svg:title ... >)? (<svg:desc ... >)? >  @@ -6487,8 +6487,8 @@

draw:param Element

Child Relations - <draw:param (draw:name="<string>" )? - (draw:value="<string>" )? + <draw:param (draw:name="#string" )? + (draw:value="#string" )? >  @@ -6567,40 +6567,40 @@

draw:path Element

Child Relations - <draw:path svg:d="<string>" + <draw:path svg:d="#string" ( (svg:x="string]" )? (svg:y="string]" )? ) ( (svg:width="string]" )? (svg:height="string]" )? )svg:viewBox=" -START_list<integer><integer><integer><integer> +START_list#integer#integer#integer#integer END_list" ( - ( (draw:z-index="<nonNegativeInteger>" )? - (xml:id="<ID>" (draw:id="<NCName>" )? + ( (draw:z-index="#nonNegativeInteger" )? + (xml:id="#ID" (draw:id="#NCName" )? )? - (draw:layer="<string>" )? + (draw:layer="#string" )? - ( (draw:style-name="(<NCName>)?" )? + ( (draw:style-name="(#NCName)?" )? (draw:class-names=" -START_list(<NCName>)* +START_list(#NCName)* END_list" )? ) | - ( (presentation:style-name="(<NCName>)?" )? + ( (presentation:style-name="(#NCName)?" )? (presentation:class-names=" -START_list(<NCName>)* +START_list(#NCName)* END_list" )? - ) (draw:transform="<string>" )? - (draw:name="<string>" )? + ) (draw:transform="#string" )? + (draw:name="#string" )? (table:end-cell-address="string]" )? (table:end-x="string]" )? (table:end-y="string]" )? - (table:table-background="<boolean>" )? + (table:table-background="#boolean" )? (text:anchor-type="page | frame | paragraph | char | as-char" )? - (text:anchor-page-number="<positiveInteger>" )? - ) (draw:text-style-name="(<NCName>)?" )? - ) (draw:caption-id="<IDREF>" )? + (text:anchor-page-number="#positiveInteger" )? + ) (draw:text-style-name="(#NCName)?" )? + ) (draw:caption-id="#IDREF" )? (<svg:title ... >)? (<svg:desc ... >)? (<office:event-listeners ... >)? @@ -6636,10 +6636,10 @@

draw:plugin Element

Child Relations - <draw:plugin (draw:mime-type="<string>" )? - (xml:id="<ID>" )? + <draw:plugin (draw:mime-type="#string" )? + (xml:id="#ID" )? - (xlink:type="simple" xlink:href="<anyIRI>" (xlink:show="embed" )? + (xlink:type="simple" xlink:href="#anyIRI" (xlink:show="embed" )? (xlink:actuate="onLoad" )? )(<draw:param ... >)* >  @@ -6726,33 +6726,33 @@

draw:polygon Element

( (svg:width="string]" )? (svg:height="string]" )? )svg:viewBox=" -START_list<integer><integer><integer><integer> +START_list#integer#integer#integer#integer END_list" ( - ( (draw:z-index="<nonNegativeInteger>" )? - (xml:id="<ID>" (draw:id="<NCName>" )? + ( (draw:z-index="#nonNegativeInteger" )? + (xml:id="#ID" (draw:id="#NCName" )? )? - (draw:layer="<string>" )? + (draw:layer="#string" )? - ( (draw:style-name="(<NCName>)?" )? + ( (draw:style-name="(#NCName)?" )? (draw:class-names=" -START_list(<NCName>)* +START_list(#NCName)* END_list" )? ) | - ( (presentation:style-name="(<NCName>)?" )? + ( (presentation:style-name="(#NCName)?" )? (presentation:class-names=" -START_list(<NCName>)* +START_list(#NCName)* END_list" )? - ) (draw:transform="<string>" )? - (draw:name="<string>" )? + ) (draw:transform="#string" )? + (draw:name="#string" )? (table:end-cell-address="string]" )? (table:end-x="string]" )? (table:end-y="string]" )? - (table:table-background="<boolean>" )? + (table:table-background="#boolean" )? (text:anchor-type="page | frame | paragraph | char | as-char" )? - (text:anchor-page-number="<positiveInteger>" )? - ) (draw:text-style-name="(<NCName>)?" )? - ) (draw:caption-id="<IDREF>" )? + (text:anchor-page-number="#positiveInteger" )? + ) (draw:text-style-name="(#NCName)?" )? + ) (draw:caption-id="#IDREF" )? (<svg:title ... >)? (<svg:desc ... >)? (<office:event-listeners ... >)? @@ -6841,33 +6841,33 @@

draw:polyline Element

( (svg:width="string]" )? (svg:height="string]" )? )svg:viewBox=" -START_list<integer><integer><integer><integer> +START_list#integer#integer#integer#integer END_list" ( - ( (draw:z-index="<nonNegativeInteger>" )? - (xml:id="<ID>" (draw:id="<NCName>" )? + ( (draw:z-index="#nonNegativeInteger" )? + (xml:id="#ID" (draw:id="#NCName" )? )? - (draw:layer="<string>" )? + (draw:layer="#string" )? - ( (draw:style-name="(<NCName>)?" )? + ( (draw:style-name="(#NCName)?" )? (draw:class-names=" -START_list(<NCName>)* +START_list(#NCName)* END_list" )? ) | - ( (presentation:style-name="(<NCName>)?" )? + ( (presentation:style-name="(#NCName)?" )? (presentation:class-names=" -START_list(<NCName>)* +START_list(#NCName)* END_list" )? - ) (draw:transform="<string>" )? - (draw:name="<string>" )? + ) (draw:transform="#string" )? + (draw:name="#string" )? (table:end-cell-address="string]" )? (table:end-x="string]" )? (table:end-y="string]" )? - (table:table-background="<boolean>" )? + (table:table-background="#boolean" )? (text:anchor-type="page | frame | paragraph | char | as-char" )? - (text:anchor-page-number="<positiveInteger>" )? - ) (draw:text-style-name="(<NCName>)?" )? - ) (draw:caption-id="<IDREF>" )? + (text:anchor-page-number="#positiveInteger" )? + ) (draw:text-style-name="(#NCName)?" )? + ) (draw:caption-id="#IDREF" )? (<svg:title ... >)? (<svg:desc ... >)? (<office:event-listeners ... >)? @@ -6961,30 +6961,30 @@

draw:rect Element

(svg:height="string]" )? ) ( - ( (draw:z-index="<nonNegativeInteger>" )? - (xml:id="<ID>" (draw:id="<NCName>" )? + ( (draw:z-index="#nonNegativeInteger" )? + (xml:id="#ID" (draw:id="#NCName" )? )? - (draw:layer="<string>" )? + (draw:layer="#string" )? - ( (draw:style-name="(<NCName>)?" )? + ( (draw:style-name="(#NCName)?" )? (draw:class-names=" -START_list(<NCName>)* +START_list(#NCName)* END_list" )? ) | - ( (presentation:style-name="(<NCName>)?" )? + ( (presentation:style-name="(#NCName)?" )? (presentation:class-names=" -START_list(<NCName>)* +START_list(#NCName)* END_list" )? - ) (draw:transform="<string>" )? - (draw:name="<string>" )? + ) (draw:transform="#string" )? + (draw:name="#string" )? (table:end-cell-address="string]" )? (table:end-x="string]" )? (table:end-y="string]" )? - (table:table-background="<boolean>" )? + (table:table-background="#boolean" )? (text:anchor-type="page | frame | paragraph | char | as-char" )? - (text:anchor-page-number="<positiveInteger>" )? - ) (draw:text-style-name="(<NCName>)?" )? - ) (draw:caption-id="<IDREF>" )? + (text:anchor-page-number="#positiveInteger" )? + ) (draw:text-style-name="(#NCName)?" )? + ) (draw:caption-id="#IDREF" )? (<svg:title ... >)? (<svg:desc ... >)? (<office:event-listeners ... >)? @@ -7069,7 +7069,7 @@

draw:regular-polygon Element Child Relations <draw:regular-polygon draw:concave="false" | - (draw:concave="true" draw:sharpness="string]" )draw:corners="<positiveInteger>" + (draw:concave="true" draw:sharpness="string]" )draw:corners="#positiveInteger" ( (svg:x="string]" )? (svg:y="string]" )? ) @@ -7077,30 +7077,30 @@

draw:regular-polygon Element<nonNegativeInteger>" )? - (xml:id="<ID>" (draw:id="<NCName>" )? + ( (draw:z-index="#nonNegativeInteger" )? + (xml:id="#ID" (draw:id="#NCName" )? )? - (draw:layer="<string>" )? + (draw:layer="#string" )? - ( (draw:style-name="(<NCName>)?" )? + ( (draw:style-name="(#NCName)?" )? (draw:class-names=" -START_list(<NCName>)* +START_list(#NCName)* END_list" )? ) | - ( (presentation:style-name="(<NCName>)?" )? + ( (presentation:style-name="(#NCName)?" )? (presentation:class-names=" -START_list(<NCName>)* +START_list(#NCName)* END_list" )? - ) (draw:transform="<string>" )? - (draw:name="<string>" )? + ) (draw:transform="#string" )? + (draw:name="#string" )? (table:end-cell-address="string]" )? (table:end-x="string]" )? (table:end-y="string]" )? - (table:table-background="<boolean>" )? + (table:table-background="#boolean" )? (text:anchor-type="page | frame | paragraph | char | as-char" )? - (text:anchor-page-number="<positiveInteger>" )? - ) (draw:text-style-name="(<NCName>)?" )? - ) (draw:caption-id="<IDREF>" )? + (text:anchor-page-number="#positiveInteger" )? + ) (draw:text-style-name="(#NCName)?" )? + ) (draw:caption-id="#IDREF" )? (<svg:title ... >)? (<svg:desc ... >)? (<office:event-listeners ... >)? @@ -7137,11 +7137,11 @@

draw:stroke-dash Element

Child Relations - <draw:stroke-dash draw:name="<NCName>" (draw:display-name="<string>" )? + <draw:stroke-dash draw:name="#NCName" (draw:display-name="#string" )? (draw:style="rect | round" )? - (draw:dots1="<integer>" )? + (draw:dots1="#integer" )? (draw:dots1-length="string] | string]" )? - (draw:dots2="<integer>" )? + (draw:dots2="#integer" )? (draw:dots2-length="string] | string]" )? (draw:distance="string] | string]" )? >  @@ -7212,13 +7212,13 @@

draw:text-box Element

Child Relations - <draw:text-box (draw:chain-next-name="<string>" )? + <draw:text-box (draw:chain-next-name="#string" )? (draw:corner-radius="string]" )? (fo:min-height="string] | string]" )? (fo:min-width="string] | string]" )? (fo:max-height="string] | string]" )? (fo:max-width="string] | string]" )? - (xml:id="<ID>" (text:id="<NCName>" )? + (xml:id="#ID" (text:id="#NCName" )? )? (<text:h ... > | <text:p ... > | <text:list ... > | <text:numbered-paragraph ... > | <table:table ... > | <text:section ... > | <text:soft-page-break ... > | <text:table-of-content ... > | <text:illustration-index ... > | <text:table-index ... > | <text:object-index ... > | <text:user-index ... > | <text:alphabetical-index ... > | <text:bibliography ... > | <draw:rect ... > | <draw:line ... > | <draw:polyline ... > | <draw:polygon ... > | <draw:regular-polygon ... > | <draw:path ... > | <draw:circle ... > | <draw:ellipse ... > | <draw:g ... > | <draw:page-thumbnail ... > | <draw:frame ... > | <draw:measure ... > | <draw:caption ... > | <draw:connector ... > | <draw:control ... > | <dr3d:scene ... > | <draw:custom-shape ... > | <draw:a ... > | <text:change ... > | <text:change-start ... > | <text:change-end ... >)* >  @@ -7273,30 +7273,30 @@

form:button Element

Child Relations <form:button - ( (form:name="<string>" )? + ( (form:name="#string" )? (form:control-implementation="QName]" )? - (xml:id="<ID>" (form:id="<NCName>" )? - ) (xforms:bind="<string>" )? + (xml:id="#ID" (form:id="#NCName" )? + ) (xforms:bind="#string" )? ) (form:button-type="submit | reset | push | url" )? - (form:disabled="<boolean>" )? - (form:label="<string>" )? - (form:image-data="<anyIRI>" )? - (form:printable="<boolean>" )? - (form:tab-index="<nonNegativeInteger>" )? - (form:tab-stop="<boolean>" )? - (office:target-frame="_self | _blank | _parent | _top | <string>" )? - (xlink:href="<anyIRI>" )? - (form:title="<string>" )? - (form:value="<string>" )? + (form:disabled="#boolean" )? + (form:label="#string" )? + (form:image-data="#anyIRI" )? + (form:printable="#boolean" )? + (form:tab-index="#nonNegativeInteger" )? + (form:tab-stop="#boolean" )? + (office:target-frame="_self | _blank | _parent | _top | #string" )? + (xlink:href="#anyIRI" )? + (form:title="#string" )? + (form:value="#string" )? form:image-position="center" | EMPTY | (form:image-position="start | end | top | bottom" (form:image-align="start | center | end" )? - ) (form:repeat="<boolean>" )? - (form:delay-for-repeat="<duration>" )? - (form:default-button="<boolean>" )? - (form:toggle="<boolean>" )? - (form:focus-on-click="<boolean>" )? - (form:xforms-submission="<string>" )? + ) (form:repeat="#boolean" )? + (form:delay-for-repeat="#duration" )? + (form:default-button="#boolean" )? + (form:toggle="#boolean" )? + (form:focus-on-click="#boolean" )? + (form:xforms-submission="#string" )? ( (<form:properties ... >)? (<office:event-listeners ... >)? @@ -7350,25 +7350,25 @@

form:checkbox Element

Child Relations <form:checkbox - ( (form:name="<string>" )? + ( (form:name="#string" )? (form:control-implementation="QName]" )? - (xml:id="<ID>" (form:id="<NCName>" )? - ) (xforms:bind="<string>" )? - ) (form:disabled="<boolean>" )? - (form:label="<string>" )? - (form:printable="<boolean>" )? - (form:tab-index="<nonNegativeInteger>" )? - (form:tab-stop="<boolean>" )? - (form:title="<string>" )? - (form:value="<string>" )? - (form:data-field="<string>" )? + (xml:id="#ID" (form:id="#NCName" )? + ) (xforms:bind="#string" )? + ) (form:disabled="#boolean" )? + (form:label="#string" )? + (form:printable="#boolean" )? + (form:tab-index="#nonNegativeInteger" )? + (form:tab-stop="#boolean" )? + (form:title="#string" )? + (form:value="#string" )? + (form:data-field="#string" )? (form:visual-effect="flat | 3d" )? form:image-position="center" | EMPTY | (form:image-position="start | end | top | bottom" (form:image-align="start | center | end" )? - ) (form:linked-cell="string] | <string>" )? + ) (form:linked-cell="string] | #string" )? (form:current-state="unchecked | checked | unknown" )? - (form:is-tristate="<boolean>" )? + (form:is-tristate="#boolean" )? (form:state="unchecked | checked | unknown" )? ( (<form:properties ... >)? @@ -7412,10 +7412,10 @@

form:column Element

Child Relations <form:column - ( (form:name="<string>" )? + ( (form:name="#string" )? (form:control-implementation="QName]" )? - (form:label="<string>" )? - (form:text-style-name="(<NCName>)?" )? + (form:label="#string" )? + (form:text-style-name="(#NCName)?" )? )(<form:text ... > | <form:textarea ... > | <form:formatted-text ... > | <form:number ... > | <form:date ... > | <form:time ... > | <form:combobox ... > | <form:listbox ... > | <form:checkbox ... >)+ >  @@ -7469,29 +7469,29 @@

form:combobox Element

Child Relations <form:combobox - ( (form:name="<string>" )? + ( (form:name="#string" )? (form:control-implementation="QName]" )? - (xml:id="<ID>" (form:id="<NCName>" )? - ) (xforms:bind="<string>" )? - ) (form:current-value="<string>" )? - (form:disabled="<boolean>" )? - (form:dropdown="<boolean>" )? - (form:max-length="<nonNegativeInteger>" )? - (form:printable="<boolean>" )? - (form:readonly="<boolean>" )? - (form:size="<nonNegativeInteger>" )? - (form:tab-index="<nonNegativeInteger>" )? - (form:tab-stop="<boolean>" )? - (form:title="<string>" )? - (form:value="<string>" )? - (form:convert-empty-to-null="<boolean>" )? - (form:data-field="<string>" )? - (form:list-source="<string>" )? + (xml:id="#ID" (form:id="#NCName" )? + ) (xforms:bind="#string" )? + ) (form:current-value="#string" )? + (form:disabled="#boolean" )? + (form:dropdown="#boolean" )? + (form:max-length="#nonNegativeInteger" )? + (form:printable="#boolean" )? + (form:readonly="#boolean" )? + (form:size="#nonNegativeInteger" )? + (form:tab-index="#nonNegativeInteger" )? + (form:tab-stop="#boolean" )? + (form:title="#string" )? + (form:value="#string" )? + (form:convert-empty-to-null="#boolean" )? + (form:data-field="#string" )? + (form:list-source="#string" )? (form:list-source-type="table | query | sql | sql-pass-through | value-list | table-fields" )? - (form:linked-cell="string] | <string>" )? - (form:source-cell-range="string] | string] | string] | <string>" )? - (form:auto-complete="<boolean>" )? + (form:linked-cell="string] | #string" )? + (form:source-cell-range="string] | string] | string] | #string" )? + (form:auto-complete="#boolean" )? ( (<form:properties ... >)? (<office:event-listeners ... >)? @@ -7526,7 +7526,7 @@

form:connection-resource Elemen Child Relations - <form:connection-resource xlink:href="<anyIRI>" >  + <form:connection-resource xlink:href="#anyIRI" > 
@@ -7576,33 +7576,33 @@

form:date Element

Child Relations - <form:date (form:value="<date>" )? - (form:current-value="<date>" )? - (form:min-value="<date>" )? - (form:max-value="<date>" )? + <form:date (form:value="#date" )? + (form:current-value="#date" )? + (form:min-value="#date" )? + (form:max-value="#date" )? ( - ( (form:name="<string>" )? + ( (form:name="#string" )? (form:control-implementation="QName]" )? - (xml:id="<ID>" (form:id="<NCName>" )? - ) (xforms:bind="<string>" )? - ) (form:disabled="<boolean>" )? - (form:max-length="<nonNegativeInteger>" )? - (form:printable="<boolean>" )? - (form:readonly="<boolean>" )? - (form:tab-index="<nonNegativeInteger>" )? - (form:tab-stop="<boolean>" )? - (form:title="<string>" )? - (form:convert-empty-to-null="<boolean>" )? - (form:data-field="<string>" )? + (xml:id="#ID" (form:id="#NCName" )? + ) (xforms:bind="#string" )? + ) (form:disabled="#boolean" )? + (form:max-length="#nonNegativeInteger" )? + (form:printable="#boolean" )? + (form:readonly="#boolean" )? + (form:tab-index="#nonNegativeInteger" )? + (form:tab-stop="#boolean" )? + (form:title="#string" )? + (form:convert-empty-to-null="#boolean" )? + (form:data-field="#string" )? ) ( (<form:properties ... >)? (<office:event-listeners ... >)? - ) (form:linked-cell="string] | <string>" )? - (form:spin-button="<boolean>" )? - (form:repeat="<boolean>" )? - (form:delay-for-repeat="<duration>" )? + ) (form:linked-cell="string] | #string" )? + (form:spin-button="#boolean" )? + (form:repeat="#boolean" )? + (form:delay-for-repeat="#duration" )? >  @@ -7647,21 +7647,21 @@

form:file Element

Child Relations <form:file ( - ( (form:name="<string>" )? + ( (form:name="#string" )? (form:control-implementation="QName]" )? - (xml:id="<ID>" (form:id="<NCName>" )? - ) (xforms:bind="<string>" )? - ) (form:current-value="<string>" )? - (form:disabled="<boolean>" )? - (form:max-length="<nonNegativeInteger>" )? - (form:printable="<boolean>" )? - (form:readonly="<boolean>" )? - (form:tab-index="<nonNegativeInteger>" )? - (form:tab-stop="<boolean>" )? - (form:title="<string>" )? - (form:value="<string>" )? - (form:linked-cell="string] | <string>" )? + (xml:id="#ID" (form:id="#NCName" )? + ) (xforms:bind="#string" )? + ) (form:current-value="#string" )? + (form:disabled="#boolean" )? + (form:max-length="#nonNegativeInteger" )? + (form:printable="#boolean" )? + (form:readonly="#boolean" )? + (form:tab-index="#nonNegativeInteger" )? + (form:tab-stop="#boolean" )? + (form:title="#string" )? + (form:value="#string" )? + (form:linked-cell="string] | #string" )? ) ( (<form:properties ... >)? (<office:event-listeners ... >)? @@ -7704,17 +7704,17 @@

form:fixed-text Element

Child Relations <form:fixed-text - ( (form:name="<string>" )? + ( (form:name="#string" )? (form:control-implementation="QName]" )? - (xml:id="<ID>" (form:id="<NCName>" )? - ) (xforms:bind="<string>" )? - ) (form:for="<string>" )? - (form:disabled="<boolean>" )? - (form:label="<string>" )? - (form:printable="<boolean>" )? - (form:title="<string>" )? - (form:multi-line="<boolean>" )? + (xml:id="#ID" (form:id="#NCName" )? + ) (xforms:bind="#string" )? + ) (form:for="#string" )? + (form:disabled="#boolean" )? + (form:label="#string" )? + (form:printable="#boolean" )? + (form:title="#string" )? + (form:multi-line="#boolean" )? ( (<form:properties ... >)? (<office:event-listeners ... >)? @@ -7792,27 +7792,27 @@

form:form Element

Child Relations - <form:form (form:name="<string>" )? + <form:form (form:name="#string" )? (form:control-implementation="QName]" )? - (xlink:type="simple" xlink:href="<anyIRI>" (xlink:actuate="onRequest" )? + (xlink:type="simple" xlink:href="#anyIRI" (xlink:actuate="onRequest" )? )? - (office:target-frame="_self | _blank | _parent | _top | <string>" )? - (form:method="get | post | <string>" )? - (form:enctype="<string>" )? - (form:allow-deletes="<boolean>" )? - (form:allow-inserts="<boolean>" )? - (form:allow-updates="<boolean>" )? - (form:apply-filter="<boolean>" )? + (office:target-frame="_self | _blank | _parent | _top | #string" )? + (form:method="get | post | #string" )? + (form:enctype="#string" )? + (form:allow-deletes="#boolean" )? + (form:allow-inserts="#boolean" )? + (form:allow-updates="#boolean" )? + (form:apply-filter="#boolean" )? (form:command-type="table | query | command" )? - (form:command="<string>" )? - (form:datasource="<anyIRI> | <string>" )? - (form:master-fields="<string>" )? - (form:detail-fields="<string>" )? - (form:escape-processing="<boolean>" )? - (form:filter="<string>" )? - (form:ignore-result="<boolean>" )? + (form:command="#string" )? + (form:datasource="#anyIRI | #string" )? + (form:master-fields="#string" )? + (form:detail-fields="#string" )? + (form:escape-processing="#boolean" )? + (form:filter="#string" )? + (form:ignore-result="#boolean" )? (form:navigation-mode="none | current | parent" )? - (form:order="<string>" )? + (form:order="#string" )? (form:tab-cycle="records | current | page" )? (<form:properties ... >)? (<office:event-listeners ... >)? @@ -7869,29 +7869,29 @@

form:formatted-text Element

Child Relations <form:formatted-text - ( (form:name="<string>" )? + ( (form:name="#string" )? (form:control-implementation="QName]" )? - (xml:id="<ID>" (form:id="<NCName>" )? - ) (xforms:bind="<string>" )? - ) (form:current-value="<string>" )? - (form:disabled="<boolean>" )? - (form:max-length="<nonNegativeInteger>" )? - (form:printable="<boolean>" )? - (form:readonly="<boolean>" )? - (form:tab-index="<nonNegativeInteger>" )? - (form:tab-stop="<boolean>" )? - (form:title="<string>" )? - (form:value="<string>" )? - (form:convert-empty-to-null="<boolean>" )? - (form:data-field="<string>" )? - (form:linked-cell="string] | <string>" )? - (form:spin-button="<boolean>" )? - (form:repeat="<boolean>" )? - (form:delay-for-repeat="<duration>" )? - (form:max-value="<string>" )? - (form:min-value="<string>" )? - (form:validation="<boolean>" )? + (xml:id="#ID" (form:id="#NCName" )? + ) (xforms:bind="#string" )? + ) (form:current-value="#string" )? + (form:disabled="#boolean" )? + (form:max-length="#nonNegativeInteger" )? + (form:printable="#boolean" )? + (form:readonly="#boolean" )? + (form:tab-index="#nonNegativeInteger" )? + (form:tab-stop="#boolean" )? + (form:title="#string" )? + (form:value="#string" )? + (form:convert-empty-to-null="#boolean" )? + (form:data-field="#string" )? + (form:linked-cell="string] | #string" )? + (form:spin-button="#boolean" )? + (form:repeat="#boolean" )? + (form:delay-for-repeat="#duration" )? + (form:max-value="#string" )? + (form:min-value="#string" )? + (form:validation="#boolean" )? ( (<form:properties ... >)? (<office:event-listeners ... >)? @@ -7934,16 +7934,16 @@

form:frame Element

Child Relations <form:frame ( - ( (form:name="<string>" )? + ( (form:name="#string" )? (form:control-implementation="QName]" )? - (xml:id="<ID>" (form:id="<NCName>" )? - ) (xforms:bind="<string>" )? - ) (form:disabled="<boolean>" )? - (form:for="<string>" )? - (form:label="<string>" )? - (form:printable="<boolean>" )? - (form:title="<string>" )? + (xml:id="#ID" (form:id="#NCName" )? + ) (xforms:bind="#string" )? + ) (form:disabled="#boolean" )? + (form:for="#string" )? + (form:label="#string" )? + (form:printable="#boolean" )? + (form:title="#string" )? ) ( (<form:properties ... >)? (<office:event-listeners ... >)? @@ -7980,11 +7980,11 @@

form:generic-control Element Child Relations <form:generic-control - ( (form:name="<string>" )? + ( (form:name="#string" )? (form:control-implementation="QName]" )? - (xml:id="<ID>" (form:id="<NCName>" )? - ) (xforms:bind="<string>" )? + (xml:id="#ID" (form:id="#NCName" )? + ) (xforms:bind="#string" )? ) ( (<form:properties ... >)? (<office:event-listeners ... >)? @@ -8028,16 +8028,16 @@

form:grid Element

Child Relations <form:grid ( - ( (form:name="<string>" )? + ( (form:name="#string" )? (form:control-implementation="QName]" )? - (xml:id="<ID>" (form:id="<NCName>" )? - ) (xforms:bind="<string>" )? - ) (form:disabled="<boolean>" )? - (form:printable="<boolean>" )? - (form:tab-index="<nonNegativeInteger>" )? - (form:tab-stop="<boolean>" )? - (form:title="<string>" )? + (xml:id="#ID" (form:id="#NCName" )? + ) (xforms:bind="#string" )? + ) (form:disabled="#boolean" )? + (form:printable="#boolean" )? + (form:tab-index="#nonNegativeInteger" )? + (form:tab-stop="#boolean" )? + (form:title="#string" )? ) ( (<form:properties ... >)? (<office:event-listeners ... >)? @@ -8076,12 +8076,12 @@

form:hidden Element

Child Relations <form:hidden ( - ( (form:name="<string>" )? + ( (form:name="#string" )? (form:control-implementation="QName]" )? - (xml:id="<ID>" (form:id="<NCName>" )? - ) (xforms:bind="<string>" )? - ) (form:value="<string>" )? + (xml:id="#ID" (form:id="#NCName" )? + ) (xforms:bind="#string" )? + ) (form:value="#string" )? ) ( (<form:properties ... >)? (<office:event-listeners ... >)? @@ -8129,21 +8129,21 @@

form:image Element

Child Relations <form:image ( - ( (form:name="<string>" )? + ( (form:name="#string" )? (form:control-implementation="QName]" )? - (xml:id="<ID>" (form:id="<NCName>" )? - ) (xforms:bind="<string>" )? + (xml:id="#ID" (form:id="#NCName" )? + ) (xforms:bind="#string" )? ) (form:button-type="submit | reset | push | url" )? - (form:disabled="<boolean>" )? - (form:image-data="<anyIRI>" )? - (form:printable="<boolean>" )? - (form:tab-index="<nonNegativeInteger>" )? - (form:tab-stop="<boolean>" )? - (office:target-frame="_self | _blank | _parent | _top | <string>" )? - (xlink:href="<anyIRI>" )? - (form:title="<string>" )? - (form:value="<string>" )? + (form:disabled="#boolean" )? + (form:image-data="#anyIRI" )? + (form:printable="#boolean" )? + (form:tab-index="#nonNegativeInteger" )? + (form:tab-stop="#boolean" )? + (office:target-frame="_self | _blank | _parent | _top | #string" )? + (xlink:href="#anyIRI" )? + (form:title="#string" )? + (form:value="#string" )? ) ( (<form:properties ... >)? (<office:event-listeners ... >)? @@ -8187,17 +8187,17 @@

form:image-frame Element

Child Relations <form:image-frame ( - ( (form:name="<string>" )? + ( (form:name="#string" )? (form:control-implementation="QName]" )? - (xml:id="<ID>" (form:id="<NCName>" )? - ) (xforms:bind="<string>" )? - ) (form:disabled="<boolean>" )? - (form:image-data="<anyIRI>" )? - (form:printable="<boolean>" )? - (form:readonly="<boolean>" )? - (form:title="<string>" )? - (form:data-field="<string>" )? + (xml:id="#ID" (form:id="#NCName" )? + ) (xforms:bind="#string" )? + ) (form:disabled="#boolean" )? + (form:image-data="#anyIRI" )? + (form:printable="#boolean" )? + (form:readonly="#boolean" )? + (form:title="#string" )? + (form:data-field="#string" )? ) ( (<form:properties ... >)? (<office:event-listeners ... >)? @@ -8228,7 +8228,7 @@

form:item Element

Child Relations - <form:item (form:label="<string>" )? + <form:item (form:label="#string" )? TEXT>  @@ -8270,7 +8270,7 @@

form:list-property Element

Child Relations - <form:list-property form:property-name="<string>" + <form:list-property form:property-name="#string" (office:value-type="float" (<form:list-value ... >)* ) | (office:value-type="percentage" (<form:list-value ... >)* ) | (office:value-type="currency" (<form:list-value ... >)* ) | @@ -8304,7 +8304,7 @@

form:list-value[1] Element

Child Relations - <form:list-value office:string-value="<string>" >  + <form:list-value office:string-value="#string" > 
@@ -8331,7 +8331,7 @@

form:list-value[2] Element

Child Relations - <form:list-value office:date-value="<date> | <dateTime>" >  + <form:list-value office:date-value="#date | #dateTime" > 
@@ -8358,7 +8358,7 @@

form:list-value[3] Element

Child Relations - <form:list-value office:boolean-value="<boolean>" >  + <form:list-value office:boolean-value="#boolean" > 
@@ -8385,7 +8385,7 @@

form:list-value[4] Element

Child Relations - <form:list-value office:time-value="<duration>" >  + <form:list-value office:time-value="#duration" > 
@@ -8412,7 +8412,7 @@

form:list-value[5] Element

Child Relations - <form:list-value office:value="<double>" >  + <form:list-value office:value="#double" > 
@@ -8439,7 +8439,7 @@

form:list-value[6] Element

Child Relations - <form:list-value office:value="<double>" >  + <form:list-value office:value="#double" > 
@@ -8467,7 +8467,7 @@

form:list-value[7] Element

Child Relations - <form:list-value office:value="<double>" (office:currency="<string>" )? + <form:list-value office:value="#double" (office:currency="#string" )? >  @@ -8519,27 +8519,27 @@

form:listbox Element

Child Relations <form:listbox - ( (form:name="<string>" )? + ( (form:name="#string" )? (form:control-implementation="QName]" )? - (xml:id="<ID>" (form:id="<NCName>" )? - ) (xforms:bind="<string>" )? - ) (form:disabled="<boolean>" )? - (form:dropdown="<boolean>" )? - (form:printable="<boolean>" )? - (form:size="<nonNegativeInteger>" )? - (form:tab-index="<nonNegativeInteger>" )? - (form:tab-stop="<boolean>" )? - (form:title="<string>" )? - (form:bound-column="<string>" )? - (form:data-field="<string>" )? - (form:list-source="<string>" )? + (xml:id="#ID" (form:id="#NCName" )? + ) (xforms:bind="#string" )? + ) (form:disabled="#boolean" )? + (form:dropdown="#boolean" )? + (form:printable="#boolean" )? + (form:size="#nonNegativeInteger" )? + (form:tab-index="#nonNegativeInteger" )? + (form:tab-stop="#boolean" )? + (form:title="#string" )? + (form:bound-column="#string" )? + (form:data-field="#string" )? + (form:list-source="#string" )? (form:list-source-type="table | query | sql | sql-pass-through | value-list | table-fields" )? - (form:linked-cell="string] | <string>" )? + (form:linked-cell="string] | #string" )? (form:list-linkage-type="selection | selection-indices" )? - (form:source-cell-range="string] | string] | string] | <string>" )? - (form:multiple="<boolean>" )? - (form:xforms-list-source="<string>" )? + (form:source-cell-range="string] | string] | string] | #string" )? + (form:multiple="#boolean" )? + (form:xforms-list-source="#string" )? ( (<form:properties ... >)? (<office:event-listeners ... >)? @@ -8593,33 +8593,33 @@

form:number Element

Child Relations - <form:number (form:value="<double>" )? - (form:current-value="<double>" )? - (form:min-value="<double>" )? - (form:max-value="<double>" )? + <form:number (form:value="#double" )? + (form:current-value="#double" )? + (form:min-value="#double" )? + (form:max-value="#double" )? ( - ( (form:name="<string>" )? + ( (form:name="#string" )? (form:control-implementation="QName]" )? - (xml:id="<ID>" (form:id="<NCName>" )? - ) (xforms:bind="<string>" )? - ) (form:disabled="<boolean>" )? - (form:max-length="<nonNegativeInteger>" )? - (form:printable="<boolean>" )? - (form:readonly="<boolean>" )? - (form:tab-index="<nonNegativeInteger>" )? - (form:tab-stop="<boolean>" )? - (form:title="<string>" )? - (form:convert-empty-to-null="<boolean>" )? - (form:data-field="<string>" )? + (xml:id="#ID" (form:id="#NCName" )? + ) (xforms:bind="#string" )? + ) (form:disabled="#boolean" )? + (form:max-length="#nonNegativeInteger" )? + (form:printable="#boolean" )? + (form:readonly="#boolean" )? + (form:tab-index="#nonNegativeInteger" )? + (form:tab-stop="#boolean" )? + (form:title="#string" )? + (form:convert-empty-to-null="#boolean" )? + (form:data-field="#string" )? ) ( (<form:properties ... >)? (<office:event-listeners ... >)? - ) (form:linked-cell="string] | <string>" )? - (form:spin-button="<boolean>" )? - (form:repeat="<boolean>" )? - (form:delay-for-repeat="<duration>" )? + ) (form:linked-cell="string] | #string" )? + (form:spin-button="#boolean" )? + (form:repeat="#boolean" )? + (form:delay-for-repeat="#duration" )? >  @@ -8651,10 +8651,10 @@

form:option Element

Child Relations <form:option - ( (form:current-selected="<boolean>" )? - (form:selected="<boolean>" )? - (form:label="<string>" )? - (form:value="<string>" )? + ( (form:current-selected="#boolean" )? + (form:selected="#boolean" )? + (form:label="#string" )? + (form:value="#string" )? )TEXT>  @@ -8698,20 +8698,20 @@

form:password Element

Child Relations <form:password - ( (form:name="<string>" )? + ( (form:name="#string" )? (form:control-implementation="QName]" )? - (xml:id="<ID>" (form:id="<NCName>" )? - ) (xforms:bind="<string>" )? - ) (form:disabled="<boolean>" )? - (form:max-length="<nonNegativeInteger>" )? - (form:printable="<boolean>" )? - (form:tab-index="<nonNegativeInteger>" )? - (form:tab-stop="<boolean>" )? - (form:title="<string>" )? - (form:value="<string>" )? - (form:convert-empty-to-null="<boolean>" )? - (form:linked-cell="string] | <string>" )? + (xml:id="#ID" (form:id="#NCName" )? + ) (xforms:bind="#string" )? + ) (form:disabled="#boolean" )? + (form:max-length="#nonNegativeInteger" )? + (form:printable="#boolean" )? + (form:tab-index="#nonNegativeInteger" )? + (form:tab-stop="#boolean" )? + (form:title="#string" )? + (form:value="#string" )? + (form:convert-empty-to-null="#boolean" )? + (form:linked-cell="string] | #string" )? (form:echo-char="string]" )? ( (<form:properties ... >)? @@ -8804,15 +8804,15 @@

form:property Element

Child Relations - <form:property form:property-name="<string>" - (office:value-type="float" office:value="<double>" ) | - (office:value-type="percentage" office:value="<double>" ) | - (office:value-type="currency" office:value="<double>" (office:currency="<string>" )? + <form:property form:property-name="#string" + (office:value-type="float" office:value="#double" ) | + (office:value-type="percentage" office:value="#double" ) | + (office:value-type="currency" office:value="#double" (office:currency="#string" )? ) | - (office:value-type="date" office:date-value="<date> | <dateTime>" ) | - (office:value-type="time" office:time-value="<duration>" ) | - (office:value-type="boolean" office:boolean-value="<boolean>" ) | - (office:value-type="string" (office:string-value="<string>" )? + (office:value-type="date" office:date-value="#date | #dateTime" ) | + (office:value-type="time" office:time-value="#duration" ) | + (office:value-type="boolean" office:boolean-value="#boolean" ) | + (office:value-type="string" (office:string-value="#string" )? ) | office:value-type="void" >  @@ -8862,25 +8862,25 @@

form:radio Element

Child Relations <form:radio ( - ( (form:name="<string>" )? + ( (form:name="#string" )? (form:control-implementation="QName]" )? - (xml:id="<ID>" (form:id="<NCName>" )? - ) (xforms:bind="<string>" )? - ) (form:current-selected="<boolean>" )? - (form:disabled="<boolean>" )? - (form:label="<string>" )? - (form:printable="<boolean>" )? - (form:selected="<boolean>" )? - (form:tab-index="<nonNegativeInteger>" )? - (form:tab-stop="<boolean>" )? - (form:title="<string>" )? - (form:value="<string>" )? - (form:data-field="<string>" )? + (xml:id="#ID" (form:id="#NCName" )? + ) (xforms:bind="#string" )? + ) (form:current-selected="#boolean" )? + (form:disabled="#boolean" )? + (form:label="#string" )? + (form:printable="#boolean" )? + (form:selected="#boolean" )? + (form:tab-index="#nonNegativeInteger" )? + (form:tab-stop="#boolean" )? + (form:title="#string" )? + (form:value="#string" )? + (form:data-field="#string" )? (form:visual-effect="flat | 3d" )? form:image-position="center" | EMPTY | (form:image-position="start | end | top | bottom" (form:image-align="start | center | end" )? - ) (form:linked-cell="string] | <string>" )? + ) (form:linked-cell="string] | #string" )? ) ( (<form:properties ... >)? (<office:event-listeners ... >)? @@ -8931,23 +8931,23 @@

form:text Element

Child Relations <form:text ( - ( (form:name="<string>" )? + ( (form:name="#string" )? (form:control-implementation="QName]" )? - (xml:id="<ID>" (form:id="<NCName>" )? - ) (xforms:bind="<string>" )? - ) (form:current-value="<string>" )? - (form:disabled="<boolean>" )? - (form:max-length="<nonNegativeInteger>" )? - (form:printable="<boolean>" )? - (form:readonly="<boolean>" )? - (form:tab-index="<nonNegativeInteger>" )? - (form:tab-stop="<boolean>" )? - (form:title="<string>" )? - (form:value="<string>" )? - (form:convert-empty-to-null="<boolean>" )? - (form:data-field="<string>" )? - (form:linked-cell="string] | <string>" )? + (xml:id="#ID" (form:id="#NCName" )? + ) (xforms:bind="#string" )? + ) (form:current-value="#string" )? + (form:disabled="#boolean" )? + (form:max-length="#nonNegativeInteger" )? + (form:printable="#boolean" )? + (form:readonly="#boolean" )? + (form:tab-index="#nonNegativeInteger" )? + (form:tab-stop="#boolean" )? + (form:title="#string" )? + (form:value="#string" )? + (form:convert-empty-to-null="#boolean" )? + (form:data-field="#string" )? + (form:linked-cell="string] | #string" )? ) ( (<form:properties ... >)? (<office:event-listeners ... >)? @@ -8999,23 +8999,23 @@

form:textarea Element

Child Relations <form:textarea ( - ( (form:name="<string>" )? + ( (form:name="#string" )? (form:control-implementation="QName]" )? - (xml:id="<ID>" (form:id="<NCName>" )? - ) (xforms:bind="<string>" )? - ) (form:current-value="<string>" )? - (form:disabled="<boolean>" )? - (form:max-length="<nonNegativeInteger>" )? - (form:printable="<boolean>" )? - (form:readonly="<boolean>" )? - (form:tab-index="<nonNegativeInteger>" )? - (form:tab-stop="<boolean>" )? - (form:title="<string>" )? - (form:value="<string>" )? - (form:convert-empty-to-null="<boolean>" )? - (form:data-field="<string>" )? - (form:linked-cell="string] | <string>" )? + (xml:id="#ID" (form:id="#NCName" )? + ) (xforms:bind="#string" )? + ) (form:current-value="#string" )? + (form:disabled="#boolean" )? + (form:max-length="#nonNegativeInteger" )? + (form:printable="#boolean" )? + (form:readonly="#boolean" )? + (form:tab-index="#nonNegativeInteger" )? + (form:tab-stop="#boolean" )? + (form:title="#string" )? + (form:value="#string" )? + (form:convert-empty-to-null="#boolean" )? + (form:data-field="#string" )? + (form:linked-cell="string] | #string" )? ) ( (<form:properties ... >)? (<office:event-listeners ... >)? @@ -9069,33 +9069,33 @@

form:time Element

Child Relations - <form:time (form:value="<time>" )? - (form:current-value="<time>" )? - (form:min-value="<time>" )? - (form:max-value="<time>" )? + <form:time (form:value="#time" )? + (form:current-value="#time" )? + (form:min-value="#time" )? + (form:max-value="#time" )? ( - ( (form:name="<string>" )? + ( (form:name="#string" )? (form:control-implementation="QName]" )? - (xml:id="<ID>" (form:id="<NCName>" )? - ) (xforms:bind="<string>" )? - ) (form:disabled="<boolean>" )? - (form:max-length="<nonNegativeInteger>" )? - (form:printable="<boolean>" )? - (form:readonly="<boolean>" )? - (form:tab-index="<nonNegativeInteger>" )? - (form:tab-stop="<boolean>" )? - (form:title="<string>" )? - (form:convert-empty-to-null="<boolean>" )? - (form:data-field="<string>" )? + (xml:id="#ID" (form:id="#NCName" )? + ) (xforms:bind="#string" )? + ) (form:disabled="#boolean" )? + (form:max-length="#nonNegativeInteger" )? + (form:printable="#boolean" )? + (form:readonly="#boolean" )? + (form:tab-index="#nonNegativeInteger" )? + (form:tab-stop="#boolean" )? + (form:title="#string" )? + (form:convert-empty-to-null="#boolean" )? + (form:data-field="#string" )? ) ( (<form:properties ... >)? (<office:event-listeners ... >)? - ) (form:linked-cell="string] | <string>" )? - (form:spin-button="<boolean>" )? - (form:repeat="<boolean>" )? - (form:delay-for-repeat="<duration>" )? + ) (form:linked-cell="string] | #string" )? + (form:spin-button="#boolean" )? + (form:repeat="#boolean" )? + (form:delay-for-repeat="#duration" )? >  @@ -9143,24 +9143,24 @@

form:value-range Element

Child Relations <form:value-range - ( (form:name="<string>" )? + ( (form:name="#string" )? (form:control-implementation="QName]" )? - (xml:id="<ID>" (form:id="<NCName>" )? - ) (xforms:bind="<string>" )? - ) (form:disabled="<boolean>" )? - (form:printable="<boolean>" )? - (form:tab-index="<nonNegativeInteger>" )? - (form:tab-stop="<boolean>" )? - (form:title="<string>" )? - (form:value="<string>" )? - (form:linked-cell="string] | <string>" )? - (form:repeat="<boolean>" )? - (form:delay-for-repeat="<duration>" )? - (form:max-value="<integer>" )? - (form:min-value="<integer>" )? - (form:step-size="<positiveInteger>" )? - (form:page-step-size="<positiveInteger>" )? + (xml:id="#ID" (form:id="#NCName" )? + ) (xforms:bind="#string" )? + ) (form:disabled="#boolean" )? + (form:printable="#boolean" )? + (form:tab-index="#nonNegativeInteger" )? + (form:tab-stop="#boolean" )? + (form:title="#string" )? + (form:value="#string" )? + (form:linked-cell="string] | #string" )? + (form:repeat="#boolean" )? + (form:delay-for-repeat="#duration" )? + (form:max-value="#integer" )? + (form:min-value="#integer" )? + (form:step-size="#positiveInteger" )? + (form:page-step-size="#positiveInteger" )? (form:orientation="horizontal | vertical" )? ( (<form:properties ... >)? @@ -9224,10 +9224,10 @@

meta:auto-reload Element (new Child Relations - <meta:auto-reload (xlink:type="simple" xlink:href="<anyIRI>" (xlink:show="replace" )? + <meta:auto-reload (xlink:type="simple" xlink:href="#anyIRI" (xlink:show="replace" )? (xlink:actuate="onLoad" )? )? - (meta:delay="<duration>" )? + (meta:delay="#duration" )? >  @@ -9253,7 +9253,7 @@

meta:creation-date Element ( Child Relations - <meta:creation-date <dateTime>>  + <meta:creation-date #dateTime
@@ -9304,7 +9304,7 @@

meta:date-string Element

Child Relations - <meta:date-string <string>>  + <meta:date-string #string
@@ -9344,21 +9344,21 @@

meta:document-statistic Element< Child Relations - <meta:document-statistic (meta:page-count="<nonNegativeInteger>" )? - (meta:table-count="<nonNegativeInteger>" )? - (meta:draw-count="<nonNegativeInteger>" )? - (meta:image-count="<nonNegativeInteger>" )? - (meta:ole-object-count="<nonNegativeInteger>" )? - (meta:object-count="<nonNegativeInteger>" )? - (meta:paragraph-count="<nonNegativeInteger>" )? - (meta:word-count="<nonNegativeInteger>" )? - (meta:character-count="<nonNegativeInteger>" )? - (meta:frame-count="<nonNegativeInteger>" )? - (meta:sentence-count="<nonNegativeInteger>" )? - (meta:syllable-count="<nonNegativeInteger>" )? - (meta:non-whitespace-character-count="<nonNegativeInteger>" )? - (meta:row-count="<nonNegativeInteger>" )? - (meta:cell-count="<nonNegativeInteger>" )? + <meta:document-statistic (meta:page-count="#nonNegativeInteger" )? + (meta:table-count="#nonNegativeInteger" )? + (meta:draw-count="#nonNegativeInteger" )? + (meta:image-count="#nonNegativeInteger" )? + (meta:ole-object-count="#nonNegativeInteger" )? + (meta:object-count="#nonNegativeInteger" )? + (meta:paragraph-count="#nonNegativeInteger" )? + (meta:word-count="#nonNegativeInteger" )? + (meta:character-count="#nonNegativeInteger" )? + (meta:frame-count="#nonNegativeInteger" )? + (meta:sentence-count="#nonNegativeInteger" )? + (meta:syllable-count="#nonNegativeInteger" )? + (meta:non-whitespace-character-count="#nonNegativeInteger" )? + (meta:row-count="#nonNegativeInteger" )? + (meta:cell-count="#nonNegativeInteger" )? >  @@ -9384,7 +9384,7 @@

meta:editing-cycles Element  Child Relations - <meta:editing-cycles <nonNegativeInteger>>  + <meta:editing-cycles #nonNegativeInteger
@@ -9409,7 +9409,7 @@

meta:editing-duration Element& Child Relations - <meta:editing-duration <duration>>  + <meta:editing-duration #duration
@@ -9434,7 +9434,7 @@

meta:generator Element (new in O Child Relations - <meta:generator <string>>  + <meta:generator #string
@@ -9461,7 +9461,7 @@

meta:hyperlink-behaviour Elemen Child Relations - <meta:hyperlink-behaviour (office:target-frame-name="_self | _blank | _parent | _top | <string>" )? + <meta:hyperlink-behaviour (office:target-frame-name="_self | _blank | _parent | _top | #string" )? (xlink:show="new | replace" )? >  @@ -9488,7 +9488,7 @@

meta:initial-creator Element&nb Child Relations - <meta:initial-creator <string>>  + <meta:initial-creator #string
@@ -9513,7 +9513,7 @@

meta:keyword Element (new in ODF 1 Child Relations - <meta:keyword <string>>  + <meta:keyword #string
@@ -9538,7 +9538,7 @@

meta:print-date Element (new in Child Relations - <meta:print-date <dateTime>>  + <meta:print-date #dateTime
@@ -9563,7 +9563,7 @@

meta:printed-by Element (new in Child Relations - <meta:printed-by <string>>  + <meta:printed-by #string
@@ -9593,9 +9593,9 @@

meta:template Element (new in ODF Child Relations - <meta:template xlink:type="simple" xlink:href="<anyIRI>" (xlink:actuate="onRequest" )? - (xlink:title="<string>" )? - (meta:date="<dateTime>" )? + <meta:template xlink:type="simple" xlink:href="#anyIRI" (xlink:actuate="onRequest" )? + (xlink:title="#string" )? + (meta:date="#dateTime" )? >  @@ -9628,12 +9628,12 @@

meta:user-defined Element (ne Child Relations - <meta:user-defined meta:name="<string>" - (meta:value-type="float" <double>) | - (meta:value-type="date" <date> | <dateTime>) | - (meta:value-type="time" <duration>) | - (meta:value-type="boolean" <boolean>) | - (meta:value-type="string" <string>) | TEXT>  + <meta:user-defined meta:name="#string" + (meta:value-type="float" #double) | + (meta:value-type="date" #date | #dateTime) | + (meta:value-type="time" #duration) | + (meta:value-type="boolean" #boolean) | + (meta:value-type="string" #string) | TEXT> 
@@ -9726,14 +9726,14 @@

number:boolean-style Element Child Relations - <number:boolean-style style:name="<NCName>" (style:display-name="<string>" )? + <number:boolean-style style:name="#NCName" (style:display-name="#string" )? (number:language="token]" )? (number:country="token]" )? (number:script="token]" )? - (number:rfc-language-tag="<language>" )? - (number:title="<string>" )? - (style:volatile="<boolean>" )? - (number:transliteration-format="<string>" )? + (number:rfc-language-tag="#language" )? + (number:title="#string" )? + (style:volatile="#boolean" )? + (number:transliteration-format="#string" )? (number:transliteration-language="token]" )? (number:transliteration-country="token]" )? (number:transliteration-style="short | medium | long" )? @@ -9786,18 +9786,18 @@

number:currency-style Element< Child Relations - <number:currency-style style:name="<NCName>" (style:display-name="<string>" )? + <number:currency-style style:name="#NCName" (style:display-name="#string" )? (number:language="token]" )? (number:country="token]" )? (number:script="token]" )? - (number:rfc-language-tag="<language>" )? - (number:title="<string>" )? - (style:volatile="<boolean>" )? - (number:transliteration-format="<string>" )? + (number:rfc-language-tag="#language" )? + (number:title="#string" )? + (style:volatile="#boolean" )? + (number:transliteration-format="#string" )? (number:transliteration-language="token]" )? (number:transliteration-country="token]" )? (number:transliteration-style="short | medium | long" )? - (number:automatic-order="<boolean>" )? + (number:automatic-order="#boolean" )? (<style:text-properties ... >)? ( ( (<number:text ... >)? @@ -9867,7 +9867,7 @@

number:currency-symbol Element<language>" )? + (number:rfc-language-tag="#language" )? )TEXT>  @@ -9923,18 +9923,18 @@

number:date-style Element

Child Relations - <number:date-style style:name="<NCName>" (style:display-name="<string>" )? + <number:date-style style:name="#NCName" (style:display-name="#string" )? (number:language="token]" )? (number:country="token]" )? (number:script="token]" )? - (number:rfc-language-tag="<language>" )? - (number:title="<string>" )? - (style:volatile="<boolean>" )? - (number:transliteration-format="<string>" )? + (number:rfc-language-tag="#language" )? + (number:title="#string" )? + (style:volatile="#boolean" )? + (number:transliteration-format="#string" )? (number:transliteration-language="token]" )? (number:transliteration-country="token]" )? (number:transliteration-style="short | medium | long" )? - (number:automatic-order="<boolean>" )? + (number:automatic-order="#boolean" )? (number:format-source="fixed | language" )? (<style:text-properties ... >)? ( @@ -9975,7 +9975,7 @@

number:day Element

Child Relations <number:day (number:style="short | long" )? - (number:calendar="gregorian | gengou | ROC | hanja_yoil | hanja | hijri | jewish | buddhist | <string>" )? + (number:calendar="gregorian | gengou | ROC | hanja_yoil | hanja | hijri | jewish | buddhist | #string" )? >  @@ -10004,7 +10004,7 @@

number:day-of-week Element

Child Relations <number:day-of-week (number:style="short | long" )? - (number:calendar="gregorian | gengou | ROC | hanja_yoil | hanja | hijri | jewish | buddhist | <string>" )? + (number:calendar="gregorian | gengou | ROC | hanja_yoil | hanja | hijri | jewish | buddhist | #string" )? >  @@ -10032,7 +10032,7 @@

number:embedded-text Element Child Relations - <number:embedded-text number:position="<integer>" TEXT>  + <number:embedded-text number:position="#integer" TEXT> 
@@ -10060,7 +10060,7 @@

number:era Element

Child Relations <number:era (number:style="short | long" )? - (number:calendar="gregorian | gengou | ROC | hanja_yoil | hanja | hijri | jewish | buddhist | <string>" )? + (number:calendar="gregorian | gengou | ROC | hanja_yoil | hanja | hijri | jewish | buddhist | #string" )? >  @@ -10123,12 +10123,12 @@

number:fraction Element

Child Relations - <number:fraction (number:min-numerator-digits="<integer>" )? - (number:min-denominator-digits="<integer>" )? - (number:denominator-value="<integer>" )? - (number:max-denominator-value="<positiveInteger>" )? - (number:min-integer-digits="<integer>" )? - (number:grouping="<boolean>" )? + <number:fraction (number:min-numerator-digits="#integer" )? + (number:min-denominator-digits="#integer" )? + (number:denominator-value="#integer" )? + (number:max-denominator-value="#positiveInteger" )? + (number:min-integer-digits="#integer" )? + (number:grouping="#boolean" )? >  @@ -10214,10 +10214,10 @@

number:month Element

Child Relations - <number:month (number:textual="<boolean>" )? - (number:possessive-form="<boolean>" )? + <number:month (number:textual="#boolean" )? + (number:possessive-form="#boolean" )? (number:style="short | long" )? - (number:calendar="gregorian | gengou | ROC | hanja_yoil | hanja | hijri | jewish | buddhist | <string>" )? + (number:calendar="gregorian | gengou | ROC | hanja_yoil | hanja | hijri | jewish | buddhist | #string" )? >  @@ -10252,13 +10252,13 @@

number:number Element

Child Relations - <number:number (number:decimal-replacement="<string>" )? - (number:display-factor="<double>" )? + <number:number (number:decimal-replacement="#string" )? + (number:display-factor="#double" )? - ( (number:decimal-places="<integer>" )? - (number:min-decimal-places="<integer>" )? - ) (number:min-integer-digits="<integer>" )? - (number:grouping="<boolean>" )? + ( (number:decimal-places="#integer" )? + (number:min-decimal-places="#integer" )? + ) (number:min-integer-digits="#integer" )? + (number:grouping="#boolean" )? (<number:embedded-text ... >)* >  @@ -10304,14 +10304,14 @@

number:number-style Element

Child Relations - <number:number-style style:name="<NCName>" (style:display-name="<string>" )? + <number:number-style style:name="#NCName" (style:display-name="#string" )? (number:language="token]" )? (number:country="token]" )? (number:script="token]" )? - (number:rfc-language-tag="<language>" )? - (number:title="<string>" )? - (style:volatile="<boolean>" )? - (number:transliteration-format="<string>" )? + (number:rfc-language-tag="#language" )? + (number:title="#string" )? + (style:volatile="#boolean" )? + (number:transliteration-format="#string" )? (number:transliteration-language="token]" )? (number:transliteration-country="token]" )? (number:transliteration-style="short | medium | long" )? @@ -10370,14 +10370,14 @@

number:percentage-style Element< Child Relations - <number:percentage-style style:name="<NCName>" (style:display-name="<string>" )? + <number:percentage-style style:name="#NCName" (style:display-name="#string" )? (number:language="token]" )? (number:country="token]" )? (number:script="token]" )? - (number:rfc-language-tag="<language>" )? - (number:title="<string>" )? - (style:volatile="<boolean>" )? - (number:transliteration-format="<string>" )? + (number:rfc-language-tag="#language" )? + (number:title="#string" )? + (style:volatile="#boolean" )? + (number:transliteration-format="#string" )? (number:transliteration-language="token]" )? (number:transliteration-country="token]" )? (number:transliteration-style="short | medium | long" )? @@ -10422,7 +10422,7 @@

number:quarter Element

Child Relations <number:quarter (number:style="short | long" )? - (number:calendar="gregorian | gengou | ROC | hanja_yoil | hanja | hijri | jewish | buddhist | <string>" )? + (number:calendar="gregorian | gengou | ROC | hanja_yoil | hanja | hijri | jewish | buddhist | #string" )? >  @@ -10455,14 +10455,14 @@

number:scientific-number Elemen Child Relations - <number:scientific-number (number:min-exponent-digits="<integer>" )? - (number:exponent-interval="<positiveInteger>" )? - (number:forced-exponent-sign="<boolean>" )? + <number:scientific-number (number:min-exponent-digits="#integer" )? + (number:exponent-interval="#positiveInteger" )? + (number:forced-exponent-sign="#boolean" )? - ( (number:decimal-places="<integer>" )? - (number:min-decimal-places="<integer>" )? - ) (number:min-integer-digits="<integer>" )? - (number:grouping="<boolean>" )? + ( (number:decimal-places="#integer" )? + (number:min-decimal-places="#integer" )? + ) (number:min-integer-digits="#integer" )? + (number:grouping="#boolean" )? >  @@ -10492,7 +10492,7 @@

number:seconds Element

Child Relations <number:seconds (number:style="short | long" )? - (number:decimal-places="<integer>" )? + (number:decimal-places="#integer" )? >  @@ -10593,14 +10593,14 @@

number:text-style Element

Child Relations - <number:text-style style:name="<NCName>" (style:display-name="<string>" )? + <number:text-style style:name="#NCName" (style:display-name="#string" )? (number:language="token]" )? (number:country="token]" )? (number:script="token]" )? - (number:rfc-language-tag="<language>" )? - (number:title="<string>" )? - (style:volatile="<boolean>" )? - (number:transliteration-format="<string>" )? + (number:rfc-language-tag="#language" )? + (number:title="#string" )? + (style:volatile="#boolean" )? + (number:transliteration-format="#string" )? (number:transliteration-language="token]" )? (number:transliteration-country="token]" )? (number:transliteration-style="short | medium | long" )? @@ -10663,15 +10663,15 @@

number:time-style Element

Child Relations - <number:time-style (number:truncate-on-overflow="<boolean>" )? - style:name="<NCName>" (style:display-name="<string>" )? + <number:time-style (number:truncate-on-overflow="#boolean" )? + style:name="#NCName" (style:display-name="#string" )? (number:language="token]" )? (number:country="token]" )? (number:script="token]" )? - (number:rfc-language-tag="<language>" )? - (number:title="<string>" )? - (style:volatile="<boolean>" )? - (number:transliteration-format="<string>" )? + (number:rfc-language-tag="#language" )? + (number:title="#string" )? + (style:volatile="#boolean" )? + (number:transliteration-format="#string" )? (number:transliteration-language="token]" )? (number:transliteration-country="token]" )? (number:transliteration-style="short | medium | long" )? @@ -10713,7 +10713,7 @@

number:week-of-year Element

Child Relations - <number:week-of-year (number:calendar="gregorian | gengou | ROC | hanja_yoil | hanja | hijri | jewish | buddhist | <string>" )? + <number:week-of-year (number:calendar="gregorian | gengou | ROC | hanja_yoil | hanja | hijri | jewish | buddhist | #string" )? >  @@ -10742,7 +10742,7 @@

number:year Element

Child Relations <number:year (number:style="short | long" )? - (number:calendar="gregorian | gengou | ROC | hanja_yoil | hanja | hijri | jewish | buddhist | <string>" )? + (number:calendar="gregorian | gengou | ROC | hanja_yoil | hanja | hijri | jewish | buddhist | #string" )? >  @@ -10808,8 +10808,8 @@

office:annotation Element

Child Relations - <office:annotation (office:display="<boolean>" )? - (office:name="<string>" )? + <office:annotation (office:display="#boolean" )? + (office:name="#string" )? (draw:caption-point-x="string]" draw:caption-point-y="string]" )? (draw:corner-radius="string]" )? @@ -10820,29 +10820,29 @@

office:annotation Element

(svg:height="string]" )? ) ( - ( (draw:z-index="<nonNegativeInteger>" )? - (xml:id="<ID>" (draw:id="<NCName>" )? + ( (draw:z-index="#nonNegativeInteger" )? + (xml:id="#ID" (draw:id="#NCName" )? )? - (draw:layer="<string>" )? + (draw:layer="#string" )? - ( (draw:style-name="(<NCName>)?" )? + ( (draw:style-name="(#NCName)?" )? (draw:class-names=" -START_list(<NCName>)* +START_list(#NCName)* END_list" )? ) | - ( (presentation:style-name="(<NCName>)?" )? + ( (presentation:style-name="(#NCName)?" )? (presentation:class-names=" -START_list(<NCName>)* +START_list(#NCName)* END_list" )? - ) (draw:transform="<string>" )? - (draw:name="<string>" )? + ) (draw:transform="#string" )? + (draw:name="#string" )? (table:end-cell-address="string]" )? (table:end-x="string]" )? (table:end-y="string]" )? - (table:table-background="<boolean>" )? + (table:table-background="#boolean" )? (text:anchor-type="page | frame | paragraph | char | as-char" )? - (text:anchor-page-number="<positiveInteger>" )? - ) (draw:text-style-name="(<NCName>)?" )? + (text:anchor-page-number="#positiveInteger" )? + ) (draw:text-style-name="(#NCName)?" )? ) (<dc:creator ... >)? (<dc:date ... >)? (<meta:date-string ... >)? @@ -10879,7 +10879,7 @@

office:annotation-end Element& Child Relations - <office:annotation-end office:name="<string>" >  + <office:annotation-end office:name="#string" > 
@@ -10945,7 +10945,7 @@

office:binary-data Element

Child Relations - <office:binary-data <base64Binary>>  + <office:binary-data #base64Binary
@@ -11137,9 +11137,9 @@

office:dde-source Element

Child Relations - <office:dde-source (office:name="<string>" )? + <office:dde-source (office:name="#string" )? (office:conversion-mode="into-default-style-data-style | into-english-number | keep-text" )? - office:dde-application="<string>" office:dde-topic="<string>" office:dde-item="<string>" (office:automatic-update="<boolean>" )? + office:dde-application="#string" office:dde-topic="#string" office:dde-item="#string" (office:automatic-update="#boolean" )? >  @@ -11177,8 +11177,8 @@

office:document Element

Child Relations - <office:document office:mimetype="<string>" office:version="1.3" (grddl:transformation=" -START_list(<anyIRI>)* + <office:document office:mimetype="#string" office:version="1.3" (grddl:transformation=" +START_list(#anyIRI)* END_list" )? (<office:meta ... >)? (<office:settings ... >)? @@ -11218,7 +11218,7 @@

office:document-content Element< Child Relations <office:document-content office:version="1.3" (grddl:transformation=" -START_list(<anyIRI>)* +START_list(#anyIRI)* END_list" )? (<office:scripts ... >)? (<office:font-face-decls ... >)? @@ -11251,7 +11251,7 @@

office:document-meta Element Child Relations <office:document-meta office:version="1.3" (grddl:transformation=" -START_list(<anyIRI>)* +START_list(#anyIRI)* END_list" )? (<office:meta ... >)? >  @@ -11282,7 +11282,7 @@

office:document-settings Elemen Child Relations <office:document-settings office:version="1.3" (grddl:transformation=" -START_list(<anyIRI>)* +START_list(#anyIRI)* END_list" )? (<office:settings ... >)? >  @@ -11316,7 +11316,7 @@

office:document-styles Element Child Relations <office:document-styles office:version="1.3" (grddl:transformation=" -START_list(<anyIRI>)* +START_list(#anyIRI)* END_list" )? (<office:font-face-decls ... >)? (<office:styles ... >)? @@ -11508,8 +11508,8 @@

office:forms Element

Child Relations - <office:forms (form:automatic-focus="<boolean>" )? - (form:apply-design-mode="<boolean>" )? + <office:forms (form:automatic-focus="#boolean" )? + (form:apply-design-mode="#boolean" )? (<form:form ... > | <xforms:model ... >)* >  @@ -11701,7 +11701,7 @@

office:script Element

Child Relations - <office:script script:language="<string>" (<*:* ... >)* >  + <office:script script:language="#string" (<*:* ... >)*
@@ -11801,9 +11801,9 @@

office:spreadsheet Element

Child Relations <office:spreadsheet - ( (table:structure-protected="<boolean>" )? - (table:protection-key="<string>" )? - (table:protection-key-digest-algorithm="<anyIRI>" )? + ( (table:structure-protected="#boolean" )? + (table:protection-key="#string" )? + (table:protection-key-digest-algorithm="#anyIRI" )? ) ( (<table:tracked-changes ... >)? @@ -11955,8 +11955,8 @@

office:text Element

Child Relations - <office:text (text:global="<boolean>" )? - (text:use-soft-page-breaks="<boolean>" )? + <office:text (text:global="#boolean" )? + (text:use-soft-page-breaks="#boolean" )? ( (<office:forms ... >)? (<text:tracked-changes ... >)? @@ -12100,7 +12100,7 @@

presentation:date-time-decl Child Relations - <presentation:date-time-decl presentation:name="<string>" presentation:source="fixed | current-date" (style:data-style-name="(<NCName>)?" )? + <presentation:date-time-decl presentation:name="#string" presentation:source="fixed | current-date" (style:data-style-name="(#NCName)?" )? TEXT>  @@ -12130,7 +12130,7 @@

presentation:dim Element

Child Relations - <presentation:dim draw:shape-id="<IDREF>" draw:color="string]" (<presentation:sound ... >)? + <presentation:dim draw:shape-id="#IDREF" draw:color="string]" (<presentation:sound ... >)? >  @@ -12168,14 +12168,14 @@

presentation:event-listener Child Relations - <presentation:event-listener script:event-name="<string>" presentation:action="none | previous-page | next-page | first-page | last-page | hide | stop | execute | show | verb | fade-out | sound | last-visited-page" (presentation:effect="none | fade | move | stripes | open | close | dissolve | wavyline | random | lines | laser | appear | hide | move-short | checkerboard | rotate | stretch" )? + <presentation:event-listener script:event-name="#string" presentation:action="none | previous-page | next-page | first-page | last-page | hide | stop | execute | show | verb | fade-out | sound | last-visited-page" (presentation:effect="none | fade | move | stripes | open | close | dissolve | wavyline | random | lines | laser | appear | hide | move-short | checkerboard | rotate | stretch" )? (presentation:direction="none | from-left | from-top | from-right | from-bottom | from-center | from-upper-left | from-upper-right | from-lower-left | from-lower-right | to-left | to-top | to-right | to-bottom | to-upper-left | to-upper-right | to-lower-right | to-lower-left | path | spiral-inward-left | spiral-inward-right | spiral-outward-left | spiral-outward-right | vertical | horizontal | to-center | clockwise | counter-clockwise" )? (presentation:speed="slow | medium | fast" )? (presentation:start-scale="string]" )? - (xlink:type="simple" xlink:href="<anyIRI>" (xlink:show="embed" )? + (xlink:type="simple" xlink:href="#anyIRI" (xlink:show="embed" )? (xlink:actuate="onRequest" )? )? - (presentation:verb="<nonNegativeInteger>" )? + (presentation:verb="#nonNegativeInteger" )? (<presentation:sound ... >)? >  @@ -12235,7 +12235,7 @@

presentation:footer-decl Elemen Child Relations - <presentation:footer-decl presentation:name="<string>" TEXT>  + <presentation:footer-decl presentation:name="#string" TEXT> 
@@ -12293,7 +12293,7 @@

presentation:header-decl Elemen Child Relations - <presentation:header-decl presentation:name="<string>" TEXT>  + <presentation:header-decl presentation:name="#string" TEXT> 
@@ -12327,12 +12327,12 @@

presentation:hide-shape Element< Child Relations - <presentation:hide-shape draw:shape-id="<IDREF>" (presentation:effect="none | fade | move | stripes | open | close | dissolve | wavyline | random | lines | laser | appear | hide | move-short | checkerboard | rotate | stretch" )? + <presentation:hide-shape draw:shape-id="#IDREF" (presentation:effect="none | fade | move | stripes | open | close | dissolve | wavyline | random | lines | laser | appear | hide | move-short | checkerboard | rotate | stretch" )? (presentation:direction="none | from-left | from-top | from-right | from-bottom | from-center | from-upper-left | from-upper-right | from-lower-left | from-lower-right | to-left | to-top | to-right | to-bottom | to-upper-left | to-upper-right | to-lower-right | to-lower-left | path | spiral-inward-left | spiral-inward-right | spiral-outward-left | spiral-outward-right | vertical | horizontal | to-center | clockwise | counter-clockwise" )? (presentation:speed="slow | medium | fast" )? - (presentation:delay="<duration>" )? + (presentation:delay="#duration" )? (presentation:start-scale="string]" )? - (presentation:path-id="<string>" )? + (presentation:path-id="#string" )? (<presentation:sound ... >)? >  @@ -12368,12 +12368,12 @@

presentation:hide-text Element Child Relations - <presentation:hide-text draw:shape-id="<IDREF>" (presentation:effect="none | fade | move | stripes | open | close | dissolve | wavyline | random | lines | laser | appear | hide | move-short | checkerboard | rotate | stretch" )? + <presentation:hide-text draw:shape-id="#IDREF" (presentation:effect="none | fade | move | stripes | open | close | dissolve | wavyline | random | lines | laser | appear | hide | move-short | checkerboard | rotate | stretch" )? (presentation:direction="none | from-left | from-top | from-right | from-bottom | from-center | from-upper-left | from-upper-right | from-lower-left | from-lower-right | to-left | to-top | to-right | to-bottom | to-upper-left | to-upper-right | to-lower-right | to-lower-left | path | spiral-inward-left | spiral-inward-right | spiral-outward-left | spiral-outward-right | vertical | horizontal | to-center | clockwise | counter-clockwise" )? (presentation:speed="slow | medium | fast" )? - (presentation:delay="<duration>" )? + (presentation:delay="#duration" )? (presentation:start-scale="string]" )? - (presentation:path-id="<string>" )? + (presentation:path-id="#string" )? (<presentation:sound ... >)? >  @@ -12425,11 +12425,11 @@

presentation:notes Element

Child Relations - <presentation:notes (presentation:use-header-name="<string>" )? - (presentation:use-footer-name="<string>" )? - (presentation:use-date-time-name="<string>" )? - (style:page-layout-name="(<NCName>)?" )? - (draw:style-name="(<NCName>)?" )? + <presentation:notes (presentation:use-header-name="#string" )? + (presentation:use-footer-name="#string" )? + (presentation:use-date-time-name="#string" )? + (style:page-layout-name="(#NCName)?" )? + (draw:style-name="(#NCName)?" )? (<office:forms ... >)? (<draw:rect ... > | <draw:line ... > | <draw:polyline ... > | <draw:polygon ... > | <draw:regular-polygon ... > | <draw:path ... > | <draw:circle ... > | <draw:ellipse ... > | <draw:g ... > | <draw:page-thumbnail ... > | <draw:frame ... > | <draw:measure ... > | <draw:caption ... > | <draw:connector ... > | <draw:control ... > | <dr3d:scene ... > | <draw:custom-shape ... > | <draw:a ... >)* >  @@ -12490,7 +12490,7 @@

presentation:play Element

Child Relations <presentation:play - (draw:shape-id="<IDREF>" (presentation:speed="slow | medium | fast" )? + (draw:shape-id="#IDREF" (presentation:speed="slow | medium | fast" )? )>  @@ -12531,20 +12531,20 @@

presentation:settings Element< Child Relations - <presentation:settings (presentation:start-page="<string>" )? - (presentation:show="<string>" )? - (presentation:full-screen="<boolean>" )? - (presentation:endless="<boolean>" )? - (presentation:pause="<duration>" )? - (presentation:show-logo="<boolean>" )? - (presentation:force-manual="<boolean>" )? - (presentation:mouse-visible="<boolean>" )? - (presentation:mouse-as-pen="<boolean>" )? - (presentation:start-with-navigator="<boolean>" )? + <presentation:settings (presentation:start-page="#string" )? + (presentation:show="#string" )? + (presentation:full-screen="#boolean" )? + (presentation:endless="#boolean" )? + (presentation:pause="#duration" )? + (presentation:show-logo="#boolean" )? + (presentation:force-manual="#boolean" )? + (presentation:mouse-visible="#boolean" )? + (presentation:mouse-as-pen="#boolean" )? + (presentation:start-with-navigator="#boolean" )? (presentation:animations="enabled | disabled" )? (presentation:transition-on-click="enabled | disabled" )? - (presentation:stay-on-top="<boolean>" )? - (presentation:show-end-of-presentation-slide="<boolean>" )? + (presentation:stay-on-top="#boolean" )? + (presentation:show-end-of-presentation-slide="#boolean" )? (<presentation:show ... >)* >  @@ -12572,7 +12572,7 @@

presentation:show Element

Child Relations - <presentation:show presentation:name="<string>" presentation:pages="<string>" >  + <presentation:show presentation:name="#string" presentation:pages="#string" > 
@@ -12606,12 +12606,12 @@

presentation:show-shape Element< Child Relations - <presentation:show-shape draw:shape-id="<IDREF>" (presentation:effect="none | fade | move | stripes | open | close | dissolve | wavyline | random | lines | laser | appear | hide | move-short | checkerboard | rotate | stretch" )? + <presentation:show-shape draw:shape-id="#IDREF" (presentation:effect="none | fade | move | stripes | open | close | dissolve | wavyline | random | lines | laser | appear | hide | move-short | checkerboard | rotate | stretch" )? (presentation:direction="none | from-left | from-top | from-right | from-bottom | from-center | from-upper-left | from-upper-right | from-lower-left | from-lower-right | to-left | to-top | to-right | to-bottom | to-upper-left | to-upper-right | to-lower-right | to-lower-left | path | spiral-inward-left | spiral-inward-right | spiral-outward-left | spiral-outward-right | vertical | horizontal | to-center | clockwise | counter-clockwise" )? (presentation:speed="slow | medium | fast" )? - (presentation:delay="<duration>" )? + (presentation:delay="#duration" )? (presentation:start-scale="string]" )? - (presentation:path-id="<string>" )? + (presentation:path-id="#string" )? (<presentation:sound ... >)? >  @@ -12647,12 +12647,12 @@

presentation:show-text Element Child Relations - <presentation:show-text draw:shape-id="<IDREF>" (presentation:effect="none | fade | move | stripes | open | close | dissolve | wavyline | random | lines | laser | appear | hide | move-short | checkerboard | rotate | stretch" )? + <presentation:show-text draw:shape-id="#IDREF" (presentation:effect="none | fade | move | stripes | open | close | dissolve | wavyline | random | lines | laser | appear | hide | move-short | checkerboard | rotate | stretch" )? (presentation:direction="none | from-left | from-top | from-right | from-bottom | from-center | from-upper-left | from-upper-right | from-lower-left | from-lower-right | to-left | to-top | to-right | to-bottom | to-upper-left | to-upper-right | to-lower-right | to-lower-left | path | spiral-inward-left | spiral-inward-right | spiral-outward-left | spiral-outward-right | vertical | horizontal | to-center | clockwise | counter-clockwise" )? (presentation:speed="slow | medium | fast" )? - (presentation:delay="<duration>" )? + (presentation:delay="#duration" )? (presentation:start-scale="string]" )? - (presentation:path-id="<string>" )? + (presentation:path-id="#string" )? (<presentation:sound ... >)? >  @@ -12691,9 +12691,9 @@

presentation:sound Element

Child Relations - <presentation:sound (presentation:play-full="<boolean>" )? - (xml:id="<ID>" )? - xlink:type="simple" xlink:href="<anyIRI>" (xlink:actuate="onRequest" )? + <presentation:sound (presentation:play-full="#boolean" )? + (xml:id="#ID" )? + xlink:type="simple" xlink:href="#anyIRI" (xlink:actuate="onRequest" )? (xlink:show="new | replace" )? >  @@ -12726,8 +12726,8 @@

script:event-listener Element< Child Relations - <script:event-listener script:event-name="<string>" script:language="<string>" script:macro-name="<string>" | - (xlink:type="simple" xlink:href="<anyIRI>" (xlink:actuate="onRequest" )? + <script:event-listener script:event-name="#string" script:language="#string" script:macro-name="#string" | + (xlink:type="simple" xlink:href="#anyIRI" (xlink:actuate="onRequest" )? )>  @@ -12775,10 +12775,10 @@

style:background-image Element<string>" )? + (style:filter-name="#string" )? (draw:opacity="string]" )? ( - (xlink:type="simple" xlink:href="<anyIRI>" (xlink:show="embed" )? + (xlink:type="simple" xlink:href="#anyIRI" (xlink:show="embed" )? (xlink:actuate="onLoad" )? ) | <office:binary-data ... >)? >  @@ -12888,83 +12888,83 @@

style:chart-properties Element Child Relations <style:chart-properties - ( (chart:scale-text="<boolean>" )? - (chart:three-dimensional="<boolean>" )? - (chart:deep="<boolean>" )? - (chart:right-angled-axes="<boolean>" )? + ( (chart:scale-text="#boolean" )? + (chart:three-dimensional="#boolean" )? + (chart:deep="#boolean" )? + (chart:right-angled-axes="#boolean" )? (chart:symbol-type="none" | chart:symbol-type="automatic" | (chart:symbol-type="named-symbol" chart:symbol-name="square | diamond | arrow-down | arrow-up | arrow-right | arrow-left | bow-tie | hourglass | circle | star | x | plus | asterisk | horizontal-bar | vertical-bar" ) | (chart:symbol-type="image" <chart:symbol-image ... >))? (chart:symbol-width="string]" )? (chart:symbol-height="string]" )? - (chart:sort-by-x-values="<boolean>" )? - (chart:vertical="<boolean>" )? - (chart:connect-bars="<boolean>" )? - (chart:gap-width="<integer>" )? - (chart:overlap="<integer>" )? - (chart:group-bars-per-axis="<boolean>" )? - (chart:japanese-candle-stick="<boolean>" )? + (chart:sort-by-x-values="#boolean" )? + (chart:vertical="#boolean" )? + (chart:connect-bars="#boolean" )? + (chart:gap-width="#integer" )? + (chart:overlap="#integer" )? + (chart:group-bars-per-axis="#boolean" )? + (chart:japanese-candle-stick="#boolean" )? (chart:interpolation="none | cubic-spline | b-spline | step-start | step-end | step-center-x | step-center-y" )? - (chart:spline-order="<positiveInteger>" )? - (chart:spline-resolution="<positiveInteger>" )? - (chart:pie-offset="<nonNegativeInteger>" )? - (chart:angle-offset="<string>" )? + (chart:spline-order="#positiveInteger" )? + (chart:spline-resolution="#positiveInteger" )? + (chart:pie-offset="#nonNegativeInteger" )? + (chart:angle-offset="#string" )? (chart:hole-size="string]" )? - (chart:lines="<boolean>" )? + (chart:lines="#boolean" )? (chart:solid-type="cuboid | cylinder | cone | pyramid" )? - (chart:stacked="<boolean>" )? - (chart:percentage="<boolean>" )? + (chart:stacked="#boolean" )? + (chart:percentage="#boolean" )? (chart:treat-empty-cells="use-zero | leave-gap | ignore" )? - (chart:link-data-style-to-source="<boolean>" )? - (chart:logarithmic="<boolean>" )? - (chart:maximum="<double>" )? - (chart:minimum="<double>" )? - (chart:origin="<double>" )? - (chart:interval-major="<double>" )? - (chart:interval-minor-divisor="<positiveInteger>" )? - (chart:tick-marks-major-inner="<boolean>" )? - (chart:tick-marks-major-outer="<boolean>" )? - (chart:tick-marks-minor-inner="<boolean>" )? - (chart:tick-marks-minor-outer="<boolean>" )? - (chart:reverse-direction="<boolean>" )? - (chart:display-label="<boolean>" )? - (chart:text-overlap="<boolean>" )? - (text:line-break="<boolean>" )? + (chart:link-data-style-to-source="#boolean" )? + (chart:logarithmic="#boolean" )? + (chart:maximum="#double" )? + (chart:minimum="#double" )? + (chart:origin="#double" )? + (chart:interval-major="#double" )? + (chart:interval-minor-divisor="#positiveInteger" )? + (chart:tick-marks-major-inner="#boolean" )? + (chart:tick-marks-major-outer="#boolean" )? + (chart:tick-marks-minor-inner="#boolean" )? + (chart:tick-marks-minor-outer="#boolean" )? + (chart:reverse-direction="#boolean" )? + (chart:display-label="#boolean" )? + (chart:text-overlap="#boolean" )? + (text:line-break="#boolean" )? (chart:label-arrangement="side-by-side | stagger-even | stagger-odd" )? (style:direction="ltr | ttb" )? - (style:rotation-angle="<string>" )? + (style:rotation-angle="#string" )? (chart:data-label-number="none | value | percentage | value-and-percentage" )? - (chart:data-label-text="<boolean>" )? - (chart:data-label-symbol="<boolean>" )? + (chart:data-label-text="#boolean" )? + (chart:data-label-symbol="#boolean" )? (<chart:label-separator ... >)? (chart:label-position="avoid-overlap | center | top | top-right | right | bottom-right | bottom | bottom-left | left | top-left | inside | outside | near-origin" )? (chart:label-position-negative="avoid-overlap | center | top | top-right | right | bottom-right | bottom | bottom-left | left | top-left | inside | outside | near-origin" )? - (chart:visible="<boolean>" )? - (chart:auto-position="<boolean>" )? - (chart:auto-size="<boolean>" )? - (chart:mean-value="<boolean>" )? + (chart:visible="#boolean" )? + (chart:auto-position="#boolean" )? + (chart:auto-size="#boolean" )? + (chart:mean-value="#boolean" )? (chart:error-category="none | variance | standard-deviation | percentage | error-margin | constant | standard-error | cell-range" )? - (chart:error-percentage="<double>" )? - (chart:error-margin="<double>" )? - (chart:error-lower-limit="<double>" )? - (chart:error-upper-limit="<double>" )? - (chart:error-upper-indicator="<boolean>" )? - (chart:error-lower-indicator="<boolean>" )? - (chart:error-lower-range="<string>" )? - (chart:error-upper-range="<string>" )? + (chart:error-percentage="#double" )? + (chart:error-margin="#double" )? + (chart:error-lower-limit="#double" )? + (chart:error-upper-limit="#double" )? + (chart:error-upper-indicator="#boolean" )? + (chart:error-lower-indicator="#boolean" )? + (chart:error-lower-range="#string" )? + (chart:error-upper-range="#string" )? (chart:series-source="columns | rows" )? (chart:regression-type="none | linear | logarithmic | moving-average | exponential | power | polynomial" )? - (chart:regression-max-degree="<positiveInteger>" )? - (chart:regression-force-intercept="<boolean>" )? - (chart:regression-intercept-value="<double>" )? - (chart:regression-name="<string>" )? - (chart:regression-period="<positiveInteger>" )? + (chart:regression-max-degree="#positiveInteger" )? + (chart:regression-force-intercept="#boolean" )? + (chart:regression-intercept-value="#double" )? + (chart:regression-name="#string" )? + (chart:regression-period="#positiveInteger" )? (chart:regression-moving-type="prior | central | averaged-abscissa" )? - (chart:axis-position="start | end | <double>" )? + (chart:axis-position="start | end | #double" )? (chart:axis-label-position="near-axis | near-axis-other-side | outside-start | outside-end" )? (chart:tick-mark-position="at-labels | at-axis | at-labels-and-axis" )? - (chart:include-hidden-cells="<boolean>" )? - (chart:data-label-series="<boolean>" )? + (chart:include-hidden-cells="#boolean" )? + (chart:data-label-series="#boolean" )? EMPTY)>  @@ -13064,7 +13064,7 @@

style:columns Element (new in ODF Child Relations - <style:columns fo:column-count="<positiveInteger>" (fo:column-gap="string]" )? + <style:columns fo:column-count="#positiveInteger" (fo:column-gap="string]" )? (<style:column-sep ... >)? (<style:column ... >)* >  @@ -13240,11 +13240,11 @@

style:drawing-page-propert ( (draw:fill="none | solid | bitmap | gradient | hatch" )? (draw:fill-color="string]" )? (draw:secondary-fill-color="string]" )? - (draw:fill-gradient-name="(<NCName>)?" )? - (draw:gradient-step-count="<nonNegativeInteger>" )? - (draw:fill-hatch-name="(<NCName>)?" )? - (draw:fill-hatch-solid="<boolean>" )? - (draw:fill-image-name="(<NCName>)?" )? + (draw:fill-gradient-name="(#NCName)?" )? + (draw:gradient-step-count="#nonNegativeInteger" )? + (draw:fill-hatch-name="(#NCName)?" )? + (draw:fill-hatch-solid="#boolean" )? + (draw:fill-image-name="(#NCName)?" )? (style:repeat="no-repeat | repeat | stretch" )? (draw:fill-image-width="string] | string]" )? (draw:fill-image-height="string] | string]" )? @@ -13255,24 +13255,24 @@

style:drawing-page-propert START_liststring]horizontal | vertical END_list" )? (draw:opacity="string]" )? - (draw:opacity-name="(<NCName>)?" )? + (draw:opacity-name="(#NCName)?" )? (svg:fill-rule="nonzero | evenodd" )? (presentation:transition-type="manual | automatic | semi-automatic" )? (presentation:transition-style="none | fade-from-left | fade-from-top | fade-from-right | fade-from-bottom | fade-from-upperleft | fade-from-upperright | fade-from-lowerleft | fade-from-lowerright | move-from-left | move-from-top | move-from-right | move-from-bottom | move-from-upperleft | move-from-upperright | move-from-lowerleft | move-from-lowerright | uncover-to-left | uncover-to-top | uncover-to-right | uncover-to-bottom | uncover-to-upperleft | uncover-to-upperright | uncover-to-lowerleft | uncover-to-lowerright | fade-to-center | fade-from-center | vertical-stripes | horizontal-stripes | clockwise | counterclockwise | open-vertical | open-horizontal | close-vertical | close-horizontal | wavyline-from-left | wavyline-from-top | wavyline-from-right | wavyline-from-bottom | spiralin-left | spiralin-right | spiralout-left | spiralout-right | roll-from-top | roll-from-left | roll-from-right | roll-from-bottom | stretch-from-left | stretch-from-top | stretch-from-right | stretch-from-bottom | vertical-lines | horizontal-lines | dissolve | random | vertical-checkerboard | horizontal-checkerboard | interlocking-horizontal-left | interlocking-horizontal-right | interlocking-vertical-top | interlocking-vertical-bottom | fly-away | open | close | melt" )? (presentation:transition-speed="slow | medium | fast" )? - (smil:type="<string>" )? - (smil:subtype="<string>" )? + (smil:type="#string" )? + (smil:subtype="#string" )? (smil:direction="forward | reverse" )? (smil:fadeColor="string]" )? - (presentation:duration="<duration>" )? + (presentation:duration="#duration" )? (presentation:visibility="visible | hidden" )? (draw:background-size="full | border" )? - (presentation:background-objects-visible="<boolean>" )? - (presentation:background-visible="<boolean>" )? - (presentation:display-header="<boolean>" )? - (presentation:display-footer="<boolean>" )? - (presentation:display-page-number="<boolean>" )? - (presentation:display-date-time="<boolean>" )? + (presentation:background-objects-visible="#boolean" )? + (presentation:background-visible="#boolean" )? + (presentation:display-header="#boolean" )? + (presentation:display-footer="#boolean" )? + (presentation:display-page-number="#boolean" )? + (presentation:display-date-time="#boolean" )? (<presentation:sound ... >)? )>  @@ -13303,10 +13303,10 @@

style:drop-cap Element (new in O Child Relations - <style:drop-cap (style:length="word | <positiveInteger>" )? - (style:lines="<positiveInteger>" )? + <style:drop-cap (style:length="word | #positiveInteger" )? + (style:lines="#positiveInteger" )? (style:distance="string]" )? - (style:style-name="(<NCName>)?" )? + (style:style-name="(#NCName)?" )? >  @@ -13372,40 +13372,40 @@

style:font-face Element

Child Relations - <style:font-face (svg:font-family="<string>" )? + <style:font-face (svg:font-family="#string" )? (svg:font-style="normal | italic | oblique" )? (svg:font-variant="normal | small-caps" )? (svg:font-weight="normal | bold | 100 | 200 | 300 | 400 | 500 | 600 | 700 | 800 | 900" )? (svg:font-stretch="normal | ultra-condensed | extra-condensed | condensed | semi-condensed | semi-expanded | expanded | extra-expanded | ultra-expanded" )? (svg:font-size="string]" )? - (svg:unicode-range="<string>" )? - (svg:units-per-em="<integer>" )? - (svg:panose-1="<string>" )? - (svg:stemv="<integer>" )? - (svg:stemh="<integer>" )? - (svg:slope="<integer>" )? - (svg:cap-height="<integer>" )? - (svg:x-height="<integer>" )? - (svg:accent-height="<integer>" )? - (svg:ascent="<integer>" )? - (svg:descent="<integer>" )? - (svg:widths="<string>" )? - (svg:bbox="<string>" )? - (svg:ideographic="<integer>" )? - (svg:alphabetic="<integer>" )? - (svg:mathematical="<integer>" )? - (svg:hanging="<integer>" )? - (svg:v-ideographic="<integer>" )? - (svg:v-alphabetic="<integer>" )? - (svg:v-mathematical="<integer>" )? - (svg:v-hanging="<integer>" )? - (svg:underline-position="<integer>" )? - (svg:underline-thickness="<integer>" )? - (svg:strikethrough-position="<integer>" )? - (svg:strikethrough-thickness="<integer>" )? - (svg:overline-position="<integer>" )? - (svg:overline-thickness="<integer>" )? - style:name="<string>" (style:font-adornments="<string>" )? + (svg:unicode-range="#string" )? + (svg:units-per-em="#integer" )? + (svg:panose-1="#string" )? + (svg:stemv="#integer" )? + (svg:stemh="#integer" )? + (svg:slope="#integer" )? + (svg:cap-height="#integer" )? + (svg:x-height="#integer" )? + (svg:accent-height="#integer" )? + (svg:ascent="#integer" )? + (svg:descent="#integer" )? + (svg:widths="#string" )? + (svg:bbox="#string" )? + (svg:ideographic="#integer" )? + (svg:alphabetic="#integer" )? + (svg:mathematical="#integer" )? + (svg:hanging="#integer" )? + (svg:v-ideographic="#integer" )? + (svg:v-alphabetic="#integer" )? + (svg:v-mathematical="#integer" )? + (svg:v-hanging="#integer" )? + (svg:underline-position="#integer" )? + (svg:underline-thickness="#integer" )? + (svg:strikethrough-position="#integer" )? + (svg:strikethrough-thickness="#integer" )? + (svg:overline-position="#integer" )? + (svg:overline-thickness="#integer" )? + style:name="#string" (style:font-adornments="#string" )? (style:font-family-generic="roman | swiss | modern | decorative | script | system" )? (style:font-pitch="fixed | variable" )? (style:font-charset="string]" )? @@ -13462,7 +13462,7 @@

style:footer Element

Child Relations - <style:footer (style:display="<boolean>" )? + <style:footer (style:display="#boolean" )? ( (<text:tracked-changes ... >)? @@ -13526,7 +13526,7 @@

style:footer-first Element ( Child Relations - <style:footer-first (style:display="<boolean>" )? + <style:footer-first (style:display="#boolean" )? ( (<text:tracked-changes ... >)? @@ -13590,7 +13590,7 @@

style:footer-left Element

Child Relations - <style:footer-left (style:display="<boolean>" )? + <style:footer-left (style:display="#boolean" )? ( (<text:tracked-changes ... >)? @@ -13876,39 +13876,39 @@

style:graphic-properties Elemen Child Relations <style:graphic-properties ( (draw:stroke="none | dash | solid" )? - (draw:stroke-dash="(<NCName>)?" )? + (draw:stroke-dash="(#NCName)?" )? (draw:stroke-dash-names=" -START_list(<NCName>)* +START_list(#NCName)* END_list" )? (svg:stroke-width="string]" )? (svg:stroke-color="string]" )? - (draw:marker-start="(<NCName>)?" )? - (draw:marker-end="(<NCName>)?" )? + (draw:marker-start="(#NCName)?" )? + (draw:marker-end="(#NCName)?" )? (draw:marker-start-width="string]" )? (draw:marker-end-width="string]" )? - (draw:marker-start-center="<boolean>" )? - (draw:marker-end-center="<boolean>" )? + (draw:marker-start-center="#boolean" )? + (draw:marker-end-center="#boolean" )? (svg:stroke-opacity="double] | string]" )? (draw:stroke-linejoin="miter | round | bevel | middle | none" )? (svg:stroke-linecap="butt | square | round" )? (draw:symbol-color="string]" )? (text:animation="none | scroll | alternate | slide" )? (text:animation-direction="left | right | up | down" )? - (text:animation-start-inside="<boolean>" )? - (text:animation-stop-inside="<boolean>" )? - (text:animation-repeat="<nonNegativeInteger>" )? - (text:animation-delay="<duration>" )? + (text:animation-start-inside="#boolean" )? + (text:animation-stop-inside="#boolean" )? + (text:animation-repeat="#nonNegativeInteger" )? + (text:animation-delay="#duration" )? (text:animation-steps="string]" )? - (draw:auto-grow-width="<boolean>" )? - (draw:auto-grow-height="<boolean>" )? - (draw:fit-to-size="<boolean>" )? - (draw:fit-to-contour="<boolean>" )? + (draw:auto-grow-width="#boolean" )? + (draw:auto-grow-height="#boolean" )? + (draw:fit-to-size="#boolean" )? + (draw:fit-to-contour="#boolean" )? (draw:textarea-vertical-align="top | middle | bottom | justify" )? (draw:textarea-horizontal-align="left | center | right | justify" )? (fo:wrap-option="no-wrap | wrap" )? - (style:shrink-to-fit="<boolean>" )? + (style:shrink-to-fit="#boolean" )? (draw:color-mode="greyscale | mono | watermark | standard" )? - (draw:color-inversion="<boolean>" )? + (draw:color-inversion="#boolean" )? (draw:luminance="string]" )? (draw:contrast="string]" )? (draw:gamma="string]" )? @@ -13931,30 +13931,30 @@

style:graphic-properties Elemen (draw:start-guide="string]" )? (draw:end-guide="string]" )? (draw:placing="below | above" )? - (draw:parallel="<boolean>" )? + (draw:parallel="#boolean" )? (draw:measure-align="automatic | left-outside | inside | right-outside" )? (draw:measure-vertical-align="automatic | above | below | center" )? (draw:unit="automatic | mm | cm | m | km | pt | pc | inch | ft | mi" )? - (draw:show-unit="<boolean>" )? - (draw:decimal-places="<nonNegativeInteger>" )? + (draw:show-unit="#boolean" )? + (draw:decimal-places="#nonNegativeInteger" )? (draw:caption-type="straight-line | angled-line | angled-connector-line" )? (draw:caption-angle-type="fixed | free" )? - (draw:caption-angle="<string>" )? + (draw:caption-angle="#string" )? (draw:caption-gap="string]" )? (draw:caption-escape-direction="horizontal | vertical | auto" )? (draw:caption-escape="string] | string]" )? (draw:caption-line-length="string]" )? - (draw:caption-fit-line-length="<boolean>" )? - (dr3d:horizontal-segments="<nonNegativeInteger>" )? - (dr3d:vertical-segments="<nonNegativeInteger>" )? + (draw:caption-fit-line-length="#boolean" )? + (dr3d:horizontal-segments="#nonNegativeInteger" )? + (dr3d:vertical-segments="#nonNegativeInteger" )? (dr3d:edge-rounding="string]" )? (dr3d:edge-rounding-mode="correct | attractive" )? (dr3d:back-scale="string]" )? (dr3d:depth="string]" )? (dr3d:backface-culling="enabled | disabled" )? - (dr3d:end-angle="<string>" )? - (dr3d:close-front="<boolean>" )? - (dr3d:close-back="<boolean>" )? + (dr3d:end-angle="#string" )? + (dr3d:close-front="#boolean" )? + (dr3d:close-back="#boolean" )? (dr3d:lighting-mode="standard | double-sided" )? (dr3d:normals-kind="object | flat | sphere" )? (dr3d:normals-direction="normal | inverse" )? @@ -13986,7 +13986,7 @@

style:graphic-properties Elemen ( (fo:margin-top="string] | string]" )? (fo:margin-bottom="string] | string]" )? ) (fo:margin="string] | string]" )? - (style:print-content="<boolean>" )? + (style:print-content="#boolean" )? (style:protect="none | START_list(content | position | size)+ END_list" )? @@ -13998,13 +13998,13 @@

style:graphic-properties Elemen (svg:y="string]" )? ) (style:vertical-rel="page | page-content | frame | frame-content | paragraph | paragraph-content | char | line | baseline | text" )? (text:anchor-type="page | frame | paragraph | char | as-char" )? - (text:anchor-page-number="<positiveInteger>" )? + (text:anchor-page-number="#positiveInteger" )? - ( (fo:border="<string>" )? - (fo:border-top="<string>" )? - (fo:border-bottom="<string>" )? - (fo:border-left="<string>" )? - (fo:border-right="<string>" )? + ( (fo:border="#string" )? + (fo:border-top="#string" )? + (fo:border-bottom="#string" )? + (fo:border-left="#string" )? + (fo:border-right="#string" )? ) ( (style:border-line-width=" START_liststring]string]string] @@ -14027,17 +14027,17 @@

style:graphic-properties Elemen (fo:padding-bottom="string]" )? (fo:padding-left="string]" )? (fo:padding-right="string]" )? - ) (style:shadow="none | <string>" )? + ) (style:shadow="none | #string" )? (fo:background-color="transparent | string]" )? (style:background-transparency="string]" )? - (style:editable="<boolean>" )? + (style:editable="#boolean" )? (style:wrap="none | left | right | parallel | dynamic | run-through | biggest" )? (style:wrap-dynamic-threshold="string]" )? - (style:number-wrapped-paragraphs="no-limit | <positiveInteger>" )? - (style:wrap-contour="<boolean>" )? + (style:number-wrapped-paragraphs="no-limit | #positiveInteger" )? + (style:wrap-contour="#boolean" )? (style:wrap-contour-mode="full | outside" )? (style:run-through="foreground | background" )? - (style:flow-with-text="<boolean>" )? + (style:flow-with-text="#boolean" )? (style:overflow-behavior="clip | auto-create-new-frame" )? (style:mirror="none | vertical | horizontal | horizontal-on-odd | horizontal-on-even | START_listverticalhorizontal | horizontal-on-odd | horizontal-on-even @@ -14047,8 +14047,8 @@

style:graphic-properties Elemen (fo:clip="auto | string]" )? (draw:wrap-influence-on-position="iterative | once-concurrent | once-successive" )? (style:writing-mode="lr-tb | rl-tb | tb-rl | tb-lr | lr | rl | tb | page" )? - (draw:frame-display-scrollbar="<boolean>" )? - (draw:frame-display-border="<boolean>" )? + (draw:frame-display-scrollbar="#boolean" )? + (draw:frame-display-border="#boolean" )? (draw:frame-margin-horizontal="string]" )? (draw:frame-margin-vertical="string]" )? (draw:visible-area-left="string]" )? @@ -14056,15 +14056,15 @@

style:graphic-properties Elemen (draw:visible-area-width="string]" )? (draw:visible-area-height="string]" )? (draw:draw-aspect="content | thumbnail | icon | print-view" )? - (draw:ole-draw-aspect="<nonNegativeInteger>" )? + (draw:ole-draw-aspect="#nonNegativeInteger" )? (draw:fill="none | solid | bitmap | gradient | hatch" )? (draw:fill-color="string]" )? (draw:secondary-fill-color="string]" )? - (draw:fill-gradient-name="(<NCName>)?" )? - (draw:gradient-step-count="<nonNegativeInteger>" )? - (draw:fill-hatch-name="(<NCName>)?" )? - (draw:fill-hatch-solid="<boolean>" )? - (draw:fill-image-name="(<NCName>)?" )? + (draw:fill-gradient-name="(#NCName)?" )? + (draw:gradient-step-count="#nonNegativeInteger" )? + (draw:fill-hatch-name="(#NCName)?" )? + (draw:fill-hatch-solid="#boolean" )? + (draw:fill-image-name="(#NCName)?" )? (style:repeat="no-repeat | repeat | stretch" )? (draw:fill-image-width="string] | string]" )? (draw:fill-image-height="string] | string]" )? @@ -14075,7 +14075,7 @@

style:graphic-properties Elemen START_liststring]horizontal | vertical END_list" )? (draw:opacity="string]" )? - (draw:opacity-name="(<NCName>)?" )? + (draw:opacity-name="(#NCName)?" )? (svg:fill-rule="nonzero | evenodd" )? (<text:list-style ... >)? (<style:background-image ... >)? @@ -14129,11 +14129,11 @@

style:handout-master Element Child Relations - <style:handout-master (presentation:use-header-name="<string>" )? - (presentation:use-footer-name="<string>" )? - (presentation:use-date-time-name="<string>" )? - (presentation:presentation-page-layout-name="(<NCName>)?" )? - style:page-layout-name="(<NCName>)?" (draw:style-name="(<NCName>)?" )? + <style:handout-master (presentation:use-header-name="#string" )? + (presentation:use-footer-name="#string" )? + (presentation:use-date-time-name="#string" )? + (presentation:presentation-page-layout-name="(#NCName)?" )? + style:page-layout-name="(#NCName)?" (draw:style-name="(#NCName)?" )? (<draw:rect ... > | <draw:line ... > | <draw:polyline ... > | <draw:polygon ... > | <draw:regular-polygon ... > | <draw:path ... > | <draw:circle ... > | <draw:ellipse ... > | <draw:g ... > | <draw:page-thumbnail ... > | <draw:frame ... > | <draw:measure ... > | <draw:caption ... > | <draw:connector ... > | <draw:control ... > | <dr3d:scene ... > | <draw:custom-shape ... > | <draw:a ... >)* >  @@ -14185,7 +14185,7 @@

style:header Element

Child Relations - <style:header (style:display="<boolean>" )? + <style:header (style:display="#boolean" )? ( (<text:tracked-changes ... >)? @@ -14249,7 +14249,7 @@

style:header-first Element ( Child Relations - <style:header-first (style:display="<boolean>" )? + <style:header-first (style:display="#boolean" )? ( (<text:tracked-changes ... >)? @@ -14325,11 +14325,11 @@

style:header-footer-prope (fo:margin-bottom="string] | string]" )? ) (fo:margin="string] | string]" )? - ( (fo:border="<string>" )? - (fo:border-top="<string>" )? - (fo:border-bottom="<string>" )? - (fo:border-left="<string>" )? - (fo:border-right="<string>" )? + ( (fo:border="#string" )? + (fo:border-top="#string" )? + (fo:border-bottom="#string" )? + (fo:border-left="#string" )? + (fo:border-right="#string" )? ) ( (style:border-line-width=" START_liststring]string]string] @@ -14353,8 +14353,8 @@

style:header-footer-prope (fo:padding-left="string]" )? (fo:padding-right="string]" )? ) (fo:background-color="transparent | string]" )? - (style:shadow="none | <string>" )? - (style:dynamic-spacing="<boolean>" )? + (style:shadow="none | #string" )? + (style:dynamic-spacing="#boolean" )? (<style:background-image ... >)? )>  @@ -14407,7 +14407,7 @@

style:header-left Element

Child Relations - <style:header-left (style:display="<boolean>" )? + <style:header-left (style:display="#boolean" )? ( (<text:tracked-changes ... >)? @@ -14525,7 +14525,7 @@

style:list-level-properties (text:space-before="string]" )? (text:min-label-width="string]" )? (text:min-label-distance="string]" )? - (style:font-name="<string>" )? + (style:font-name="#string" )? (fo:width="string]" )? (fo:height="string]" )? (style:vertical-rel="page | page-content | frame | frame-content | paragraph | paragraph-content | char | line | baseline | text" )? @@ -14569,7 +14569,7 @@

style:map Element

Child Relations - <style:map style:condition="<string>" style:apply-style-name="(<NCName>)?" (style:base-cell-address="string]" )? + <style:map style:condition="#string" style:apply-style-name="(#NCName)?" (style:base-cell-address="string]" )? >  @@ -14638,9 +14638,9 @@

style:master-page Element

Child Relations - <style:master-page style:name="<NCName>" (style:display-name="<string>" )? - style:page-layout-name="(<NCName>)?" (draw:style-name="(<NCName>)?" )? - (style:next-style-name="(<NCName>)?" )? + <style:master-page style:name="#NCName" (style:display-name="#string" )? + style:page-layout-name="(#NCName)?" (draw:style-name="(#NCName)?" )? + (style:next-style-name="(#NCName)?" )? (<style:header ... > (<style:header-left ... >)? (<style:header-first ... >)? )? @@ -14682,7 +14682,7 @@

style:page-layout Element

Child Relations - <style:page-layout style:name="<NCName>" (style:page-usage="all | left | right | mirrored" )? + <style:page-layout style:name="#NCName" (style:page-usage="all | left | right | mirrored" )? ( (<style:page-layout-properties ... >)? (<style:header-style ... >)? @@ -14772,14 +14772,14 @@

style:page-layout-propertie <style:page-layout-properties ( (fo:page-width="string]" )? (fo:page-height="string]" )? - ( (style:num-format="(1 | i | I | <string>)?" | - (style:num-format="a | A" (style:num-letter-sync="<boolean>" )? + ( (style:num-format="(1 | i | I | #string)?" | + (style:num-format="a | A" (style:num-letter-sync="#boolean" )? ))? )? - ( (style:num-prefix="<string>" )? - (style:num-suffix="<string>" )? - ) (style:paper-tray-name="default | <string>" )? + ( (style:num-prefix="#string" )? + (style:num-suffix="#string" )? + ) (style:paper-tray-name="default | #string" )? (style:print-orientation="portrait | landscape" )? ( (fo:margin-left="string] | string]" )? @@ -14789,11 +14789,11 @@

style:page-layout-propertie (fo:margin-bottom="string] | string]" )? ) (fo:margin="string] | string]" )? - ( (fo:border="<string>" )? - (fo:border-top="<string>" )? - (fo:border-bottom="<string>" )? - (fo:border-left="<string>" )? - (fo:border-right="<string>" )? + ( (fo:border="#string" )? + (fo:border-top="#string" )? + (fo:border-bottom="#string" )? + (fo:border-left="#string" )? + (fo:border-right="#string" )? ) ( (style:border-line-width=" START_liststring]string]string] @@ -14816,31 +14816,31 @@

style:page-layout-propertie (fo:padding-bottom="string]" )? (fo:padding-left="string]" )? (fo:padding-right="string]" )? - ) (style:shadow="none | <string>" )? + ) (style:shadow="none | #string" )? (fo:background-color="transparent | string]" )? - (style:register-truth-ref-style-name="(<NCName>)?" )? + (style:register-truth-ref-style-name="(#NCName)?" )? (style:print=" START_list(headers | grid | annotations | objects | charts | drawings | formulas | zero-values)* END_list" )? (style:print-page-order="ttb | ltr" )? - (style:first-page-number="<positiveInteger> | continue" )? - style:scale-to="string]" | EMPTY | style:scale-to-pages="<positiveInteger>" | - ( (style:scale-to-X="<positiveInteger>" )? - (style:scale-to-Y="<positiveInteger>" )? + (style:first-page-number="#positiveInteger | continue" )? + style:scale-to="string]" | EMPTY | style:scale-to-pages="#positiveInteger" | + ( (style:scale-to-X="#positiveInteger" )? + (style:scale-to-Y="#positiveInteger" )? ) (style:table-centering="horizontal | vertical | both | none" )? (style:footnote-max-height="string]" )? (style:writing-mode="lr-tb | rl-tb | tb-rl | tb-lr | lr | rl | tb | page" )? (style:layout-grid-mode="none | line | both" )? - (style:layout-grid-standard-mode="<boolean>" )? + (style:layout-grid-standard-mode="#boolean" )? (style:layout-grid-base-height="string]" )? (style:layout-grid-ruby-height="string]" )? - (style:layout-grid-lines="<positiveInteger>" )? + (style:layout-grid-lines="#positiveInteger" )? (style:layout-grid-base-width="string]" )? (style:layout-grid-color="string]" )? - (style:layout-grid-ruby-below="<boolean>" )? - (style:layout-grid-print="<boolean>" )? - (style:layout-grid-display="<boolean>" )? - (style:layout-grid-snap-to="<boolean>" )? + (style:layout-grid-ruby-below="#boolean" )? + (style:layout-grid-print="#boolean" )? + (style:layout-grid-display="#boolean" )? + (style:layout-grid-snap-to="#boolean" )? (<style:background-image ... >)? (<style:columns ... >)? (<style:footnote-sep ... >)? @@ -14928,26 +14928,26 @@

style:paragraph-properties El Child Relations <style:paragraph-properties - ( (style:contextual-spacing="<boolean>" )? + ( (style:contextual-spacing="#boolean" )? (fo:line-height="normal | string] | string]" )? (style:line-height-at-least="string]" )? (style:line-spacing="string]" )? - (style:font-independent-line-spacing="<boolean>" )? + (style:font-independent-line-spacing="#boolean" )? (fo:text-align="start | end | left | right | center | justify" )? (fo:text-align-last="start | center | justify" )? - (style:justify-single-word="<boolean>" )? + (style:justify-single-word="#boolean" )? (fo:keep-together="auto | always" )? - (fo:widows="<nonNegativeInteger>" )? - (fo:orphans="<nonNegativeInteger>" )? + (fo:widows="#nonNegativeInteger" )? + (fo:orphans="#nonNegativeInteger" )? (style:tab-stop-distance="string]" )? (fo:hyphenation-keep="auto | page" )? - (fo:hyphenation-ladder-count="no-limit | <positiveInteger>" )? - (style:register-true="<boolean>" )? + (fo:hyphenation-ladder-count="no-limit | #positiveInteger" )? + (style:register-true="#boolean" )? ( (fo:margin-left="string] | string]" )? (fo:margin-right="string] | string]" )? ) (fo:text-indent="string] | string]" )? - (style:auto-text-indent="<boolean>" )? + (style:auto-text-indent="#boolean" )? ( (fo:margin-top="string] | string]" )? (fo:margin-bottom="string] | string]" )? @@ -14957,11 +14957,11 @@

style:paragraph-properties El (fo:break-after="auto | column | page" )? ) (fo:background-color="transparent | string]" )? - ( (fo:border="<string>" )? - (fo:border-top="<string>" )? - (fo:border-bottom="<string>" )? - (fo:border-left="<string>" )? - (fo:border-right="<string>" )? + ( (fo:border="#string" )? + (fo:border-top="#string" )? + (fo:border-bottom="#string" )? + (fo:border-left="#string" )? + (fo:border-right="#string" )? ) ( (style:border-line-width=" START_liststring]string]string] @@ -14978,25 +14978,25 @@

style:paragraph-properties El (style:border-line-width-right=" START_liststring]string]string] END_list" )? - ) (style:join-border="<boolean>" )? + ) (style:join-border="#boolean" )? ( (fo:padding="string]" )? (fo:padding-top="string]" )? (fo:padding-bottom="string]" )? (fo:padding-left="string]" )? (fo:padding-right="string]" )? - ) (style:shadow="none | <string>" )? + ) (style:shadow="none | #string" )? (fo:keep-with-next="auto | always" )? - (text:number-lines="<boolean>" )? - (text:line-number="<nonNegativeInteger>" )? + (text:number-lines="#boolean" )? + (text:line-number="#nonNegativeInteger" )? (style:text-autospace="none | ideograph-alpha" )? (style:punctuation-wrap="simple | hanging" )? (style:line-break="normal | strict" )? (style:vertical-align="top | middle | bottom | auto | baseline" )? (style:writing-mode="lr-tb | rl-tb | tb-rl | tb-lr | lr | rl | tb | page" )? - (style:writing-mode-automatic="<boolean>" )? - (style:snap-to-layout-grid="<boolean>" )? - (style:page-number="<nonNegativeInteger> | auto" )? + (style:writing-mode-automatic="#boolean" )? + (style:snap-to-layout-grid="#boolean" )? + (style:page-number="#nonNegativeInteger | auto" )? (style:background-transparency="string]" )? (<style:tab-stops ... >)? (<style:drop-cap ... >)? @@ -15029,7 +15029,7 @@

style:presentation-page-l Child Relations - <style:presentation-page-layout style:name="<NCName>" (style:display-name="<string>" )? + <style:presentation-page-layout style:name="#NCName" (style:display-name="#string" )? (<presentation:placeholder ... >)* >  @@ -15195,9 +15195,9 @@

style:section-properties Elemen ( (fo:margin-left="string] | string]" )? (fo:margin-right="string] | string]" )? - ) (style:protect="<boolean>" )? - (style:editable="<boolean>" )? - (text:dont-balance-text-columns="<boolean>" )? + ) (style:protect="#boolean" )? + (style:editable="#boolean" )? + (text:dont-balance-text-columns="#boolean" )? (style:writing-mode="lr-tb | rl-tb | tb-rl | tb-lr | lr | rl | tb | page" )? (<style:background-image ... >)? (<style:columns ... >)? @@ -15262,17 +15262,17 @@

style:style Element

Child Relations - <style:style style:name="<NCName>" (style:display-name="<string>" )? - (style:parent-style-name="(<NCName>)?" )? - (style:next-style-name="(<NCName>)?" )? - (style:list-level="(<positiveInteger>)?" )? - (style:list-style-name="(<NCName>)?" )? - (style:master-page-name="(<NCName>)?" )? - (style:auto-update="<boolean>" )? - (style:data-style-name="(<NCName>)?" )? - (style:percentage-data-style-name="(<NCName>)?" )? - (style:class="<string>" )? - (style:default-outline-level="(<positiveInteger>)?" )? + <style:style style:name="#NCName" (style:display-name="#string" )? + (style:parent-style-name="(#NCName)?" )? + (style:next-style-name="(#NCName)?" )? + (style:list-level="(#positiveInteger)?" )? + (style:list-style-name="(#NCName)?" )? + (style:master-page-name="(#NCName)?" )? + (style:auto-update="#boolean" )? + (style:data-style-name="(#NCName)?" )? + (style:percentage-data-style-name="(#NCName)?" )? + (style:class="#string" )? + (style:default-outline-level="(#positiveInteger)?" )? (style:family="text" (<style:text-properties ... >)? ) | @@ -15341,10 +15341,10 @@

style:tab-stop Element (new in O <style:tab-stop style:position="string]" style:type="left | center | right" | EMPTY | (style:type="char" style:char="string]" ) (style:leader-type="none | single | double" )? (style:leader-style="none | solid | dotted | dash | long-dash | dot-dash | dot-dot-dash | wave" )? - (style:leader-width="auto | normal | bold | thin | medium | thick | <positiveInteger> | string] | string]" )? + (style:leader-width="auto | normal | bold | thin | medium | thick | #positiveInteger | string] | string]" )? (style:leader-color="font-color | string]" )? (style:leader-text="string]" )? - (style:leader-text-style="(<NCName>)?" )? + (style:leader-text-style="(#NCName)?" )? >  @@ -15438,19 +15438,19 @@

style:table-cell-properties (style:direction="ltr | ttb" )? (style:glyph-orientation-vertical="auto | 0 | 0deg | 0rad | 0grad" )? (style:writing-mode="lr-tb | rl-tb | tb-rl | tb-lr | lr | rl | tb | page" )? - (style:shadow="none | <string>" )? + (style:shadow="none | #string" )? (fo:background-color="transparent | string]" )? - ( (fo:border="<string>" )? - (fo:border-top="<string>" )? - (fo:border-bottom="<string>" )? - (fo:border-left="<string>" )? - (fo:border-right="<string>" )? - ) (style:diagonal-tl-br="<string>" )? + ( (fo:border="#string" )? + (fo:border-top="#string" )? + (fo:border-bottom="#string" )? + (fo:border-left="#string" )? + (fo:border-right="#string" )? + ) (style:diagonal-tl-br="#string" )? (style:diagonal-tl-br-widths=" START_liststring]string]string] END_list" )? - (style:diagonal-bl-tr="<string>" )? + (style:diagonal-bl-tr="#string" )? (style:diagonal-bl-tr-widths=" START_liststring]string]string] END_list" )? @@ -15477,15 +15477,15 @@

style:table-cell-properties (fo:padding-left="string]" )? (fo:padding-right="string]" )? ) (fo:wrap-option="no-wrap | wrap" )? - (style:rotation-angle="<string>" )? + (style:rotation-angle="#string" )? (style:rotation-align="none | bottom | top | center" )? (style:cell-protect="none | hidden-and-protected | START_list(protected | formula-hidden)+ END_list" )? - (style:print-content="<boolean>" )? - (style:decimal-places="<nonNegativeInteger>" )? - (style:repeat-content="<boolean>" )? - (style:shrink-to-fit="<boolean>" )? + (style:print-content="#boolean" )? + (style:decimal-places="#nonNegativeInteger" )? + (style:repeat-content="#boolean" )? + (style:shrink-to-fit="#boolean" )? (<style:background-image ... >)? )>  @@ -15521,7 +15521,7 @@

style:table-column-propert <style:table-column-properties ( (style:column-width="string]" )? (style:rel-column-width="string]" )? - (style:use-optimal-column-width="<boolean>" )? + (style:use-optimal-column-width="#boolean" )? ( (fo:break-before="auto | column | page" )? (fo:break-after="auto | column | page" )? @@ -15582,17 +15582,17 @@

style:table-properties Element<nonNegativeInteger> | auto" )? + (style:page-number="#nonNegativeInteger | auto" )? ( (fo:break-before="auto | column | page" )? (fo:break-after="auto | column | page" )? ) (fo:background-color="transparent | string]" )? - (style:shadow="none | <string>" )? + (style:shadow="none | #string" )? (fo:keep-with-next="auto | always" )? - (style:may-break-between-rows="<boolean>" )? + (style:may-break-between-rows="#boolean" )? (table:border-model="collapsing | separating" )? (style:writing-mode="lr-tb | rl-tb | tb-rl | tb-lr | lr | rl | tb | page" )? - (table:display="<boolean>" )? + (table:display="#boolean" )? (table:tab-color="string]" )? (<style:background-image ... >)? )>  @@ -15632,7 +15632,7 @@

style:table-row-properties El <style:table-row-properties ( (style:row-height="string]" )? (style:min-row-height="string]" )? - (style:use-optimal-row-height="<boolean>" )? + (style:use-optimal-row-height="#boolean" )? (fo:background-color="transparent | string]" )? ( (fo:break-before="auto | column | page" )? @@ -15765,29 +15765,29 @@

style:text-properties Element< ( (fo:font-variant="normal | small-caps" )? (fo:text-transform="none | lowercase | uppercase | capitalize" )? (fo:color="string]" )? - (style:use-window-font-color="<boolean>" )? - (style:text-outline="<boolean>" )? + (style:use-window-font-color="#boolean" )? + (style:text-outline="#boolean" )? (style:text-line-through-type="none | single | double" )? (style:text-line-through-style="none | solid | dotted | dash | long-dash | dot-dash | dot-dot-dash | wave" )? - (style:text-line-through-width="auto | normal | bold | thin | medium | thick | <positiveInteger> | string] | string]" )? + (style:text-line-through-width="auto | normal | bold | thin | medium | thick | #positiveInteger | string] | string]" )? (style:text-line-through-color="font-color | string]" )? - (style:text-line-through-text="<string>" )? - (style:text-line-through-text-style="(<NCName>)?" )? + (style:text-line-through-text="#string" )? + (style:text-line-through-text-style="(#NCName)?" )? (style:text-position=" START_liststring] | super | sub(string])? END_list" )? - (style:font-name="<string>" )? - (style:font-name-asian="<string>" )? - (style:font-name-complex="<string>" )? - (fo:font-family="<string>" )? - (style:font-family-asian="<string>" )? - (style:font-family-complex="<string>" )? + (style:font-name="#string" )? + (style:font-name-asian="#string" )? + (style:font-name-complex="#string" )? + (fo:font-family="#string" )? + (style:font-family-asian="#string" )? + (style:font-family-complex="#string" )? (style:font-family-generic="roman | swiss | modern | decorative | script | system" )? (style:font-family-generic-asian="roman | swiss | modern | decorative | script | system" )? (style:font-family-generic-complex="roman | swiss | modern | decorative | script | system" )? - (style:font-style-name="<string>" )? - (style:font-style-name-asian="<string>" )? - (style:font-style-name-complex="<string>" )? + (style:font-style-name="#string" )? + (style:font-style-name-asian="#string" )? + (style:font-style-name-complex="#string" )? (style:font-pitch="fixed | variable" )? (style:font-pitch-asian="fixed | variable" )? (style:font-pitch-complex="fixed | variable" )? @@ -15811,21 +15811,21 @@

style:text-properties Element< (fo:script="token]" )? (style:script-asian="token]" )? (style:script-complex="token]" )? - (style:rfc-language-tag="<language>" )? - (style:rfc-language-tag-asian="<language>" )? - (style:rfc-language-tag-complex="<language>" )? + (style:rfc-language-tag="#language" )? + (style:rfc-language-tag-asian="#language" )? + (style:rfc-language-tag-complex="#language" )? (fo:font-style="normal | italic | oblique" )? (style:font-style-asian="normal | italic | oblique" )? (style:font-style-complex="normal | italic | oblique" )? (style:font-relief="none | embossed | engraved" )? - (fo:text-shadow="none | <string>" )? + (fo:text-shadow="none | #string" )? (style:text-underline-type="none | single | double" )? (style:text-underline-style="none | solid | dotted | dash | long-dash | dot-dash | dot-dot-dash | wave" )? - (style:text-underline-width="auto | normal | bold | thin | medium | thick | <positiveInteger> | string] | string]" )? + (style:text-underline-width="auto | normal | bold | thin | medium | thick | #positiveInteger | string] | string]" )? (style:text-underline-color="font-color | string]" )? (style:text-overline-type="none | single | double" )? (style:text-overline-style="none | solid | dotted | dash | long-dash | dot-dash | dot-dot-dash | wave" )? - (style:text-overline-width="auto | normal | bold | thin | medium | thick | <positiveInteger> | string] | string]" )? + (style:text-overline-width="auto | normal | bold | thin | medium | thick | #positiveInteger | string] | string]" )? (style:text-overline-color="font-color | string]" )? (style:text-overline-mode="continuous | skip-white-space" )? (fo:font-weight="normal | bold | 100 | 200 | 300 | 400 | 500 | 600 | 700 | 800 | 900" )? @@ -15833,8 +15833,8 @@

style:text-properties Element< (style:font-weight-complex="normal | bold | 100 | 200 | 300 | 400 | 500 | 600 | 700 | 800 | 900" )? (style:text-underline-mode="continuous | skip-white-space" )? (style:text-line-through-mode="continuous | skip-white-space" )? - (style:letter-kerning="<boolean>" )? - (style:text-blinking="<boolean>" )? + (style:letter-kerning="#boolean" )? + (style:text-blinking="#boolean" )? (fo:background-color="transparent | string]" )? (style:text-combine="none | letters | lines" )? (style:text-combine-start-char="string]" )? @@ -15843,11 +15843,11 @@

style:text-properties Element< START_listnone | accent | dot | circle | discabove | below END_list" )? (style:text-scale="string]" )? - (style:text-rotation-angle="<string>" )? + (style:text-rotation-angle="#string" )? (style:text-rotation-scale="fixed | line-height" )? - (fo:hyphenate="<boolean>" )? - (fo:hyphenation-remain-char-count="<positiveInteger>" )? - (fo:hyphenation-push-char-count="<positiveInteger>" )? + (fo:hyphenate="#boolean" )? + (fo:hyphenation-remain-char-count="#positiveInteger" )? + (fo:hyphenation-push-char-count="#positiveInteger" )? (text:display="true" | text:display="none" | (text:display="condition" text:condition="none" ))? EMPTY)>  @@ -15879,7 +15879,7 @@

svg:definition-src Element

Child Relations <svg:definition-src - (xlink:type="simple" xlink:href="<anyIRI>" (xlink:actuate="onRequest" )? + (xlink:type="simple" xlink:href="#anyIRI" (xlink:actuate="onRequest" )? )>  @@ -15953,7 +15953,7 @@

svg:font-face-format Element Child Relations - <svg:font-face-format (svg:string="<string>" )? + <svg:font-face-format (svg:string="#string" )? >  @@ -15980,7 +15980,7 @@

svg:font-face-name Element

Child Relations - <svg:font-face-name (svg:name="<string>" )? + <svg:font-face-name (svg:name="#string" )? >  @@ -16038,7 +16038,7 @@

svg:font-face-uri Element

Child Relations <svg:font-face-uri - (xlink:type="simple" xlink:href="<anyIRI>" (xlink:actuate="onRequest" )? + (xlink:type="simple" xlink:href="#anyIRI" (xlink:actuate="onRequest" )? )(<svg:font-face-format ... >)* >  @@ -16075,9 +16075,9 @@

svg:linearGradient Element

Child Relations <svg:linearGradient (svg:gradientUnits="objectBoundingBox" )? - (svg:gradientTransform="<string>" )? + (svg:gradientTransform="#string" )? (svg:spreadMethod="pad | reflect | repeat" )? - draw:name="<NCName>" (draw:display-name="<string>" )? + draw:name="#NCName" (draw:display-name="#string" )? (svg:x1="string] | string]" )? (svg:y1="string] | string]" )? (svg:x2="string] | string]" )? @@ -16119,9 +16119,9 @@

svg:radialGradient Element

Child Relations <svg:radialGradient (svg:gradientUnits="objectBoundingBox" )? - (svg:gradientTransform="<string>" )? + (svg:gradientTransform="#string" )? (svg:spreadMethod="pad | reflect | repeat" )? - draw:name="<NCName>" (draw:display-name="<string>" )? + draw:name="#NCName" (draw:display-name="#string" )? (svg:cx="string] | string]" )? (svg:cy="string] | string]" )? (svg:r="string] | string]" )? @@ -16156,8 +16156,8 @@

svg:stop Element

Child Relations - <svg:stop svg:offset="<double> | string]" (svg:stop-color="string]" )? - (svg:stop-opacity="<double>" )? + <svg:stop svg:offset="#double | string]" (svg:stop-color="string]" )? + (svg:stop-opacity="#double" )? >  @@ -16231,7 +16231,7 @@

table:background Element (new Child Relations - <table:background table:style-name="(<NCName>)?" >  + <table:background table:style-name="(#NCName)?" > 
@@ -16259,7 +16259,7 @@

table:body Element (new in ODF 1.2) Child Relations <table:body - (table:style-name="(<NCName>)?" (table:paragraph-style-name="(<NCName>)?" )? + (table:style-name="(#NCName)?" (table:paragraph-style-name="(#NCName)?" )? )>  @@ -16298,13 +16298,13 @@

table:calculation-settings El Child Relations - <table:calculation-settings (table:case-sensitive="<boolean>" )? - (table:precision-as-shown="<boolean>" )? - (table:search-criteria-must-apply-to-whole-cell="<boolean>" )? - (table:automatic-find-labels="<boolean>" )? - (table:use-regular-expressions="<boolean>" )? - (table:use-wildcards="<boolean>" )? - (table:null-year="<positiveInteger>" )? + <table:calculation-settings (table:case-sensitive="#boolean" )? + (table:precision-as-shown="#boolean" )? + (table:search-criteria-must-apply-to-whole-cell="#boolean" )? + (table:automatic-find-labels="#boolean" )? + (table:use-regular-expressions="#boolean" )? + (table:use-wildcards="#boolean" )? + (table:null-year="#positiveInteger" )? (<table:null-date ... >)? (<table:iteration ... >)? >  @@ -16337,7 +16337,7 @@

table:cell-address Element

Child Relations <table:cell-address - (table:column="<integer>" table:row="<integer>" table:table="<integer>" )>  + (table:column="#integer" table:row="#integer" table:table="#integer" )> 
@@ -16370,8 +16370,8 @@

table:cell-content-change Elem Child Relations - <table:cell-content-change table:id="<string>" (table:acceptance-state="accepted | rejected | pending" )? - (table:rejecting-change-id="<string>" )? + <table:cell-content-change table:id="#string" (table:acceptance-state="accepted | rejected | pending" )? + (table:rejecting-change-id="#string" )? <table:cell-address ... ><office:change-info ... > (<table:dependencies ... >)? (<table:deletions ... >)? <table:previous ... >>  @@ -16402,7 +16402,7 @@

table:cell-content-deletion Child Relations - <table:cell-content-deletion (table:id="<string>" )? + <table:cell-content-deletion (table:id="#string" )? (<table:cell-address ... >)? (<table:change-track-table-cell ... >)? >  @@ -16440,10 +16440,10 @@

table:cell-range-source Element< Child Relations - <table:cell-range-source table:name="<string>" table:last-column-spanned="<positiveInteger>" table:last-row-spanned="<positiveInteger>" xlink:type="simple" xlink:href="<anyIRI>" (xlink:actuate="onRequest" )? - (table:filter-name="<string>" )? - (table:filter-options="<string>" )? - (table:refresh-delay="<duration>" )? + <table:cell-range-source table:name="#string" table:last-column-spanned="#positiveInteger" table:last-row-spanned="#positiveInteger" xlink:type="simple" xlink:href="#anyIRI" (xlink:actuate="onRequest" )? + (table:filter-name="#string" )? + (table:filter-options="#string" )? + (table:refresh-delay="#duration" )? >  @@ -16470,7 +16470,7 @@

table:change-deletion Element< Child Relations - <table:change-deletion (table:id="<string>" )? + <table:change-deletion (table:id="#string" )? >  @@ -16517,19 +16517,19 @@

table:change-track-table-c Child Relations <table:change-track-table-cell (table:cell-address="string]" )? - (table:matrix-covered="<boolean>" )? - (table:formula="<string>" )? - (table:number-matrix-columns-spanned="<positiveInteger>" )? - (table:number-matrix-rows-spanned="<positiveInteger>" )? + (table:matrix-covered="#boolean" )? + (table:formula="#string" )? + (table:number-matrix-columns-spanned="#positiveInteger" )? + (table:number-matrix-rows-spanned="#positiveInteger" )? ( - (office:value-type="float" office:value="<double>" ) | - (office:value-type="percentage" office:value="<double>" ) | - (office:value-type="currency" office:value="<double>" (office:currency="<string>" )? + (office:value-type="float" office:value="#double" ) | + (office:value-type="percentage" office:value="#double" ) | + (office:value-type="currency" office:value="#double" (office:currency="#string" )? ) | - (office:value-type="date" office:date-value="<date> | <dateTime>" ) | - (office:value-type="time" office:time-value="<duration>" ) | - (office:value-type="boolean" office:boolean-value="<boolean>" ) | - (office:value-type="string" (office:string-value="<string>" )? + (office:value-type="date" office:date-value="#date | #dateTime" ) | + (office:value-type="time" office:time-value="#duration" ) | + (office:value-type="boolean" office:boolean-value="#boolean" ) | + (office:value-type="string" (office:string-value="#string" )? ))? (<text:p ... >)* >  @@ -16565,8 +16565,8 @@

table:consolidation Element

Child Relations - <table:consolidation table:function="average | count | countnums | max | min | product | stdev | stdevp | sum | var | varp | <string>" table:source-cell-range-addresses="<string>" table:target-cell-address="string]" (table:use-labels="none | row | column | both" )? - (table:link-to-source-data="<boolean>" )? + <table:consolidation table:function="average | count | countnums | max | min | product | stdev | stdevp | sum | var | varp | #string" table:source-cell-range-addresses="#string" table:target-cell-address="string]" (table:use-labels="none | row | column | both" )? + (table:link-to-source-data="#boolean" )? >  @@ -16601,9 +16601,9 @@

table:content-validation Elemen Child Relations - <table:content-validation table:name="<string>" (table:condition="<string>" )? + <table:content-validation table:name="#string" (table:condition="#string" )? (table:base-cell-address="string]" )? - (table:allow-empty-cell="<boolean>" )? + (table:allow-empty-cell="#boolean" )? (table:display-list="none | unsorted | sort-ascending" )? (<table:help-message ... >)? (<table:error-message ... > | @@ -16725,29 +16725,29 @@

table:covered-table-cell Elemen Child Relations - <table:covered-table-cell (table:number-columns-repeated="<positiveInteger>" )? - (table:style-name="(<NCName>)?" )? - (table:content-validation-name="<string>" )? - (table:formula="<string>" )? + <table:covered-table-cell (table:number-columns-repeated="#positiveInteger" )? + (table:style-name="(#NCName)?" )? + (table:content-validation-name="#string" )? + (table:formula="#string" )? ( - (office:value-type="float" office:value="<double>" ) | - (office:value-type="percentage" office:value="<double>" ) | - (office:value-type="currency" office:value="<double>" (office:currency="<string>" )? + (office:value-type="float" office:value="#double" ) | + (office:value-type="percentage" office:value="#double" ) | + (office:value-type="currency" office:value="#double" (office:currency="#string" )? ) | - (office:value-type="date" office:date-value="<date> | <dateTime>" ) | - (office:value-type="time" office:time-value="<duration>" ) | - (office:value-type="boolean" office:boolean-value="<boolean>" ) | - (office:value-type="string" (office:string-value="<string>" )? + (office:value-type="date" office:date-value="#date | #dateTime" ) | + (office:value-type="time" office:time-value="#duration" ) | + (office:value-type="boolean" office:boolean-value="#boolean" ) | + (office:value-type="string" (office:string-value="#string" )? ))? - (table:protect="<boolean>" )? - (table:protected="<boolean>" )? - (xml:id="<ID>" )? + (table:protect="#boolean" )? + (table:protected="#boolean" )? + (xml:id="#ID" )? ( - (xhtml:about="<anyURI> | string]" xhtml:property=" + (xhtml:about="#anyURI | string]" xhtml:property=" START_list(string])+ END_list" ( (xhtml:datatype="string]" )? - (xhtml:content="<string>" )? + (xhtml:content="#string" )? )))? ( (<table:cell-range-source ... >)? @@ -16810,7 +16810,7 @@

table:data-pilot-display-i Child Relations - <table:data-pilot-display-info table:enabled="<boolean>" table:data-field="<string>" table:member-count="<nonNegativeInteger>" table:display-member-mode="from-top | from-bottom" >  + <table:data-pilot-display-info table:enabled="#boolean" table:data-field="#string" table:member-count="#nonNegativeInteger" table:display-member-mode="from-top | from-bottom" > 
@@ -16845,10 +16845,10 @@

table:data-pilot-field Element Child Relations - <table:data-pilot-field table:source-field-name="<string>" table:orientation="row | column | data | hidden" | - (table:orientation="page" table:selected-page="<string>" ) (table:is-data-layout-field="<string>" )? - (table:function="auto | average | count | countnums | max | min | product | stdev | stdevp | sum | var | varp | <string>" )? - (table:used-hierarchy="<integer>" )? + <table:data-pilot-field table:source-field-name="#string" table:orientation="row | column | data | hidden" | + (table:orientation="page" table:selected-page="#string" ) (table:is-data-layout-field="#string" )? + (table:function="auto | average | count | countnums | max | min | product | stdev | stdevp | sum | var | varp | #string" )? + (table:used-hierarchy="#integer" )? (<table:data-pilot-level ... >)? (<table:data-pilot-field-reference ... >)? (<table:data-pilot-groups ... >)? @@ -16882,8 +16882,8 @@

table:data-pilot-field- Child Relations - <table:data-pilot-field-reference table:field-name="<string>" - (table:member-type="named" table:member-name="<string>" ) | table:member-type="previous | next" table:type="none | member-difference | member-percentage | member-percentage-difference | running-total | row-percentage | column-percentage | total-percentage | index" >  + <table:data-pilot-field-reference table:field-name="#string" + (table:member-type="named" table:member-name="#string" ) | table:member-type="previous | next" table:type="none | member-difference | member-percentage | member-percentage-difference | running-total | row-percentage | column-percentage | total-percentage | index" > 
@@ -16910,7 +16910,7 @@

table:data-pilot-group Element Child Relations - <table:data-pilot-group table:name="<string>" (<table:data-pilot-group-member ... >)+ >  + <table:data-pilot-group table:name="#string" (<table:data-pilot-group-member ... >)+ > 
@@ -16936,7 +16936,7 @@

table:data-pilot-group-mem Child Relations - <table:data-pilot-group-member table:name="<string>" >  + <table:data-pilot-group-member table:name="#string" > 
@@ -16969,9 +16969,9 @@

table:data-pilot-groups Element< Child Relations - <table:data-pilot-groups table:source-field-name="<string>" (table:date-start="<date> | <dateTime> | auto" | table:start="<double> | auto" )? - (table:date-end="<date> | <dateTime> | auto" | table:end="<double> | auto" )? - (table:step="<double>" )? + <table:data-pilot-groups table:source-field-name="#string" (table:date-start="#date | #dateTime | auto" | table:start="#double | auto" )? + (table:date-end="#date | #dateTime | auto" | table:end="#double | auto" )? + (table:step="#double" )? (table:grouped-by="seconds | minutes | hours | days | months | quarters | years" )? (<table:data-pilot-group ... >)+ >  @@ -17000,7 +17000,7 @@

table:data-pilot-layout-inf Child Relations - <table:data-pilot-layout-info table:layout-mode="tabular-layout | outline-subtotals-top | outline-subtotals-bottom" table:add-empty-lines="<boolean>" >  + <table:data-pilot-layout-info table:layout-mode="tabular-layout | outline-subtotals-top | outline-subtotals-bottom" table:add-empty-lines="#boolean" > 
@@ -17031,7 +17031,7 @@

table:data-pilot-level Element Child Relations - <table:data-pilot-level (table:show-empty="<boolean>" )? + <table:data-pilot-level (table:show-empty="#boolean" )? (<table:data-pilot-subtotals ... >)? (<table:data-pilot-members ... >)? (<table:data-pilot-display-info ... >)? @@ -17065,8 +17065,8 @@

table:data-pilot-member Element< Child Relations - <table:data-pilot-member table:name="<string>" (table:display="<boolean>" )? - (table:show-details="<boolean>" )? + <table:data-pilot-member table:name="#string" (table:display="#boolean" )? + (table:show-details="#boolean" )? >  @@ -17123,7 +17123,7 @@

table:data-pilot-sort-info El Child Relations <table:data-pilot-sort-info - (table:sort-mode="data" table:data-field="<string>" ) | table:sort-mode="none | manual | name" table:order="ascending | descending" >  + (table:sort-mode="data" table:data-field="#string" ) | table:sort-mode="none | manual | name" table:order="ascending | descending" > 
@@ -17149,7 +17149,7 @@

table:data-pilot-subtotal Elem Child Relations - <table:data-pilot-subtotal table:function="auto | average | count | countnums | max | min | product | stdev | stdevp | sum | var | varp | <string>" >  + <table:data-pilot-subtotal table:function="auto | average | count | countnums | max | min | product | stdev | stdevp | sum | var | varp | #string" > 
@@ -17215,13 +17215,13 @@

table:data-pilot-table Element Child Relations - <table:data-pilot-table table:name="<string>" (table:application-data="<string>" )? + <table:data-pilot-table table:name="#string" (table:application-data="#string" )? (table:grand-total="none | row | column | both" )? - (table:ignore-empty-rows="<boolean>" )? - (table:identify-categories="<boolean>" )? - table:target-range-address="string] | string] | string]" (table:buttons="<string>" )? - (table:show-filter-button="<boolean>" )? - (table:drill-down-on-double-click="<boolean>" )? + (table:ignore-empty-rows="#boolean" )? + (table:identify-categories="#boolean" )? + table:target-range-address="string] | string] | string]" (table:buttons="#string" )? + (table:show-filter-button="#boolean" )? + (table:drill-down-on-double-click="#boolean" )? (<table:database-source-sql ... > | <table:database-source-query ... > | <table:database-source-table ... > | <table:source-service ... > | <table:source-cell-range ... >)? (<table:data-pilot-field ... >)+ >  @@ -17294,15 +17294,15 @@

table:database-range Element Child Relations - <table:database-range (table:name="<string>" )? - (table:is-selection="<boolean>" )? - (table:on-update-keep-styles="<boolean>" )? - (table:on-update-keep-size="<boolean>" )? - (table:has-persistent-data="<boolean>" )? + <table:database-range (table:name="#string" )? + (table:is-selection="#boolean" )? + (table:on-update-keep-styles="#boolean" )? + (table:on-update-keep-size="#boolean" )? + (table:has-persistent-data="#boolean" )? (table:orientation="column | row" )? - (table:contains-header="<boolean>" )? - (table:display-filter-buttons="<boolean>" )? - table:target-range-address="string] | string] | string]" (table:refresh-delay="<boolean>" )? + (table:contains-header="#boolean" )? + (table:display-filter-buttons="#boolean" )? + table:target-range-address="string] | string] | string]" (table:refresh-delay="#boolean" )? (<table:database-source-sql ... > | <table:database-source-query ... > | <table:database-source-table ... >)? (<table:filter ... >)? (<table:sort ... >)? @@ -17365,7 +17365,7 @@

table:database-source-query Child Relations - <table:database-source-query table:database-name="<string>" table:query-name="<string>" >  + <table:database-source-query table:database-name="#string" table:query-name="#string" > 
@@ -17394,7 +17394,7 @@

table:database-source-sql Elem Child Relations - <table:database-source-sql table:database-name="<string>" table:sql-statement="<string>" (table:parse-sql-statement="<boolean>" )? + <table:database-source-sql table:database-name="#string" table:sql-statement="#string" (table:parse-sql-statement="#boolean" )? >  @@ -17423,7 +17423,7 @@

table:database-source-table Child Relations - <table:database-source-table table:database-name="<string>" table:database-table-name="<string>" >  + <table:database-source-table table:database-name="#string" table:database-table-name="#string" > 
@@ -17516,10 +17516,10 @@

table:deletion Element

Child Relations - <table:deletion table:type="row | column | table" table:position="<integer>" (table:table="<integer>" )? - (table:multi-deletion-spanned="<integer>" )? - table:id="<string>" (table:acceptance-state="accepted | rejected | pending" )? - (table:rejecting-change-id="<string>" )? + <table:deletion table:type="row | column | table" table:position="#integer" (table:table="#integer" )? + (table:multi-deletion-spanned="#integer" )? + table:id="#string" (table:acceptance-state="accepted | rejected | pending" )? + (table:rejecting-change-id="#string" )? <office:change-info ... > (<table:dependencies ... >)? (<table:deletions ... >)? (<table:cut-offs ... >)? @@ -17608,7 +17608,7 @@

table:dependency Element

Child Relations - <table:dependency table:id="<string>" >  + <table:dependency table:id="#string" > 
@@ -17688,7 +17688,7 @@

table:error-macro Element

Child Relations - <table:error-macro (table:execute="<boolean>" )? + <table:error-macro (table:execute="#boolean" )? >  @@ -17718,8 +17718,8 @@

table:error-message Element

Child Relations - <table:error-message (table:title="<string>" )? - (table:display="<boolean>" )? + <table:error-message (table:title="#string" )? + (table:display="#boolean" )? (table:message-type="stop | warning | information" )? (<text:p ... >)* >  @@ -17749,7 +17749,7 @@

table:even-columns Element ( Child Relations <table:even-columns - (table:style-name="(<NCName>)?" (table:paragraph-style-name="(<NCName>)?" )? + (table:style-name="(#NCName)?" (table:paragraph-style-name="(#NCName)?" )? )>  @@ -17778,7 +17778,7 @@

table:even-rows Element (new in Child Relations <table:even-rows - (table:style-name="(<NCName>)?" (table:paragraph-style-name="(<NCName>)?" )? + (table:style-name="(#NCName)?" (table:paragraph-style-name="(#NCName)?" )? )>  @@ -17815,7 +17815,7 @@

table:filter Element

<table:filter (table:target-range-address="string] | string] | string]" )? (table:condition-source="self | cell-range" )? (table:condition-source-range-address="string] | string] | string]" )? - (table:display-duplicates="<boolean>" )? + (table:display-duplicates="#boolean" )? <table:filter-condition ... > | <table:filter-and ... > | <table:filter-or ... >>  @@ -17877,7 +17877,7 @@

table:filter-condition Element Child Relations - <table:filter-condition table:field-number="<nonNegativeInteger>" table:value="<string> | <double>" table:operator="<string>" (table:case-sensitive="<string>" )? + <table:filter-condition table:field-number="#nonNegativeInteger" table:value="#string | #double" table:operator="#string" (table:case-sensitive="#string" )? (table:data-type="text | number" )? (<table:filter-set-item ... >)* >  @@ -17933,7 +17933,7 @@

table:filter-set-item Element& Child Relations - <table:filter-set-item table:value="<string>" >  + <table:filter-set-item table:value="#string" > 
@@ -17961,7 +17961,7 @@

table:first-column Element ( Child Relations <table:first-column - (table:style-name="(<NCName>)?" (table:paragraph-style-name="(<NCName>)?" )? + (table:style-name="(#NCName)?" (table:paragraph-style-name="(#NCName)?" )? )>  @@ -17990,7 +17990,7 @@

table:first-row Element (new in Child Relations <table:first-row - (table:style-name="(<NCName>)?" (table:paragraph-style-name="(<NCName>)?" )? + (table:style-name="(#NCName)?" (table:paragraph-style-name="(#NCName)?" )? )>  @@ -18019,8 +18019,8 @@

table:help-message Element

Child Relations - <table:help-message (table:title="<string>" )? - (table:display="<boolean>" )? + <table:help-message (table:title="#string" )? + (table:display="#boolean" )? (<text:p ... >)* >  @@ -18051,8 +18051,8 @@

table:highlighted-range Element< Child Relations <table:highlighted-range (table:cell-range-address="string] | string] | string]" )? - table:direction="from-another-table | to-another-table | from-same-table" (table:contains-error="<boolean>" )? - | table:marked-invalid="<boolean>" >  + table:direction="from-another-table | to-another-table | from-same-table" (table:contains-error="#boolean" )? + | table:marked-invalid="#boolean" > 
@@ -18087,10 +18087,10 @@

table:insertion Element

Child Relations - <table:insertion table:type="row | column | table" table:position="<integer>" (table:count="<positiveInteger>" )? - (table:table="<integer>" )? - table:id="<string>" (table:acceptance-state="accepted | rejected | pending" )? - (table:rejecting-change-id="<string>" )? + <table:insertion table:type="row | column | table" table:position="#integer" (table:count="#positiveInteger" )? + (table:table="#integer" )? + table:id="#string" (table:acceptance-state="accepted | rejected | pending" )? + (table:rejecting-change-id="#string" )? <office:change-info ... > (<table:dependencies ... >)? (<table:deletions ... >)? >  @@ -18120,7 +18120,7 @@

table:insertion-cut-off Element< Child Relations - <table:insertion-cut-off table:id="<string>" table:position="<integer>" >  + <table:insertion-cut-off table:id="#string" table:position="#integer" > 
@@ -18149,8 +18149,8 @@

table:iteration Element

Child Relations <table:iteration (table:status="enable | disable" )? - (table:steps="<positiveInteger>" )? - (table:maximum-difference="<double>" )? + (table:steps="#positiveInteger" )? + (table:maximum-difference="#double" )? >  @@ -18237,7 +18237,7 @@

table:last-column Element (ne Child Relations <table:last-column - (table:style-name="(<NCName>)?" (table:paragraph-style-name="(<NCName>)?" )? + (table:style-name="(#NCName)?" (table:paragraph-style-name="(#NCName)?" )? )>  @@ -18266,7 +18266,7 @@

table:last-row Element (new in O Child Relations <table:last-row - (table:style-name="(<NCName>)?" (table:paragraph-style-name="(<NCName>)?" )? + (table:style-name="(#NCName)?" (table:paragraph-style-name="(#NCName)?" )? )>  @@ -18300,8 +18300,8 @@

table:movement Element

Child Relations - <table:movement table:id="<string>" (table:acceptance-state="accepted | rejected | pending" )? - (table:rejecting-change-id="<string>" )? + <table:movement table:id="#string" (table:acceptance-state="accepted | rejected | pending" )? + (table:rejecting-change-id="#string" )? <table:source-range-address ... ><table:target-range-address ... ><office:change-info ... > (<table:dependencies ... >)? (<table:deletions ... >)? >  @@ -18332,8 +18332,8 @@

table:movement-cut-off Element Child Relations - <table:movement-cut-off table:position="<integer>" | - (table:start-position="<integer>" table:end-position="<integer>" )>  + <table:movement-cut-off table:position="#integer" | + (table:start-position="#integer" table:end-position="#integer" )> 
@@ -18362,7 +18362,7 @@

table:named-expression Element Child Relations <table:named-expression - (table:name="<string>" table:expression="<string>" (table:base-cell-address="string]" )? + (table:name="#string" table:expression="#string" (table:base-cell-address="string]" )? )>  @@ -18425,7 +18425,7 @@

table:named-range Element

Child Relations <table:named-range - (table:name="<string>" table:cell-range-address="string] | string] | string]" (table:base-cell-address="string]" )? + (table:name="#string" table:cell-range-address="string] | string] | string]" (table:base-cell-address="string]" )? (table:range-usable-as="none | START_list(print-range | filter | repeat-row | repeat-column)+ END_list" )? @@ -18457,7 +18457,7 @@

table:null-date Element

Child Relations <table:null-date (table:value-type="date" )? - (table:date-value="<date>" )? + (table:date-value="#date" )? >  @@ -18486,7 +18486,7 @@

table:odd-columns Element (ne Child Relations <table:odd-columns - (table:style-name="(<NCName>)?" (table:paragraph-style-name="(<NCName>)?" )? + (table:style-name="(#NCName)?" (table:paragraph-style-name="(#NCName)?" )? )>  @@ -18515,7 +18515,7 @@

table:odd-rows Element (new in O Child Relations <table:odd-rows - (table:style-name="(<NCName>)?" (table:paragraph-style-name="(<NCName>)?" )? + (table:style-name="(#NCName)?" (table:paragraph-style-name="(#NCName)?" )? )>  @@ -18543,7 +18543,7 @@

table:operation Element

Child Relations - <table:operation table:name="trace-dependents | remove-dependents | trace-precedents | remove-precedents | trace-errors" table:index="<nonNegativeInteger>" >  + <table:operation table:name="trace-dependents | remove-dependents | trace-precedents | remove-precedents | trace-errors" table:index="#nonNegativeInteger" > 
@@ -18570,7 +18570,7 @@

table:previous Element

Child Relations - <table:previous (table:id="<string>" )? + <table:previous (table:id="#string" )? <table:change-track-table-cell ... >>  @@ -18605,13 +18605,13 @@

table:scenario Element

Child Relations - <table:scenario table:scenario-ranges="<string>" table:is-active="<boolean>" (table:display-border="<boolean>" )? + <table:scenario table:scenario-ranges="#string" table:is-active="#boolean" (table:display-border="#boolean" )? (table:border-color="string]" )? - (table:copy-back="<boolean>" )? - (table:copy-styles="<boolean>" )? - (table:copy-formulas="<boolean>" )? - (table:comment="<string>" )? - (table:protected="<boolean>" )? + (table:copy-back="#boolean" )? + (table:copy-styles="#boolean" )? + (table:copy-formulas="#boolean" )? + (table:comment="#string" )? + (table:protected="#boolean" )? >  @@ -18690,14 +18690,14 @@

table:sort Element

Child Relations - <table:sort (table:bind-styles-to-content="<boolean>" )? + <table:sort (table:bind-styles-to-content="#boolean" )? (table:target-range-address="string] | string] | string]" )? - (table:case-sensitive="<boolean>" )? + (table:case-sensitive="#boolean" )? (table:language="token]" )? (table:country="token]" )? (table:script="token]" )? - (table:rfc-language-tag="<language>" )? - (table:algorithm="<string>" )? + (table:rfc-language-tag="#language" )? + (table:algorithm="#string" )? (table:embedded-number-behavior="alpha-numeric | integer | double" )? (<table:sort-by ... >)+ >  @@ -18727,7 +18727,7 @@

table:sort-by Element

Child Relations - <table:sort-by table:field-number="<nonNegativeInteger>" (table:data-type="text | number | automatic | <string>" )? + <table:sort-by table:field-number="#nonNegativeInteger" (table:data-type="text | number | automatic | #string" )? (table:order="ascending | descending" )? >  @@ -18756,7 +18756,7 @@

table:sort-groups Element

Child Relations - <table:sort-groups (table:data-type="text | number | automatic | <string>" )? + <table:sort-groups (table:data-type="text | number | automatic | #string" )? (table:order="ascending | descending" )? >  @@ -18787,7 +18787,7 @@

table:source-cell-range Element< Child Relations <table:source-cell-range table:cell-range-address="string] | string] | string]" | - (table:name="<string>" (table:cell-range-address="string] | string] | string]" )? + (table:name="#string" (table:cell-range-address="string] | string] | string]" )? ) (<table:filter ... >)? >  @@ -18824,8 +18824,8 @@

table:source-range-address El Child Relations <table:source-range-address - (table:column="<integer>" table:row="<integer>" table:table="<integer>" ) | - (table:start-column="<integer>" table:start-row="<integer>" table:start-table="<integer>" table:end-column="<integer>" table:end-row="<integer>" table:end-table="<integer>" )>  + (table:column="#integer" table:row="#integer" table:table="#integer" ) | + (table:start-column="#integer" table:start-row="#integer" table:start-table="#integer" table:end-column="#integer" table:end-row="#integer" table:end-table="#integer" )> 
@@ -18855,8 +18855,8 @@

table:source-service Element Child Relations - <table:source-service table:name="<string>" table:source-name="<string>" table:object-name="<string>" (table:user-name="<string>" )? - (table:password="<string>" )? + <table:source-service table:name="#string" table:source-name="#string" table:object-name="#string" (table:user-name="#string" )? + (table:password="#string" )? >  @@ -18884,7 +18884,7 @@

table:subtotal-field Element Child Relations - <table:subtotal-field table:field-number="<nonNegativeInteger>" table:function="average | count | countnums | max | min | product | stdev | stdevp | sum | var | varp | <string>" >  + <table:subtotal-field table:field-number="#nonNegativeInteger" table:function="average | count | countnums | max | min | product | stdev | stdevp | sum | var | varp | #string" > 
@@ -18911,7 +18911,7 @@

table:subtotal-rule Element

Child Relations - <table:subtotal-rule table:group-by-field-number="<nonNegativeInteger>" (<table:subtotal-field ... >)* >  + <table:subtotal-rule table:group-by-field-number="#nonNegativeInteger" (<table:subtotal-field ... >)* > 
@@ -18941,9 +18941,9 @@

table:subtotal-rules Element Child Relations - <table:subtotal-rules (table:bind-styles-to-content="<boolean>" )? - (table:case-sensitive="<boolean>" )? - (table:page-breaks-on-group-change="<boolean>" )? + <table:subtotal-rules (table:bind-styles-to-content="#boolean" )? + (table:case-sensitive="#boolean" )? + (table:page-breaks-on-group-change="#boolean" )? (<table:sort-groups ... >)? (<table:subtotal-rule ... >)* >  @@ -19021,22 +19021,22 @@

table:table Element

Child Relations - <table:table (table:name="<string>" )? - (table:style-name="(<NCName>)?" )? - (table:template-name="<string>" )? - (table:use-first-row-styles="<boolean>" )? - (table:use-last-row-styles="<boolean>" )? - (table:use-first-column-styles="<boolean>" )? - (table:use-last-column-styles="<boolean>" )? - (table:use-banding-rows-styles="<boolean>" )? - (table:use-banding-columns-styles="<boolean>" )? - (table:protected="<boolean>" )? - (table:protection-key="<string>" )? - (table:protection-key-digest-algorithm="<anyIRI>" )? - (table:print="<boolean>" )? - (table:print-ranges="<string>" )? - (xml:id="<ID>" )? - (table:is-sub-table="<boolean>" )? + <table:table (table:name="#string" )? + (table:style-name="(#NCName)?" )? + (table:template-name="#string" )? + (table:use-first-row-styles="#boolean" )? + (table:use-last-row-styles="#boolean" )? + (table:use-first-column-styles="#boolean" )? + (table:use-last-column-styles="#boolean" )? + (table:use-banding-rows-styles="#boolean" )? + (table:use-banding-columns-styles="#boolean" )? + (table:protected="#boolean" )? + (table:protection-key="#string" )? + (table:protection-key-digest-algorithm="#anyIRI" )? + (table:print="#boolean" )? + (table:print-ranges="#string" )? + (xml:id="#ID" )? + (table:is-sub-table="#boolean" )? (<table:title ... >)? (<table:desc ... >)? (<table:table-source ... >)? @@ -19150,34 +19150,34 @@

table:table-cell Element

Child Relations - <table:table-cell (table:number-columns-repeated="<positiveInteger>" )? - (table:style-name="(<NCName>)?" )? - (table:content-validation-name="<string>" )? - (table:formula="<string>" )? + <table:table-cell (table:number-columns-repeated="#positiveInteger" )? + (table:style-name="(#NCName)?" )? + (table:content-validation-name="#string" )? + (table:formula="#string" )? ( - (office:value-type="float" office:value="<double>" ) | - (office:value-type="percentage" office:value="<double>" ) | - (office:value-type="currency" office:value="<double>" (office:currency="<string>" )? + (office:value-type="float" office:value="#double" ) | + (office:value-type="percentage" office:value="#double" ) | + (office:value-type="currency" office:value="#double" (office:currency="#string" )? ) | - (office:value-type="date" office:date-value="<date> | <dateTime>" ) | - (office:value-type="time" office:time-value="<duration>" ) | - (office:value-type="boolean" office:boolean-value="<boolean>" ) | - (office:value-type="string" (office:string-value="<string>" )? + (office:value-type="date" office:date-value="#date | #dateTime" ) | + (office:value-type="time" office:time-value="#duration" ) | + (office:value-type="boolean" office:boolean-value="#boolean" ) | + (office:value-type="string" (office:string-value="#string" )? ))? - (table:protect="<boolean>" )? - (table:protected="<boolean>" )? - (xml:id="<ID>" )? + (table:protect="#boolean" )? + (table:protected="#boolean" )? + (xml:id="#ID" )? ( - (xhtml:about="<anyURI> | string]" xhtml:property=" + (xhtml:about="#anyURI | string]" xhtml:property=" START_list(string])+ END_list" ( (xhtml:datatype="string]" )? - (xhtml:content="<string>" )? + (xhtml:content="#string" )? )))? - (table:number-columns-spanned="<positiveInteger>" )? - (table:number-rows-spanned="<positiveInteger>" )? - (table:number-matrix-columns-spanned="<positiveInteger>" )? - (table:number-matrix-rows-spanned="<positiveInteger>" )? + (table:number-columns-spanned="#positiveInteger" )? + (table:number-rows-spanned="#positiveInteger" )? + (table:number-matrix-columns-spanned="#positiveInteger" )? + (table:number-matrix-rows-spanned="#positiveInteger" )? ( (<table:cell-range-source ... >)? (<office:annotation ... >)? @@ -19215,11 +19215,11 @@

table:table-column Element

Child Relations - <table:table-column (table:number-columns-repeated="<positiveInteger>" )? - (table:style-name="(<NCName>)?" )? + <table:table-column (table:number-columns-repeated="#positiveInteger" )? + (table:style-name="(#NCName)?" )? (table:visibility="visible | collapse | filter" )? - (table:default-cell-style-name="(<NCName>)?" )? - (xml:id="<ID>" )? + (table:default-cell-style-name="(#NCName)?" )? + (xml:id="#ID" )? >  @@ -19251,7 +19251,7 @@

table:table-column-group Elemen Child Relations - <table:table-column-group (table:display="<boolean>" )? + <table:table-column-group (table:display="#boolean" )? (<table:table-column-group ... > | (<table:table-columns ... > | (<table:table-column ... >)+ (<table:table-header-columns ... > (<table:table-columns ... > | (<table:table-column ... >)+ )? )? @@ -19375,11 +19375,11 @@

table:table-row Element

Child Relations - <table:table-row (table:number-rows-repeated="<positiveInteger>" )? - (table:style-name="(<NCName>)?" )? - (table:default-cell-style-name="(<NCName>)?" )? + <table:table-row (table:number-rows-repeated="#positiveInteger" )? + (table:style-name="(#NCName)?" )? + (table:default-cell-style-name="(#NCName)?" )? (table:visibility="visible | collapse | filter" )? - (xml:id="<ID>" )? + (xml:id="#ID" )? (<table:table-cell ... > | <table:covered-table-cell ... >)+ >  @@ -19412,7 +19412,7 @@

table:table-row-group Element< Child Relations - <table:table-row-group (table:display="<boolean>" )? + <table:table-row-group (table:display="#boolean" )? (<table:table-row-group ... > | (<table:table-rows ... > | ( (<text:soft-page-break ... >)? <table:table-row ... >)+ (<table:table-header-rows ... > (<table:table-rows ... > | ( (<text:soft-page-break ... >)? @@ -19484,11 +19484,11 @@

table:table-source Element

Child Relations <table:table-source (table:mode="copy-all | copy-results-only" )? - (table:table-name="<string>" )? - xlink:type="simple" xlink:href="<anyIRI>" (xlink:actuate="onRequest" )? - (table:filter-name="<string>" )? - (table:filter-options="<string>" )? - (table:refresh-delay="<duration>" )? + (table:table-name="#string" )? + xlink:type="simple" xlink:href="#anyIRI" (xlink:actuate="onRequest" )? + (table:filter-name="#string" )? + (table:filter-options="#string" )? + (table:refresh-delay="#duration" )? >  @@ -19529,7 +19529,7 @@

table:table-template Element&nb Child Relations - <table:table-template table:name="<string>" table:first-row-start-column="row | column" table:first-row-end-column="row | column" table:last-row-start-column="row | column" table:last-row-end-column="row | column" (<table:first-row ... >)? + <table:table-template table:name="#string" table:first-row-start-column="row | column" table:first-row-end-column="row | column" table:last-row-start-column="row | column" table:last-row-end-column="row | column" (<table:first-row ... >)? (<table:last-row ... >)? (<table:first-column ... >)? (<table:last-column ... >)? @@ -19573,8 +19573,8 @@

table:target-range-address El Child Relations <table:target-range-address - (table:column="<integer>" table:row="<integer>" table:table="<integer>" ) | - (table:start-column="<integer>" table:start-row="<integer>" table:start-table="<integer>" table:end-column="<integer>" table:end-row="<integer>" table:end-table="<integer>" )>  + (table:column="#integer" table:row="#integer" table:table="#integer" ) | + (table:start-column="#integer" table:start-row="#integer" table:start-table="#integer" table:end-column="#integer" table:end-row="#integer" table:end-table="#integer" )> 
@@ -19630,7 +19630,7 @@

table:tracked-changes Element< Child Relations - <table:tracked-changes (table:track-changes="<boolean>" )? + <table:tracked-changes (table:track-changes="#boolean" )? (<table:cell-content-change ... > | <table:insertion ... > | <table:deletion ... > | <table:movement ... >)* >  @@ -19800,13 +19800,13 @@

text:a Element

Child Relations - <text:a (office:name="<string>" )? - (office:title="<string>" )? - xlink:type="simple" xlink:href="<anyIRI>" (xlink:actuate="onRequest" )? - (office:target-frame-name="_self | _blank | _parent | _top | <string>" )? + <text:a (office:name="#string" )? + (office:title="#string" )? + xlink:type="simple" xlink:href="#anyIRI" (xlink:actuate="onRequest" )? + (office:target-frame-name="_self | _blank | _parent | _top | #string" )? (xlink:show="new | replace" )? - (text:style-name="(<NCName>)?" )? - (text:visited-style-name="(<NCName>)?" )? + (text:style-name="(#NCName)?" )? + (text:visited-style-name="(#NCName)?" )? (<office:event-listeners ... >)? (TEXT | <text:s ... > | <text:tab ... > | <text:line-break ... > | <text:soft-page-break ... > | <text:span ... > | <text:meta ... > | <text:bookmark ... > | <text:bookmark-start ... > | <text:bookmark-end ... > | <text:reference-mark ... > | <text:reference-mark-start ... > | <text:reference-mark-end ... > | <text:note ... > | <text:ruby ... > | <office:annotation ... > | <office:annotation-end ... > | <text:change ... > | <text:change-start ... > | <text:change-end ... > | <draw:rect ... > | <draw:line ... > | <draw:polyline ... > | <draw:polygon ... > | <draw:regular-polygon ... > | <draw:path ... > | <draw:circle ... > | <draw:ellipse ... > | <draw:g ... > | <draw:page-thumbnail ... > | <draw:frame ... > | <draw:measure ... > | <draw:caption ... > | <draw:connector ... > | <draw:control ... > | <dr3d:scene ... > | <draw:custom-shape ... > | <draw:a ... > | <text:date ... > | <text:time ... > | <text:page-number ... > | <text:page-continuation ... > | <text:sender-firstname ... > | <text:sender-lastname ... > | <text:sender-initials ... > | <text:sender-title ... > | <text:sender-position ... > | <text:sender-email ... > | <text:sender-phone-private ... > | <text:sender-fax ... > | <text:sender-company ... > | <text:sender-phone-work ... > | <text:sender-street ... > | <text:sender-city ... > | <text:sender-postal-code ... > | <text:sender-country ... > | <text:sender-state-or-province ... > | <text:author-name ... > | <text:author-initials ... > | <text:chapter ... > | <text:file-name ... > | <text:template-name ... > | <text:sheet-name ... > | <text:variable-set ... > | <text:variable-get ... > | <text:variable-input ... > | <text:user-field-get ... > | <text:user-field-input ... > | <text:sequence ... > | <text:expression ... > | <text:text-input ... > | <text:drop-down ... > | <text:initial-creator ... > | <text:creation-date ... > | <text:creation-time ... > | <text:description ... > | <text:user-defined ... > | <text:print-time ... > | <text:print-date ... > | <text:printed-by ... > | <text:title ... > | <text:subject ... > | <text:keywords ... > | <text:editing-cycles ... > | <text:editing-duration ... > | <text:modification-time ... > | <text:modification-date ... > | <text:creator ... > | <CHOICE_NAME_CLASS ... > | <text:database-display ... > | <text:database-next ... > | <text:database-row-select ... > | <text:database-row-number ... > | <text:database-name ... > | <text:page-variable-set ... > | <text:page-variable-get ... > | <text:placeholder ... > | <text:conditional-text ... > | <text:hidden-text ... > | <CHOICE_NAME_CLASS ... > | <text:note-ref ... > | <text:sequence-ref ... > | <text:script ... > | <text:execute-macro ... > | <text:hidden-paragraph ... > | <text:dde-connection ... > | <text:measure ... > | <text:table-formula ... > | <text:meta-field ... > | <text:toc-mark-start ... > | <text:toc-mark-end ... > | <text:toc-mark ... > | <text:user-index-mark-start ... > | <text:user-index-mark-end ... > | <text:user-index-mark ... > | <text:alphabetical-index-mark-start ... > | <text:alphabetical-index-mark-end ... > | <text:alphabetical-index-mark ... > | <text:bibliography-mark ... > | <presentation:header ... > | <presentation:footer ... > | <presentation:date-time ... >)+ >  @@ -19855,11 +19855,11 @@

text:alphabetical-index Element< Child Relations - <text:alphabetical-index (text:style-name="(<NCName>)?" )? - text:name="<string>" (text:protected="<boolean>" )? - (text:protection-key="<string>" )? - (text:protection-key-digest-algorithm="<anyIRI>" )? - (xml:id="<ID>" )? + <text:alphabetical-index (text:style-name="(#NCName)?" )? + text:name="#string" (text:protected="#boolean" )? + (text:protection-key="#string" )? + (text:protection-key-digest-algorithm="#anyIRI" )? + (xml:id="#ID" )? <text:alphabetical-index-source ... ><text:index-body ... >>  @@ -19897,7 +19897,7 @@

text:alphabetical Child Relations - <text:alphabetical-index-auto-mark-file xlink:type="simple" xlink:href="<anyIRI>" >  + <text:alphabetical-index-auto-mark-file xlink:type="simple" xlink:href="#anyIRI" > 
@@ -19929,7 +19929,7 @@

text:alphabetical Child Relations - <text:alphabetical-index-entry-template text:outline-level="1 | 2 | 3 | separator" text:style-name="(<NCName>)?" (<text:index-entry-chapter ... > | <text:index-entry-page-number ... > | <text:index-entry-text ... > | <text:index-entry-span ... > | <text:index-entry-tab-stop ... >)* >  + <text:alphabetical-index-entry-template text:outline-level="1 | 2 | 3 | separator" text:style-name="(#NCName)?" (<text:index-entry-chapter ... > | <text:index-entry-page-number ... > | <text:index-entry-text ... > | <text:index-entry-span ... > | <text:index-entry-tab-stop ... >)* > 
@@ -19967,12 +19967,12 @@

text:alphabetical-index-mar Child Relations - <text:alphabetical-index-mark text:string-value="<string>" (text:key1="<string>" )? - (text:key2="<string>" )? - (text:string-value-phonetic="<string>" )? - (text:key1-phonetic="<string>" )? - (text:key2-phonetic="<string>" )? - (text:main-entry="<boolean>" )? + <text:alphabetical-index-mark text:string-value="#string" (text:key1="#string" )? + (text:key2="#string" )? + (text:string-value-phonetic="#string" )? + (text:key1-phonetic="#string" )? + (text:key2-phonetic="#string" )? + (text:main-entry="#boolean" )? >  @@ -20005,7 +20005,7 @@

text:alphabetical-index Child Relations - <text:alphabetical-index-mark-end text:id="<string>" >  + <text:alphabetical-index-mark-end text:id="#string" > 
@@ -20043,12 +20043,12 @@

text:alphabetical-ind Child Relations - <text:alphabetical-index-mark-start text:id="<string>" (text:key1="<string>" )? - (text:key2="<string>" )? - (text:string-value-phonetic="<string>" )? - (text:key1-phonetic="<string>" )? - (text:key2-phonetic="<string>" )? - (text:main-entry="<boolean>" )? + <text:alphabetical-index-mark-start text:id="#string" (text:key1="#string" )? + (text:key2="#string" )? + (text:string-value-phonetic="#string" )? + (text:key1-phonetic="#string" )? + (text:key2-phonetic="#string" )? + (text:main-entry="#boolean" )? >  @@ -20093,21 +20093,21 @@

text:alphabetical-index-s Child Relations <text:alphabetical-index-source (text:index-scope="document | chapter" )? - (text:relative-tab-stop-position="<boolean>" )? - (text:ignore-case="<boolean>" )? - (text:main-entry-style-name="(<NCName>)?" )? - (text:alphabetical-separators="<boolean>" )? - (text:combine-entries="<boolean>" )? - (text:combine-entries-with-dash="<boolean>" )? - (text:combine-entries-with-pp="<boolean>" )? - (text:use-keys-as-entries="<boolean>" )? - (text:capitalize-entries="<boolean>" )? - (text:comma-separated="<boolean>" )? + (text:relative-tab-stop-position="#boolean" )? + (text:ignore-case="#boolean" )? + (text:main-entry-style-name="(#NCName)?" )? + (text:alphabetical-separators="#boolean" )? + (text:combine-entries="#boolean" )? + (text:combine-entries-with-dash="#boolean" )? + (text:combine-entries-with-pp="#boolean" )? + (text:use-keys-as-entries="#boolean" )? + (text:capitalize-entries="#boolean" )? + (text:comma-separated="#boolean" )? (fo:language="token]" )? (fo:country="token]" )? (fo:script="token]" )? - (style:rfc-language-tag="<language>" )? - (text:sort-algorithm="<string>" )? + (style:rfc-language-tag="#language" )? + (text:sort-algorithm="#string" )? (<text:index-title-template ... >)? (<text:alphabetical-index-entry-template ... >)* >  @@ -20142,7 +20142,7 @@

text:author-initials Element Child Relations - <text:author-initials (text:fixed="<boolean>" )? + <text:author-initials (text:fixed="#boolean" )? TEXT>  @@ -20176,7 +20176,7 @@

text:author-name Element

Child Relations - <text:author-name (text:fixed="<boolean>" )? + <text:author-name (text:fixed="#boolean" )? TEXT>  @@ -20224,11 +20224,11 @@

text:bibliography Element

Child Relations - <text:bibliography (text:style-name="(<NCName>)?" )? - text:name="<string>" (text:protected="<boolean>" )? - (text:protection-key="<string>" )? - (text:protection-key-digest-algorithm="<anyIRI>" )? - (xml:id="<ID>" )? + <text:bibliography (text:style-name="(#NCName)?" )? + text:name="#string" (text:protected="#boolean" )? + (text:protection-key="#string" )? + (text:protection-key-digest-algorithm="#anyIRI" )? + (xml:id="#ID" )? <text:bibliography-source ... ><text:index-body ... >>  @@ -20264,15 +20264,15 @@

text:bibliography-config Child Relations - <text:bibliography-configuration (text:prefix="<string>" )? - (text:suffix="<string>" )? - (text:numbered-entries="<boolean>" )? - (text:sort-by-position="<boolean>" )? + <text:bibliography-configuration (text:prefix="#string" )? + (text:suffix="#string" )? + (text:numbered-entries="#boolean" )? + (text:sort-by-position="#boolean" )? (fo:language="token]" )? (fo:country="token]" )? (fo:script="token]" )? - (style:rfc-language-tag="<language>" )? - (text:sort-algorithm="<string>" )? + (style:rfc-language-tag="#language" )? + (text:sort-algorithm="#string" )? (<text:sort-key ... >)* >  @@ -20303,7 +20303,7 @@

text:bibliography-entry Child Relations - <text:bibliography-entry-template text:bibliography-type="article | book | booklet | conference | custom1 | custom2 | custom3 | custom4 | custom5 | email | inbook | incollection | inproceedings | journal | manual | mastersthesis | misc | phdthesis | proceedings | techreport | unpublished | www" text:style-name="(<NCName>)?" (<text:index-entry-span ... > | <text:index-entry-tab-stop ... > | <text:index-entry-bibliography ... >)* >  + <text:bibliography-entry-template text:bibliography-type="article | book | booklet | conference | custom1 | custom2 | custom3 | custom4 | custom5 | email | inbook | incollection | inproceedings | journal | manual | mastersthesis | misc | phdthesis | proceedings | techreport | unpublished | www" text:style-name="(#NCName)?" (<text:index-entry-span ... > | <text:index-entry-tab-stop ... > | <text:index-entry-bibliography ... >)* > 
@@ -20367,7 +20367,7 @@

text:bibliography-mark Element Child Relations - <text:bibliography-mark text:bibliography-type="article | book | booklet | conference | custom1 | custom2 | custom3 | custom4 | custom5 | email | inbook | incollection | inproceedings | journal | manual | mastersthesis | misc | phdthesis | proceedings | techreport | unpublished | www" (CHOICE_NAME_CLASS="<string>" )* TEXT>  + <text:bibliography-mark text:bibliography-type="article | book | booklet | conference | custom1 | custom2 | custom3 | custom4 | custom5 | email | inbook | incollection | inproceedings | journal | manual | mastersthesis | misc | phdthesis | proceedings | techreport | unpublished | www" (CHOICE_NAME_CLASS="#string" )* TEXT> 
@@ -20428,7 +20428,7 @@

text:bookmark Element

Child Relations - <text:bookmark text:name="<string>" (xml:id="<ID>" )? + <text:bookmark text:name="#string" (xml:id="#ID" )? >  @@ -20461,7 +20461,7 @@

text:bookmark-end Element

Child Relations - <text:bookmark-end text:name="<string>" >  + <text:bookmark-end text:name="#string" > 
@@ -20495,7 +20495,7 @@

text:bookmark-ref Element

Child Relations - <CHOICE_NAME_CLASS TEXT (text:ref-name="<string>" )? + <CHOICE_NAME_CLASS TEXT (text:ref-name="#string" )? (text:reference-format="page | chapter | direction | text | number-no-superior | number-all-superior | number" )? >  @@ -20534,13 +20534,13 @@

text:bookmark-start Element

Child Relations - <text:bookmark-start text:name="<string>" (xml:id="<ID>" )? + <text:bookmark-start text:name="#string" (xml:id="#ID" )? ( - (xhtml:about="<anyURI> | string]" xhtml:property=" + (xhtml:about="#anyURI | string]" xhtml:property=" START_list(string])+ END_list" ( (xhtml:datatype="string]" )? - (xhtml:content="<string>" )? + (xhtml:content="#string" )? )))? >  @@ -20589,7 +20589,7 @@

text:change Element

Child Relations - <text:change text:change-id="<IDREF>" >  + <text:change text:change-id="#IDREF" > 
@@ -20636,7 +20636,7 @@

text:change-end Element

Child Relations - <text:change-end text:change-id="<IDREF>" >  + <text:change-end text:change-id="#IDREF" > 
@@ -20683,7 +20683,7 @@

text:change-start Element

Child Relations - <text:change-start text:change-id="<IDREF>" >  + <text:change-start text:change-id="#IDREF" > 
@@ -20714,7 +20714,7 @@

text:changed-region Element

Child Relations <text:changed-region - (xml:id="<ID>" (text:id="<NCName>" )? + (xml:id="#ID" (text:id="#NCName" )? )<text:insertion ... > | <text:deletion ... > | <text:format-change ... >>  @@ -20749,7 +20749,7 @@

text:chapter Element

Child Relations - <text:chapter text:display="name | number | number-and-name | plain-number-and-name | plain-number" text:outline-level="<nonNegativeInteger>" TEXT>  + <text:chapter text:display="name | number | number-and-name | plain-number-and-name | plain-number" text:outline-level="#nonNegativeInteger" TEXT> 
@@ -20784,8 +20784,8 @@

text:character-count Element Child Relations - <CHOICE_NAME_CLASS ( (style:num-format="(1 | i | I | <string>)?" | - (style:num-format="a | A" (style:num-letter-sync="<boolean>" )? + <CHOICE_NAME_CLASS ( (style:num-format="(1 | i | I | #string)?" | + (style:num-format="a | A" (style:num-letter-sync="#boolean" )? ))? )? TEXT>  @@ -20824,7 +20824,7 @@

text:conditional-text Element< Child Relations - <text:conditional-text text:condition="<string>" text:string-value-if-true="<string>" text:string-value-if-false="<string>" (text:current-value="<boolean>" )? + <text:conditional-text text:condition="#string" text:string-value-if-true="#string" text:string-value-if-false="#string" (text:current-value="#boolean" )? TEXT>  @@ -20860,9 +20860,9 @@

text:creation-date Element

Child Relations - <text:creation-date (text:fixed="<boolean>" )? - (style:data-style-name="(<NCName>)?" )? - (text:date-value="<date> | <dateTime>" )? + <text:creation-date (text:fixed="#boolean" )? + (style:data-style-name="(#NCName)?" )? + (text:date-value="#date | #dateTime" )? TEXT>  @@ -20898,9 +20898,9 @@

text:creation-time Element

Child Relations - <text:creation-time (text:fixed="<boolean>" )? - (style:data-style-name="(<NCName>)?" )? - (text:time-value="<time> | <dateTime>" )? + <text:creation-time (text:fixed="#boolean" )? + (style:data-style-name="(#NCName)?" )? + (text:time-value="#time | #dateTime" )? TEXT>  @@ -20934,7 +20934,7 @@

text:creator Element

Child Relations - <text:creator (text:fixed="<boolean>" )? + <text:creator (text:fixed="#boolean" )? TEXT>  @@ -20974,9 +20974,9 @@

text:database-display Element< Child Relations <text:database-display - (text:table-name="<string>" (text:table-type="table | query | command" )? - text:database-name="<string>" | EMPTY | <form:connection-resource ... >) (style:data-style-name="(<NCName>)?" )? - text:column-name="<string>" TEXT>  + (text:table-name="#string" (text:table-type="table | query | command" )? + text:database-name="#string" | EMPTY | <form:connection-resource ... >) (style:data-style-name="(#NCName)?" )? + text:column-name="#string" TEXT> 
@@ -21013,8 +21013,8 @@

text:database-name Element

Child Relations <text:database-name - (text:table-name="<string>" (text:table-type="table | query | command" )? - text:database-name="<string>" | EMPTY | <form:connection-resource ... >)TEXT>  + (text:table-name="#string" (text:table-type="table | query | command" )? + text:database-name="#string" | EMPTY | <form:connection-resource ... >)TEXT> 
@@ -21051,8 +21051,8 @@

text:database-next Element

Child Relations <text:database-next - (text:table-name="<string>" (text:table-type="table | query | command" )? - text:database-name="<string>" | EMPTY | <form:connection-resource ... >) (text:condition="<string>" )? + (text:table-name="#string" (text:table-type="table | query | command" )? + text:database-name="#string" | EMPTY | <form:connection-resource ... >) (text:condition="#string" )? >  @@ -21094,12 +21094,12 @@

text:database-row-number Elemen Child Relations <text:database-row-number - (text:table-name="<string>" (text:table-type="table | query | command" )? - text:database-name="<string>" | EMPTY | <form:connection-resource ... >) ( (style:num-format="(1 | i | I | <string>)?" | - (style:num-format="a | A" (style:num-letter-sync="<boolean>" )? + (text:table-name="#string" (text:table-type="table | query | command" )? + text:database-name="#string" | EMPTY | <form:connection-resource ... >) ( (style:num-format="(1 | i | I | #string)?" | + (style:num-format="a | A" (style:num-letter-sync="#boolean" )? ))? )? - (text:value="<nonNegativeInteger>" )? + (text:value="#nonNegativeInteger" )? TEXT>  @@ -21138,9 +21138,9 @@

text:database-row-select Elemen Child Relations <text:database-row-select - (text:table-name="<string>" (text:table-type="table | query | command" )? - text:database-name="<string>" | EMPTY | <form:connection-resource ... >) (text:condition="<string>" )? - (text:row-number="<nonNegativeInteger>" )? + (text:table-name="#string" (text:table-type="table | query | command" )? + text:database-name="#string" | EMPTY | <form:connection-resource ... >) (text:condition="#string" )? + (text:row-number="#nonNegativeInteger" )? >  @@ -21177,10 +21177,10 @@

text:date Element

Child Relations - <text:date (text:fixed="<boolean>" )? - (style:data-style-name="(<NCName>)?" )? - (text:date-value="<date> | <dateTime>" )? - (text:date-adjust="<duration>" )? + <text:date (text:fixed="#boolean" )? + (style:data-style-name="(#NCName)?" )? + (text:date-value="#date | #dateTime" )? + (text:date-adjust="#duration" )? TEXT>  @@ -21214,7 +21214,7 @@

text:dde-connection Element

Child Relations - <text:dde-connection text:connection-name="<string>" TEXT>  + <text:dde-connection text:connection-name="#string" TEXT> 
@@ -21244,7 +21244,7 @@

text:dde-connection-decl Elemen Child Relations - <text:dde-connection-decl office:name="<string>" office:dde-application="<string>" office:dde-topic="<string>" office:dde-item="<string>" (office:automatic-update="<boolean>" )? + <text:dde-connection-decl office:name="#string" office:dde-application="#string" office:dde-topic="#string" office:dde-item="#string" (office:automatic-update="#boolean" )? >  @@ -21375,7 +21375,7 @@

text:description Element

Child Relations - <text:description (text:fixed="<boolean>" )? + <text:description (text:fixed="#boolean" )? TEXT>  @@ -21410,7 +21410,7 @@

text:drop-down Element (new in O Child Relations - <text:drop-down text:name="<string>" (<text:label ... >)* TEXT>  + <text:drop-down text:name="#string" (<text:label ... >)* TEXT> 
@@ -21443,7 +21443,7 @@

text:editing-cycles Element

Child Relations - <text:editing-cycles (text:fixed="<boolean>" )? + <text:editing-cycles (text:fixed="#boolean" )? TEXT>  @@ -21479,9 +21479,9 @@

text:editing-duration Element< Child Relations - <text:editing-duration (text:fixed="<boolean>" )? - (style:data-style-name="(<NCName>)?" )? - (text:duration="<duration>" )? + <text:editing-duration (text:fixed="#boolean" )? + (style:data-style-name="(#NCName)?" )? + (text:duration="#duration" )? TEXT>  @@ -21516,7 +21516,7 @@

text:execute-macro Element

Child Relations - <text:execute-macro (text:name="<string>" )? + <text:execute-macro (text:name="#string" )? (<office:event-listeners ... >)? TEXT>  @@ -21566,19 +21566,19 @@

text:expression Element

Child Relations - <text:expression (text:formula="<string>" )? + <text:expression (text:formula="#string" )? ( - (office:value-type="float" office:value="<double>" ) | - (office:value-type="percentage" office:value="<double>" ) | - (office:value-type="currency" office:value="<double>" (office:currency="<string>" )? + (office:value-type="float" office:value="#double" ) | + (office:value-type="percentage" office:value="#double" ) | + (office:value-type="currency" office:value="#double" (office:currency="#string" )? ) | - (office:value-type="date" office:date-value="<date> | <dateTime>" ) | - (office:value-type="time" office:time-value="<duration>" ) | - (office:value-type="boolean" office:boolean-value="<boolean>" ) | - (office:value-type="string" (office:string-value="<string>" )? + (office:value-type="date" office:date-value="#date | #dateTime" ) | + (office:value-type="time" office:time-value="#duration" ) | + (office:value-type="boolean" office:boolean-value="#boolean" ) | + (office:value-type="string" (office:string-value="#string" )? ))? (text:display="value | formula" )? - (style:data-style-name="(<NCName>)?" )? + (style:data-style-name="(#NCName)?" )? TEXT>  @@ -21614,7 +21614,7 @@

text:file-name Element

Child Relations <text:file-name (text:display="full | path | name | name-and-extension" )? - (text:fixed="<boolean>" )? + (text:fixed="#boolean" )? TEXT>  @@ -21827,22 +21827,22 @@

text:h Element

Child Relations - <text:h text:outline-level="<positiveInteger>" (text:restart-numbering="<boolean>" )? - (text:start-value="<nonNegativeInteger>" )? - (text:is-list-header="<boolean>" )? - (text:style-name="(<NCName>)?" )? + <text:h text:outline-level="#positiveInteger" (text:restart-numbering="#boolean" )? + (text:start-value="#nonNegativeInteger" )? + (text:is-list-header="#boolean" )? + (text:style-name="(#NCName)?" )? (text:class-names=" -START_list(<NCName>)* +START_list(#NCName)* END_list" )? - (text:cond-style-name="(<NCName>)?" )? - (xml:id="<ID>" (text:id="<NCName>" )? + (text:cond-style-name="(#NCName)?" )? + (xml:id="#ID" (text:id="#NCName" )? )? ( - (xhtml:about="<anyURI> | string]" xhtml:property=" + (xhtml:about="#anyURI | string]" xhtml:property=" START_list(string])+ END_list" ( (xhtml:datatype="string]" )? - (xhtml:content="<string>" )? + (xhtml:content="#string" )? )))? (<text:number ... >)? (TEXT | <text:s ... > | <text:tab ... > | <text:line-break ... > | <text:soft-page-break ... > | <text:span ... > | <text:meta ... > | <text:bookmark ... > | <text:bookmark-start ... > | <text:bookmark-end ... > | <text:reference-mark ... > | <text:reference-mark-start ... > | <text:reference-mark-end ... > | <text:note ... > | <text:ruby ... > | <office:annotation ... > | <office:annotation-end ... > | <text:change ... > | <text:change-start ... > | <text:change-end ... > | <draw:rect ... > | <draw:line ... > | <draw:polyline ... > | <draw:polygon ... > | <draw:regular-polygon ... > | <draw:path ... > | <draw:circle ... > | <draw:ellipse ... > | <draw:g ... > | <draw:page-thumbnail ... > | <draw:frame ... > | <draw:measure ... > | <draw:caption ... > | <draw:connector ... > | <draw:control ... > | <dr3d:scene ... > | <draw:custom-shape ... > | <draw:a ... > | <text:date ... > | <text:time ... > | <text:page-number ... > | <text:page-continuation ... > | <text:sender-firstname ... > | <text:sender-lastname ... > | <text:sender-initials ... > | <text:sender-title ... > | <text:sender-position ... > | <text:sender-email ... > | <text:sender-phone-private ... > | <text:sender-fax ... > | <text:sender-company ... > | <text:sender-phone-work ... > | <text:sender-street ... > | <text:sender-city ... > | <text:sender-postal-code ... > | <text:sender-country ... > | <text:sender-state-or-province ... > | <text:author-name ... > | <text:author-initials ... > | <text:chapter ... > | <text:file-name ... > | <text:template-name ... > | <text:sheet-name ... > | <text:variable-set ... > | <text:variable-get ... > | <text:variable-input ... > | <text:user-field-get ... > | <text:user-field-input ... > | <text:sequence ... > | <text:expression ... > | <text:text-input ... > | <text:drop-down ... > | <text:initial-creator ... > | <text:creation-date ... > | <text:creation-time ... > | <text:description ... > | <text:user-defined ... > | <text:print-time ... > | <text:print-date ... > | <text:printed-by ... > | <text:title ... > | <text:subject ... > | <text:keywords ... > | <text:editing-cycles ... > | <text:editing-duration ... > | <text:modification-time ... > | <text:modification-date ... > | <text:creator ... > | <CHOICE_NAME_CLASS ... > | <text:database-display ... > | <text:database-next ... > | <text:database-row-select ... > | <text:database-row-number ... > | <text:database-name ... > | <text:page-variable-set ... > | <text:page-variable-get ... > | <text:placeholder ... > | <text:conditional-text ... > | <text:hidden-text ... > | <CHOICE_NAME_CLASS ... > | <text:note-ref ... > | <text:sequence-ref ... > | <text:script ... > | <text:execute-macro ... > | <text:hidden-paragraph ... > | <text:dde-connection ... > | <text:measure ... > | <text:table-formula ... > | <text:meta-field ... > | <text:toc-mark-start ... > | <text:toc-mark-end ... > | <text:toc-mark ... > | <text:user-index-mark-start ... > | <text:user-index-mark-end ... > | <text:user-index-mark ... > | <text:alphabetical-index-mark-start ... > | <text:alphabetical-index-mark-end ... > | <text:alphabetical-index-mark ... > | <text:bibliography-mark ... > | <presentation:header ... > | <presentation:footer ... > | <presentation:date-time ... > | <text:a ... >)* >  @@ -21879,7 +21879,7 @@

text:hidden-paragraph Element< Child Relations - <text:hidden-paragraph text:condition="<string>" (text:is-hidden="<boolean>" )? + <text:hidden-paragraph text:condition="#string" (text:is-hidden="#boolean" )? TEXT>  @@ -21915,7 +21915,7 @@

text:hidden-text Element

Child Relations - <text:hidden-text text:condition="<string>" text:string-value="<string>" (text:is-hidden="<boolean>" )? + <text:hidden-text text:condition="#string" text:string-value="#string" (text:is-hidden="#boolean" )? TEXT>  @@ -21963,11 +21963,11 @@

text:illustration-index Element< Child Relations - <text:illustration-index (text:style-name="(<NCName>)?" )? - text:name="<string>" (text:protected="<boolean>" )? - (text:protection-key="<string>" )? - (text:protection-key-digest-algorithm="<anyIRI>" )? - (xml:id="<ID>" )? + <text:illustration-index (text:style-name="(#NCName)?" )? + text:name="#string" (text:protected="#boolean" )? + (text:protection-key="#string" )? + (text:protection-key-digest-algorithm="#anyIRI" )? + (xml:id="#ID" )? <text:illustration-index-source ... ><text:index-body ... >>  @@ -22002,7 +22002,7 @@

text:illustration Child Relations <text:illustration-index-entry-template - (text:style-name="(<NCName>)?" (<text:index-entry-chapter ... > | <text:index-entry-page-number ... > | <text:index-entry-text ... > | <text:index-entry-span ... > | <text:index-entry-tab-stop ... > | <text:index-entry-link-start ... > | <text:index-entry-link-end ... >)* )>  + (text:style-name="(#NCName)?" (<text:index-entry-chapter ... > | <text:index-entry-page-number ... > | <text:index-entry-text ... > | <text:index-entry-span ... > | <text:index-entry-tab-stop ... > | <text:index-entry-link-start ... > | <text:index-entry-link-end ... >)* )> 
@@ -22035,9 +22035,9 @@

text:illustration-index-s Child Relations <text:illustration-index-source (text:index-scope="document | chapter" )? - (text:relative-tab-stop-position="<boolean>" )? - (text:use-caption="<boolean>" )? - (text:caption-sequence-name="<string>" )? + (text:relative-tab-stop-position="#boolean" )? + (text:use-caption="#boolean" )? + (text:caption-sequence-name="#string" )? (text:caption-sequence-format="text | category-and-value | caption" )? (<text:index-title-template ... >)? (<text:illustration-index-entry-template ... >)? @@ -22076,8 +22076,8 @@

text:image-count Element

Child Relations - <CHOICE_NAME_CLASS ( (style:num-format="(1 | i | I | <string>)?" | - (style:num-format="a | A" (style:num-letter-sync="<boolean>" )? + <CHOICE_NAME_CLASS ( (style:num-format="(1 | i | I | #string)?" | + (style:num-format="a | A" (style:num-letter-sync="#boolean" )? ))? )? TEXT>  @@ -22174,7 +22174,7 @@

text:index-entry-bibliogra Child Relations - <text:index-entry-bibliography (text:style-name="(<NCName>)?" )? + <text:index-entry-bibliography (text:style-name="(#NCName)?" )? text:bibliography-data-field="address | annote | author | bibliography-type | booktitle | chapter | custom1 | custom2 | custom3 | custom4 | custom5 | edition | editor | howpublished | identifier | institution | isbn | issn | journal | month | note | number | organizations | pages | publisher | report-type | school | series | title | url | volume | year" >  @@ -22208,9 +22208,9 @@

text:index-entry-chapter Elemen Child Relations - <text:index-entry-chapter (text:style-name="(<NCName>)?" )? + <text:index-entry-chapter (text:style-name="(#NCName)?" )? (text:display="name | number | number-and-name | plain-number | plain-number-and-name" )? - (text:outline-level="<positiveInteger>" )? + (text:outline-level="#positiveInteger" )? >  @@ -22241,7 +22241,7 @@

text:index-entry-link-end Elem Child Relations - <text:index-entry-link-end (text:style-name="(<NCName>)?" )? + <text:index-entry-link-end (text:style-name="(#NCName)?" )? >  @@ -22272,7 +22272,7 @@

text:index-entry-link-start Child Relations - <text:index-entry-link-start (text:style-name="(<NCName>)?" )? + <text:index-entry-link-start (text:style-name="(#NCName)?" )? >  @@ -22304,7 +22304,7 @@

text:index-entry-page-numbe Child Relations - <text:index-entry-page-number (text:style-name="(<NCName>)?" )? + <text:index-entry-page-number (text:style-name="(#NCName)?" )? >  @@ -22338,7 +22338,7 @@

text:index-entry-span Element< Child Relations - <text:index-entry-span (text:style-name="(<NCName>)?" )? + <text:index-entry-span (text:style-name="(#NCName)?" )? TEXT>  @@ -22375,7 +22375,7 @@

text:index-entry-tab-stop Elem Child Relations - <text:index-entry-tab-stop (text:style-name="(<NCName>)?" )? + <text:index-entry-tab-stop (text:style-name="(#NCName)?" )? (style:leader-char="string]" )? style:type="right" | (style:type="left" style:position="string]" )>  @@ -22409,7 +22409,7 @@

text:index-entry-text Element< Child Relations - <text:index-entry-text (text:style-name="(<NCName>)?" )? + <text:index-entry-text (text:style-name="(#NCName)?" )? >  @@ -22436,7 +22436,7 @@

text:index-source-style Element< Child Relations - <text:index-source-style text:style-name="(<NCName>)?" >  + <text:index-source-style text:style-name="(#NCName)?" > 
@@ -22464,7 +22464,7 @@

text:index-source-styles Elemen Child Relations - <text:index-source-styles text:outline-level="<positiveInteger>" (<text:index-source-style ... >)* >  + <text:index-source-styles text:outline-level="#positiveInteger" (<text:index-source-style ... >)* > 
@@ -22538,11 +22538,11 @@

text:index-title Element

Child Relations - <text:index-title (text:style-name="(<NCName>)?" )? - text:name="<string>" (text:protected="<boolean>" )? - (text:protection-key="<string>" )? - (text:protection-key-digest-algorithm="<anyIRI>" )? - (xml:id="<ID>" )? + <text:index-title (text:style-name="(#NCName)?" )? + text:name="#string" (text:protected="#boolean" )? + (text:protection-key="#string" )? + (text:protection-key-digest-algorithm="#anyIRI" )? + (xml:id="#ID" )? (<text:h ... > | <text:p ... > | <text:list ... > | <text:numbered-paragraph ... > | <table:table ... > | <text:section ... > | <text:soft-page-break ... > | <text:table-of-content ... > | <text:illustration-index ... > | <text:table-index ... > | <text:object-index ... > | <text:user-index ... > | <text:alphabetical-index ... > | <text:bibliography ... > | <draw:rect ... > | <draw:line ... > | <draw:polyline ... > | <draw:polygon ... > | <draw:regular-polygon ... > | <draw:path ... > | <draw:circle ... > | <draw:ellipse ... > | <draw:g ... > | <draw:page-thumbnail ... > | <draw:frame ... > | <draw:measure ... > | <draw:caption ... > | <draw:connector ... > | <draw:control ... > | <dr3d:scene ... > | <draw:custom-shape ... > | <draw:a ... > | <text:change ... > | <text:change-start ... > | <text:change-end ... > | <text:index-title ... >)* >  @@ -22576,7 +22576,7 @@

text:index-title-template Elem Child Relations - <text:index-title-template (text:style-name="(<NCName>)?" )? + <text:index-title-template (text:style-name="(#NCName)?" )? TEXT>  @@ -22610,7 +22610,7 @@

text:initial-creator Element Child Relations - <text:initial-creator (text:fixed="<boolean>" )? + <text:initial-creator (text:fixed="#boolean" )? TEXT>  @@ -22670,7 +22670,7 @@

text:keywords Element

Child Relations - <text:keywords (text:fixed="<boolean>" )? + <text:keywords (text:fixed="#boolean" )? TEXT>  @@ -22698,8 +22698,8 @@

text:label Element (new in ODF 1.3) Child Relations - <text:label (text:value="<string>" )? - (text:current-selected="<boolean>" )? + <text:label (text:value="#string" )? + (text:current-selected="#boolean" )? >  @@ -22768,18 +22768,18 @@

text:linenumbering-conf Child Relations - <text:linenumbering-configuration (text:number-lines="<boolean>" )? - ( (style:num-format="(1 | i | I | <string>)?" | - (style:num-format="a | A" (style:num-letter-sync="<boolean>" )? + <text:linenumbering-configuration (text:number-lines="#boolean" )? + ( (style:num-format="(1 | i | I | #string)?" | + (style:num-format="a | A" (style:num-letter-sync="#boolean" )? ))? )? - (text:style-name="(<NCName>)?" )? - (text:increment="<nonNegativeInteger>" )? + (text:style-name="(#NCName)?" )? + (text:increment="#nonNegativeInteger" )? (text:number-position="left | right | inner | outer" )? (text:offset="string]" )? - (text:count-empty-lines="<boolean>" )? - (text:count-in-text-boxes="<boolean>" )? - (text:restart-on-page="<boolean>" )? + (text:count-empty-lines="#boolean" )? + (text:count-in-text-boxes="#boolean" )? + (text:restart-on-page="#boolean" )? (<text:linenumbering-separator ... >)? >  @@ -22808,7 +22808,7 @@

text:linenumbering-separato Child Relations - <text:linenumbering-separator (text:increment="<nonNegativeInteger>" )? + <text:linenumbering-separator (text:increment="#nonNegativeInteger" )? TEXT>  @@ -22870,10 +22870,10 @@

text:list Element

Child Relations - <text:list (text:style-name="(<NCName>)?" )? - (text:continue-numbering="<boolean>" )? - (text:continue-list="<IDREF>" )? - (xml:id="<ID>" )? + <text:list (text:style-name="(#NCName)?" )? + (text:continue-numbering="#boolean" )? + (text:continue-list="#IDREF" )? + (xml:id="#ID" )? (<text:list-header ... >)? (<text:list-item ... >)* >  @@ -22906,7 +22906,7 @@

text:list-header Element

Child Relations - <text:list-header (xml:id="<ID>" )? + <text:list-header (xml:id="#ID" )? ( (<text:number ... >)? (<text:p ... > | <text:h ... > | <text:list ... > | <text:soft-page-break ... >)* )>  @@ -22942,9 +22942,9 @@

text:list-item Element

Child Relations - <text:list-item (text:start-value="<nonNegativeInteger>" )? - (text:style-override="(<NCName>)?" )? - (xml:id="<ID>" )? + <text:list-item (text:start-value="#nonNegativeInteger" )? + (text:style-override="(#NCName)?" )? + (xml:id="#ID" )? ( (<text:number ... >)? (<text:p ... > | <text:h ... > | <text:list ... > | <text:soft-page-break ... >)* )>  @@ -22980,10 +22980,10 @@

text:list-level-style-bulle Child Relations - <text:list-level-style-bullet text:level="<positiveInteger>" (text:style-name="(<NCName>)?" )? + <text:list-level-style-bullet text:level="#positiveInteger" (text:style-name="(#NCName)?" )? text:bullet-char="string]" - ( (style:num-prefix="<string>" )? - (style:num-suffix="<string>" )? + ( (style:num-prefix="#string" )? + (style:num-suffix="#string" )? ) (text:bullet-relative-size="string]" )? (<style:list-level-properties ... >)? (<style:text-properties ... >)? @@ -23019,8 +23019,8 @@

text:list-level-style-image Child Relations - <text:list-level-style-image text:level="<positiveInteger>" - (xlink:type="simple" xlink:href="<anyIRI>" (xlink:show="embed" )? + <text:list-level-style-image text:level="#positiveInteger" + (xlink:type="simple" xlink:href="#anyIRI" (xlink:show="embed" )? (xlink:actuate="onLoad" )? ) | <office:binary-data ... > (<style:list-level-properties ... >)? >  @@ -23059,15 +23059,15 @@

text:list-level-style-numbe Child Relations - <text:list-level-style-number text:level="<positiveInteger>" (text:style-name="(<NCName>)?" )? - (style:num-format="(1 | i | I | <string>)?" | - (style:num-format="a | A" (style:num-letter-sync="<boolean>" )? + <text:list-level-style-number text:level="#positiveInteger" (text:style-name="(#NCName)?" )? + (style:num-format="(1 | i | I | #string)?" | + (style:num-format="a | A" (style:num-letter-sync="#boolean" )? ))? - ( (style:num-prefix="<string>" )? - (style:num-suffix="<string>" )? - ) (text:display-levels="<positiveInteger>" )? - (text:start-value="<positiveInteger>" )? + ( (style:num-prefix="#string" )? + (style:num-suffix="#string" )? + ) (text:display-levels="#positiveInteger" )? + (text:start-value="#positiveInteger" )? (<style:list-level-properties ... >)? (<style:text-properties ... >)? >  @@ -23103,8 +23103,8 @@

text:list-style Element

Child Relations - <text:list-style style:name="<NCName>" (style:display-name="<string>" )? - (text:consecutive-numbering="<boolean>" )? + <text:list-style style:name="#NCName" (style:display-name="#string" )? + (text:consecutive-numbering="#boolean" )? (<text:list-level-style-number ... > | <text:list-level-style-bullet ... > | <text:list-level-style-image ... >)* >  @@ -23305,13 +23305,13 @@

text:meta Element (new in ODF 1.2) Child Relations <text:meta ( - (xhtml:about="<anyURI> | string]" xhtml:property=" + (xhtml:about="#anyURI | string]" xhtml:property=" START_list(string])+ END_list" ( (xhtml:datatype="string]" )? - (xhtml:content="<string>" )? + (xhtml:content="#string" )? )))? - (xml:id="<ID>" )? + (xml:id="#ID" )? (TEXT | <text:s ... > | <text:tab ... > | <text:line-break ... > | <text:soft-page-break ... > | <text:span ... > | <text:meta ... > | <text:bookmark ... > | <text:bookmark-start ... > | <text:bookmark-end ... > | <text:reference-mark ... > | <text:reference-mark-start ... > | <text:reference-mark-end ... > | <text:note ... > | <text:ruby ... > | <office:annotation ... > | <office:annotation-end ... > | <text:change ... > | <text:change-start ... > | <text:change-end ... > | <draw:rect ... > | <draw:line ... > | <draw:polyline ... > | <draw:polygon ... > | <draw:regular-polygon ... > | <draw:path ... > | <draw:circle ... > | <draw:ellipse ... > | <draw:g ... > | <draw:page-thumbnail ... > | <draw:frame ... > | <draw:measure ... > | <draw:caption ... > | <draw:connector ... > | <draw:control ... > | <dr3d:scene ... > | <draw:custom-shape ... > | <draw:a ... > | <text:date ... > | <text:time ... > | <text:page-number ... > | <text:page-continuation ... > | <text:sender-firstname ... > | <text:sender-lastname ... > | <text:sender-initials ... > | <text:sender-title ... > | <text:sender-position ... > | <text:sender-email ... > | <text:sender-phone-private ... > | <text:sender-fax ... > | <text:sender-company ... > | <text:sender-phone-work ... > | <text:sender-street ... > | <text:sender-city ... > | <text:sender-postal-code ... > | <text:sender-country ... > | <text:sender-state-or-province ... > | <text:author-name ... > | <text:author-initials ... > | <text:chapter ... > | <text:file-name ... > | <text:template-name ... > | <text:sheet-name ... > | <text:variable-set ... > | <text:variable-get ... > | <text:variable-input ... > | <text:user-field-get ... > | <text:user-field-input ... > | <text:sequence ... > | <text:expression ... > | <text:text-input ... > | <text:drop-down ... > | <text:initial-creator ... > | <text:creation-date ... > | <text:creation-time ... > | <text:description ... > | <text:user-defined ... > | <text:print-time ... > | <text:print-date ... > | <text:printed-by ... > | <text:title ... > | <text:subject ... > | <text:keywords ... > | <text:editing-cycles ... > | <text:editing-duration ... > | <text:modification-time ... > | <text:modification-date ... > | <text:creator ... > | <CHOICE_NAME_CLASS ... > | <text:database-display ... > | <text:database-next ... > | <text:database-row-select ... > | <text:database-row-number ... > | <text:database-name ... > | <text:page-variable-set ... > | <text:page-variable-get ... > | <text:placeholder ... > | <text:conditional-text ... > | <text:hidden-text ... > | <CHOICE_NAME_CLASS ... > | <text:note-ref ... > | <text:sequence-ref ... > | <text:script ... > | <text:execute-macro ... > | <text:hidden-paragraph ... > | <text:dde-connection ... > | <text:measure ... > | <text:table-formula ... > | <text:meta-field ... > | <text:toc-mark-start ... > | <text:toc-mark-end ... > | <text:toc-mark ... > | <text:user-index-mark-start ... > | <text:user-index-mark-end ... > | <text:user-index-mark ... > | <text:alphabetical-index-mark-start ... > | <text:alphabetical-index-mark-end ... > | <text:alphabetical-index-mark ... > | <text:bibliography-mark ... > | <presentation:header ... > | <presentation:footer ... > | <presentation:date-time ... > | <text:a ... >)* >  @@ -23475,7 +23475,7 @@

text:meta-field Element (new in Child Relations - <text:meta-field xml:id="<ID>" (style:data-style-name="(<NCName>)?" )? + <text:meta-field xml:id="#ID" (style:data-style-name="(#NCName)?" )? (TEXT | <text:s ... > | <text:tab ... > | <text:line-break ... > | <text:soft-page-break ... > | <text:span ... > | <text:meta ... > | <text:bookmark ... > | <text:bookmark-start ... > | <text:bookmark-end ... > | <text:reference-mark ... > | <text:reference-mark-start ... > | <text:reference-mark-end ... > | <text:note ... > | <text:ruby ... > | <office:annotation ... > | <office:annotation-end ... > | <text:change ... > | <text:change-start ... > | <text:change-end ... > | <draw:rect ... > | <draw:line ... > | <draw:polyline ... > | <draw:polygon ... > | <draw:regular-polygon ... > | <draw:path ... > | <draw:circle ... > | <draw:ellipse ... > | <draw:g ... > | <draw:page-thumbnail ... > | <draw:frame ... > | <draw:measure ... > | <draw:caption ... > | <draw:connector ... > | <draw:control ... > | <dr3d:scene ... > | <draw:custom-shape ... > | <draw:a ... > | <text:date ... > | <text:time ... > | <text:page-number ... > | <text:page-continuation ... > | <text:sender-firstname ... > | <text:sender-lastname ... > | <text:sender-initials ... > | <text:sender-title ... > | <text:sender-position ... > | <text:sender-email ... > | <text:sender-phone-private ... > | <text:sender-fax ... > | <text:sender-company ... > | <text:sender-phone-work ... > | <text:sender-street ... > | <text:sender-city ... > | <text:sender-postal-code ... > | <text:sender-country ... > | <text:sender-state-or-province ... > | <text:author-name ... > | <text:author-initials ... > | <text:chapter ... > | <text:file-name ... > | <text:template-name ... > | <text:sheet-name ... > | <text:variable-set ... > | <text:variable-get ... > | <text:variable-input ... > | <text:user-field-get ... > | <text:user-field-input ... > | <text:sequence ... > | <text:expression ... > | <text:text-input ... > | <text:drop-down ... > | <text:initial-creator ... > | <text:creation-date ... > | <text:creation-time ... > | <text:description ... > | <text:user-defined ... > | <text:print-time ... > | <text:print-date ... > | <text:printed-by ... > | <text:title ... > | <text:subject ... > | <text:keywords ... > | <text:editing-cycles ... > | <text:editing-duration ... > | <text:modification-time ... > | <text:modification-date ... > | <text:creator ... > | <CHOICE_NAME_CLASS ... > | <text:database-display ... > | <text:database-next ... > | <text:database-row-select ... > | <text:database-row-number ... > | <text:database-name ... > | <text:page-variable-set ... > | <text:page-variable-get ... > | <text:placeholder ... > | <text:conditional-text ... > | <text:hidden-text ... > | <CHOICE_NAME_CLASS ... > | <text:note-ref ... > | <text:sequence-ref ... > | <text:script ... > | <text:execute-macro ... > | <text:hidden-paragraph ... > | <text:dde-connection ... > | <text:measure ... > | <text:table-formula ... > | <text:meta-field ... > | <text:toc-mark-start ... > | <text:toc-mark-end ... > | <text:toc-mark ... > | <text:user-index-mark-start ... > | <text:user-index-mark-end ... > | <text:user-index-mark ... > | <text:alphabetical-index-mark-start ... > | <text:alphabetical-index-mark-end ... > | <text:alphabetical-index-mark ... > | <text:bibliography-mark ... > | <presentation:header ... > | <presentation:footer ... > | <presentation:date-time ... > | <text:a ... >)* >  @@ -23511,9 +23511,9 @@

text:modification-date Element Child Relations - <text:modification-date (text:fixed="<boolean>" )? - (style:data-style-name="(<NCName>)?" )? - (text:date-value="<date>" )? + <text:modification-date (text:fixed="#boolean" )? + (style:data-style-name="(#NCName)?" )? + (text:date-value="#date" )? TEXT>  @@ -23549,9 +23549,9 @@

text:modification-time Element Child Relations - <text:modification-time (text:fixed="<boolean>" )? - (style:data-style-name="(<NCName>)?" )? - (text:time-value="<time>" )? + <text:modification-time (text:fixed="#boolean" )? + (style:data-style-name="(#NCName)?" )? + (text:time-value="#time" )? TEXT>  @@ -23587,7 +23587,7 @@

text:note Element

Child Relations - <text:note text:note-class="footnote | endnote" (text:id="<string>" )? + <text:note text:note-class="footnote | endnote" (text:id="#string" )? <text:note-citation ... ><text:note-body ... >>  @@ -23675,7 +23675,7 @@

text:note-citation Element

Child Relations - <text:note-citation (text:label="<string>" )? + <text:note-citation (text:label="#string" )? TEXT>  @@ -23763,7 +23763,7 @@

text:note-ref Element

Child Relations - <text:note-ref TEXT (text:ref-name="<string>" )? + <text:note-ref TEXT (text:ref-name="#string" )? (text:reference-format="page | chapter | direction | text" )? text:note-class="footnote | endnote" >  @@ -23806,16 +23806,16 @@

text:notes-configuration Elemen Child Relations - <text:notes-configuration text:note-class="footnote | endnote" (text:citation-style-name="(<NCName>)?" )? - (text:citation-body-style-name="(<NCName>)?" )? - (text:default-style-name="(<NCName>)?" )? - (text:master-page-name="(<NCName>)?" )? - (text:start-value="<nonNegativeInteger>" )? + <text:notes-configuration text:note-class="footnote | endnote" (text:citation-style-name="(#NCName)?" )? + (text:citation-body-style-name="(#NCName)?" )? + (text:default-style-name="(#NCName)?" )? + (text:master-page-name="(#NCName)?" )? + (text:start-value="#nonNegativeInteger" )? - ( (style:num-prefix="<string>" )? - (style:num-suffix="<string>" )? - ) ( (style:num-format="(1 | i | I | <string>)?" | - (style:num-format="a | A" (style:num-letter-sync="<boolean>" )? + ( (style:num-prefix="#string" )? + (style:num-suffix="#string" )? + ) ( (style:num-format="(1 | i | I | #string)?" | + (style:num-format="a | A" (style:num-letter-sync="#boolean" )? ))? )? (text:start-numbering-at="document | chapter | page" )? @@ -23850,7 +23850,7 @@

text:number Element

Child Relations - <text:number <string>>  + <text:number #string
@@ -23892,9 +23892,9 @@

text:numbered-paragraph Element< Child Relations - <text:numbered-paragraph text:list-id="<NCName>" (text:level="<positiveInteger>" )? - (text:style-name="(<NCName>)?" text:continue-numbering="<boolean>" text:start-value="<nonNegativeInteger>" )? - (xml:id="<ID>" )? + <text:numbered-paragraph text:list-id="#NCName" (text:level="#positiveInteger" )? + (text:style-name="(#NCName)?" text:continue-numbering="#boolean" text:start-value="#nonNegativeInteger" )? + (xml:id="#ID" )? (<text:number ... >)? <text:p ... > | <text:h ... >>  @@ -23931,8 +23931,8 @@

text:object-count Element

Child Relations - <CHOICE_NAME_CLASS ( (style:num-format="(1 | i | I | <string>)?" | - (style:num-format="a | A" (style:num-letter-sync="<boolean>" )? + <CHOICE_NAME_CLASS ( (style:num-format="(1 | i | I | #string)?" | + (style:num-format="a | A" (style:num-letter-sync="#boolean" )? ))? )? TEXT>  @@ -23982,11 +23982,11 @@

text:object-index Element

Child Relations - <text:object-index (text:style-name="(<NCName>)?" )? - text:name="<string>" (text:protected="<boolean>" )? - (text:protection-key="<string>" )? - (text:protection-key-digest-algorithm="<anyIRI>" )? - (xml:id="<ID>" )? + <text:object-index (text:style-name="(#NCName)?" )? + text:name="#string" (text:protected="#boolean" )? + (text:protection-key="#string" )? + (text:protection-key-digest-algorithm="#anyIRI" )? + (xml:id="#ID" )? <text:object-index-source ... ><text:index-body ... >>  @@ -24021,7 +24021,7 @@

text:object-index-entry Child Relations <text:object-index-entry-template - (text:style-name="(<NCName>)?" (<text:index-entry-chapter ... > | <text:index-entry-page-number ... > | <text:index-entry-text ... > | <text:index-entry-span ... > | <text:index-entry-tab-stop ... > | <text:index-entry-link-start ... > | <text:index-entry-link-end ... >)* )>  + (text:style-name="(#NCName)?" (<text:index-entry-chapter ... > | <text:index-entry-page-number ... > | <text:index-entry-text ... > | <text:index-entry-span ... > | <text:index-entry-tab-stop ... > | <text:index-entry-link-start ... > | <text:index-entry-link-end ... >)* )> 
@@ -24056,12 +24056,12 @@

text:object-index-source Elemen Child Relations <text:object-index-source (text:index-scope="document | chapter" )? - (text:relative-tab-stop-position="<boolean>" )? - (text:use-spreadsheet-objects="<boolean>" )? - (text:use-math-objects="<boolean>" )? - (text:use-draw-objects="<boolean>" )? - (text:use-chart-objects="<boolean>" )? - (text:use-other-objects="<boolean>" )? + (text:relative-tab-stop-position="#boolean" )? + (text:use-spreadsheet-objects="#boolean" )? + (text:use-math-objects="#boolean" )? + (text:use-draw-objects="#boolean" )? + (text:use-chart-objects="#boolean" )? + (text:use-other-objects="#boolean" )? (<text:index-title-template ... >)? (<text:object-index-entry-template ... >)? >  @@ -24100,15 +24100,15 @@

text:outline-level-style Elemen Child Relations - <text:outline-level-style text:level="<positiveInteger>" (text:style-name="(<NCName>)?" )? - (style:num-format="(1 | i | I | <string>)?" | - (style:num-format="a | A" (style:num-letter-sync="<boolean>" )? + <text:outline-level-style text:level="#positiveInteger" (text:style-name="(#NCName)?" )? + (style:num-format="(1 | i | I | #string)?" | + (style:num-format="a | A" (style:num-letter-sync="#boolean" )? ))? - ( (style:num-prefix="<string>" )? - (style:num-suffix="<string>" )? - ) (text:display-levels="<positiveInteger>" )? - (text:start-value="<positiveInteger>" )? + ( (style:num-prefix="#string" )? + (style:num-suffix="#string" )? + ) (text:display-levels="#positiveInteger" )? + (text:start-value="#positiveInteger" )? (<style:list-level-properties ... >)? (<style:text-properties ... >)? >  @@ -24138,7 +24138,7 @@

text:outline-style Element

Child Relations - <text:outline-style style:name="<NCName>" (<text:outline-level-style ... >)+ >  + <text:outline-style style:name="#NCName" (<text:outline-level-style ... >)+ > 
@@ -24348,19 +24348,19 @@

text:p Element

Child Relations - <text:p (text:style-name="(<NCName>)?" )? + <text:p (text:style-name="(#NCName)?" )? (text:class-names=" -START_list(<NCName>)* +START_list(#NCName)* END_list" )? - (text:cond-style-name="(<NCName>)?" )? - (xml:id="<ID>" (text:id="<NCName>" )? + (text:cond-style-name="(#NCName)?" )? + (xml:id="#ID" (text:id="#NCName" )? )? ( - (xhtml:about="<anyURI> | string]" xhtml:property=" + (xhtml:about="#anyURI | string]" xhtml:property=" START_list(string])+ END_list" ( (xhtml:datatype="string]" )? - (xhtml:content="<string>" )? + (xhtml:content="#string" )? )))? (TEXT | <text:s ... > | <text:tab ... > | <text:line-break ... > | <text:soft-page-break ... > | <text:span ... > | <text:meta ... > | <text:bookmark ... > | <text:bookmark-start ... > | <text:bookmark-end ... > | <text:reference-mark ... > | <text:reference-mark-start ... > | <text:reference-mark-end ... > | <text:note ... > | <text:ruby ... > | <office:annotation ... > | <office:annotation-end ... > | <text:change ... > | <text:change-start ... > | <text:change-end ... > | <draw:rect ... > | <draw:line ... > | <draw:polyline ... > | <draw:polygon ... > | <draw:regular-polygon ... > | <draw:path ... > | <draw:circle ... > | <draw:ellipse ... > | <draw:g ... > | <draw:page-thumbnail ... > | <draw:frame ... > | <draw:measure ... > | <draw:caption ... > | <draw:connector ... > | <draw:control ... > | <dr3d:scene ... > | <draw:custom-shape ... > | <draw:a ... > | <text:date ... > | <text:time ... > | <text:page-number ... > | <text:page-continuation ... > | <text:sender-firstname ... > | <text:sender-lastname ... > | <text:sender-initials ... > | <text:sender-title ... > | <text:sender-position ... > | <text:sender-email ... > | <text:sender-phone-private ... > | <text:sender-fax ... > | <text:sender-company ... > | <text:sender-phone-work ... > | <text:sender-street ... > | <text:sender-city ... > | <text:sender-postal-code ... > | <text:sender-country ... > | <text:sender-state-or-province ... > | <text:author-name ... > | <text:author-initials ... > | <text:chapter ... > | <text:file-name ... > | <text:template-name ... > | <text:sheet-name ... > | <text:variable-set ... > | <text:variable-get ... > | <text:variable-input ... > | <text:user-field-get ... > | <text:user-field-input ... > | <text:sequence ... > | <text:expression ... > | <text:text-input ... > | <text:drop-down ... > | <text:initial-creator ... > | <text:creation-date ... > | <text:creation-time ... > | <text:description ... > | <text:user-defined ... > | <text:print-time ... > | <text:print-date ... > | <text:printed-by ... > | <text:title ... > | <text:subject ... > | <text:keywords ... > | <text:editing-cycles ... > | <text:editing-duration ... > | <text:modification-time ... > | <text:modification-date ... > | <text:creator ... > | <CHOICE_NAME_CLASS ... > | <text:database-display ... > | <text:database-next ... > | <text:database-row-select ... > | <text:database-row-number ... > | <text:database-name ... > | <text:page-variable-set ... > | <text:page-variable-get ... > | <text:placeholder ... > | <text:conditional-text ... > | <text:hidden-text ... > | <CHOICE_NAME_CLASS ... > | <text:note-ref ... > | <text:sequence-ref ... > | <text:script ... > | <text:execute-macro ... > | <text:hidden-paragraph ... > | <text:dde-connection ... > | <text:measure ... > | <text:table-formula ... > | <text:meta-field ... > | <text:toc-mark-start ... > | <text:toc-mark-end ... > | <text:toc-mark ... > | <text:user-index-mark-start ... > | <text:user-index-mark-end ... > | <text:user-index-mark ... > | <text:alphabetical-index-mark-start ... > | <text:alphabetical-index-mark-end ... > | <text:alphabetical-index-mark ... > | <text:bibliography-mark ... > | <presentation:header ... > | <presentation:footer ... > | <presentation:date-time ... > | <text:a ... >)* >  @@ -24388,7 +24388,7 @@

text:page Element

Child Relations - <text:page text:master-page-name="(<NCName>)?" >  + <text:page text:master-page-name="(#NCName)?" > 
@@ -24422,7 +24422,7 @@

text:page-continuation Element Child Relations - <text:page-continuation text:select-page="previous | next" (text:string-value="<string>" )? + <text:page-continuation text:select-page="previous | next" (text:string-value="#string" )? TEXT>  @@ -24458,8 +24458,8 @@

text:page-count Element

Child Relations - <CHOICE_NAME_CLASS ( (style:num-format="(1 | i | I | <string>)?" | - (style:num-format="a | A" (style:num-letter-sync="<boolean>" )? + <CHOICE_NAME_CLASS ( (style:num-format="(1 | i | I | #string)?" | + (style:num-format="a | A" (style:num-letter-sync="#boolean" )? ))? )? TEXT>  @@ -24500,12 +24500,12 @@

text:page-number Element

Child Relations - <text:page-number ( (style:num-format="(1 | i | I | <string>)?" | - (style:num-format="a | A" (style:num-letter-sync="<boolean>" )? + <text:page-number ( (style:num-format="(1 | i | I | #string)?" | + (style:num-format="a | A" (style:num-letter-sync="#boolean" )? ))? )? - (text:fixed="<boolean>" )? - (text:page-adjust="<integer>" )? + (text:fixed="#boolean" )? + (text:page-adjust="#integer" )? (text:select-page="previous | current | next" )? TEXT>  @@ -24568,8 +24568,8 @@

text:page-variable-get Element Child Relations - <text:page-variable-get ( (style:num-format="(1 | i | I | <string>)?" | - (style:num-format="a | A" (style:num-letter-sync="<boolean>" )? + <text:page-variable-get ( (style:num-format="(1 | i | I | #string)?" | + (style:num-format="a | A" (style:num-letter-sync="#boolean" )? ))? )? TEXT>  @@ -24606,8 +24606,8 @@

text:page-variable-set Element Child Relations - <text:page-variable-set (text:active="<boolean>" )? - (text:page-adjust="<integer>" )? + <text:page-variable-set (text:active="#boolean" )? + (text:page-adjust="#integer" )? TEXT>  @@ -24643,8 +24643,8 @@

text:paragraph-count Element Child Relations - <CHOICE_NAME_CLASS ( (style:num-format="(1 | i | I | <string>)?" | - (style:num-format="a | A" (style:num-letter-sync="<boolean>" )? + <CHOICE_NAME_CLASS ( (style:num-format="(1 | i | I | #string)?" | + (style:num-format="a | A" (style:num-letter-sync="#boolean" )? ))? )? TEXT>  @@ -24681,7 +24681,7 @@

text:placeholder Element

Child Relations - <text:placeholder text:placeholder-type="text | table | text-box | image | object" (text:description="<string>" )? + <text:placeholder text:placeholder-type="text | table | text-box | image | object" (text:description="#string" )? TEXT>  @@ -24717,9 +24717,9 @@

text:print-date Element

Child Relations - <text:print-date (text:fixed="<boolean>" )? - (style:data-style-name="(<NCName>)?" )? - (text:date-value="<date>" )? + <text:print-date (text:fixed="#boolean" )? + (style:data-style-name="(#NCName)?" )? + (text:date-value="#date" )? TEXT>  @@ -24755,9 +24755,9 @@

text:print-time Element

Child Relations - <text:print-time (text:fixed="<boolean>" )? - (style:data-style-name="(<NCName>)?" )? - (text:time-value="<time>" )? + <text:print-time (text:fixed="#boolean" )? + (style:data-style-name="(#NCName)?" )? + (text:time-value="#time" )? TEXT>  @@ -24791,7 +24791,7 @@

text:printed-by Element

Child Relations - <text:printed-by (text:fixed="<boolean>" )? + <text:printed-by (text:fixed="#boolean" )? TEXT>  @@ -24824,7 +24824,7 @@

text:reference-mark Element

Child Relations - <text:reference-mark text:name="<string>" >  + <text:reference-mark text:name="#string" > 
@@ -24856,7 +24856,7 @@

text:reference-mark-end Element< Child Relations - <text:reference-mark-end text:name="<string>" >  + <text:reference-mark-end text:name="#string" > 
@@ -24888,7 +24888,7 @@

text:reference-mark-start Elem Child Relations - <text:reference-mark-start text:name="<string>" >  + <text:reference-mark-start text:name="#string" > 
@@ -24922,7 +24922,7 @@

text:reference-ref Element

Child Relations - <CHOICE_NAME_CLASS TEXT (text:ref-name="<string>" )? + <CHOICE_NAME_CLASS TEXT (text:ref-name="#string" )? (text:reference-format="page | chapter | direction | text | number-no-superior | number-all-superior | number" )? >  @@ -24958,7 +24958,7 @@

text:ruby Element

Child Relations - <text:ruby (text:style-name="(<NCName>)?" )? + <text:ruby (text:style-name="(#NCName)?" )? <text:ruby-base ... ><text:ruby-text ... >>  @@ -25141,7 +25141,7 @@

text:ruby-text Element

Child Relations - <text:ruby-text (text:style-name="(<NCName>)?" )? + <text:ruby-text (text:style-name="(#NCName)?" )? TEXT>  @@ -25174,7 +25174,7 @@

text:s Element

Child Relations - <text:s (text:c="<nonNegativeInteger>" )? + <text:s (text:c="#nonNegativeInteger" )? >  @@ -25211,7 +25211,7 @@

text:script Element

Child Relations <text:script - (xlink:type="simple" xlink:href="<anyIRI>" ) | TEXT (script:language="<string>" )? + (xlink:type="simple" xlink:href="#anyIRI" ) | TEXT (script:language="#string" )? >  @@ -25297,13 +25297,13 @@

text:section Element

Child Relations - <text:section (text:style-name="(<NCName>)?" )? - text:name="<string>" (text:protected="<boolean>" )? - (text:protection-key="<string>" )? - (text:protection-key-digest-algorithm="<anyIRI>" )? - (xml:id="<ID>" )? + <text:section (text:style-name="(#NCName)?" )? + text:name="#string" (text:protected="#boolean" )? + (text:protection-key="#string" )? + (text:protection-key-digest-algorithm="#anyIRI" )? + (xml:id="#ID" )? (text:display="true | none" | - (text:display="condition" text:condition="<string>" ))? + (text:display="condition" text:condition="#string" ))? (<text:section-source ... > | <office:dde-source ... >)? (<text:h ... > | <text:p ... > | <text:list ... > | <text:numbered-paragraph ... > | <table:table ... > | <text:section ... > | <text:soft-page-break ... > | <text:table-of-content ... > | <text:illustration-index ... > | <text:table-index ... > | <text:object-index ... > | <text:user-index ... > | <text:alphabetical-index ... > | <text:bibliography ... > | <draw:rect ... > | <draw:line ... > | <draw:polyline ... > | <draw:polygon ... > | <draw:regular-polygon ... > | <draw:path ... > | <draw:circle ... > | <draw:ellipse ... > | <draw:g ... > | <draw:page-thumbnail ... > | <draw:frame ... > | <draw:measure ... > | <draw:caption ... > | <draw:connector ... > | <draw:control ... > | <dr3d:scene ... > | <draw:custom-shape ... > | <draw:a ... > | <text:change ... > | <text:change-start ... > | <text:change-end ... >)* >  @@ -25335,10 +25335,10 @@

text:section-source Element

Child Relations - <text:section-source (xlink:type="simple" xlink:href="<anyIRI>" (xlink:show="embed" )? + <text:section-source (xlink:type="simple" xlink:href="#anyIRI" (xlink:show="embed" )? )? - (text:section-name="<string>" )? - (text:filter-name="<string>" )? + (text:section-name="#string" )? + (text:filter-name="#string" )? >  @@ -25372,7 +25372,7 @@

text:sender-city Element

Child Relations - <text:sender-city (text:fixed="<boolean>" )? + <text:sender-city (text:fixed="#boolean" )? TEXT>  @@ -25406,7 +25406,7 @@

text:sender-company Element

Child Relations - <text:sender-company (text:fixed="<boolean>" )? + <text:sender-company (text:fixed="#boolean" )? TEXT>  @@ -25440,7 +25440,7 @@

text:sender-country Element

Child Relations - <text:sender-country (text:fixed="<boolean>" )? + <text:sender-country (text:fixed="#boolean" )? TEXT>  @@ -25474,7 +25474,7 @@

text:sender-email Element

Child Relations - <text:sender-email (text:fixed="<boolean>" )? + <text:sender-email (text:fixed="#boolean" )? TEXT>  @@ -25508,7 +25508,7 @@

text:sender-fax Element

Child Relations - <text:sender-fax (text:fixed="<boolean>" )? + <text:sender-fax (text:fixed="#boolean" )? TEXT>  @@ -25542,7 +25542,7 @@

text:sender-firstname Element< Child Relations - <text:sender-firstname (text:fixed="<boolean>" )? + <text:sender-firstname (text:fixed="#boolean" )? TEXT>  @@ -25576,7 +25576,7 @@

text:sender-initials Element Child Relations - <text:sender-initials (text:fixed="<boolean>" )? + <text:sender-initials (text:fixed="#boolean" )? TEXT>  @@ -25610,7 +25610,7 @@

text:sender-lastname Element Child Relations - <text:sender-lastname (text:fixed="<boolean>" )? + <text:sender-lastname (text:fixed="#boolean" )? TEXT>  @@ -25644,7 +25644,7 @@

text:sender-phone-private Elem Child Relations - <text:sender-phone-private (text:fixed="<boolean>" )? + <text:sender-phone-private (text:fixed="#boolean" )? TEXT>  @@ -25678,7 +25678,7 @@

text:sender-phone-work Element Child Relations - <text:sender-phone-work (text:fixed="<boolean>" )? + <text:sender-phone-work (text:fixed="#boolean" )? TEXT>  @@ -25712,7 +25712,7 @@

text:sender-position Element Child Relations - <text:sender-position (text:fixed="<boolean>" )? + <text:sender-position (text:fixed="#boolean" )? TEXT>  @@ -25746,7 +25746,7 @@

text:sender-postal-code Element< Child Relations - <text:sender-postal-code (text:fixed="<boolean>" )? + <text:sender-postal-code (text:fixed="#boolean" )? TEXT>  @@ -25780,7 +25780,7 @@

text:sender-state-or-provi Child Relations - <text:sender-state-or-province (text:fixed="<boolean>" )? + <text:sender-state-or-province (text:fixed="#boolean" )? TEXT>  @@ -25814,7 +25814,7 @@

text:sender-street Element

Child Relations - <text:sender-street (text:fixed="<boolean>" )? + <text:sender-street (text:fixed="#boolean" )? TEXT>  @@ -25848,7 +25848,7 @@

text:sender-title Element

Child Relations - <text:sender-title (text:fixed="<boolean>" )? + <text:sender-title (text:fixed="#boolean" )? TEXT>  @@ -25887,12 +25887,12 @@

text:sequence Element

Child Relations - <text:sequence text:name="<string>" (text:formula="<string>" )? - ( (style:num-format="(1 | i | I | <string>)?" | - (style:num-format="a | A" (style:num-letter-sync="<boolean>" )? + <text:sequence text:name="#string" (text:formula="#string" )? + ( (style:num-format="(1 | i | I | #string)?" | + (style:num-format="a | A" (style:num-letter-sync="#boolean" )? ))? )? - (text:ref-name="<string>" )? + (text:ref-name="#string" )? TEXT>  @@ -25921,7 +25921,7 @@

text:sequence-decl Element

Child Relations - <text:sequence-decl text:name="<string>" text:display-outline-level="<nonNegativeInteger>" (text:separation-character="string]" )? + <text:sequence-decl text:name="#string" text:display-outline-level="#nonNegativeInteger" (text:separation-character="string]" )? >  @@ -25992,7 +25992,7 @@

text:sequence-ref Element

Child Relations - <text:sequence-ref TEXT (text:ref-name="<string>" )? + <text:sequence-ref TEXT (text:ref-name="#string" )? (text:reference-format="page | chapter | direction | text | category-and-value | caption | value" )? >  @@ -26100,7 +26100,7 @@

text:sort-key Element

Child Relations <text:sort-key - (text:key="address | annote | author | bibliography-type | booktitle | chapter | custom1 | custom2 | custom3 | custom4 | custom5 | edition | editor | howpublished | identifier | institution | isbn | issn | journal | month | note | number | organizations | pages | publisher | report-type | school | series | title | url | volume | year" (text:sort-ascending="<boolean>" )? + (text:key="address | annote | author | bibliography-type | booktitle | chapter | custom1 | custom2 | custom3 | custom4 | custom5 | edition | editor | howpublished | identifier | institution | isbn | issn | journal | month | note | number | organizations | pages | publisher | report-type | school | series | title | url | volume | year" (text:sort-ascending="#boolean" )? )>  @@ -26264,9 +26264,9 @@

text:span Element

Child Relations - <text:span (text:style-name="(<NCName>)?" )? + <text:span (text:style-name="(#NCName)?" )? (text:class-names=" -START_list(<NCName>)* +START_list(#NCName)* END_list" )? (TEXT | <text:s ... > | <text:tab ... > | <text:line-break ... > | <text:soft-page-break ... > | <text:span ... > | <text:meta ... > | <text:bookmark ... > | <text:bookmark-start ... > | <text:bookmark-end ... > | <text:reference-mark ... > | <text:reference-mark-start ... > | <text:reference-mark-end ... > | <text:note ... > | <text:ruby ... > | <office:annotation ... > | <office:annotation-end ... > | <text:change ... > | <text:change-start ... > | <text:change-end ... > | <draw:rect ... > | <draw:line ... > | <draw:polyline ... > | <draw:polygon ... > | <draw:regular-polygon ... > | <draw:path ... > | <draw:circle ... > | <draw:ellipse ... > | <draw:g ... > | <draw:page-thumbnail ... > | <draw:frame ... > | <draw:measure ... > | <draw:caption ... > | <draw:connector ... > | <draw:control ... > | <dr3d:scene ... > | <draw:custom-shape ... > | <draw:a ... > | <text:date ... > | <text:time ... > | <text:page-number ... > | <text:page-continuation ... > | <text:sender-firstname ... > | <text:sender-lastname ... > | <text:sender-initials ... > | <text:sender-title ... > | <text:sender-position ... > | <text:sender-email ... > | <text:sender-phone-private ... > | <text:sender-fax ... > | <text:sender-company ... > | <text:sender-phone-work ... > | <text:sender-street ... > | <text:sender-city ... > | <text:sender-postal-code ... > | <text:sender-country ... > | <text:sender-state-or-province ... > | <text:author-name ... > | <text:author-initials ... > | <text:chapter ... > | <text:file-name ... > | <text:template-name ... > | <text:sheet-name ... > | <text:variable-set ... > | <text:variable-get ... > | <text:variable-input ... > | <text:user-field-get ... > | <text:user-field-input ... > | <text:sequence ... > | <text:expression ... > | <text:text-input ... > | <text:drop-down ... > | <text:initial-creator ... > | <text:creation-date ... > | <text:creation-time ... > | <text:description ... > | <text:user-defined ... > | <text:print-time ... > | <text:print-date ... > | <text:printed-by ... > | <text:title ... > | <text:subject ... > | <text:keywords ... > | <text:editing-cycles ... > | <text:editing-duration ... > | <text:modification-time ... > | <text:modification-date ... > | <text:creator ... > | <CHOICE_NAME_CLASS ... > | <text:database-display ... > | <text:database-next ... > | <text:database-row-select ... > | <text:database-row-number ... > | <text:database-name ... > | <text:page-variable-set ... > | <text:page-variable-get ... > | <text:placeholder ... > | <text:conditional-text ... > | <text:hidden-text ... > | <CHOICE_NAME_CLASS ... > | <text:note-ref ... > | <text:sequence-ref ... > | <text:script ... > | <text:execute-macro ... > | <text:hidden-paragraph ... > | <text:dde-connection ... > | <text:measure ... > | <text:table-formula ... > | <text:meta-field ... > | <text:toc-mark-start ... > | <text:toc-mark-end ... > | <text:toc-mark ... > | <text:user-index-mark-start ... > | <text:user-index-mark-end ... > | <text:user-index-mark ... > | <text:alphabetical-index-mark-start ... > | <text:alphabetical-index-mark-end ... > | <text:alphabetical-index-mark ... > | <text:bibliography-mark ... > | <presentation:header ... > | <presentation:footer ... > | <presentation:date-time ... > | <text:a ... >)* >  @@ -26301,7 +26301,7 @@

text:subject Element

Child Relations - <text:subject (text:fixed="<boolean>" )? + <text:subject (text:fixed="#boolean" )? TEXT>  @@ -26334,7 +26334,7 @@

text:tab Element

Child Relations - <text:tab (text:tab-ref="<nonNegativeInteger>" )? + <text:tab (text:tab-ref="#nonNegativeInteger" )? >  @@ -26370,8 +26370,8 @@

text:table-count Element

Child Relations - <CHOICE_NAME_CLASS ( (style:num-format="(1 | i | I | <string>)?" | - (style:num-format="a | A" (style:num-letter-sync="<boolean>" )? + <CHOICE_NAME_CLASS ( (style:num-format="(1 | i | I | #string)?" | + (style:num-format="a | A" (style:num-letter-sync="#boolean" )? ))? )? TEXT>  @@ -26409,9 +26409,9 @@

text:table-formula Element

Child Relations - <text:table-formula (text:formula="<string>" )? + <text:table-formula (text:formula="#string" )? (text:display="value | formula" )? - (style:data-style-name="(<NCName>)?" )? + (style:data-style-name="(#NCName)?" )? TEXT>  @@ -26459,11 +26459,11 @@

text:table-index Element

Child Relations - <text:table-index (text:style-name="(<NCName>)?" )? - text:name="<string>" (text:protected="<boolean>" )? - (text:protection-key="<string>" )? - (text:protection-key-digest-algorithm="<anyIRI>" )? - (xml:id="<ID>" )? + <text:table-index (text:style-name="(#NCName)?" )? + text:name="#string" (text:protected="#boolean" )? + (text:protection-key="#string" )? + (text:protection-key-digest-algorithm="#anyIRI" )? + (xml:id="#ID" )? <text:table-index-source ... ><text:index-body ... >>  @@ -26498,7 +26498,7 @@

text:table-index-entry-t Child Relations <text:table-index-entry-template - (text:style-name="(<NCName>)?" (<text:index-entry-chapter ... > | <text:index-entry-page-number ... > | <text:index-entry-text ... > | <text:index-entry-span ... > | <text:index-entry-tab-stop ... > | <text:index-entry-link-start ... > | <text:index-entry-link-end ... >)* )>  + (text:style-name="(#NCName)?" (<text:index-entry-chapter ... > | <text:index-entry-page-number ... > | <text:index-entry-text ... > | <text:index-entry-span ... > | <text:index-entry-tab-stop ... > | <text:index-entry-link-start ... > | <text:index-entry-link-end ... >)* )> 
@@ -26531,9 +26531,9 @@

text:table-index-source Element< Child Relations <text:table-index-source (text:index-scope="document | chapter" )? - (text:relative-tab-stop-position="<boolean>" )? - (text:use-caption="<boolean>" )? - (text:caption-sequence-name="<string>" )? + (text:relative-tab-stop-position="#boolean" )? + (text:use-caption="#boolean" )? + (text:caption-sequence-name="#string" )? (text:caption-sequence-format="text | category-and-value | caption" )? (<text:index-title-template ... >)? (<text:table-index-entry-template ... >)? @@ -26584,11 +26584,11 @@

text:table-of-content Element< Child Relations - <text:table-of-content (text:style-name="(<NCName>)?" )? - text:name="<string>" (text:protected="<boolean>" )? - (text:protection-key="<string>" )? - (text:protection-key-digest-algorithm="<anyIRI>" )? - (xml:id="<ID>" )? + <text:table-of-content (text:style-name="(#NCName)?" )? + text:name="#string" (text:protected="#boolean" )? + (text:protection-key="#string" )? + (text:protection-key-digest-algorithm="#anyIRI" )? + (xml:id="#ID" )? <text:table-of-content-source ... ><text:index-body ... >>  @@ -26623,7 +26623,7 @@

text:table-of-conte Child Relations - <text:table-of-content-entry-template text:outline-level="<positiveInteger>" text:style-name="(<NCName>)?" (<text:index-entry-chapter ... > | <text:index-entry-page-number ... > | <text:index-entry-text ... > | <text:index-entry-span ... > | <text:index-entry-tab-stop ... > | <text:index-entry-link-start ... > | <text:index-entry-link-end ... >)* >  + <text:table-of-content-entry-template text:outline-level="#positiveInteger" text:style-name="(#NCName)?" (<text:index-entry-chapter ... > | <text:index-entry-page-number ... > | <text:index-entry-text ... > | <text:index-entry-span ... > | <text:index-entry-tab-stop ... > | <text:index-entry-link-start ... > | <text:index-entry-link-end ... >)* > 
@@ -26657,12 +26657,12 @@

text:table-of-content-sourc Child Relations - <text:table-of-content-source (text:outline-level="<positiveInteger>" )? - (text:use-outline-level="<boolean>" )? - (text:use-index-marks="<boolean>" )? - (text:use-index-source-styles="<boolean>" )? + <text:table-of-content-source (text:outline-level="#positiveInteger" )? + (text:use-outline-level="#boolean" )? + (text:use-index-marks="#boolean" )? + (text:use-index-source-styles="#boolean" )? (text:index-scope="document | chapter" )? - (text:relative-tab-stop-position="<boolean>" )? + (text:relative-tab-stop-position="#boolean" )? (<text:index-title-template ... >)? (<text:table-of-content-entry-template ... >)* (<text:index-source-styles ... >)* >  @@ -26731,7 +26731,7 @@

text:text-input Element

Child Relations - <text:text-input (text:description="<string>" )? + <text:text-input (text:description="#string" )? TEXT>  @@ -26768,10 +26768,10 @@

text:time Element

Child Relations - <text:time (text:fixed="<boolean>" )? - (style:data-style-name="(<NCName>)?" )? - (text:time-value="<time> | <dateTime>" )? - (text:time-adjust="<duration>" )? + <text:time (text:fixed="#boolean" )? + (style:data-style-name="(#NCName)?" )? + (text:time-value="#time | #dateTime" )? + (text:time-adjust="#duration" )? TEXT>  @@ -26805,7 +26805,7 @@

text:title Element

Child Relations - <text:title (text:fixed="<boolean>" )? + <text:title (text:fixed="#boolean" )? TEXT>  @@ -26839,7 +26839,7 @@

text:toc-mark Element

Child Relations - <text:toc-mark text:string-value="<string>" (text:outline-level="<positiveInteger>" )? + <text:toc-mark text:string-value="#string" (text:outline-level="#positiveInteger" )? >  @@ -26872,7 +26872,7 @@

text:toc-mark-end Element

Child Relations - <text:toc-mark-end text:id="<string>" >  + <text:toc-mark-end text:id="#string" > 
@@ -26906,7 +26906,7 @@

text:toc-mark-start Element

Child Relations <text:toc-mark-start - (text:id="<string>" (text:outline-level="<positiveInteger>" )? + (text:id="#string" (text:outline-level="#positiveInteger" )? )>  @@ -26940,7 +26940,7 @@

text:tracked-changes Element Child Relations - <text:tracked-changes (text:track-changes="<boolean>" )? + <text:tracked-changes (text:track-changes="#boolean" )? (<text:changed-region ... >)* >  @@ -26981,13 +26981,13 @@

text:user-defined Element

Child Relations - <text:user-defined (text:fixed="<boolean>" )? - text:name="<string>" (style:data-style-name="(<NCName>)?" )? - (office:value="<double>" )? - (office:date-value="<date> | <dateTime>" )? - (office:time-value="<duration>" )? - (office:boolean-value="<boolean>" )? - (office:string-value="<string>" )? + <text:user-defined (text:fixed="#boolean" )? + text:name="#string" (style:data-style-name="(#NCName)?" )? + (office:value="#double" )? + (office:date-value="#date | #dateTime" )? + (office:time-value="#duration" )? + (office:boolean-value="#boolean" )? + (office:string-value="#string" )? TEXT>  @@ -27028,16 +27028,16 @@

text:user-field-decl Element Child Relations - <text:user-field-decl text:name="<string>" (text:formula="<string>" )? + <text:user-field-decl text:name="#string" (text:formula="#string" )? - (office:value-type="float" office:value="<double>" ) | - (office:value-type="percentage" office:value="<double>" ) | - (office:value-type="currency" office:value="<double>" (office:currency="<string>" )? + (office:value-type="float" office:value="#double" ) | + (office:value-type="percentage" office:value="#double" ) | + (office:value-type="currency" office:value="#double" (office:currency="#string" )? ) | - (office:value-type="date" office:date-value="<date> | <dateTime>" ) | - (office:value-type="time" office:time-value="<duration>" ) | - (office:value-type="boolean" office:boolean-value="<boolean>" ) | - (office:value-type="string" (office:string-value="<string>" )? + (office:value-type="date" office:date-value="#date | #dateTime" ) | + (office:value-type="time" office:time-value="#duration" ) | + (office:value-type="boolean" office:boolean-value="#boolean" ) | + (office:value-type="string" (office:string-value="#string" )? )>  @@ -27109,8 +27109,8 @@

text:user-field-get Element

Child Relations - <text:user-field-get text:name="<string>" (text:display="value | formula | none" )? - (style:data-style-name="(<NCName>)?" )? + <text:user-field-get text:name="#string" (text:display="value | formula | none" )? + (style:data-style-name="(#NCName)?" )? TEXT>  @@ -27146,8 +27146,8 @@

text:user-field-input Element< Child Relations - <text:user-field-input text:name="<string>" (text:description="<string>" )? - (style:data-style-name="(<NCName>)?" )? + <text:user-field-input text:name="#string" (text:description="#string" )? + (style:data-style-name="(#NCName)?" )? TEXT>  @@ -27195,11 +27195,11 @@

text:user-index Element

Child Relations - <text:user-index (text:style-name="(<NCName>)?" )? - text:name="<string>" (text:protected="<boolean>" )? - (text:protection-key="<string>" )? - (text:protection-key-digest-algorithm="<anyIRI>" )? - (xml:id="<ID>" )? + <text:user-index (text:style-name="(#NCName)?" )? + text:name="#string" (text:protected="#boolean" )? + (text:protection-key="#string" )? + (text:protection-key-digest-algorithm="#anyIRI" )? + (xml:id="#ID" )? <text:user-index-source ... ><text:index-body ... >>  @@ -27234,7 +27234,7 @@

text:user-index-entry-tem Child Relations - <text:user-index-entry-template text:outline-level="<positiveInteger>" text:style-name="(<NCName>)?" (<text:index-entry-chapter ... > | <text:index-entry-page-number ... > | <text:index-entry-text ... > | <text:index-entry-span ... > | <text:index-entry-tab-stop ... > | <text:index-entry-link-start ... > | <text:index-entry-link-end ... >)* >  + <text:user-index-entry-template text:outline-level="#positiveInteger" text:style-name="(#NCName)?" (<text:index-entry-chapter ... > | <text:index-entry-page-number ... > | <text:index-entry-text ... > | <text:index-entry-span ... > | <text:index-entry-tab-stop ... > | <text:index-entry-link-start ... > | <text:index-entry-link-end ... >)* > 
@@ -27268,8 +27268,8 @@

text:user-index-mark Element Child Relations - <text:user-index-mark text:string-value="<string>" (text:outline-level="<positiveInteger>" )? - text:index-name="<string>" >  + <text:user-index-mark text:string-value="#string" (text:outline-level="#positiveInteger" )? + text:index-name="#string" > 
@@ -27301,7 +27301,7 @@

text:user-index-mark-end Elemen Child Relations - <text:user-index-mark-end text:id="<string>" >  + <text:user-index-mark-end text:id="#string" > 
@@ -27335,8 +27335,8 @@

text:user-index-mark-start El Child Relations - <text:user-index-mark-start text:id="<string>" (text:outline-level="<positiveInteger>" )? - text:index-name="<string>" >  + <text:user-index-mark-start text:id="#string" (text:outline-level="#positiveInteger" )? + text:index-name="#string" > 
@@ -27375,15 +27375,15 @@

text:user-index-source Element Child Relations <text:user-index-source (text:index-scope="document | chapter" )? - (text:relative-tab-stop-position="<boolean>" )? - (text:use-index-marks="<boolean>" )? - (text:use-index-source-styles="<boolean>" )? - (text:use-graphics="<boolean>" )? - (text:use-tables="<boolean>" )? - (text:use-floating-frames="<boolean>" )? - (text:use-objects="<boolean>" )? - (text:copy-outline-levels="<boolean>" )? - text:index-name="<string>" (<text:index-title-template ... >)? + (text:relative-tab-stop-position="#boolean" )? + (text:use-index-marks="#boolean" )? + (text:use-index-source-styles="#boolean" )? + (text:use-graphics="#boolean" )? + (text:use-tables="#boolean" )? + (text:use-floating-frames="#boolean" )? + (text:use-objects="#boolean" )? + (text:copy-outline-levels="#boolean" )? + text:index-name="#string" (<text:index-title-template ... >)? (<text:user-index-entry-template ... >)* (<text:index-source-styles ... >)* >  @@ -27411,7 +27411,7 @@

text:variable-decl Element

Child Relations - <text:variable-decl text:name="<string>" office:value-type="float | time | date | percentage | currency | boolean | string" >  + <text:variable-decl text:name="#string" office:value-type="float | time | date | percentage | currency | boolean | string" > 
@@ -27482,8 +27482,8 @@

text:variable-get Element

Child Relations - <text:variable-get text:name="<string>" (text:display="value | formula" )? - (style:data-style-name="(<NCName>)?" )? + <text:variable-get text:name="#string" (text:display="value | formula" )? + (style:data-style-name="(#NCName)?" )? TEXT>  @@ -27521,9 +27521,9 @@

text:variable-input Element

Child Relations - <text:variable-input text:name="<string>" (text:description="<string>" )? + <text:variable-input text:name="#string" (text:description="#string" )? office:value-type="float | time | date | percentage | currency | boolean | string" (text:display="value | none" )? - (style:data-style-name="(<NCName>)?" )? + (style:data-style-name="(#NCName)?" )? TEXT>  @@ -27573,18 +27573,18 @@

text:variable-set Element

Child Relations - <text:variable-set text:name="<string>" (text:formula="<string>" )? + <text:variable-set text:name="#string" (text:formula="#string" )? - (office:value-type="float" office:value="<double>" ) | - (office:value-type="percentage" office:value="<double>" ) | - (office:value-type="currency" office:value="<double>" (office:currency="<string>" )? + (office:value-type="float" office:value="#double" ) | + (office:value-type="percentage" office:value="#double" ) | + (office:value-type="currency" office:value="#double" (office:currency="#string" )? ) | - (office:value-type="date" office:date-value="<date> | <dateTime>" ) | - (office:value-type="time" office:time-value="<duration>" ) | - (office:value-type="boolean" office:boolean-value="<boolean>" ) | - (office:value-type="string" (office:string-value="<string>" )? + (office:value-type="date" office:date-value="#date | #dateTime" ) | + (office:value-type="time" office:time-value="#duration" ) | + (office:value-type="boolean" office:boolean-value="#boolean" ) | + (office:value-type="string" (office:string-value="#string" )? ) (text:display="value | none" )? - (style:data-style-name="(<NCName>)?" )? + (style:data-style-name="(#NCName)?" )? TEXT>  @@ -27620,8 +27620,8 @@

text:word-count Element

Child Relations - <CHOICE_NAME_CLASS ( (style:num-format="(1 | i | I | <string>)?" | - (style:num-format="a | A" (style:num-letter-sync="<boolean>" )? + <CHOICE_NAME_CLASS ( (style:num-format="(1 | i | I | #string)?" | + (style:num-format="a | A" (style:num-letter-sync="#boolean" )? ))? )? TEXT>  @@ -27677,7 +27677,7 @@

anim:audio-level Attribute

RNG Relations - anim:audio-level="<double>"   + anim:audio-level="#double"  
@@ -27754,7 +27754,7 @@

anim:command Attribute

RNG Relations - anim:command="<string>"   + anim:command="#string"  
@@ -27783,7 +27783,7 @@

anim:formula Attribute

RNG Relations - anim:formula="<string>"   + anim:formula="#string"  
@@ -27812,7 +27812,7 @@

anim:id Attribute

RNG Relations - anim:id="<NCName>"   + anim:id="#NCName"  
@@ -27837,7 +27837,7 @@

anim:iterate-interval Attribute< RNG Relations - anim:iterate-interval="<duration>"   + anim:iterate-interval="#duration"  
@@ -27862,7 +27862,7 @@

anim:iterate-type Attribute

RNG Relations - anim:iterate-type="<string>"   + anim:iterate-type="#string"  
@@ -27887,7 +27887,7 @@

anim:name Attribute

RNG Relations - anim:name="<string>"   + anim:name="#string"  
@@ -27919,7 +27919,7 @@

anim:sub-item Attribute

RNG Relations - anim:sub-item="<string>"   + anim:sub-item="#string"  
@@ -27944,7 +27944,7 @@

anim:value Attribute

RNG Relations - anim:value="<string>"   + anim:value="#string"  
@@ -27969,7 +27969,7 @@

chart:angle-offset Attribute&nb RNG Relations - chart:angle-offset="<string>"   + chart:angle-offset="#string"  
@@ -27994,7 +27994,7 @@

chart:attached-axis Attribute< RNG Relations - chart:attached-axis="<string>"   + chart:attached-axis="#string"  
@@ -28020,7 +28020,7 @@

chart:auto-position Attribute& RNG Relations - chart:auto-position="<boolean>"   + chart:auto-position="#boolean"  
@@ -28046,7 +28046,7 @@

chart:auto-size Attribute (ne RNG Relations - chart:auto-size="<boolean>"   + chart:auto-size="#boolean"  
@@ -28072,7 +28072,7 @@

chart:automatic-content Attrib RNG Relations - chart:automatic-content="<boolean>"   + chart:automatic-content="#boolean"  
@@ -28127,7 +28127,7 @@

chart:axis-position Attribute& RNG Relations - chart:axis-position="start | end | <double>"   + chart:axis-position="start | end | #double"  
@@ -28206,7 +28206,7 @@

chart:column-mapping Attribute RNG Relations - chart:column-mapping="<string>"   + chart:column-mapping="#string"  
@@ -28232,7 +28232,7 @@

chart:connect-bars Attribute&nb RNG Relations - chart:connect-bars="<boolean>"   + chart:connect-bars="#boolean"  
@@ -28286,7 +28286,7 @@

chart:data-label-series Attrib RNG Relations - chart:data-label-series="<boolean>"   + chart:data-label-series="#boolean"  
@@ -28312,7 +28312,7 @@

chart:data-label-symbol Attrib RNG Relations - chart:data-label-symbol="<boolean>"   + chart:data-label-symbol="#boolean"  
@@ -28338,7 +28338,7 @@

chart:data-label-text Attribute< RNG Relations - chart:data-label-text="<boolean>"   + chart:data-label-text="#boolean"  
@@ -28392,7 +28392,7 @@

chart:deep Attribute (new in ODF 1 RNG Relations - chart:deep="<boolean>"   + chart:deep="#boolean"  
@@ -28446,7 +28446,7 @@

chart:display-equation Attribut RNG Relations - chart:display-equation="<boolean>"   + chart:display-equation="#boolean"  
@@ -28472,7 +28472,7 @@

chart:display-label Attribute& RNG Relations - chart:display-label="<boolean>"   + chart:display-label="#boolean"  
@@ -28498,7 +28498,7 @@

chart:display-r-square Attribut RNG Relations - chart:display-r-square="<boolean>"   + chart:display-r-square="#boolean"  
@@ -28556,7 +28556,7 @@

chart:error-lower-indicato RNG Relations - chart:error-lower-indicator="<boolean>"   + chart:error-lower-indicator="#boolean"  
@@ -28581,7 +28581,7 @@

chart:error-lower-limit Attrib RNG Relations - chart:error-lower-limit="<double>"   + chart:error-lower-limit="#double"  
@@ -28606,7 +28606,7 @@

chart:error-lower-range Attrib RNG Relations - chart:error-lower-range="<string>"   + chart:error-lower-range="#string"  
@@ -28631,7 +28631,7 @@

chart:error-margin Attribute&nb RNG Relations - chart:error-margin="<double>"   + chart:error-margin="#double"  
@@ -28656,7 +28656,7 @@

chart:error-percentage Attribut RNG Relations - chart:error-percentage="<double>"   + chart:error-percentage="#double"  
@@ -28682,7 +28682,7 @@

chart:error-upper-indicato RNG Relations - chart:error-upper-indicator="<boolean>"   + chart:error-upper-indicator="#boolean"  
@@ -28707,7 +28707,7 @@

chart:error-upper-limit Attrib RNG Relations - chart:error-upper-limit="<double>"   + chart:error-upper-limit="#double"  
@@ -28732,7 +28732,7 @@

chart:error-upper-range Attrib RNG Relations - chart:error-upper-range="<string>"   + chart:error-upper-range="#string"  
@@ -28757,7 +28757,7 @@

chart:gap-width Attribute (ne RNG Relations - chart:gap-width="<integer>"   + chart:gap-width="#integer"  
@@ -28783,7 +28783,7 @@

chart:group-bars-per-axis At RNG Relations - chart:group-bars-per-axis="<boolean>"   + chart:group-bars-per-axis="#boolean"  
@@ -28834,7 +28834,7 @@

chart:include-hidden-cells RNG Relations - chart:include-hidden-cells="<boolean>"   + chart:include-hidden-cells="#boolean"  
@@ -28890,7 +28890,7 @@

chart:interval-major Attribute RNG Relations - chart:interval-major="<double>"   + chart:interval-major="#double"  
@@ -28915,7 +28915,7 @@

chart:interval-minor-divi RNG Relations - chart:interval-minor-divisor="<positiveInteger>"   + chart:interval-minor-divisor="#positiveInteger"  
@@ -28941,7 +28941,7 @@

chart:japanese-candle-stic RNG Relations - chart:japanese-candle-stick="<boolean>"   + chart:japanese-candle-stick="#boolean"  
@@ -28993,7 +28993,7 @@

chart:label-cell-address Attr RNG Relations - chart:label-cell-address="<string>"   + chart:label-cell-address="#string"  
@@ -29178,7 +29178,7 @@

chart:lines Attribute (new in ODF RNG Relations - chart:lines="<boolean>"   + chart:lines="#boolean"  
@@ -29204,7 +29204,7 @@

chart:link-data-style- RNG Relations - chart:link-data-style-to-source="<boolean>"   + chart:link-data-style-to-source="#boolean"  
@@ -29230,7 +29230,7 @@

chart:logarithmic Attribute  RNG Relations - chart:logarithmic="<boolean>"   + chart:logarithmic="#boolean"  
@@ -29255,7 +29255,7 @@

chart:maximum Attribute (new in RNG Relations - chart:maximum="<double>"   + chart:maximum="#double"  
@@ -29281,7 +29281,7 @@

chart:mean-value Attribute ( RNG Relations - chart:mean-value="<boolean>"   + chart:mean-value="#boolean"  
@@ -29306,7 +29306,7 @@

chart:minimum Attribute (new in RNG Relations - chart:minimum="<double>"   + chart:minimum="#double"  
@@ -29331,7 +29331,7 @@

chart:name Attribute

RNG Relations - chart:name="<string>"   + chart:name="#string"  
@@ -29356,7 +29356,7 @@

chart:origin Attribute (new in O RNG Relations - chart:origin="<double>"   + chart:origin="#double"  
@@ -29381,7 +29381,7 @@

chart:overlap Attribute (new in RNG Relations - chart:overlap="<integer>"   + chart:overlap="#integer"  
@@ -29407,7 +29407,7 @@

chart:percentage Attribute ( RNG Relations - chart:percentage="<boolean>"   + chart:percentage="#boolean"  
@@ -29432,7 +29432,7 @@

chart:pie-offset Attribute ( RNG Relations - chart:pie-offset="<nonNegativeInteger>"   + chart:pie-offset="#nonNegativeInteger"  
@@ -29458,7 +29458,7 @@

chart:regression-forc RNG Relations - chart:regression-force-intercept="<boolean>"   + chart:regression-force-intercept="#boolean"  
@@ -29483,7 +29483,7 @@

chart:regression-inte RNG Relations - chart:regression-intercept-value="<double>"   + chart:regression-intercept-value="#double"  
@@ -29508,7 +29508,7 @@

chart:regression-max-degre RNG Relations - chart:regression-max-degree="<positiveInteger>"   + chart:regression-max-degree="#positiveInteger"  
@@ -29560,7 +29560,7 @@

chart:regression-name Attribute< RNG Relations - chart:regression-name="<string>"   + chart:regression-name="#string"  
@@ -29585,7 +29585,7 @@

chart:regression-period Attrib RNG Relations - chart:regression-period="<positiveInteger>"   + chart:regression-period="#positiveInteger"  
@@ -29641,7 +29641,7 @@

chart:repeated Attribute

RNG Relations - chart:repeated="<positiveInteger>"   + chart:repeated="#positiveInteger"  
@@ -29667,7 +29667,7 @@

chart:reverse-direction Attrib RNG Relations - chart:reverse-direction="<boolean>"   + chart:reverse-direction="#boolean"  
@@ -29693,7 +29693,7 @@

chart:right-angled-axes Attrib RNG Relations - chart:right-angled-axes="<boolean>"   + chart:right-angled-axes="#boolean"  
@@ -29718,7 +29718,7 @@

chart:row-mapping Attribute

RNG Relations - chart:row-mapping="<string>"   + chart:row-mapping="#string"  
@@ -29744,7 +29744,7 @@

chart:scale-text Attribute ( RNG Relations - chart:scale-text="<boolean>"   + chart:scale-text="#boolean"  
@@ -29824,7 +29824,7 @@

chart:sort-by-x-values Attribut RNG Relations - chart:sort-by-x-values="<boolean>"   + chart:sort-by-x-values="#boolean"  
@@ -29849,7 +29849,7 @@

chart:spline-order Attribute&nb RNG Relations - chart:spline-order="<positiveInteger>"   + chart:spline-order="#positiveInteger"  
@@ -29874,7 +29874,7 @@

chart:spline-resolution Attrib RNG Relations - chart:spline-resolution="<positiveInteger>"   + chart:spline-resolution="#positiveInteger"  
@@ -29900,7 +29900,7 @@

chart:stacked Attribute (new in RNG Relations - chart:stacked="<boolean>"   + chart:stacked="#boolean"  
@@ -29944,7 +29944,7 @@

chart:style-name Attribute

RNG Relations - chart:style-name="(<NCName>)?"   + chart:style-name="(#NCName)?"  
@@ -30163,7 +30163,7 @@

chart:text-overlap Attribute&nb RNG Relations - chart:text-overlap="<boolean>"   + chart:text-overlap="#boolean"  
@@ -30189,7 +30189,7 @@

chart:three-dimensional Attrib RNG Relations - chart:three-dimensional="<boolean>"   + chart:three-dimensional="#boolean"  
@@ -30242,7 +30242,7 @@

chart:tick-marks-major-in RNG Relations - chart:tick-marks-major-inner="<boolean>"   + chart:tick-marks-major-inner="#boolean"  
@@ -30268,7 +30268,7 @@

chart:tick-marks-major-ou RNG Relations - chart:tick-marks-major-outer="<boolean>"   + chart:tick-marks-major-outer="#boolean"  
@@ -30294,7 +30294,7 @@

chart:tick-marks-minor-in RNG Relations - chart:tick-marks-minor-inner="<boolean>"   + chart:tick-marks-minor-inner="#boolean"  
@@ -30320,7 +30320,7 @@

chart:tick-marks-minor-ou RNG Relations - chart:tick-marks-minor-outer="<boolean>"   + chart:tick-marks-minor-outer="#boolean"  
@@ -30372,7 +30372,7 @@

chart:values-cell-rang RNG Relations - chart:values-cell-range-address="<string>"   + chart:values-cell-range-address="#string"  
@@ -30398,7 +30398,7 @@

chart:vertical Attribute (new RNG Relations - chart:vertical="<boolean>"   + chart:vertical="#boolean"  
@@ -30424,7 +30424,7 @@

chart:visible Attribute (new in RNG Relations - chart:visible="<boolean>"   + chart:visible="#boolean"  
@@ -30453,7 +30453,7 @@

config:name Attribute

RNG Relations - config:name="<string>"   + config:name="#string"  
@@ -30510,7 +30510,7 @@

db:additional-column-st RNG Relations - db:additional-column-statement="<string>"   + db:additional-column-statement="#string"  
@@ -30536,7 +30536,7 @@

db:append-table-alias-name RNG Relations - db:append-table-alias-name="<boolean>"   + db:append-table-alias-name="#boolean"  
@@ -30563,7 +30563,7 @@

db:apply-command Attribute ( RNG Relations - db:apply-command="<boolean>"   + db:apply-command="#boolean"  
@@ -30589,7 +30589,7 @@

db:as-template Attribute (new RNG Relations - db:as-template="<boolean>"   + db:as-template="#boolean"  
@@ -30614,7 +30614,7 @@

db:base-dn Attribute (new in ODF 1 RNG Relations - db:base-dn="<string>"   + db:base-dn="#string"  
@@ -30670,7 +30670,7 @@

db:catalog-name Attribute (ne RNG Relations - db:catalog-name="<string>"   + db:catalog-name="#string"  
@@ -30697,7 +30697,7 @@

db:command Attribute (new in ODF 1 RNG Relations - db:command="<string>"   + db:command="#string"  
@@ -30723,7 +30723,7 @@

db:data-source-setting- RNG Relations - db:data-source-setting-is-list="<boolean>"   + db:data-source-setting-is-list="#boolean"  
@@ -30748,7 +30748,7 @@

db:data-source-setting-nam RNG Relations - db:data-source-setting-name="<string>"   + db:data-source-setting-name="#string"  
@@ -30856,7 +30856,7 @@

db:database-name Attribute ( RNG Relations - db:database-name="<string>"   + db:database-name="#string"  
@@ -30881,7 +30881,7 @@

db:decimal Attribute (new in ODF 1 RNG Relations - db:decimal="<string>"   + db:decimal="#string"  
@@ -30906,7 +30906,7 @@

db:default-cell-style-name RNG Relations - db:default-cell-style-name="(<NCName>)?"   + db:default-cell-style-name="(#NCName)?"  
@@ -30932,7 +30932,7 @@

db:default-row-style-name At RNG Relations - db:default-row-style-name="(<NCName>)?"   + db:default-row-style-name="(#NCName)?"  
@@ -30991,7 +30991,7 @@

db:description Attribute (new RNG Relations - db:description="<string>"   + db:description="#string"  
@@ -31017,7 +31017,7 @@

db:enable-sql92-check Attribute< RNG Relations - db:enable-sql92-check="<boolean>"   + db:enable-sql92-check="#boolean"  
@@ -31068,7 +31068,7 @@

db:escape-processing Attribute RNG Relations - db:escape-processing="<boolean>"   + db:escape-processing="#boolean"  
@@ -31093,7 +31093,7 @@

db:extension Attribute (new in O RNG Relations - db:extension="<string>"   + db:extension="#string"  
@@ -31118,7 +31118,7 @@

db:field Attribute (new in ODF 1.2) RNG Relations - db:field="<string>"   + db:field="#string"  
@@ -31143,7 +31143,7 @@

db:hostname Attribute (new in ODF RNG Relations - db:hostname="<string>"   + db:hostname="#string"  
@@ -31169,7 +31169,7 @@

db:ignore-driver-privilege RNG Relations - db:ignore-driver-privileges="<boolean>"   + db:ignore-driver-privileges="#boolean"  
@@ -31195,7 +31195,7 @@

db:is-ascending Attribute (ne RNG Relations - db:is-ascending="<boolean>"   + db:is-ascending="#boolean"  
@@ -31221,7 +31221,7 @@

db:is-autoincrement Attribute& RNG Relations - db:is-autoincrement="<boolean>"   + db:is-autoincrement="#boolean"  
@@ -31247,7 +31247,7 @@

db:is-clustered Attribute (ne RNG Relations - db:is-clustered="<boolean>"   + db:is-clustered="#boolean"  
@@ -31273,7 +31273,7 @@

db:is-empty-allowed Attribute& RNG Relations - db:is-empty-allowed="<boolean>"   + db:is-empty-allowed="#boolean"  
@@ -31300,7 +31300,7 @@

db:is-first-row-header-lin RNG Relations - db:is-first-row-header-line="<boolean>"   + db:is-first-row-header-line="#boolean"  
@@ -31352,7 +31352,7 @@

db:is-password-required Attrib RNG Relations - db:is-password-required="<boolean>"   + db:is-password-required="#boolean"  
@@ -31378,7 +31378,7 @@

db:is-table-name-lengt RNG Relations - db:is-table-name-length-limited="<boolean>"   + db:is-table-name-length-limited="#boolean"  
@@ -31404,7 +31404,7 @@

db:is-unique Attribute (new in O RNG Relations - db:is-unique="<boolean>"   + db:is-unique="#boolean"  
@@ -31429,7 +31429,7 @@

db:local-socket Attribute (ne RNG Relations - db:local-socket="<string>"   + db:local-socket="#string"  
@@ -31454,7 +31454,7 @@

db:login-timeout Attribute ( RNG Relations - db:login-timeout="<positiveInteger>"   + db:login-timeout="#positiveInteger"  
@@ -31479,7 +31479,7 @@

db:max-row-count Attribute ( RNG Relations - db:max-row-count="<integer>"   + db:max-row-count="#integer"  
@@ -31504,7 +31504,7 @@

db:media-type Attribute (new in RNG Relations - db:media-type="<string>"   + db:media-type="#string"  
@@ -31541,7 +31541,7 @@

db:name Attribute (new in ODF 1.2) RNG Relations - db:name="<string>"   + db:name="#string"  
@@ -31567,7 +31567,7 @@

db:parameter-name-subst RNG Relations - db:parameter-name-substitution="<boolean>"   + db:parameter-name-substitution="#boolean"  
@@ -31592,7 +31592,7 @@

db:port Attribute (new in ODF 1.2) RNG Relations - db:port="<positiveInteger>"   + db:port="#positiveInteger"  
@@ -31617,7 +31617,7 @@

db:precision Attribute (new in O RNG Relations - db:precision="<positiveInteger>"   + db:precision="#positiveInteger"  
@@ -31642,7 +31642,7 @@

db:referenced-table-name Attr RNG Relations - db:referenced-table-name="<string>"   + db:referenced-table-name="#string"  
@@ -31667,7 +31667,7 @@

db:related-column-name Attribut RNG Relations - db:related-column-name="<string>"   + db:related-column-name="#string"  
@@ -31692,7 +31692,7 @@

db:row-retrieving-statemen RNG Relations - db:row-retrieving-statement="<string>"   + db:row-retrieving-statement="#string"  
@@ -31717,7 +31717,7 @@

db:scale Attribute (new in ODF 1.2) RNG Relations - db:scale="<positiveInteger>"   + db:scale="#positiveInteger"  
@@ -31744,7 +31744,7 @@

db:schema-name Attribute (new RNG Relations - db:schema-name="<string>"   + db:schema-name="#string"  
@@ -31771,7 +31771,7 @@

db:show-deleted Attribute (ne RNG Relations - db:show-deleted="<boolean>"   + db:show-deleted="#boolean"  
@@ -31796,7 +31796,7 @@

db:string Attribute (new in ODF 1.2 RNG Relations - db:string="<string>"   + db:string="#string"  
@@ -31823,7 +31823,7 @@

db:style-name Attribute (new in RNG Relations - db:style-name="(<NCName>)?"   + db:style-name="(#NCName)?"  
@@ -31849,7 +31849,7 @@

db:suppress-version-column RNG Relations - db:suppress-version-columns="<boolean>"   + db:suppress-version-columns="#boolean"  
@@ -31874,7 +31874,7 @@

db:system-driver-settings At RNG Relations - db:system-driver-settings="<string>"   + db:system-driver-settings="#string"  
@@ -31899,7 +31899,7 @@

db:thousand Attribute (new in ODF RNG Relations - db:thousand="<string>"   + db:thousand="#string"  
@@ -31929,7 +31929,7 @@

db:title Attribute (new in ODF 1.2) RNG Relations - db:title="<string>"   + db:title="#string"  
@@ -31955,7 +31955,7 @@

db:type[1] Attribute (new in ODF 1.2) RNG Relations - db:type="<string>"   + db:type="#string"  
@@ -32034,7 +32034,7 @@

db:type-name Attribute (new in O RNG Relations - db:type-name="<string>"   + db:type-name="#string"  
@@ -32089,7 +32089,7 @@

db:use-catalog Attribute (new RNG Relations - db:use-catalog="<boolean>"   + db:use-catalog="#boolean"  
@@ -32115,7 +32115,7 @@

db:use-system-user Attribute&nb RNG Relations - db:use-system-user="<boolean>"   + db:use-system-user="#boolean"  
@@ -32140,7 +32140,7 @@

db:user-name Attribute (new in O RNG Relations - db:user-name="<string>"   + db:user-name="#string"  
@@ -32166,7 +32166,7 @@

db:visible Attribute (new in ODF 1 RNG Relations - db:visible="<boolean>"   + db:visible="#boolean"  
@@ -32295,7 +32295,7 @@

dr3d:close-back Attribute (ne RNG Relations - dr3d:close-back="<boolean>"   + dr3d:close-back="#boolean"  
@@ -32321,7 +32321,7 @@

dr3d:close-front Attribute ( RNG Relations - dr3d:close-front="<boolean>"   + dr3d:close-front="#boolean"  
@@ -32525,7 +32525,7 @@

dr3d:enabled Attribute

RNG Relations - dr3d:enabled="<boolean>"   + dr3d:enabled="#boolean"  
@@ -32550,7 +32550,7 @@

dr3d:end-angle Attribute (new RNG Relations - dr3d:end-angle="<string>"   + dr3d:end-angle="#string"  
@@ -32601,7 +32601,7 @@

dr3d:horizontal-segments Attr RNG Relations - dr3d:horizontal-segments="<nonNegativeInteger>"   + dr3d:horizontal-segments="#nonNegativeInteger"  
@@ -32656,7 +32656,7 @@

dr3d:lighting-mode[2] Attribute RNG Relations - dr3d:lighting-mode="<boolean>"   + dr3d:lighting-mode="#boolean"  
@@ -32869,7 +32869,7 @@

dr3d:shadow-slant Attribute

RNG Relations - dr3d:shadow-slant="<string>"   + dr3d:shadow-slant="#string"  
@@ -32945,7 +32945,7 @@

dr3d:specular Attribute

RNG Relations - dr3d:specular="<boolean>"   + dr3d:specular="#boolean"  
@@ -33134,7 +33134,7 @@

dr3d:transform Attribute

RNG Relations - dr3d:transform="<string>"   + dr3d:transform="#string"  
@@ -33159,7 +33159,7 @@

dr3d:vertical-segments Attribut RNG Relations - dr3d:vertical-segments="<nonNegativeInteger>"   + dr3d:vertical-segments="#nonNegativeInteger"  
@@ -33295,7 +33295,7 @@

draw:angle Attribute

RNG Relations - draw:angle="<string>"   + draw:angle="#string"  
@@ -33320,7 +33320,7 @@

draw:archive Attribute

RNG Relations - draw:archive="<string>"   + draw:archive="#string"  
@@ -33346,7 +33346,7 @@

draw:auto-grow-height Attribute< RNG Relations - draw:auto-grow-height="<boolean>"   + draw:auto-grow-height="#boolean"  
@@ -33372,7 +33372,7 @@

draw:auto-grow-width Attribute RNG Relations - draw:auto-grow-width="<boolean>"   + draw:auto-grow-width="#boolean"  
@@ -33474,7 +33474,7 @@

draw:caption-angle Attribute&nb RNG Relations - draw:caption-angle="<string>"   + draw:caption-angle="#string"  
@@ -33579,7 +33579,7 @@

draw:caption-fit-line-len RNG Relations - draw:caption-fit-line-length="<boolean>"   + draw:caption-fit-line-length="#boolean"  
@@ -33645,7 +33645,7 @@

draw:caption-id Attribute (ne RNG Relations - draw:caption-id="<IDREF>"   + draw:caption-id="#IDREF"  
@@ -33774,7 +33774,7 @@

draw:chain-next-name Attribute RNG Relations - draw:chain-next-name="<string>"   + draw:chain-next-name="#string"  
@@ -33799,7 +33799,7 @@

draw:class-id Attribute

RNG Relations - draw:class-id="<string>"   + draw:class-id="#string"  
@@ -33846,7 +33846,7 @@

draw:class-names Attribute

RNG Relations draw:class-names=" -START_list(<NCName>)* +START_list(#NCName)* END_list"   @@ -33872,7 +33872,7 @@

draw:code Attribute

RNG Relations - draw:code="<string>"   + draw:code="#string"  
@@ -33924,7 +33924,7 @@

draw:color-inversion Attribute RNG Relations - draw:color-inversion="<boolean>"   + draw:color-inversion="#boolean"  
@@ -34030,7 +34030,7 @@

draw:concentric- RNG Relations - draw:concentric-gradient-fill-allowed="<boolean>"   + draw:concentric-gradient-fill-allowed="#boolean"  
@@ -34080,7 +34080,7 @@

draw:control Attribute

RNG Relations - draw:control="<IDREF>"   + draw:control="#IDREF"  
@@ -34105,7 +34105,7 @@

draw:copy-of Attribute

RNG Relations - draw:copy-of="<string>"   + draw:copy-of="#string"  
@@ -34158,7 +34158,7 @@

draw:corners Attribute

RNG Relations - draw:corners="<positiveInteger>"   + draw:corners="#positiveInteger"  
@@ -34235,7 +34235,7 @@

draw:data Attribute

RNG Relations - draw:data="<string>"   + draw:data="#string"  
@@ -34260,7 +34260,7 @@

draw:decimal-places Attribute& RNG Relations - draw:decimal-places="<nonNegativeInteger>"   + draw:decimal-places="#nonNegativeInteger"  
@@ -34320,7 +34320,7 @@

draw:display-name Attribute

RNG Relations - draw:display-name="<string>"   + draw:display-name="#string"  
@@ -34398,7 +34398,7 @@

draw:dots1 Attribute

RNG Relations - draw:dots1="<integer>"   + draw:dots1="#integer"  
@@ -34449,7 +34449,7 @@

draw:dots2 Attribute

RNG Relations - draw:dots2="<integer>"   + draw:dots2="#integer"  
@@ -34554,7 +34554,7 @@

draw:end-angle Attribute

RNG Relations - draw:end-angle="<string>"   + draw:end-angle="#string"  
@@ -34604,7 +34604,7 @@

draw:end-glue-point Attribute< RNG Relations - draw:end-glue-point="<nonNegativeInteger>"   + draw:end-glue-point="#nonNegativeInteger"  
@@ -34729,7 +34729,7 @@

draw:end-shape Attribute

RNG Relations - draw:end-shape="<IDREF>"   + draw:end-shape="#IDREF"  
@@ -34779,7 +34779,7 @@

draw:enhanced-path Attribute RNG Relations - draw:enhanced-path="<string>"   + draw:enhanced-path="#string"  
@@ -34836,7 +34836,7 @@

draw:extrusion Attribute

RNG Relations - draw:extrusion="<boolean>"   + draw:extrusion="#boolean"  
@@ -34862,7 +34862,7 @@

draw:extrusion-allowed Attribut RNG Relations - draw:extrusion-allowed="<boolean>"   + draw:extrusion-allowed="#boolean"  
@@ -34913,7 +34913,7 @@

draw:extrusion-color Attribute RNG Relations - draw:extrusion-color="<boolean>"   + draw:extrusion-color="#boolean"  
@@ -34940,7 +34940,7 @@

draw:extrusion-depth Attribute RNG Relations draw:extrusion-depth=" -START_liststring]<double> +START_liststring]#double END_list"   @@ -35017,7 +35017,7 @@

draw:extrusion-first- RNG Relations - draw:extrusion-first-light-harsh="<boolean>"   + draw:extrusion-first-light-harsh="#boolean"  
@@ -35068,7 +35068,7 @@

draw:extrusion-light-face At RNG Relations - draw:extrusion-light-face="<boolean>"   + draw:extrusion-light-face="#boolean"  
@@ -35094,7 +35094,7 @@

draw:extrusion-metal Attribute RNG Relations - draw:extrusion-metal="<boolean>"   + draw:extrusion-metal="#boolean"  
@@ -35119,7 +35119,7 @@

draw:extrusion- RNG Relations - draw:extrusion-number-of-line-segments="<integer>"   + draw:extrusion-number-of-line-segments="#integer"  
@@ -35172,7 +35172,7 @@

draw:extrusion-rotation- RNG Relations draw:extrusion-rotation-angle=" -START_list<string><string> +START_list#string#string END_list"   @@ -35249,7 +35249,7 @@

draw:extrusion-secon RNG Relations - draw:extrusion-second-light-harsh="<boolean>"   + draw:extrusion-second-light-harsh="#boolean"  
@@ -35326,7 +35326,7 @@

draw:extrusion-skew Attribute< RNG Relations draw:extrusion-skew=" -START_list<double><string> +START_list#double#string END_list"   @@ -35459,7 +35459,7 @@

draw:fill-gradient-name Attrib RNG Relations - draw:fill-gradient-name="(<NCName>)?"   + draw:fill-gradient-name="(#NCName)?"  
@@ -35485,7 +35485,7 @@

draw:fill-hatch-name Attribute RNG Relations - draw:fill-hatch-name="(<NCName>)?"   + draw:fill-hatch-name="(#NCName)?"  
@@ -35512,7 +35512,7 @@

draw:fill-hatch-solid Attribute< RNG Relations - draw:fill-hatch-solid="<boolean>"   + draw:fill-hatch-solid="#boolean"  
@@ -35565,7 +35565,7 @@

draw:fill-image-name Attribute RNG Relations - draw:fill-image-name="(<NCName>)?"   + draw:fill-image-name="(#NCName)?"  
@@ -35703,7 +35703,7 @@

draw:filter-name Attribute

RNG Relations - draw:filter-name="<string>"   + draw:filter-name="#string"  
@@ -35729,7 +35729,7 @@

draw:fit-to-contour Attribute& RNG Relations - draw:fit-to-contour="<boolean>"   + draw:fit-to-contour="#boolean"  
@@ -35755,7 +35755,7 @@

draw:fit-to-size Attribute ( RNG Relations - draw:fit-to-size="<boolean>"   + draw:fit-to-size="#boolean"  
@@ -35780,7 +35780,7 @@

draw:formula Attribute

RNG Relations - draw:formula="<string>"   + draw:formula="#string"  
@@ -35806,7 +35806,7 @@

draw:frame-display-border At RNG Relations - draw:frame-display-border="<boolean>"   + draw:frame-display-border="#boolean"  
@@ -35832,7 +35832,7 @@

draw:frame-display-scroll RNG Relations - draw:frame-display-scrollbar="<boolean>"   + draw:frame-display-scrollbar="#boolean"  
@@ -35907,7 +35907,7 @@

draw:frame-name Attribute

RNG Relations - draw:frame-name="<string>"   + draw:frame-name="#string"  
@@ -35957,7 +35957,7 @@

draw:glue-point-lea RNG Relations - draw:glue-point-leaving-directions="<string>"   + draw:glue-point-leaving-directions="#string"  
@@ -36009,7 +36009,7 @@

draw:glue-points Attribute

RNG Relations - draw:glue-points="<string>"   + draw:glue-points="#string"  
@@ -36035,7 +36035,7 @@

draw:gradient-step-count Attr RNG Relations - draw:gradient-step-count="<nonNegativeInteger>"   + draw:gradient-step-count="#nonNegativeInteger"  
@@ -36136,7 +36136,7 @@

draw:handle-mirror-horiz RNG Relations - draw:handle-mirror-horizontal="<boolean>"   + draw:handle-mirror-horizontal="#boolean"  
@@ -36162,7 +36162,7 @@

draw:handle-mirror-vertica RNG Relations - draw:handle-mirror-vertical="<boolean>"   + draw:handle-mirror-vertical="#boolean"  
@@ -36187,7 +36187,7 @@

draw:handle-polar Attribute

RNG Relations - draw:handle-polar="<string>"   + draw:handle-polar="#string"  
@@ -36212,7 +36212,7 @@

draw:handle-position Attribute RNG Relations - draw:handle-position="<string>"   + draw:handle-position="#string"  
@@ -36237,7 +36237,7 @@

draw:handle-radius-ra RNG Relations - draw:handle-radius-range-maximum="<string>"   + draw:handle-radius-range-maximum="#string"  
@@ -36262,7 +36262,7 @@

draw:handle-radius-ra RNG Relations - draw:handle-radius-range-minimum="<string>"   + draw:handle-radius-range-minimum="#string"  
@@ -36287,7 +36287,7 @@

draw:handle-range-x-maximu RNG Relations - draw:handle-range-x-maximum="<string>"   + draw:handle-range-x-maximum="#string"  
@@ -36312,7 +36312,7 @@

draw:handle-range-x-minimu RNG Relations - draw:handle-range-x-minimum="<string>"   + draw:handle-range-x-minimum="#string"  
@@ -36337,7 +36337,7 @@

draw:handle-range-y-maximu RNG Relations - draw:handle-range-y-maximum="<string>"   + draw:handle-range-y-maximum="#string"  
@@ -36362,7 +36362,7 @@

draw:handle-range-y-minimu RNG Relations - draw:handle-range-y-minimum="<string>"   + draw:handle-range-y-minimum="#string"  
@@ -36388,7 +36388,7 @@

draw:handle-switched Attribute RNG Relations - draw:handle-switched="<boolean>"   + draw:handle-switched="#boolean"  
@@ -36436,7 +36436,7 @@

draw:id[1] Attribute

RNG Relations - draw:id="<NCName>"   + draw:id="#NCName"  
@@ -36462,7 +36462,7 @@

draw:id[2] Attribute

RNG Relations - draw:id="<nonNegativeInteger>"   + draw:id="#nonNegativeInteger"  
@@ -36561,7 +36561,7 @@

draw:layer Attribute

RNG Relations - draw:layer="<string>"   + draw:layer="#string"  
@@ -36663,7 +36663,7 @@

draw:marker-end Attribute (ne RNG Relations - draw:marker-end="(<NCName>)?"   + draw:marker-end="(#NCName)?"  
@@ -36689,7 +36689,7 @@

draw:marker-end-center Attribut RNG Relations - draw:marker-end-center="<boolean>"   + draw:marker-end-center="#boolean"  
@@ -36739,7 +36739,7 @@

draw:marker-start Attribute  RNG Relations - draw:marker-start="(<NCName>)?"   + draw:marker-start="(#NCName)?"  
@@ -36765,7 +36765,7 @@

draw:marker-start-center Attr RNG Relations - draw:marker-start-center="<boolean>"   + draw:marker-start-center="#boolean"  
@@ -36815,7 +36815,7 @@

draw:master-page-name Attribute< RNG Relations - draw:master-page-name="(<NCName>)?"   + draw:master-page-name="(#NCName)?"  
@@ -36841,7 +36841,7 @@

draw:may-script Attribute

RNG Relations - draw:may-script="<boolean>"   + draw:may-script="#boolean"  
@@ -36923,7 +36923,7 @@

draw:mime-type Attribute

RNG Relations - draw:mime-type="<string>"   + draw:mime-type="#string"  
@@ -36949,7 +36949,7 @@

draw:mirror-horizontal Attribut RNG Relations - draw:mirror-horizontal="<boolean>"   + draw:mirror-horizontal="#boolean"  
@@ -36975,7 +36975,7 @@

draw:mirror-vertical Attribute RNG Relations - draw:mirror-vertical="<boolean>"   + draw:mirror-vertical="#boolean"  
@@ -37000,7 +37000,7 @@

draw:modifiers Attribute

RNG Relations - draw:modifiers="<string>"   + draw:modifiers="#string"  
@@ -37033,7 +37033,7 @@

draw:name[1] Attribute

RNG Relations - draw:name="<NCName>"   + draw:name="#NCName"  
@@ -37079,7 +37079,7 @@

draw:name[2] Attribute

RNG Relations - draw:name="<string>"   + draw:name="#string"  
@@ -37104,7 +37104,7 @@

draw:nav-order Attribute (new RNG Relations - draw:nav-order="<IDREFS>"   + draw:nav-order="#IDREFS"  
@@ -37156,7 +37156,7 @@

draw:notify-on-update- RNG Relations - draw:notify-on-update-of-ranges="<string> | <string>"   + draw:notify-on-update-of-ranges="#string | #string"  
@@ -37181,7 +37181,7 @@

draw:object Attribute

RNG Relations - draw:object="<string>"   + draw:object="#string"  
@@ -37206,7 +37206,7 @@

draw:ole-draw-aspect Attribute RNG Relations - draw:ole-draw-aspect="<nonNegativeInteger>"   + draw:ole-draw-aspect="#nonNegativeInteger"  
@@ -37259,7 +37259,7 @@

draw:opacity-name Attribute  RNG Relations - draw:opacity-name="(<NCName>)?"   + draw:opacity-name="(#NCName)?"  
@@ -37284,7 +37284,7 @@

draw:page-number Attribute

RNG Relations - draw:page-number="<positiveInteger>"   + draw:page-number="#positiveInteger"  
@@ -37310,7 +37310,7 @@

draw:parallel Attribute (new in RNG Relations - draw:parallel="<boolean>"   + draw:parallel="#boolean"  
@@ -37335,7 +37335,7 @@

draw:path-stretchpoint-x Attr RNG Relations - draw:path-stretchpoint-x="<double>"   + draw:path-stretchpoint-x="#double"  
@@ -37360,7 +37360,7 @@

draw:path-stretchpoint-y Attr RNG Relations - draw:path-stretchpoint-y="<double>"   + draw:path-stretchpoint-y="#double"  
@@ -37440,7 +37440,7 @@

draw:protected Attribute

RNG Relations - draw:protected="<boolean>"   + draw:protected="#boolean"  
@@ -37467,7 +37467,7 @@

draw:recreate-on-edit Attribute< RNG Relations - draw:recreate-on-edit="<boolean>"   + draw:recreate-on-edit="#boolean"  
@@ -37517,7 +37517,7 @@

draw:rotation Attribute

RNG Relations - draw:rotation="<string>"   + draw:rotation="#string"  
@@ -37699,7 +37699,7 @@

draw:shape-id Attribute

RNG Relations - draw:shape-id="<IDREF>"   + draw:shape-id="#IDREF"  
@@ -37750,7 +37750,7 @@

draw:show-unit Attribute (new RNG Relations - draw:show-unit="<boolean>"   + draw:show-unit="#boolean"  
@@ -37801,7 +37801,7 @@

draw:start-angle Attribute

RNG Relations - draw:start-angle="<string>"   + draw:start-angle="#string"  
@@ -37851,7 +37851,7 @@

draw:start-glue-point Attribute< RNG Relations - draw:start-glue-point="<nonNegativeInteger>"   + draw:start-glue-point="#nonNegativeInteger"  
@@ -37976,7 +37976,7 @@

draw:start-shape Attribute

RNG Relations - draw:start-shape="<IDREF>"   + draw:start-shape="#IDREF"  
@@ -38028,7 +38028,7 @@

draw:stroke-dash Attribute ( RNG Relations - draw:stroke-dash="(<NCName>)?"   + draw:stroke-dash="(#NCName)?"  
@@ -38054,7 +38054,7 @@

draw:stroke-dash-names Attribut RNG Relations draw:stroke-dash-names=" -START_list(<NCName>)* +START_list(#NCName)* END_list"   @@ -38221,7 +38221,7 @@

draw:style-name Attribute

RNG Relations - draw:style-name="(<NCName>)?"   + draw:style-name="(#NCName)?"  
@@ -38271,7 +38271,7 @@

draw:text-areas Attribute

RNG Relations - draw:text-areas="<string>"   + draw:text-areas="#string"  
@@ -38297,7 +38297,7 @@

draw:text-path Attribute

RNG Relations - draw:text-path="<boolean>"   + draw:text-path="#boolean"  
@@ -38323,7 +38323,7 @@

draw:text-path-allowed Attribut RNG Relations - draw:text-path-allowed="<boolean>"   + draw:text-path-allowed="#boolean"  
@@ -38376,7 +38376,7 @@

draw:text-path-same RNG Relations - draw:text-path-same-letter-heights="<boolean>"   + draw:text-path-same-letter-heights="#boolean"  
@@ -38427,7 +38427,7 @@

draw:text-rotate-angle Attribut RNG Relations - draw:text-rotate-angle="<string>"   + draw:text-rotate-angle="#string"  
@@ -38466,7 +38466,7 @@

draw:text-style-name Attribute RNG Relations - draw:text-style-name="(<NCName>)?"   + draw:text-style-name="(#NCName)?"  
@@ -38592,7 +38592,7 @@

draw:transform Attribute

RNG Relations - draw:transform="<string>"   + draw:transform="#string"  
@@ -38619,7 +38619,7 @@

draw:type[1] Attribute

RNG Relations - draw:type="non-primitive | <string>"   + draw:type="non-primitive | #string"  
@@ -38707,7 +38707,7 @@

draw:value Attribute

RNG Relations - draw:value="<string>"   + draw:value="#string"  
@@ -38880,7 +38880,7 @@

draw:z-index Attribute

RNG Relations - draw:z-index="<nonNegativeInteger>"   + draw:z-index="#nonNegativeInteger"  
@@ -38943,7 +38943,7 @@

fo:border Attribute (new in ODF 1.2 RNG Relations - fo:border="<string>"   + fo:border="#string"  
@@ -38972,7 +38972,7 @@

fo:border-bottom Attribute ( RNG Relations - fo:border-bottom="<string>"   + fo:border-bottom="#string"  
@@ -39001,7 +39001,7 @@

fo:border-left Attribute (new RNG Relations - fo:border-left="<string>"   + fo:border-left="#string"  
@@ -39030,7 +39030,7 @@

fo:border-right Attribute (ne RNG Relations - fo:border-right="<string>"   + fo:border-right="#string"  
@@ -39059,7 +39059,7 @@

fo:border-top Attribute (new in RNG Relations - fo:border-top="<string>"   + fo:border-top="#string"  
@@ -39195,7 +39195,7 @@

fo:column-count Attribute (ne RNG Relations - fo:column-count="<positiveInteger>"   + fo:column-count="#positiveInteger"  
@@ -39297,7 +39297,7 @@

fo:font-family Attribute (new RNG Relations - fo:font-family="<string>"   + fo:font-family="#string"  
@@ -39462,7 +39462,7 @@

fo:hyphenate Attribute (new in O RNG Relations - fo:hyphenate="<boolean>"   + fo:hyphenate="#boolean"  
@@ -39514,7 +39514,7 @@

fo:hyphenation-ladder-coun RNG Relations - fo:hyphenation-ladder-count="no-limit | <positiveInteger>"   + fo:hyphenation-ladder-count="no-limit | #positiveInteger"  
@@ -39539,7 +39539,7 @@

fo:hyphenation-push-cha RNG Relations - fo:hyphenation-push-char-count="<positiveInteger>"   + fo:hyphenation-push-char-count="#positiveInteger"  
@@ -39564,7 +39564,7 @@

fo:hyphenation-remain RNG Relations - fo:hyphenation-remain-char-count="<positiveInteger>"   + fo:hyphenation-remain-char-count="#positiveInteger"  
@@ -40037,7 +40037,7 @@

fo:orphans Attribute (new in ODF 1 RNG Relations - fo:orphans="<nonNegativeInteger>"   + fo:orphans="#nonNegativeInteger"  
@@ -40471,7 +40471,7 @@

fo:text-shadow Attribute (new RNG Relations - fo:text-shadow="none | <string>"   + fo:text-shadow="none | #string"  
@@ -40524,7 +40524,7 @@

fo:widows Attribute (new in ODF 1.2 RNG Relations - fo:widows="<nonNegativeInteger>"   + fo:widows="#nonNegativeInteger"  
@@ -40602,7 +40602,7 @@

form:allow-deletes Attribute RNG Relations - form:allow-deletes="<boolean>"   + form:allow-deletes="#boolean"  
@@ -40628,7 +40628,7 @@

form:allow-inserts Attribute RNG Relations - form:allow-inserts="<boolean>"   + form:allow-inserts="#boolean"  
@@ -40654,7 +40654,7 @@

form:allow-updates Attribute RNG Relations - form:allow-updates="<boolean>"   + form:allow-updates="#boolean"  
@@ -40680,7 +40680,7 @@

form:apply-design-mode Attribut RNG Relations - form:apply-design-mode="<boolean>"   + form:apply-design-mode="#boolean"  
@@ -40706,7 +40706,7 @@

form:apply-filter Attribute

RNG Relations - form:apply-filter="<boolean>"   + form:apply-filter="#boolean"  
@@ -40732,7 +40732,7 @@

form:auto-complete Attribute RNG Relations - form:auto-complete="<boolean>"   + form:auto-complete="#boolean"  
@@ -40758,7 +40758,7 @@

form:automatic-focus Attribute RNG Relations - form:automatic-focus="<boolean>"   + form:automatic-focus="#boolean"  
@@ -40783,7 +40783,7 @@

form:bound-column Attribute

RNG Relations - form:bound-column="<string>"   + form:bound-column="#string"  
@@ -40837,7 +40837,7 @@

form:command Attribute

RNG Relations - form:command="<string>"   + form:command="#string"  
@@ -40944,7 +40944,7 @@

form:convert-empty-to-null RNG Relations - form:convert-empty-to-null="<boolean>"   + form:convert-empty-to-null="#boolean"  
@@ -40971,7 +40971,7 @@

form:current-selected Attribute< RNG Relations - form:current-selected="<boolean>"   + form:current-selected="#boolean"  
@@ -41024,7 +41024,7 @@

form:current-value[1] Attribute RNG Relations - form:current-value="<double>"   + form:current-value="#double"  
@@ -41054,7 +41054,7 @@

form:current-value[2] Attribute RNG Relations - form:current-value="<string>"   + form:current-value="#string"  
@@ -41080,7 +41080,7 @@

form:current-value[3] Attribute RNG Relations - form:current-value="<date>"   + form:current-value="#date"  
@@ -41106,7 +41106,7 @@

form:current-value[4] Attribute RNG Relations - form:current-value="<time>"   + form:current-value="#time"  
@@ -41141,7 +41141,7 @@

form:data-field Attribute

RNG Relations - form:data-field="<string>"   + form:data-field="#string"  
@@ -41167,7 +41167,7 @@

form:datasource Attribute

RNG Relations - form:datasource="<anyIRI> | <string>"   + form:datasource="#anyIRI | #string"  
@@ -41193,7 +41193,7 @@

form:default-button Attribute< RNG Relations - form:default-button="<boolean>"   + form:default-button="#boolean"  
@@ -41223,7 +41223,7 @@

form:delay-for-repeat Attribute< RNG Relations - form:delay-for-repeat="<duration>"   + form:delay-for-repeat="#duration"  
@@ -41248,7 +41248,7 @@

form:detail-fields Attribute RNG Relations - form:detail-fields="<string>"   + form:detail-fields="#string"  
@@ -41292,7 +41292,7 @@

form:disabled Attribute

RNG Relations - form:disabled="<boolean>"   + form:disabled="#boolean"  
@@ -41319,7 +41319,7 @@

form:dropdown Attribute

RNG Relations - form:dropdown="<boolean>"   + form:dropdown="#boolean"  
@@ -41369,7 +41369,7 @@

form:enctype Attribute

RNG Relations - form:enctype="<string>"   + form:enctype="#string"  
@@ -41395,7 +41395,7 @@

form:escape-processing Attribut RNG Relations - form:escape-processing="<boolean>"   + form:escape-processing="#boolean"  
@@ -41420,7 +41420,7 @@

form:filter Attribute

RNG Relations - form:filter="<string>"   + form:filter="#string"  
@@ -41446,7 +41446,7 @@

form:focus-on-click Attribute< RNG Relations - form:focus-on-click="<boolean>"   + form:focus-on-click="#boolean"  
@@ -41472,7 +41472,7 @@

form:for Attribute

RNG Relations - form:for="<string>"   + form:for="#string"  
@@ -41517,7 +41517,7 @@

form:id Attribute

RNG Relations - form:id="<NCName>"   + form:id="#NCName"  
@@ -41543,7 +41543,7 @@

form:ignore-result Attribute RNG Relations - form:ignore-result="<boolean>"   + form:ignore-result="#boolean"  
@@ -41599,7 +41599,7 @@

form:image-data Attribute

RNG Relations - form:image-data="<anyIRI>"   + form:image-data="#anyIRI"  
@@ -41684,7 +41684,7 @@

form:is-tristate Attribute

RNG Relations - form:is-tristate="<boolean>"   + form:is-tristate="#boolean"  
@@ -41716,7 +41716,7 @@

form:label Attribute

RNG Relations - form:label="<string>"   + form:label="#string"  
@@ -41754,7 +41754,7 @@

form:linked-cell Attribute ( RNG Relations - form:linked-cell="string] | <string>"   + form:linked-cell="string] | #string"  
@@ -41806,7 +41806,7 @@

form:list-source Attribute

RNG Relations - form:list-source="<string>"   + form:list-source="#string"  
@@ -41862,7 +41862,7 @@

form:master-fields Attribute RNG Relations - form:master-fields="<string>"   + form:master-fields="#string"  
@@ -41895,7 +41895,7 @@

form:max-length Attribute

RNG Relations - form:max-length="<nonNegativeInteger>"   + form:max-length="#nonNegativeInteger"  
@@ -41921,7 +41921,7 @@

form:max-value[1] Attribute

RNG Relations - form:max-value="<double>"   + form:max-value="#double"  
@@ -41947,7 +41947,7 @@

form:max-value[2] Attribute

RNG Relations - form:max-value="<time>"   + form:max-value="#time"  
@@ -41973,7 +41973,7 @@

form:max-value[3] Attribute

RNG Relations - form:max-value="<integer>"   + form:max-value="#integer"  
@@ -41999,7 +41999,7 @@

form:max-value[4] Attribute

RNG Relations - form:max-value="<date>"   + form:max-value="#date"  
@@ -42025,7 +42025,7 @@

form:max-value[5] Attribute

RNG Relations - form:max-value="<string>"   + form:max-value="#string"  
@@ -42052,7 +42052,7 @@

form:method Attribute

RNG Relations - form:method="get | post | <string>"   + form:method="get | post | #string"  
@@ -42078,7 +42078,7 @@

form:min-value[1] Attribute

RNG Relations - form:min-value="<string>"   + form:min-value="#string"  
@@ -42104,7 +42104,7 @@

form:min-value[2] Attribute

RNG Relations - form:min-value="<date>"   + form:min-value="#date"  
@@ -42130,7 +42130,7 @@

form:min-value[3] Attribute

RNG Relations - form:min-value="<time>"   + form:min-value="#time"  
@@ -42156,7 +42156,7 @@

form:min-value[4] Attribute

RNG Relations - form:min-value="<integer>"   + form:min-value="#integer"  
@@ -42182,7 +42182,7 @@

form:min-value[5] Attribute

RNG Relations - form:min-value="<double>"   + form:min-value="#double"  
@@ -42208,7 +42208,7 @@

form:multi-line Attribute

RNG Relations - form:multi-line="<boolean>"   + form:multi-line="#boolean"  
@@ -42234,7 +42234,7 @@

form:multiple Attribute

RNG Relations - form:multiple="<boolean>"   + form:multiple="#boolean"  
@@ -42281,7 +42281,7 @@

form:name Attribute

RNG Relations - form:name="<string>"   + form:name="#string"  
@@ -42333,7 +42333,7 @@

form:order Attribute

RNG Relations - form:order="<string>"   + form:order="#string"  
@@ -42384,7 +42384,7 @@

form:page-step-size Attribute< RNG Relations - form:page-step-size="<positiveInteger>"   + form:page-step-size="#positiveInteger"  
@@ -42428,7 +42428,7 @@

form:printable Attribute

RNG Relations - form:printable="<boolean>"   + form:printable="#boolean"  
@@ -42454,7 +42454,7 @@

form:property-name Attribute RNG Relations - form:property-name="<string>"   + form:property-name="#string"  
@@ -42488,7 +42488,7 @@

form:readonly Attribute

RNG Relations - form:readonly="<boolean>"   + form:readonly="#boolean"  
@@ -42519,7 +42519,7 @@

form:repeat Attribute (new in ODF RNG Relations - form:repeat="<boolean>"   + form:repeat="#boolean"  
@@ -42546,7 +42546,7 @@

form:selected Attribute

RNG Relations - form:selected="<boolean>"   + form:selected="#boolean"  
@@ -42572,7 +42572,7 @@

form:size Attribute

RNG Relations - form:size="<nonNegativeInteger>"   + form:size="#nonNegativeInteger"  
@@ -42601,7 +42601,7 @@

form:source-cell-range Attribut RNG Relations - form:source-cell-range="string] | string] | string] | <string>"   + form:source-cell-range="string] | string] | string] | #string"  
@@ -42630,7 +42630,7 @@

form:spin-button Attribute ( RNG Relations - form:spin-button="<boolean>"   + form:spin-button="#boolean"  
@@ -42682,7 +42682,7 @@

form:step-size Attribute

RNG Relations - form:step-size="<positiveInteger>"   + form:step-size="#positiveInteger"  
@@ -42749,7 +42749,7 @@

form:tab-index Attribute

RNG Relations - form:tab-index="<nonNegativeInteger>"   + form:tab-index="#nonNegativeInteger"  
@@ -42790,7 +42790,7 @@

form:tab-stop Attribute

RNG Relations - form:tab-stop="<boolean>"   + form:tab-stop="#boolean"  
@@ -42815,7 +42815,7 @@

form:text-style-name Attribute RNG Relations - form:text-style-name="(<NCName>)?"   + form:text-style-name="(#NCName)?"  
@@ -42858,7 +42858,7 @@

form:title Attribute

RNG Relations - form:title="<string>"   + form:title="#string"  
@@ -42884,7 +42884,7 @@

form:toggle Attribute

RNG Relations - form:toggle="<boolean>"   + form:toggle="#boolean"  
@@ -42910,7 +42910,7 @@

form:validation Attribute

RNG Relations - form:validation="<boolean>"   + form:validation="#boolean"  
@@ -42936,7 +42936,7 @@

form:value[1] Attribute

RNG Relations - form:value="<time>"   + form:value="#time"  
@@ -42962,7 +42962,7 @@

form:value[2] Attribute

RNG Relations - form:value="<double>"   + form:value="#double"  
@@ -43000,7 +43000,7 @@

form:value[3] Attribute

RNG Relations - form:value="<string>"   + form:value="#string"  
@@ -43026,7 +43026,7 @@

form:value[4] Attribute

RNG Relations - form:value="<date>"   + form:value="#date"  
@@ -43078,7 +43078,7 @@

form:xforms-list-source Attrib RNG Relations - form:xforms-list-source="<string>"   + form:xforms-list-source="#string"  
@@ -43103,7 +43103,7 @@

form:xforms-submission Attribut RNG Relations - form:xforms-submission="<string>"   + form:xforms-submission="#string"  
@@ -43133,7 +43133,7 @@

grddl:transformation Attribute RNG Relations grddl:transformation=" -START_list(<anyIRI>)* +START_list(#anyIRI)* END_list"   @@ -43159,7 +43159,7 @@

meta:cell-count Attribute (ne RNG Relations - meta:cell-count="<nonNegativeInteger>"   + meta:cell-count="#nonNegativeInteger"  
@@ -43184,7 +43184,7 @@

meta:character-count Attribute RNG Relations - meta:character-count="<nonNegativeInteger>"   + meta:character-count="#nonNegativeInteger"  
@@ -43209,7 +43209,7 @@

meta:date Attribute (new in ODF 1.2 RNG Relations - meta:date="<dateTime>"   + meta:date="#dateTime"  
@@ -43234,7 +43234,7 @@

meta:delay Attribute (new in ODF 1 RNG Relations - meta:delay="<duration>"   + meta:delay="#duration"  
@@ -43259,7 +43259,7 @@

meta:draw-count Attribute (ne RNG Relations - meta:draw-count="<nonNegativeInteger>"   + meta:draw-count="#nonNegativeInteger"  
@@ -43284,7 +43284,7 @@

meta:frame-count Attribute ( RNG Relations - meta:frame-count="<nonNegativeInteger>"   + meta:frame-count="#nonNegativeInteger"  
@@ -43309,7 +43309,7 @@

meta:image-count Attribute ( RNG Relations - meta:image-count="<nonNegativeInteger>"   + meta:image-count="#nonNegativeInteger"  
@@ -43334,7 +43334,7 @@

meta:name Attribute (new in ODF 1.2 RNG Relations - meta:name="<string>"   + meta:name="#string"  
@@ -43359,7 +43359,7 @@

meta:non-whitespac RNG Relations - meta:non-whitespace-character-count="<nonNegativeInteger>"   + meta:non-whitespace-character-count="#nonNegativeInteger"  
@@ -43384,7 +43384,7 @@

meta:object-count Attribute  RNG Relations - meta:object-count="<nonNegativeInteger>"   + meta:object-count="#nonNegativeInteger"  
@@ -43409,7 +43409,7 @@

meta:ole-object-count Attribute< RNG Relations - meta:ole-object-count="<nonNegativeInteger>"   + meta:ole-object-count="#nonNegativeInteger"  
@@ -43434,7 +43434,7 @@

meta:page-count Attribute (ne RNG Relations - meta:page-count="<nonNegativeInteger>"   + meta:page-count="#nonNegativeInteger"  
@@ -43459,7 +43459,7 @@

meta:paragraph-count Attribute RNG Relations - meta:paragraph-count="<nonNegativeInteger>"   + meta:paragraph-count="#nonNegativeInteger"  
@@ -43484,7 +43484,7 @@

meta:row-count Attribute (new RNG Relations - meta:row-count="<nonNegativeInteger>"   + meta:row-count="#nonNegativeInteger"  
@@ -43509,7 +43509,7 @@

meta:sentence-count Attribute& RNG Relations - meta:sentence-count="<nonNegativeInteger>"   + meta:sentence-count="#nonNegativeInteger"  
@@ -43534,7 +43534,7 @@

meta:syllable-count Attribute& RNG Relations - meta:syllable-count="<nonNegativeInteger>"   + meta:syllable-count="#nonNegativeInteger"  
@@ -43559,7 +43559,7 @@

meta:table-count Attribute ( RNG Relations - meta:table-count="<nonNegativeInteger>"   + meta:table-count="#nonNegativeInteger"  
@@ -43714,7 +43714,7 @@

meta:word-count Attribute (ne RNG Relations - meta:word-count="<nonNegativeInteger>"   + meta:word-count="#nonNegativeInteger"  
@@ -43741,7 +43741,7 @@

number:automatic-order Attribut RNG Relations - number:automatic-order="<boolean>"   + number:automatic-order="#boolean"  
@@ -43780,7 +43780,7 @@

number:calendar Attribute

RNG Relations - number:calendar="gregorian | gengou | ROC | hanja_yoil | hanja | hijri | jewish | buddhist | <string>"   + number:calendar="gregorian | gengou | ROC | hanja_yoil | hanja | hijri | jewish | buddhist | #string"  
@@ -43839,7 +43839,7 @@

number:decimal-places Attribute< RNG Relations - number:decimal-places="<integer>"   + number:decimal-places="#integer"  
@@ -43864,7 +43864,7 @@

number:decimal-replacement RNG Relations - number:decimal-replacement="<string>"   + number:decimal-replacement="#string"  
@@ -43889,7 +43889,7 @@

number:denominator-value Attr RNG Relations - number:denominator-value="<integer>"   + number:denominator-value="#integer"  
@@ -43914,7 +43914,7 @@

number:display-factor Attribute< RNG Relations - number:display-factor="<double>"   + number:display-factor="#double"  
@@ -43939,7 +43939,7 @@

number:exponent-interval Attr RNG Relations - number:exponent-interval="<positiveInteger>"   + number:exponent-interval="#positiveInteger"  
@@ -43965,7 +43965,7 @@

number:forced-exponent-sig RNG Relations - number:forced-exponent-sign="<boolean>"   + number:forced-exponent-sign="#boolean"  
@@ -44020,7 +44020,7 @@

number:grouping Attribute

RNG Relations - number:grouping="<boolean>"   + number:grouping="#boolean"  
@@ -44077,7 +44077,7 @@

number:max-denominator-va RNG Relations - number:max-denominator-value="<positiveInteger>"   + number:max-denominator-value="#positiveInteger"  
@@ -44103,7 +44103,7 @@

number:min-decimal-places At RNG Relations - number:min-decimal-places="<integer>"   + number:min-decimal-places="#integer"  
@@ -44128,7 +44128,7 @@

number:min-denominator-d RNG Relations - number:min-denominator-digits="<integer>"   + number:min-denominator-digits="#integer"  
@@ -44153,7 +44153,7 @@

number:min-exponent-digits RNG Relations - number:min-exponent-digits="<integer>"   + number:min-exponent-digits="#integer"  
@@ -44180,7 +44180,7 @@

number:min-integer-digits At RNG Relations - number:min-integer-digits="<integer>"   + number:min-integer-digits="#integer"  
@@ -44205,7 +44205,7 @@

number:min-numerator-digit RNG Relations - number:min-numerator-digits="<integer>"   + number:min-numerator-digits="#integer"  
@@ -44230,7 +44230,7 @@

number:position Attribute

RNG Relations - number:position="<integer>"   + number:position="#integer"  
@@ -44256,7 +44256,7 @@

number:possessive-form Attribut RNG Relations - number:possessive-form="<boolean>"   + number:possessive-form="#boolean"  
@@ -44288,7 +44288,7 @@

number:rfc-language-tag Attrib RNG Relations - number:rfc-language-tag="<language>"   + number:rfc-language-tag="#language"  
@@ -44380,7 +44380,7 @@

number:textual Attribute

RNG Relations - number:textual="<boolean>"   + number:textual="#boolean"  
@@ -44411,7 +44411,7 @@

number:title Attribute

RNG Relations - number:title="<string>"   + number:title="#string"  
@@ -44473,7 +44473,7 @@

number:transliteration-f RNG Relations - number:transliteration-format="<string>"   + number:transliteration-format="#string"  
@@ -44563,7 +44563,7 @@

number:truncate-on-overflo RNG Relations - number:truncate-on-overflow="<boolean>"   + number:truncate-on-overflow="#boolean"  
@@ -44590,7 +44590,7 @@

office:automatic-update Attrib RNG Relations - office:automatic-update="<boolean>"   + office:automatic-update="#boolean"  
@@ -44626,7 +44626,7 @@

office:boolean-value Attribute RNG Relations - office:boolean-value="<boolean>"   + office:boolean-value="#boolean"  
@@ -44687,7 +44687,7 @@

office:currency Attribute

RNG Relations - office:currency="<string>"   + office:currency="#string"  
@@ -44723,7 +44723,7 @@

office:date-value Attribute

RNG Relations - office:date-value="<date> | <dateTime>"   + office:date-value="#date | #dateTime"  
@@ -44749,7 +44749,7 @@

office:dde-application Attribut RNG Relations - office:dde-application="<string>"   + office:dde-application="#string"  
@@ -44775,7 +44775,7 @@

office:dde-item Attribute

RNG Relations - office:dde-item="<string>"   + office:dde-item="#string"  
@@ -44801,7 +44801,7 @@

office:dde-topic Attribute

RNG Relations - office:dde-topic="<string>"   + office:dde-topic="#string"  
@@ -44827,7 +44827,7 @@

office:display Attribute

RNG Relations - office:display="<boolean>"   + office:display="#boolean"  
@@ -44852,7 +44852,7 @@

office:mimetype Attribute

RNG Relations - office:mimetype="<string>"   + office:mimetype="#string"  
@@ -44885,7 +44885,7 @@

office:name Attribute

RNG Relations - office:name="<string>"   + office:name="#string"  
@@ -44911,7 +44911,7 @@

office:server-map Attribute

RNG Relations - office:server-map="<boolean>"   + office:server-map="#boolean"  
@@ -44946,7 +44946,7 @@

office:string-value Attribute< RNG Relations - office:string-value="<string>"   + office:string-value="#string"  
@@ -44977,7 +44977,7 @@

office:target-frame Attribute< RNG Relations - office:target-frame="_self | _blank | _parent | _top | <string>"   + office:target-frame="_self | _blank | _parent | _top | #string"  
@@ -45011,7 +45011,7 @@

office:target-frame-name Attr RNG Relations - office:target-frame-name="_self | _blank | _parent | _top | <string>"   + office:target-frame-name="_self | _blank | _parent | _top | #string"  
@@ -45046,7 +45046,7 @@

office:time-value Attribute

RNG Relations - office:time-value="<duration>"   + office:time-value="#duration"  
@@ -45072,7 +45072,7 @@

office:title Attribute (new in O RNG Relations - office:title="<string>"   + office:title="#string"  
@@ -45109,7 +45109,7 @@

office:value Attribute

RNG Relations - office:value="<double>"   + office:value="#double"  
@@ -45532,7 +45532,7 @@

presentation:b RNG Relations - presentation:background-objects-visible="<boolean>"   + presentation:background-objects-visible="#boolean"  
@@ -45558,7 +45558,7 @@

presentation:backgroun RNG Relations - presentation:background-visible="<boolean>"   + presentation:background-visible="#boolean"  
@@ -45646,7 +45646,7 @@

presentation:class-names Attr RNG Relations presentation:class-names=" -START_list(<NCName>)* +START_list(#NCName)* END_list"   @@ -45675,7 +45675,7 @@

presentation:delay Attribute RNG Relations - presentation:delay="<duration>"   + presentation:delay="#duration"  
@@ -45757,7 +45757,7 @@

presentation:display-da RNG Relations - presentation:display-date-time="<boolean>"   + presentation:display-date-time="#boolean"  
@@ -45783,7 +45783,7 @@

presentation:display-foote RNG Relations - presentation:display-footer="<boolean>"   + presentation:display-footer="#boolean"  
@@ -45809,7 +45809,7 @@

presentation:display-heade RNG Relations - presentation:display-header="<boolean>"   + presentation:display-header="#boolean"  
@@ -45835,7 +45835,7 @@

presentation:display- RNG Relations - presentation:display-page-number="<boolean>"   + presentation:display-page-number="#boolean"  
@@ -45860,7 +45860,7 @@

presentation:duration Attribute< RNG Relations - presentation:duration="<duration>"   + presentation:duration="#duration"  
@@ -45931,7 +45931,7 @@

presentation:endless Attribute RNG Relations - presentation:endless="<boolean>"   + presentation:endless="#boolean"  
@@ -45957,7 +45957,7 @@

presentation:force-manual At RNG Relations - presentation:force-manual="<boolean>"   + presentation:force-manual="#boolean"  
@@ -45983,7 +45983,7 @@

presentation:full-screen Attr RNG Relations - presentation:full-screen="<boolean>"   + presentation:full-screen="#boolean"  
@@ -46012,7 +46012,7 @@

presentation:group-id Attribute< RNG Relations - presentation:group-id="<string>"   + presentation:group-id="#string"  
@@ -46041,7 +46041,7 @@

presentation:master-elemen RNG Relations - presentation:master-element="<IDREF>"   + presentation:master-element="#IDREF"  
@@ -46067,7 +46067,7 @@

presentation:mouse-as-pen At RNG Relations - presentation:mouse-as-pen="<boolean>"   + presentation:mouse-as-pen="#boolean"  
@@ -46093,7 +46093,7 @@

presentation:mouse-visible RNG Relations - presentation:mouse-visible="<boolean>"   + presentation:mouse-visible="#boolean"  
@@ -46121,7 +46121,7 @@

presentation:name Attribute

RNG Relations - presentation:name="<string>"   + presentation:name="#string"  
@@ -46221,7 +46221,7 @@

presentation:pages Attribute RNG Relations - presentation:pages="<string>"   + presentation:pages="#string"  
@@ -46249,7 +46249,7 @@

presentation:path-id Attribute RNG Relations - presentation:path-id="<string>"   + presentation:path-id="#string"  
@@ -46274,7 +46274,7 @@

presentation:pause Attribute RNG Relations - presentation:pause="<duration>"   + presentation:pause="#duration"  
@@ -46301,7 +46301,7 @@

presentation:placeholder Attr RNG Relations - presentation:placeholder="<boolean>"   + presentation:placeholder="#boolean"  
@@ -46327,7 +46327,7 @@

presentation:play-full Attribut RNG Relations - presentation:play-full="<boolean>"   + presentation:play-full="#boolean"  
@@ -46353,7 +46353,7 @@

presentatio RNG Relations - presentation:presentation-page-layout-name="(<NCName>)?"   + presentation:presentation-page-layout-name="(#NCName)?"  
@@ -46417,7 +46417,7 @@

presentation:preset-id Attribut RNG Relations - presentation:preset-id="<string>"   + presentation:preset-id="#string"  
@@ -46446,7 +46446,7 @@

presentation:preset-sub-t RNG Relations - presentation:preset-sub-type="<string>"   + presentation:preset-sub-type="#string"  
@@ -46471,7 +46471,7 @@

presentation:show Attribute

RNG Relations - presentation:show="<string>"   + presentation:show="#string"  
@@ -46497,7 +46497,7 @@

presentati RNG Relations - presentation:show-end-of-presentation-slide="<boolean>"   + presentation:show-end-of-presentation-slide="#boolean"  
@@ -46523,7 +46523,7 @@

presentation:show-logo Attribut RNG Relations - presentation:show-logo="<boolean>"   + presentation:show-logo="#boolean"  
@@ -46606,7 +46606,7 @@

presentation:start-page Attrib RNG Relations - presentation:start-page="<string>"   + presentation:start-page="#string"  
@@ -46661,7 +46661,7 @@

presentation:start-w RNG Relations - presentation:start-with-navigator="<boolean>"   + presentation:start-with-navigator="#boolean"  
@@ -46687,7 +46687,7 @@

presentation:stay-on-top Attr RNG Relations - presentation:stay-on-top="<boolean>"   + presentation:stay-on-top="#boolean"  
@@ -46733,7 +46733,7 @@

presentation:style-name Attrib RNG Relations - presentation:style-name="(<NCName>)?"   + presentation:style-name="(#NCName)?"  
@@ -46929,7 +46929,7 @@

presentation:use-date- RNG Relations - presentation:use-date-time-name="<string>"   + presentation:use-date-time-name="#string"  
@@ -46956,7 +46956,7 @@

presentation:use-footer-n RNG Relations - presentation:use-footer-name="<string>"   + presentation:use-footer-name="#string"  
@@ -46983,7 +46983,7 @@

presentation:use-header-n RNG Relations - presentation:use-header-name="<string>"   + presentation:use-header-name="#string"  
@@ -47010,7 +47010,7 @@

presentation:user-transf RNG Relations - presentation:user-transformed="<boolean>"   + presentation:user-transformed="#boolean"  
@@ -47035,7 +47035,7 @@

presentation:verb Attribute

RNG Relations - presentation:verb="<nonNegativeInteger>"   + presentation:verb="#nonNegativeInteger"  
@@ -47087,7 +47087,7 @@

script:event-name Attribute

RNG Relations - script:event-name="<string>"   + script:event-name="#string"  
@@ -47114,7 +47114,7 @@

script:language Attribute

RNG Relations - script:language="<string>"   + script:language="#string"  
@@ -47139,7 +47139,7 @@

script:macro-name Attribute

RNG Relations - script:macro-name="<string>"   + script:macro-name="#string"  
@@ -47263,7 +47263,7 @@

smil:attributeName Attribute RNG Relations - smil:attributeName="<string>"   + smil:attributeName="#string"  
@@ -47297,7 +47297,7 @@

smil:autoReverse Attribute

RNG Relations - smil:autoReverse="<boolean>"   + smil:autoReverse="#boolean"  
@@ -47332,7 +47332,7 @@

smil:begin Attribute

RNG Relations - smil:begin="<string>"   + smil:begin="#string"  
@@ -47361,7 +47361,7 @@

smil:by Attribute

RNG Relations - smil:by="<string>"   + smil:by="#string"  
@@ -47486,7 +47486,7 @@

smil:dur Attribute

RNG Relations - smil:dur="<string>"   + smil:dur="#string"  
@@ -47521,7 +47521,7 @@

smil:end Attribute

RNG Relations - smil:end="<string>"   + smil:end="#string"  
@@ -47552,7 +47552,7 @@

smil:endsync Attribute

RNG Relations - smil:endsync="first | last | all | media | <IDREF>"   + smil:endsync="first | last | all | media | #IDREF"  
@@ -47685,7 +47685,7 @@

smil:from Attribute

RNG Relations - smil:from="<string>"   + smil:from="#string"  
@@ -47712,7 +47712,7 @@

smil:keySplines Attribute

RNG Relations - smil:keySplines="<string>"   + smil:keySplines="#string"  
@@ -47739,7 +47739,7 @@

smil:keyTimes Attribute

RNG Relations - smil:keyTimes="<string>"   + smil:keyTimes="#string"  
@@ -47834,7 +47834,7 @@

smil:repeatDur Attribute

RNG Relations - smil:repeatDur="<string>"   + smil:repeatDur="#string"  
@@ -47934,7 +47934,7 @@

smil:subtype Attribute

RNG Relations - smil:subtype="<string>"   + smil:subtype="#string"  
@@ -47966,7 +47966,7 @@

smil:targetElement Attribute RNG Relations - smil:targetElement="<IDREF>"   + smil:targetElement="#IDREF"  
@@ -47996,7 +47996,7 @@

smil:to Attribute

RNG Relations - smil:to="<string>"   + smil:to="#string"  
@@ -48022,7 +48022,7 @@

smil:type Attribute

RNG Relations - smil:type="<string>"   + smil:type="#string"  
@@ -48051,7 +48051,7 @@

smil:values Attribute

RNG Relations - smil:values="<string>"   + smil:values="#string"  
@@ -48103,7 +48103,7 @@

style:apply-style-name Attribut RNG Relations - style:apply-style-name="(<NCName>)?"   + style:apply-style-name="(#NCName)?"  
@@ -48129,7 +48129,7 @@

style:auto-text-indent Attribut RNG Relations - style:auto-text-indent="<boolean>"   + style:auto-text-indent="#boolean"  
@@ -48155,7 +48155,7 @@

style:auto-update Attribute

RNG Relations - style:auto-update="<boolean>"   + style:auto-update="#boolean"  
@@ -48441,7 +48441,7 @@

style:class Attribute

RNG Relations - style:class="<string>"   + style:class="#string"  
@@ -48517,7 +48517,7 @@

style:condition Attribute

RNG Relations - style:condition="<string>"   + style:condition="#string"  
@@ -48543,7 +48543,7 @@

style:contextual-spacing Attr RNG Relations - style:contextual-spacing="<boolean>"   + style:contextual-spacing="#boolean"  
@@ -48638,7 +48638,7 @@

style:data-style-name Attribute< RNG Relations - style:data-style-name="(<NCName>)?"   + style:data-style-name="(#NCName)?"  
@@ -48663,7 +48663,7 @@

style:decimal-places Attribute RNG Relations - style:decimal-places="<nonNegativeInteger>"   + style:decimal-places="#nonNegativeInteger"  
@@ -48688,7 +48688,7 @@

style:default-outline-leve RNG Relations - style:default-outline-level="(<positiveInteger>)?"   + style:default-outline-level="(#positiveInteger)?"  
@@ -48713,7 +48713,7 @@

style:diagonal-bl-tr Attribute RNG Relations - style:diagonal-bl-tr="<string>"   + style:diagonal-bl-tr="#string"  
@@ -48765,7 +48765,7 @@

style:diagonal-tl-br Attribute RNG Relations - style:diagonal-tl-br="<string>"   + style:diagonal-tl-br="#string"  
@@ -48850,7 +48850,7 @@

style:display Attribute

RNG Relations - style:display="<boolean>"   + style:display="#boolean"  
@@ -48885,7 +48885,7 @@

style:display-name Attribute RNG Relations - style:display-name="<string>"   + style:display-name="#string"  
@@ -48986,7 +48986,7 @@

style:dynamic-spacing Attribute< RNG Relations - style:dynamic-spacing="<boolean>"   + style:dynamic-spacing="#boolean"  
@@ -49013,7 +49013,7 @@

style:editable Attribute (new RNG Relations - style:editable="<boolean>"   + style:editable="#boolean"  
@@ -49336,7 +49336,7 @@

style:filter-name Attribute  RNG Relations - style:filter-name="<string>"   + style:filter-name="#string"  
@@ -49362,7 +49362,7 @@

style:first-page-number Attrib RNG Relations - style:first-page-number="<positiveInteger> | continue"   + style:first-page-number="#positiveInteger | continue"  
@@ -49388,7 +49388,7 @@

style:flow-with-text Attribute RNG Relations - style:flow-with-text="<boolean>"   + style:flow-with-text="#boolean"  
@@ -49413,7 +49413,7 @@

style:font-adornments Attribute< RNG Relations - style:font-adornments="<string>"   + style:font-adornments="#string"  
@@ -49514,7 +49514,7 @@

style:font-family-asian Attrib RNG Relations - style:font-family-asian="<string>"   + style:font-family-asian="#string"  
@@ -49539,7 +49539,7 @@

style:font-family-complex At RNG Relations - style:font-family-complex="<string>"   + style:font-family-complex="#string"  
@@ -49656,7 +49656,7 @@

style:font-indepen RNG Relations - style:font-independent-line-spacing="<boolean>"   + style:font-independent-line-spacing="#boolean"  
@@ -49682,7 +49682,7 @@

style:font-name Attribute (ne RNG Relations - style:font-name="<string>"   + style:font-name="#string"  
@@ -49707,7 +49707,7 @@

style:font-name-asian Attribute< RNG Relations - style:font-name-asian="<string>"   + style:font-name-asian="#string"  
@@ -49732,7 +49732,7 @@

style:font-name-complex Attrib RNG Relations - style:font-name-complex="<string>"   + style:font-name-complex="#string"  
@@ -50044,7 +50044,7 @@

style:font-style-name Attribute< RNG Relations - style:font-style-name="<string>"   + style:font-style-name="#string"  
@@ -50069,7 +50069,7 @@

style:font-style-name-asia RNG Relations - style:font-style-name-asian="<string>"   + style:font-style-name-asian="#string"  
@@ -50094,7 +50094,7 @@

style:font-style-name-co RNG Relations - style:font-style-name-complex="<string>"   + style:font-style-name-complex="#string"  
@@ -50337,7 +50337,7 @@

style:join-border Attribute  RNG Relations - style:join-border="<boolean>"   + style:join-border="#boolean"  
@@ -50363,7 +50363,7 @@

style:justify-single-word At RNG Relations - style:justify-single-word="<boolean>"   + style:justify-single-word="#boolean"  
@@ -50514,7 +50514,7 @@

style:layout-grid-display At RNG Relations - style:layout-grid-display="<boolean>"   + style:layout-grid-display="#boolean"  
@@ -50539,7 +50539,7 @@

style:layout-grid-lines Attrib RNG Relations - style:layout-grid-lines="<positiveInteger>"   + style:layout-grid-lines="#positiveInteger"  
@@ -50592,7 +50592,7 @@

style:layout-grid-print Attrib RNG Relations - style:layout-grid-print="<boolean>"   + style:layout-grid-print="#boolean"  
@@ -50618,7 +50618,7 @@

style:layout-grid-ruby-be RNG Relations - style:layout-grid-ruby-below="<boolean>"   + style:layout-grid-ruby-below="#boolean"  
@@ -50669,7 +50669,7 @@

style:layout-grid-snap-to At RNG Relations - style:layout-grid-snap-to="<boolean>"   + style:layout-grid-snap-to="#boolean"  
@@ -50695,7 +50695,7 @@

style:layout-grid-stan RNG Relations - style:layout-grid-standard-mode="<boolean>"   + style:layout-grid-standard-mode="#boolean"  
@@ -50828,7 +50828,7 @@

style:leader-text-style Attrib RNG Relations - style:leader-text-style="(<NCName>)?"   + style:leader-text-style="(#NCName)?"  
@@ -50888,7 +50888,7 @@

style:leader-width Attribute&nb RNG Relations - style:leader-width="auto | normal | bold | thin | medium | thick | <positiveInteger> | string] | string]"   + style:leader-width="auto | normal | bold | thin | medium | thick | #positiveInteger | string] | string]"  
@@ -50967,7 +50967,7 @@

style:legend-expan RNG Relations - style:legend-expansion-aspect-ratio="<double>"   + style:legend-expansion-aspect-ratio="#double"  
@@ -50993,7 +50993,7 @@

style:length Attribute (new in O RNG Relations - style:length="word | <positiveInteger>"   + style:length="word | #positiveInteger"  
@@ -51019,7 +51019,7 @@

style:letter-kerning Attribute RNG Relations - style:letter-kerning="<boolean>"   + style:letter-kerning="#boolean"  
@@ -51152,7 +51152,7 @@

style:lines Attribute (new in ODF RNG Relations - style:lines="<positiveInteger>"   + style:lines="#positiveInteger"  
@@ -51177,7 +51177,7 @@

style:list-level Attribute ( RNG Relations - style:list-level="(<positiveInteger>)?"   + style:list-level="(#positiveInteger)?"  
@@ -51202,7 +51202,7 @@

style:list-style-name Attribute< RNG Relations - style:list-style-name="(<NCName>)?"   + style:list-style-name="(#NCName)?"  
@@ -51227,7 +51227,7 @@

style:master-page-name Attribut RNG Relations - style:master-page-name="(<NCName>)?"   + style:master-page-name="(#NCName)?"  
@@ -51253,7 +51253,7 @@

style:may-break-between-r RNG Relations - style:may-break-between-rows="<boolean>"   + style:may-break-between-rows="#boolean"  
@@ -51349,7 +51349,7 @@

style:name[1] Attribute

RNG Relations - style:name="<NCName>"   + style:name="#NCName"  
@@ -51375,7 +51375,7 @@

style:name[2] Attribute

RNG Relations - style:name="<string>"   + style:name="#string"  
@@ -51401,7 +51401,7 @@

style:next-style-name Attribute< RNG Relations - style:next-style-name="(<NCName>)?"   + style:next-style-name="(#NCName)?"  
@@ -51445,7 +51445,7 @@

style:num-format[1] Attribute

RNG Relations - style:num-format="(1 | i | I | <string>)?"   + style:num-format="(1 | i | I | #string)?"  
@@ -51528,7 +51528,7 @@

style:num-letter-sync Attribute< RNG Relations - style:num-letter-sync="<boolean>"   + style:num-letter-sync="#boolean"  
@@ -51557,7 +51557,7 @@

style:num-prefix Attribute

RNG Relations - style:num-prefix="<string>"   + style:num-prefix="#string"  
@@ -51586,7 +51586,7 @@

style:num-suffix Attribute

RNG Relations - style:num-suffix="<string>"   + style:num-suffix="#string"  
@@ -51612,7 +51612,7 @@

style:number-wrapped-p RNG Relations - style:number-wrapped-paragraphs="no-limit | <positiveInteger>"   + style:number-wrapped-paragraphs="no-limit | #positiveInteger"  
@@ -51665,7 +51665,7 @@

style:page-layout-name Attribut RNG Relations - style:page-layout-name="(<NCName>)?"   + style:page-layout-name="(#NCName)?"  
@@ -51692,7 +51692,7 @@

style:page-number Attribute  RNG Relations - style:page-number="<nonNegativeInteger> | auto"   + style:page-number="#nonNegativeInteger | auto"  
@@ -51746,7 +51746,7 @@

style:paper-tray-name Attribute< RNG Relations - style:paper-tray-name="default | <string>"   + style:paper-tray-name="default | #string"  
@@ -51771,7 +51771,7 @@

style:parent-style-name Attrib RNG Relations - style:parent-style-name="(<NCName>)?"   + style:parent-style-name="(#NCName)?"  
@@ -51796,7 +51796,7 @@

style:percentage-data RNG Relations - style:percentage-data-style-name="(<NCName>)?"   + style:percentage-data-style-name="(#NCName)?"  
@@ -51918,7 +51918,7 @@

style:print-content Attribute& RNG Relations - style:print-content="<boolean>"   + style:print-content="#boolean"  
@@ -51997,7 +51997,7 @@

style:protect[1] Attribute (new RNG Relations - style:protect="<boolean>"   + style:protect="#boolean"  
@@ -52080,7 +52080,7 @@

style:register-true Attribute& RNG Relations - style:register-true="<boolean>"   + style:register-true="#boolean"  
@@ -52105,7 +52105,7 @@

style:register-tru RNG Relations - style:register-truth-ref-style-name="(<NCName>)?"   + style:register-truth-ref-style-name="(#NCName)?"  
@@ -52295,7 +52295,7 @@

style:repeat-content Attribute RNG Relations - style:repeat-content="<boolean>"   + style:repeat-content="#boolean"  
@@ -52322,7 +52322,7 @@

style:rfc-language-tag Attribut RNG Relations - style:rfc-language-tag="<language>"   + style:rfc-language-tag="#language"  
@@ -52347,7 +52347,7 @@

style:rfc-language-tag-as RNG Relations - style:rfc-language-tag-asian="<language>"   + style:rfc-language-tag-asian="#language"  
@@ -52372,7 +52372,7 @@

style:rfc-language-tag- RNG Relations - style:rfc-language-tag-complex="<language>"   + style:rfc-language-tag-complex="#language"  
@@ -52426,7 +52426,7 @@

style:rotation-angle Attribute RNG Relations - style:rotation-angle="<string>"   + style:rotation-angle="#string"  
@@ -52582,7 +52582,7 @@

style:scale-to-X Attribute ( RNG Relations - style:scale-to-X="<positiveInteger>"   + style:scale-to-X="#positiveInteger"  
@@ -52607,7 +52607,7 @@

style:scale-to-Y Attribute ( RNG Relations - style:scale-to-Y="<positiveInteger>"   + style:scale-to-Y="#positiveInteger"  
@@ -52632,7 +52632,7 @@

style:scale-to-pages Attribute RNG Relations - style:scale-to-pages="<positiveInteger>"   + style:scale-to-pages="#positiveInteger"  
@@ -52741,7 +52741,7 @@

style:shadow Attribute (new in O RNG Relations - style:shadow="none | <string>"   + style:shadow="none | #string"  
@@ -52768,7 +52768,7 @@

style:shrink-to-fit Attribute& RNG Relations - style:shrink-to-fit="<boolean>"   + style:shrink-to-fit="#boolean"  
@@ -52794,7 +52794,7 @@

style:snap-to-layout-grid At RNG Relations - style:snap-to-layout-grid="<boolean>"   + style:snap-to-layout-grid="#boolean"  
@@ -52848,7 +52848,7 @@

style:style-name Attribute ( RNG Relations - style:style-name="(<NCName>)?"   + style:style-name="(#NCName)?"  
@@ -52979,7 +52979,7 @@

style:text-blinking Attribute& RNG Relations - style:text-blinking="<boolean>"   + style:text-blinking="#boolean"  
@@ -53198,7 +53198,7 @@

style:text-line-through-t RNG Relations - style:text-line-through-text="<string>"   + style:text-line-through-text="#string"  
@@ -53223,7 +53223,7 @@

style:text-line-thr RNG Relations - style:text-line-through-text-style="(<NCName>)?"   + style:text-line-through-text-style="(#NCName)?"  
@@ -53283,7 +53283,7 @@

style:text-line-through- RNG Relations - style:text-line-through-width="auto | normal | bold | thin | medium | thick | <positiveInteger> | string] | string]"   + style:text-line-through-width="auto | normal | bold | thin | medium | thick | #positiveInteger | string] | string]"  
@@ -53309,7 +53309,7 @@

style:text-outline Attribute&nb RNG Relations - style:text-outline="<boolean>"   + style:text-outline="#boolean"  
@@ -53453,7 +53453,7 @@

style:text-overline-width At RNG Relations - style:text-overline-width="auto | normal | bold | thin | medium | thick | <positiveInteger> | string] | string]"   + style:text-overline-width="auto | normal | bold | thin | medium | thick | #positiveInteger | string] | string]"  
@@ -53507,7 +53507,7 @@

style:text-rotation-angle At RNG Relations - style:text-rotation-angle="<string>"   + style:text-rotation-angle="#string"  
@@ -53702,7 +53702,7 @@

style:text-underline-width RNG Relations - style:text-underline-width="auto | normal | bold | thin | medium | thick | <positiveInteger> | string] | string]"   + style:text-underline-width="auto | normal | bold | thin | medium | thick | #positiveInteger | string] | string]"  
@@ -53834,7 +53834,7 @@

style:use-optimal-colum RNG Relations - style:use-optimal-column-width="<boolean>"   + style:use-optimal-column-width="#boolean"  
@@ -53860,7 +53860,7 @@

style:use-optimal-row-hei RNG Relations - style:use-optimal-row-height="<boolean>"   + style:use-optimal-row-height="#boolean"  
@@ -53886,7 +53886,7 @@

style:use-window-font-colo RNG Relations - style:use-window-font-color="<boolean>"   + style:use-window-font-color="#boolean"  
@@ -54070,7 +54070,7 @@

style:volatile Attribute

RNG Relations - style:volatile="<boolean>"   + style:volatile="#boolean"  
@@ -54180,7 +54180,7 @@

style:wrap-contour Attribute&nb RNG Relations - style:wrap-contour="<boolean>"   + style:wrap-contour="#boolean"  
@@ -54294,7 +54294,7 @@

style:writing-mode-automa RNG Relations - style:writing-mode-automatic="<boolean>"   + style:writing-mode-automatic="#boolean"  
@@ -54319,7 +54319,7 @@

svg:accent-height Attribute

RNG Relations - svg:accent-height="<integer>"   + svg:accent-height="#integer"  
@@ -54344,7 +54344,7 @@

svg:alphabetic Attribute

RNG Relations - svg:alphabetic="<integer>"   + svg:alphabetic="#integer"  
@@ -54369,7 +54369,7 @@

svg:ascent Attribute

RNG Relations - svg:ascent="<integer>"   + svg:ascent="#integer"  
@@ -54394,7 +54394,7 @@

svg:bbox Attribute

RNG Relations - svg:bbox="<string>"   + svg:bbox="#string"  
@@ -54419,7 +54419,7 @@

svg:cap-height Attribute

RNG Relations - svg:cap-height="<integer>"   + svg:cap-height="#integer"  
@@ -54559,7 +54559,7 @@

svg:d Attribute

RNG Relations - svg:d="<string>"   + svg:d="#string"  
@@ -54584,7 +54584,7 @@

svg:descent Attribute

RNG Relations - svg:descent="<integer>"   + svg:descent="#integer"  
@@ -54636,7 +54636,7 @@

svg:font-family Attribute

RNG Relations - svg:font-family="<string>"   + svg:font-family="#string"  
@@ -54860,7 +54860,7 @@

svg:gradientTransform Attribute< RNG Relations - svg:gradientTransform="<string>"   + svg:gradientTransform="#string"  
@@ -54911,7 +54911,7 @@

svg:hanging Attribute

RNG Relations - svg:hanging="<integer>"   + svg:hanging="#integer"  
@@ -55013,7 +55013,7 @@

svg:ideographic Attribute

RNG Relations - svg:ideographic="<integer>"   + svg:ideographic="#integer"  
@@ -55038,7 +55038,7 @@

svg:mathematical Attribute

RNG Relations - svg:mathematical="<integer>"   + svg:mathematical="#integer"  
@@ -55063,7 +55063,7 @@

svg:name Attribute (new in ODF 1.1) RNG Relations - svg:name="<string>"   + svg:name="#string"  
@@ -55089,7 +55089,7 @@

svg:offset Attribute

RNG Relations - svg:offset="<double> | string]"   + svg:offset="#double | string]"  
@@ -55114,7 +55114,7 @@

svg:origin Attribute

RNG Relations - svg:origin="<string>"   + svg:origin="#string"  
@@ -55139,7 +55139,7 @@

svg:overline-position Attribute< RNG Relations - svg:overline-position="<integer>"   + svg:overline-position="#integer"  
@@ -55164,7 +55164,7 @@

svg:overline-thickness Attribut RNG Relations - svg:overline-thickness="<integer>"   + svg:overline-thickness="#integer"  
@@ -55189,7 +55189,7 @@

svg:panose-1 Attribute

RNG Relations - svg:panose-1="<string>"   + svg:panose-1="#string"  
@@ -55214,7 +55214,7 @@

svg:path Attribute

RNG Relations - svg:path="<string>"   + svg:path="#string"  
@@ -55397,7 +55397,7 @@

svg:slope Attribute

RNG Relations - svg:slope="<integer>"   + svg:slope="#integer"  
@@ -55450,7 +55450,7 @@

svg:stemh Attribute

RNG Relations - svg:stemh="<integer>"   + svg:stemh="#integer"  
@@ -55475,7 +55475,7 @@

svg:stemv Attribute

RNG Relations - svg:stemv="<integer>"   + svg:stemv="#integer"  
@@ -55525,7 +55525,7 @@

svg:stop-opacity Attribute

RNG Relations - svg:stop-opacity="<double>"   + svg:stop-opacity="#double"  
@@ -55550,7 +55550,7 @@

svg:strikethrough-position RNG Relations - svg:strikethrough-position="<integer>"   + svg:strikethrough-position="#integer"  
@@ -55575,7 +55575,7 @@

svg:strikethrough-thicknes RNG Relations - svg:strikethrough-thickness="<integer>"   + svg:strikethrough-thickness="#integer"  
@@ -55600,7 +55600,7 @@

svg:string Attribute

RNG Relations - svg:string="<string>"   + svg:string="#string"  
@@ -55757,7 +55757,7 @@

svg:underline-position Attribut RNG Relations - svg:underline-position="<integer>"   + svg:underline-position="#integer"  
@@ -55782,7 +55782,7 @@

svg:underline-thickness Attrib RNG Relations - svg:underline-thickness="<integer>"   + svg:underline-thickness="#integer"  
@@ -55807,7 +55807,7 @@

svg:unicode-range Attribute

RNG Relations - svg:unicode-range="<string>"   + svg:unicode-range="#string"  
@@ -55832,7 +55832,7 @@

svg:units-per-em Attribute

RNG Relations - svg:units-per-em="<integer>"   + svg:units-per-em="#integer"  
@@ -55857,7 +55857,7 @@

svg:v-alphabetic Attribute

RNG Relations - svg:v-alphabetic="<integer>"   + svg:v-alphabetic="#integer"  
@@ -55882,7 +55882,7 @@

svg:v-hanging Attribute

RNG Relations - svg:v-hanging="<integer>"   + svg:v-hanging="#integer"  
@@ -55907,7 +55907,7 @@

svg:v-ideographic Attribute

RNG Relations - svg:v-ideographic="<integer>"   + svg:v-ideographic="#integer"  
@@ -55932,7 +55932,7 @@

svg:v-mathematical Attribute RNG Relations - svg:v-mathematical="<integer>"   + svg:v-mathematical="#integer"  
@@ -55968,7 +55968,7 @@

svg:viewBox Attribute

RNG Relations svg:viewBox=" -START_list<integer><integer><integer><integer> +START_list#integer#integer#integer#integer END_list"   @@ -56072,7 +56072,7 @@

svg:widths Attribute

RNG Relations - svg:widths="<string>"   + svg:widths="#string"  
@@ -56175,7 +56175,7 @@

svg:x-height Attribute

RNG Relations - svg:x-height="<integer>"   + svg:x-height="#integer"  
@@ -56531,7 +56531,7 @@

table:add-empty-lines Attribute< RNG Relations - table:add-empty-lines="<boolean>"   + table:add-empty-lines="#boolean"  
@@ -56556,7 +56556,7 @@

table:algorithm Attribute

RNG Relations - table:algorithm="<string>"   + table:algorithm="#string"  
@@ -56610,7 +56610,7 @@

table:allow-empty-cell Attribut RNG Relations - table:allow-empty-cell="<boolean>"   + table:allow-empty-cell="#boolean"  
@@ -56635,7 +56635,7 @@

table:application-data Attribut RNG Relations - table:application-data="<string>"   + table:application-data="#string"  
@@ -56661,7 +56661,7 @@

table:automatic-find-label RNG Relations - table:automatic-find-labels="<boolean>"   + table:automatic-find-labels="#boolean"  
@@ -56715,7 +56715,7 @@

table:bind-styles-to-cont RNG Relations - table:bind-styles-to-content="<boolean>"   + table:bind-styles-to-content="#boolean"  
@@ -56791,7 +56791,7 @@

table:buttons Attribute

RNG Relations - table:buttons="<string>"   + table:buttons="#string"  
@@ -56820,7 +56820,7 @@

table:case-sensitive[1] Attribute RNG Relations - table:case-sensitive="<boolean>"   + table:case-sensitive="#boolean"  
@@ -56846,7 +56846,7 @@

table:case-sensitive[2] Attribute RNG Relations - table:case-sensitive="<string>"   + table:case-sensitive="#string"  
@@ -56898,7 +56898,7 @@

table:cell-range Attribute

RNG Relations - table:cell-range="<string>"   + table:cell-range="#string"  
@@ -56956,7 +56956,7 @@

table:cell-range-address[2] A RNG Relations - table:cell-range-address="<string>"   + table:cell-range-address="#string"  
@@ -56983,7 +56983,7 @@

table:column Attribute

RNG Relations - table:column="<integer>"   + table:column="#integer"  
@@ -57008,7 +57008,7 @@

table:comment Attribute

RNG Relations - table:comment="<string>"   + table:comment="#string"  
@@ -57033,7 +57033,7 @@

table:condition Attribute

RNG Relations - table:condition="<string>"   + table:condition="#string"  
@@ -57112,7 +57112,7 @@

table:contains-error Attribute RNG Relations - table:contains-error="<boolean>"   + table:contains-error="#boolean"  
@@ -57138,7 +57138,7 @@

table:contains-header Attribute< RNG Relations - table:contains-header="<boolean>"   + table:contains-header="#boolean"  
@@ -57164,7 +57164,7 @@

table:content-validation RNG Relations - table:content-validation-name="<string>"   + table:content-validation-name="#string"  
@@ -57190,7 +57190,7 @@

table:copy-back Attribute

RNG Relations - table:copy-back="<boolean>"   + table:copy-back="#boolean"  
@@ -57216,7 +57216,7 @@

table:copy-formulas Attribute< RNG Relations - table:copy-formulas="<boolean>"   + table:copy-formulas="#boolean"  
@@ -57242,7 +57242,7 @@

table:copy-styles Attribute

RNG Relations - table:copy-styles="<boolean>"   + table:copy-styles="#boolean"  
@@ -57267,7 +57267,7 @@

table:count Attribute

RNG Relations - table:count="<positiveInteger>"   + table:count="#positiveInteger"  
@@ -57345,7 +57345,7 @@

table:data-field Attribute

RNG Relations - table:data-field="<string>"   + table:data-field="#string"  
@@ -57375,7 +57375,7 @@

table:data-type[1] Attribute

RNG Relations - table:data-type="text | number | automatic | <string>"   + table:data-type="text | number | automatic | #string"  
@@ -57429,7 +57429,7 @@

table:database-name Attribute< RNG Relations - table:database-name="<string>"   + table:database-name="#string"  
@@ -57454,7 +57454,7 @@

table:database-table-name At RNG Relations - table:database-table-name="<string>"   + table:database-table-name="#string"  
@@ -57481,7 +57481,7 @@

table:date-end Attribute

RNG Relations - table:date-end="<date> | <dateTime> | auto"   + table:date-end="#date | #dateTime | auto"  
@@ -57508,7 +57508,7 @@

table:date-start Attribute

RNG Relations - table:date-start="<date> | <dateTime> | auto"   + table:date-start="#date | #dateTime | auto"  
@@ -57533,7 +57533,7 @@

table:date-value Attribute ( RNG Relations - table:date-value="<date>"   + table:date-value="#date"  
@@ -57559,7 +57559,7 @@

table:default-cell-style RNG Relations - table:default-cell-style-name="(<NCName>)?"   + table:default-cell-style-name="(#NCName)?"  
@@ -57617,7 +57617,7 @@

table:display Attribute

RNG Relations - table:display="<boolean>"   + table:display="#boolean"  
@@ -57643,7 +57643,7 @@

table:display-border Attribute RNG Relations - table:display-border="<boolean>"   + table:display-border="#boolean"  
@@ -57669,7 +57669,7 @@

table:display-duplicates Attr RNG Relations - table:display-duplicates="<boolean>"   + table:display-duplicates="#boolean"  
@@ -57695,7 +57695,7 @@

table:display-filter-butt RNG Relations - table:display-filter-buttons="<boolean>"   + table:display-filter-buttons="#boolean"  
@@ -57774,7 +57774,7 @@

table:drill-down-on-d RNG Relations - table:drill-down-on-double-click="<boolean>"   + table:drill-down-on-double-click="#boolean"  
@@ -57827,7 +57827,7 @@

table:enabled Attribute

RNG Relations - table:enabled="<boolean>"   + table:enabled="#boolean"  
@@ -57853,7 +57853,7 @@

table:end Attribute

RNG Relations - table:end="<double> | auto"   + table:end="#double | auto"  
@@ -57921,7 +57921,7 @@

table:end-column Attribute

RNG Relations - table:end-column="<integer>"   + table:end-column="#integer"  
@@ -57946,7 +57946,7 @@

table:end-position Attribute RNG Relations - table:end-position="<integer>"   + table:end-position="#integer"  
@@ -57972,7 +57972,7 @@

table:end-row Attribute

RNG Relations - table:end-row="<integer>"   + table:end-row="#integer"  
@@ -57998,7 +57998,7 @@

table:end-table Attribute

RNG Relations - table:end-table="<integer>"   + table:end-table="#integer"  
@@ -58108,7 +58108,7 @@

table:execute Attribute

RNG Relations - table:execute="<boolean>"   + table:execute="#boolean"  
@@ -58133,7 +58133,7 @@

table:expression Attribute

RNG Relations - table:expression="<string>"   + table:expression="#string"  
@@ -58158,7 +58158,7 @@

table:field-name Attribute

RNG Relations - table:field-name="<string>"   + table:field-name="#string"  
@@ -58185,7 +58185,7 @@

table:field-number Attribute RNG Relations - table:field-number="<nonNegativeInteger>"   + table:field-number="#nonNegativeInteger"  
@@ -58211,7 +58211,7 @@

table:filter-name Attribute

RNG Relations - table:filter-name="<string>"   + table:filter-name="#string"  
@@ -58237,7 +58237,7 @@

table:filter-options Attribute RNG Relations - table:filter-options="<string>"   + table:filter-options="#string"  
@@ -58316,7 +58316,7 @@

table:formula Attribute

RNG Relations - table:formula="<string>"   + table:formula="#string"  
@@ -58354,7 +58354,7 @@

table:function[1] Attribute

RNG Relations - table:function="average | count | countnums | max | min | product | stdev | stdevp | sum | var | varp | <string>"   + table:function="average | count | countnums | max | min | product | stdev | stdevp | sum | var | varp | #string"  
@@ -58393,7 +58393,7 @@

table:function[2] Attribute

RNG Relations - table:function="auto | average | count | countnums | max | min | product | stdev | stdevp | sum | var | varp | <string>"   + table:function="auto | average | count | countnums | max | min | product | stdev | stdevp | sum | var | varp | #string"  
@@ -58446,7 +58446,7 @@

table:group-by-field-numbe RNG Relations - table:group-by-field-number="<nonNegativeInteger>"   + table:group-by-field-number="#nonNegativeInteger"  
@@ -58503,7 +58503,7 @@

table:has-persistent-data At RNG Relations - table:has-persistent-data="<boolean>"   + table:has-persistent-data="#boolean"  
@@ -58536,7 +58536,7 @@

table:id Attribute

RNG Relations - table:id="<string>"   + table:id="#string"  
@@ -58562,7 +58562,7 @@

table:identify-categories At RNG Relations - table:identify-categories="<boolean>"   + table:identify-categories="#boolean"  
@@ -58588,7 +58588,7 @@

table:ignore-empty-rows Attrib RNG Relations - table:ignore-empty-rows="<boolean>"   + table:ignore-empty-rows="#boolean"  
@@ -58613,7 +58613,7 @@

table:index Attribute

RNG Relations - table:index="<nonNegativeInteger>"   + table:index="#nonNegativeInteger"  
@@ -58639,7 +58639,7 @@

table:is-active Attribute

RNG Relations - table:is-active="<boolean>"   + table:is-active="#boolean"  
@@ -58664,7 +58664,7 @@

table:is-data-layout-field RNG Relations - table:is-data-layout-field="<string>"   + table:is-data-layout-field="#string"  
@@ -58690,7 +58690,7 @@

table:is-selection Attribute RNG Relations - table:is-selection="<boolean>"   + table:is-selection="#boolean"  
@@ -58716,7 +58716,7 @@

table:is-sub-table Attribute RNG Relations - table:is-sub-table="<boolean>"   + table:is-sub-table="#boolean"  
@@ -58793,7 +58793,7 @@

table:last-column-spanned At RNG Relations - table:last-column-spanned="<positiveInteger>"   + table:last-column-spanned="#positiveInteger"  
@@ -58844,7 +58844,7 @@

table:last-row-spanned Attribut RNG Relations - table:last-row-spanned="<positiveInteger>"   + table:last-row-spanned="#positiveInteger"  
@@ -58923,7 +58923,7 @@

table:link-to-source-data At RNG Relations - table:link-to-source-data="<boolean>"   + table:link-to-source-data="#boolean"  
@@ -58949,7 +58949,7 @@

table:marked-invalid Attribute RNG Relations - table:marked-invalid="<boolean>"   + table:marked-invalid="#boolean"  
@@ -58975,7 +58975,7 @@

table:matrix-covered Attribute RNG Relations - table:matrix-covered="<boolean>"   + table:matrix-covered="#boolean"  
@@ -59000,7 +59000,7 @@

table:maximum-difference Attr RNG Relations - table:maximum-difference="<double>"   + table:maximum-difference="#double"  
@@ -59025,7 +59025,7 @@

table:member-count Attribute RNG Relations - table:member-count="<nonNegativeInteger>"   + table:member-count="#nonNegativeInteger"  
@@ -59050,7 +59050,7 @@

table:member-name Attribute

RNG Relations - table:member-name="<string>"   + table:member-name="#string"  
@@ -59181,7 +59181,7 @@

table:multi-deletion-span RNG Relations - table:multi-deletion-spanned="<integer>"   + table:multi-deletion-spanned="#integer"  
@@ -59219,7 +59219,7 @@

table:name[1] Attribute

RNG Relations - table:name="<string>"   + table:name="#string"  
@@ -59274,7 +59274,7 @@

table:null-year Attribute

RNG Relations - table:null-year="<positiveInteger>"   + table:null-year="#positiveInteger"  
@@ -59301,7 +59301,7 @@

table:number-columns-rep RNG Relations - table:number-columns-repeated="<positiveInteger>"   + table:number-columns-repeated="#positiveInteger"  
@@ -59326,7 +59326,7 @@

table:number-columns-span RNG Relations - table:number-columns-spanned="<positiveInteger>"   + table:number-columns-spanned="#positiveInteger"  
@@ -59352,7 +59352,7 @@

table:number-matri RNG Relations - table:number-matrix-columns-spanned="<positiveInteger>"   + table:number-matrix-columns-spanned="#positiveInteger"  
@@ -59378,7 +59378,7 @@

table:number-matrix-r RNG Relations - table:number-matrix-rows-spanned="<positiveInteger>"   + table:number-matrix-rows-spanned="#positiveInteger"  
@@ -59403,7 +59403,7 @@

table:number-rows-repeated RNG Relations - table:number-rows-repeated="<positiveInteger>"   + table:number-rows-repeated="#positiveInteger"  
@@ -59428,7 +59428,7 @@

table:number-rows-spanned At RNG Relations - table:number-rows-spanned="<positiveInteger>"   + table:number-rows-spanned="#positiveInteger"  
@@ -59453,7 +59453,7 @@

table:object-name Attribute

RNG Relations - table:object-name="<string>"   + table:object-name="#string"  
@@ -59479,7 +59479,7 @@

table:on-update-keep-size At RNG Relations - table:on-update-keep-size="<boolean>"   + table:on-update-keep-size="#boolean"  
@@ -59505,7 +59505,7 @@

table:on-update-keep-style RNG Relations - table:on-update-keep-styles="<boolean>"   + table:on-update-keep-styles="#boolean"  
@@ -59530,7 +59530,7 @@

table:operator Attribute

RNG Relations - table:operator="<string>"   + table:operator="#string"  
@@ -59667,7 +59667,7 @@

table:page-breaks-on RNG Relations - table:page-breaks-on-group-change="<boolean>"   + table:page-breaks-on-group-change="#boolean"  
@@ -59700,7 +59700,7 @@

table:paragraph-style-name RNG Relations - table:paragraph-style-name="(<NCName>)?"   + table:paragraph-style-name="(#NCName)?"  
@@ -59726,7 +59726,7 @@

table:parse-sql-statement At RNG Relations - table:parse-sql-statement="<boolean>"   + table:parse-sql-statement="#boolean"  
@@ -59751,7 +59751,7 @@

table:password Attribute

RNG Relations - table:password="<string>"   + table:password="#string"  
@@ -59779,7 +59779,7 @@

table:position Attribute

RNG Relations - table:position="<integer>"   + table:position="#integer"  
@@ -59805,7 +59805,7 @@

table:precision-as-shown Attr RNG Relations - table:precision-as-shown="<boolean>"   + table:precision-as-shown="#boolean"  
@@ -59831,7 +59831,7 @@

table:print Attribute

RNG Relations - table:print="<boolean>"   + table:print="#boolean"  
@@ -59856,7 +59856,7 @@

table:print-ranges Attribute RNG Relations - table:print-ranges="<string>"   + table:print-ranges="#string"  
@@ -59883,7 +59883,7 @@

table:protect Attribute

RNG Relations - table:protect="<boolean>"   + table:protect="#boolean"  
@@ -59912,7 +59912,7 @@

table:protected Attribute

RNG Relations - table:protected="<boolean>"   + table:protected="#boolean"  
@@ -59938,7 +59938,7 @@

table:protection-key Attribute RNG Relations - table:protection-key="<string>"   + table:protection-key="#string"  
@@ -59964,7 +59964,7 @@

table:protection RNG Relations - table:protection-key-digest-algorithm="<anyIRI>"   + table:protection-key-digest-algorithm="#anyIRI"  
@@ -59989,7 +59989,7 @@

table:query-name Attribute

RNG Relations - table:query-name="<string>"   + table:query-name="#string"  
@@ -60047,7 +60047,7 @@

table:refresh-delay[1] Attribute RNG Relations - table:refresh-delay="<boolean>"   + table:refresh-delay="#boolean"  
@@ -60074,7 +60074,7 @@

table:refresh-delay[2] Attribute RNG Relations - table:refresh-delay="<duration>"   + table:refresh-delay="#duration"  
@@ -60102,7 +60102,7 @@

table:rejecting-change-id At RNG Relations - table:rejecting-change-id="<string>"   + table:rejecting-change-id="#string"  
@@ -60127,7 +60127,7 @@

table:rfc-language-tag Attribut RNG Relations - table:rfc-language-tag="<language>"   + table:rfc-language-tag="#language"  
@@ -60154,7 +60154,7 @@

table:row Attribute

RNG Relations - table:row="<integer>"   + table:row="#integer"  
@@ -60179,7 +60179,7 @@

table:scenario-ranges Attribute< RNG Relations - table:scenario-ranges="<string>"   + table:scenario-ranges="#string"  
@@ -60230,7 +60230,7 @@

table:s RNG Relations - table:search-criteria-must-apply-to-whole-cell="<boolean>"   + table:search-criteria-must-apply-to-whole-cell="#boolean"  
@@ -60255,7 +60255,7 @@

table:selected-page Attribute< RNG Relations - table:selected-page="<string>"   + table:selected-page="#string"  
@@ -60281,7 +60281,7 @@

table:show-details Attribute RNG Relations - table:show-details="<boolean>"   + table:show-details="#boolean"  
@@ -60307,7 +60307,7 @@

table:show-empty Attribute

RNG Relations - table:show-empty="<boolean>"   + table:show-empty="#boolean"  
@@ -60333,7 +60333,7 @@

table:show-filter-button Attr RNG Relations - table:show-filter-button="<boolean>"   + table:show-filter-button="#boolean"  
@@ -60412,7 +60412,7 @@

table:source-cell-ra RNG Relations - table:source-cell-range-addresses="<string>"   + table:source-cell-range-addresses="#string"  
@@ -60438,7 +60438,7 @@

table:source-field-name Attrib RNG Relations - table:source-field-name="<string>"   + table:source-field-name="#string"  
@@ -60463,7 +60463,7 @@

table:source-name Attribute

RNG Relations - table:source-name="<string>"   + table:source-name="#string"  
@@ -60488,7 +60488,7 @@

table:sql-statement Attribute< RNG Relations - table:sql-statement="<string>"   + table:sql-statement="#string"  
@@ -60514,7 +60514,7 @@

table:start Attribute

RNG Relations - table:start="<double> | auto"   + table:start="#double | auto"  
@@ -60540,7 +60540,7 @@

table:start-column Attribute RNG Relations - table:start-column="<integer>"   + table:start-column="#integer"  
@@ -60565,7 +60565,7 @@

table:start-position Attribute RNG Relations - table:start-position="<integer>"   + table:start-position="#integer"  
@@ -60591,7 +60591,7 @@

table:start-row Attribute

RNG Relations - table:start-row="<integer>"   + table:start-row="#integer"  
@@ -60617,7 +60617,7 @@

table:start-table Attribute

RNG Relations - table:start-table="<integer>"   + table:start-table="#integer"  
@@ -60668,7 +60668,7 @@

table:step Attribute

RNG Relations - table:step="<double>"   + table:step="#double"  
@@ -60693,7 +60693,7 @@

table:steps Attribute

RNG Relations - table:steps="<positiveInteger>"   + table:steps="#positiveInteger"  
@@ -60719,7 +60719,7 @@

table:structure-protected At RNG Relations - table:structure-protected="<boolean>"   + table:structure-protected="#boolean"  
@@ -60758,7 +60758,7 @@

table:style-name Attribute

RNG Relations - table:style-name="(<NCName>)?"   + table:style-name="(#NCName)?"  
@@ -60812,7 +60812,7 @@

table:table Attribute

RNG Relations - table:table="<integer>"   + table:table="#integer"  
@@ -60855,7 +60855,7 @@

table:table-background Attribut RNG Relations - table:table-background="<boolean>"   + table:table-background="#boolean"  
@@ -60880,7 +60880,7 @@

table:table-name Attribute

RNG Relations - table:table-name="<string>"   + table:table-name="#string"  
@@ -60960,7 +60960,7 @@

table:template-name Attribute& RNG Relations - table:template-name="<string>"   + table:template-name="#string"  
@@ -60986,7 +60986,7 @@

table:title Attribute

RNG Relations - table:title="<string>"   + table:title="#string"  
@@ -61012,7 +61012,7 @@

table:track-changes Attribute< RNG Relations - table:track-changes="<boolean>"   + table:track-changes="#boolean"  
@@ -61101,7 +61101,7 @@

table:use-banding-col RNG Relations - table:use-banding-columns-styles="<boolean>"   + table:use-banding-columns-styles="#boolean"  
@@ -61127,7 +61127,7 @@

table:use-banding-rows-s RNG Relations - table:use-banding-rows-styles="<boolean>"   + table:use-banding-rows-styles="#boolean"  
@@ -61153,7 +61153,7 @@

table:use-first-column-s RNG Relations - table:use-first-column-styles="<boolean>"   + table:use-first-column-styles="#boolean"  
@@ -61179,7 +61179,7 @@

table:use-first-row-styles RNG Relations - table:use-first-row-styles="<boolean>"   + table:use-first-row-styles="#boolean"  
@@ -61233,7 +61233,7 @@

table:use-last-column-sty RNG Relations - table:use-last-column-styles="<boolean>"   + table:use-last-column-styles="#boolean"  
@@ -61259,7 +61259,7 @@

table:use-last-row-styles At RNG Relations - table:use-last-row-styles="<boolean>"   + table:use-last-row-styles="#boolean"  
@@ -61285,7 +61285,7 @@

table:use-regular-expres RNG Relations - table:use-regular-expressions="<boolean>"   + table:use-regular-expressions="#boolean"  
@@ -61311,7 +61311,7 @@

table:use-wildcards Attribute& RNG Relations - table:use-wildcards="<boolean>"   + table:use-wildcards="#boolean"  
@@ -61336,7 +61336,7 @@

table:used-hierarchy Attribute RNG Relations - table:used-hierarchy="<integer>"   + table:used-hierarchy="#integer"  
@@ -61361,7 +61361,7 @@

table:user-name Attribute

RNG Relations - table:user-name="<string>"   + table:user-name="#string"  
@@ -61387,7 +61387,7 @@

table:value[1] Attribute

RNG Relations - table:value="<string>"   + table:value="#string"  
@@ -61414,7 +61414,7 @@

table:value[2] Attribute

RNG Relations - table:value="<string> | <double>"   + table:value="#string | #double"  
@@ -61493,7 +61493,7 @@

text:active Attribute

RNG Relations - text:active="<boolean>"   + text:active="#boolean"  
@@ -61518,7 +61518,7 @@

text:address Attribute

RNG Relations - CHOICE_NAME_CLASS="<string>"   + CHOICE_NAME_CLASS="#string"  
@@ -61544,7 +61544,7 @@

text:alphabetical-separat RNG Relations - text:alphabetical-separators="<boolean>"   + text:alphabetical-separators="#boolean"  
@@ -61587,7 +61587,7 @@

text:anchor-page-number Attrib RNG Relations - text:anchor-page-number="<positiveInteger>"   + text:anchor-page-number="#positiveInteger"  
@@ -61687,7 +61687,7 @@

text:animation-delay Attribute RNG Relations - text:animation-delay="<duration>"   + text:animation-delay="#duration"  
@@ -61740,7 +61740,7 @@

text:animation-repeat Attribute< RNG Relations - text:animation-repeat="<nonNegativeInteger>"   + text:animation-repeat="#nonNegativeInteger"  
@@ -61766,7 +61766,7 @@

text:animation-start-insid RNG Relations - text:animation-start-inside="<boolean>"   + text:animation-start-inside="#boolean"  
@@ -61817,7 +61817,7 @@

text:animation-stop-inside RNG Relations - text:animation-stop-inside="<boolean>"   + text:animation-stop-inside="#boolean"  
@@ -61842,7 +61842,7 @@

text:annote Attribute

RNG Relations - CHOICE_NAME_CLASS="<string>"   + CHOICE_NAME_CLASS="#string"  
@@ -61867,7 +61867,7 @@

text:author Attribute

RNG Relations - CHOICE_NAME_CLASS="<string>"   + CHOICE_NAME_CLASS="#string"  
@@ -61995,7 +61995,7 @@

text:booktitle Attribute

RNG Relations - CHOICE_NAME_CLASS="<string>"   + CHOICE_NAME_CLASS="#string"  
@@ -62070,7 +62070,7 @@

text:c Attribute

RNG Relations - text:c="<nonNegativeInteger>"   + text:c="#nonNegativeInteger"  
@@ -62096,7 +62096,7 @@

text:capitalize-entries Attrib RNG Relations - text:capitalize-entries="<boolean>"   + text:capitalize-entries="#boolean"  
@@ -62150,7 +62150,7 @@

text:caption-sequence-name RNG Relations - text:caption-sequence-name="<string>"   + text:caption-sequence-name="#string"  
@@ -62177,7 +62177,7 @@

text:change-id Attribute

RNG Relations - text:change-id="<IDREF>"   + text:change-id="#IDREF"  
@@ -62202,7 +62202,7 @@

text:chapter Attribute

RNG Relations - CHOICE_NAME_CLASS="<string>"   + CHOICE_NAME_CLASS="#string"  
@@ -62227,7 +62227,7 @@

text:citation-body-style RNG Relations - text:citation-body-style-name="(<NCName>)?"   + text:citation-body-style-name="(#NCName)?"  
@@ -62252,7 +62252,7 @@

text:citation-style-name Attr RNG Relations - text:citation-style-name="(<NCName>)?"   + text:citation-style-name="(#NCName)?"  
@@ -62280,7 +62280,7 @@

text:class-names Attribute

RNG Relations text:class-names=" -START_list(<NCName>)* +START_list(#NCName)* END_list"   @@ -62306,7 +62306,7 @@

text:column-name Attribute

RNG Relations - text:column-name="<string>"   + text:column-name="#string"  
@@ -62332,7 +62332,7 @@

text:combine-entries Attribute RNG Relations - text:combine-entries="<boolean>"   + text:combine-entries="#boolean"  
@@ -62358,7 +62358,7 @@

text:combine-entries-wi RNG Relations - text:combine-entries-with-dash="<boolean>"   + text:combine-entries-with-dash="#boolean"  
@@ -62384,7 +62384,7 @@

text:combine-entries-with RNG Relations - text:combine-entries-with-pp="<boolean>"   + text:combine-entries-with-pp="#boolean"  
@@ -62410,7 +62410,7 @@

text:comma-separated Attribute RNG Relations - text:comma-separated="<boolean>"   + text:comma-separated="#boolean"  
@@ -62436,7 +62436,7 @@

text:cond-style-name Attribute RNG Relations - text:cond-style-name="(<NCName>)?"   + text:cond-style-name="(#NCName)?"  
@@ -62467,7 +62467,7 @@

text:condition[1] Attribute

RNG Relations - text:condition="<string>"   + text:condition="#string"  
@@ -62518,7 +62518,7 @@

text:connection-name Attribute RNG Relations - text:connection-name="<string>"   + text:connection-name="#string"  
@@ -62544,7 +62544,7 @@

text:consecutive-numbering RNG Relations - text:consecutive-numbering="<boolean>"   + text:consecutive-numbering="#boolean"  
@@ -62569,7 +62569,7 @@

text:continue-list Attribute&nb RNG Relations - text:continue-list="<IDREF>"   + text:continue-list="#IDREF"  
@@ -62596,7 +62596,7 @@

text:continue-numbering Attrib RNG Relations - text:continue-numbering="<boolean>"   + text:continue-numbering="#boolean"  
@@ -62622,7 +62622,7 @@

text:copy-outline-levels Attr RNG Relations - text:copy-outline-levels="<boolean>"   + text:copy-outline-levels="#boolean"  
@@ -62648,7 +62648,7 @@

text:count-empty-lines Attribut RNG Relations - text:count-empty-lines="<boolean>"   + text:count-empty-lines="#boolean"  
@@ -62674,7 +62674,7 @@

text:count-in-text-boxes Attr RNG Relations - text:count-in-text-boxes="<boolean>"   + text:count-in-text-boxes="#boolean"  
@@ -62700,7 +62700,7 @@

text:current-selected Attribute< RNG Relations - text:current-selected="<boolean>"   + text:current-selected="#boolean"  
@@ -62726,7 +62726,7 @@

text:current-value Attribute RNG Relations - text:current-value="<boolean>"   + text:current-value="#boolean"  
@@ -62751,7 +62751,7 @@

text:custom1 Attribute

RNG Relations - CHOICE_NAME_CLASS="<string>"   + CHOICE_NAME_CLASS="#string"  
@@ -62776,7 +62776,7 @@

text:custom2 Attribute

RNG Relations - CHOICE_NAME_CLASS="<string>"   + CHOICE_NAME_CLASS="#string"  
@@ -62801,7 +62801,7 @@

text:custom3 Attribute

RNG Relations - CHOICE_NAME_CLASS="<string>"   + CHOICE_NAME_CLASS="#string"  
@@ -62826,7 +62826,7 @@

text:custom4 Attribute

RNG Relations - CHOICE_NAME_CLASS="<string>"   + CHOICE_NAME_CLASS="#string"  
@@ -62851,7 +62851,7 @@

text:custom5 Attribute

RNG Relations - CHOICE_NAME_CLASS="<string>"   + CHOICE_NAME_CLASS="#string"  
@@ -62880,7 +62880,7 @@

text:database-name Attribute RNG Relations - text:database-name="<string>"   + text:database-name="#string"  
@@ -62905,7 +62905,7 @@

text:date-adjust Attribute

RNG Relations - text:date-adjust="<duration>"   + text:date-adjust="#duration"  
@@ -62932,7 +62932,7 @@

text:date-value[1] Attribute

RNG Relations - text:date-value="<date>"   + text:date-value="#date"  
@@ -62960,7 +62960,7 @@

text:date-value[2] Attribute

RNG Relations - text:date-value="<date> | <dateTime>"   + text:date-value="#date | #dateTime"  
@@ -62985,7 +62985,7 @@

text:default-style-name Attrib RNG Relations - text:default-style-name="(<NCName>)?"   + text:default-style-name="(#NCName)?"  
@@ -63013,7 +63013,7 @@

text:description Attribute

RNG Relations - text:description="<string>"   + text:description="#string"  
@@ -63321,7 +63321,7 @@

text:display-levels Attribute< RNG Relations - text:display-levels="<positiveInteger>"   + text:display-levels="#positiveInteger"  
@@ -63346,7 +63346,7 @@

text:display-outline-level RNG Relations - text:display-outline-level="<nonNegativeInteger>"   + text:display-outline-level="#nonNegativeInteger"  
@@ -63372,7 +63372,7 @@

text:dont-balance-text- RNG Relations - text:dont-balance-text-columns="<boolean>"   + text:dont-balance-text-columns="#boolean"  
@@ -63397,7 +63397,7 @@

text:duration Attribute

RNG Relations - text:duration="<duration>"   + text:duration="#duration"  
@@ -63422,7 +63422,7 @@

text:edition Attribute

RNG Relations - CHOICE_NAME_CLASS="<string>"   + CHOICE_NAME_CLASS="#string"  
@@ -63447,7 +63447,7 @@

text:editor Attribute

RNG Relations - CHOICE_NAME_CLASS="<string>"   + CHOICE_NAME_CLASS="#string"  
@@ -63472,7 +63472,7 @@

text:filter-name Attribute

RNG Relations - text:filter-name="<string>"   + text:filter-name="#string"  
@@ -63534,7 +63534,7 @@

text:fixed Attribute

RNG Relations - text:fixed="<boolean>"   + text:fixed="#boolean"  
@@ -63591,7 +63591,7 @@

text:formula Attribute

RNG Relations - text:formula="<string>"   + text:formula="#string"  
@@ -63617,7 +63617,7 @@

text:global Attribute

RNG Relations - text:global="<boolean>"   + text:global="#boolean"  
@@ -63642,7 +63642,7 @@

text:howpublished Attribute

RNG Relations - CHOICE_NAME_CLASS="<string>"   + CHOICE_NAME_CLASS="#string"  
@@ -63674,7 +63674,7 @@

text:id[1] Attribute

RNG Relations - text:id="<string>"   + text:id="#string"  
@@ -63703,7 +63703,7 @@

text:id[2] Attribute

RNG Relations - text:id="<NCName>"   + text:id="#NCName"  
@@ -63728,7 +63728,7 @@

text:identifier Attribute

RNG Relations - CHOICE_NAME_CLASS="<string>"   + CHOICE_NAME_CLASS="#string"  
@@ -63754,7 +63754,7 @@

text:ignore-case Attribute

RNG Relations - text:ignore-case="<boolean>"   + text:ignore-case="#boolean"  
@@ -63780,7 +63780,7 @@

text:increment Attribute

RNG Relations - text:increment="<nonNegativeInteger>"   + text:increment="#nonNegativeInteger"  
@@ -63807,7 +63807,7 @@

text:index-name Attribute

RNG Relations - text:index-name="<string>"   + text:index-name="#string"  
@@ -63863,7 +63863,7 @@

text:institution Attribute

RNG Relations - CHOICE_NAME_CLASS="<string>"   + CHOICE_NAME_CLASS="#string"  
@@ -63890,7 +63890,7 @@

text:is-hidden Attribute

RNG Relations - text:is-hidden="<boolean>"   + text:is-hidden="#boolean"  
@@ -63916,7 +63916,7 @@

text:is-list-header Attribute< RNG Relations - text:is-list-header="<boolean>"   + text:is-list-header="#boolean"  
@@ -63941,7 +63941,7 @@

text:isbn Attribute

RNG Relations - CHOICE_NAME_CLASS="<string>"   + CHOICE_NAME_CLASS="#string"  
@@ -63966,7 +63966,7 @@

text:issn Attribute

RNG Relations - CHOICE_NAME_CLASS="<string>"   + CHOICE_NAME_CLASS="#string"  
@@ -63991,7 +63991,7 @@

text:journal Attribute

RNG Relations - CHOICE_NAME_CLASS="<string>"   + CHOICE_NAME_CLASS="#string"  
@@ -64073,7 +64073,7 @@

text:key1 Attribute

RNG Relations - text:key1="<string>"   + text:key1="#string"  
@@ -64099,7 +64099,7 @@

text:key1-phonetic Attribute RNG Relations - text:key1-phonetic="<string>"   + text:key1-phonetic="#string"  
@@ -64125,7 +64125,7 @@

text:key2 Attribute

RNG Relations - text:key2="<string>"   + text:key2="#string"  
@@ -64151,7 +64151,7 @@

text:key2-phonetic Attribute RNG Relations - text:key2-phonetic="<string>"   + text:key2-phonetic="#string"  
@@ -64203,7 +64203,7 @@

text:label Attribute

RNG Relations - text:label="<string>"   + text:label="#string"  
@@ -64259,7 +64259,7 @@

text:level Attribute

RNG Relations - text:level="<positiveInteger>"   + text:level="#positiveInteger"  
@@ -64285,7 +64285,7 @@

text:line-break Attribute (ne RNG Relations - text:line-break="<boolean>"   + text:line-break="#boolean"  
@@ -64310,7 +64310,7 @@

text:line-number Attribute ( RNG Relations - text:line-number="<nonNegativeInteger>"   + text:line-number="#nonNegativeInteger"  
@@ -64335,7 +64335,7 @@

text:list-id Attribute (new in O RNG Relations - text:list-id="<NCName>"   + text:list-id="#NCName"  
@@ -64413,7 +64413,7 @@

text:main-entry Attribute

RNG Relations - text:main-entry="<boolean>"   + text:main-entry="#boolean"  
@@ -64438,7 +64438,7 @@

text:main-entry-style-name RNG Relations - text:main-entry-style-name="(<NCName>)?"   + text:main-entry-style-name="(#NCName)?"  
@@ -64464,7 +64464,7 @@

text:master-page-name Attribute< RNG Relations - text:master-page-name="(<NCName>)?"   + text:master-page-name="(#NCName)?"  
@@ -64539,7 +64539,7 @@

text:month Attribute

RNG Relations - CHOICE_NAME_CLASS="<string>"   + CHOICE_NAME_CLASS="#string"  
@@ -64590,7 +64590,7 @@

text:name Attribute

RNG Relations - text:name="<string>"   + text:name="#string"  
@@ -64615,7 +64615,7 @@

text:note Attribute

RNG Relations - CHOICE_NAME_CLASS="<string>"   + CHOICE_NAME_CLASS="#string"  
@@ -64668,7 +64668,7 @@

text:number Attribute

RNG Relations - CHOICE_NAME_CLASS="<string>"   + CHOICE_NAME_CLASS="#string"  
@@ -64695,7 +64695,7 @@

text:number-lines Attribute

RNG Relations - text:number-lines="<boolean>"   + text:number-lines="#boolean"  
@@ -64749,7 +64749,7 @@

text:numbered-entries Attribute< RNG Relations - text:numbered-entries="<boolean>"   + text:numbered-entries="#boolean"  
@@ -64799,7 +64799,7 @@

text:organizations Attribute RNG Relations - CHOICE_NAME_CLASS="<string>"   + CHOICE_NAME_CLASS="#string"  
@@ -64825,7 +64825,7 @@

text:outline-level[1] Attribute RNG Relations - text:outline-level="<nonNegativeInteger>"   + text:outline-level="#nonNegativeInteger"  
@@ -64860,7 +64860,7 @@

text:outline-level[2] Attribute RNG Relations - text:outline-level="<positiveInteger>"   + text:outline-level="#positiveInteger"  
@@ -64915,7 +64915,7 @@

text:page-adjust Attribute

RNG Relations - text:page-adjust="<integer>"   + text:page-adjust="#integer"  
@@ -64940,7 +64940,7 @@

text:pages Attribute

RNG Relations - CHOICE_NAME_CLASS="<string>"   + CHOICE_NAME_CLASS="#string"  
@@ -64994,7 +64994,7 @@

text:prefix Attribute

RNG Relations - text:prefix="<string>"   + text:prefix="#string"  
@@ -65028,7 +65028,7 @@

text:protected Attribute

RNG Relations - text:protected="<boolean>"   + text:protected="#boolean"  
@@ -65061,7 +65061,7 @@

text:protection-key Attribute< RNG Relations - text:protection-key="<string>"   + text:protection-key="#string"  
@@ -65094,7 +65094,7 @@

text:protection-k RNG Relations - text:protection-key-digest-algorithm="<anyIRI>"   + text:protection-key-digest-algorithm="#anyIRI"  
@@ -65119,7 +65119,7 @@

text:publisher Attribute

RNG Relations - CHOICE_NAME_CLASS="<string>"   + CHOICE_NAME_CLASS="#string"  
@@ -65148,7 +65148,7 @@

text:ref-name Attribute

RNG Relations - text:ref-name="<string>"   + text:ref-name="#string"  
@@ -65273,7 +65273,7 @@

text:relative-tab-stop RNG Relations - text:relative-tab-stop-position="<boolean>"   + text:relative-tab-stop-position="#boolean"  
@@ -65298,7 +65298,7 @@

text:report-type Attribute

RNG Relations - CHOICE_NAME_CLASS="<string>"   + CHOICE_NAME_CLASS="#string"  
@@ -65324,7 +65324,7 @@

text:restart-numbering Attribut RNG Relations - text:restart-numbering="<boolean>"   + text:restart-numbering="#boolean"  
@@ -65350,7 +65350,7 @@

text:restart-on-page Attribute RNG Relations - text:restart-on-page="<boolean>"   + text:restart-on-page="#boolean"  
@@ -65375,7 +65375,7 @@

text:row-number Attribute

RNG Relations - text:row-number="<nonNegativeInteger>"   + text:row-number="#nonNegativeInteger"  
@@ -65400,7 +65400,7 @@

text:school Attribute

RNG Relations - CHOICE_NAME_CLASS="<string>"   + CHOICE_NAME_CLASS="#string"  
@@ -65425,7 +65425,7 @@

text:section-name Attribute

RNG Relations - text:section-name="<string>"   + text:section-name="#string"  
@@ -65530,7 +65530,7 @@

text:series Attribute

RNG Relations - CHOICE_NAME_CLASS="<string>"   + CHOICE_NAME_CLASS="#string"  
@@ -65556,7 +65556,7 @@

text:sort-algorithm Attribute< RNG Relations - text:sort-algorithm="<string>"   + text:sort-algorithm="#string"  
@@ -65582,7 +65582,7 @@

text:sort-ascending Attribute< RNG Relations - text:sort-ascending="<boolean>"   + text:sort-ascending="#boolean"  
@@ -65608,7 +65608,7 @@

text:sort-by-position Attribute< RNG Relations - text:sort-by-position="<boolean>"   + text:sort-by-position="#boolean"  
@@ -65687,7 +65687,7 @@

text:start-value[1] Attribute

RNG Relations - text:start-value="<positiveInteger>"   + text:start-value="#positiveInteger"  
@@ -65716,7 +65716,7 @@

text:start-value[2] Attribute

RNG Relations - text:start-value="<nonNegativeInteger>"   + text:start-value="#nonNegativeInteger"  
@@ -65745,7 +65745,7 @@

text:string-value Attribute

RNG Relations - text:string-value="<string>"   + text:string-value="#string"  
@@ -65770,7 +65770,7 @@

text:string-value-if-false RNG Relations - text:string-value-if-false="<string>"   + text:string-value-if-false="#string"  
@@ -65795,7 +65795,7 @@

text:string-value-if-true At RNG Relations - text:string-value-if-true="<string>"   + text:string-value-if-true="#string"  
@@ -65821,7 +65821,7 @@

text:string-value-phonetic RNG Relations - text:string-value-phonetic="<string>"   + text:string-value-phonetic="#string"  
@@ -65883,7 +65883,7 @@

text:style-name Attribute

RNG Relations - text:style-name="(<NCName>)?"   + text:style-name="(#NCName)?"  
@@ -65908,7 +65908,7 @@

text:style-override Attribute& RNG Relations - text:style-override="(<NCName>)?"   + text:style-override="(#NCName)?"  
@@ -65933,7 +65933,7 @@

text:suffix Attribute

RNG Relations - text:suffix="<string>"   + text:suffix="#string"  
@@ -65958,7 +65958,7 @@

text:tab-ref Attribute

RNG Relations - text:tab-ref="<nonNegativeInteger>"   + text:tab-ref="#nonNegativeInteger"  
@@ -65987,7 +65987,7 @@

text:table-name Attribute

RNG Relations - text:table-name="<string>"   + text:table-name="#string"  
@@ -66043,7 +66043,7 @@

text:time-adjust Attribute

RNG Relations - text:time-adjust="<duration>"   + text:time-adjust="#duration"  
@@ -66071,7 +66071,7 @@

text:time-value[1] Attribute

RNG Relations - text:time-value="<time> | <dateTime>"   + text:time-value="#time | #dateTime"  
@@ -66098,7 +66098,7 @@

text:time-value[2] Attribute

RNG Relations - text:time-value="<time>"   + text:time-value="#time"  
@@ -66123,7 +66123,7 @@

text:title Attribute

RNG Relations - CHOICE_NAME_CLASS="<string>"   + CHOICE_NAME_CLASS="#string"  
@@ -66149,7 +66149,7 @@

text:track-changes Attribute RNG Relations - text:track-changes="<boolean>"   + text:track-changes="#boolean"  
@@ -66174,7 +66174,7 @@

text:url Attribute

RNG Relations - CHOICE_NAME_CLASS="<string>"   + CHOICE_NAME_CLASS="#string"  
@@ -66201,7 +66201,7 @@

text:use-caption Attribute

RNG Relations - text:use-caption="<boolean>"   + text:use-caption="#boolean"  
@@ -66227,7 +66227,7 @@

text:use-chart-objects Attribut RNG Relations - text:use-chart-objects="<boolean>"   + text:use-chart-objects="#boolean"  
@@ -66253,7 +66253,7 @@

text:use-draw-objects Attribute< RNG Relations - text:use-draw-objects="<boolean>"   + text:use-draw-objects="#boolean"  
@@ -66279,7 +66279,7 @@

text:use-floating-frames Attr RNG Relations - text:use-floating-frames="<boolean>"   + text:use-floating-frames="#boolean"  
@@ -66305,7 +66305,7 @@

text:use-graphics Attribute

RNG Relations - text:use-graphics="<boolean>"   + text:use-graphics="#boolean"  
@@ -66332,7 +66332,7 @@

text:use-index-marks Attribute RNG Relations - text:use-index-marks="<boolean>"   + text:use-index-marks="#boolean"  
@@ -66359,7 +66359,7 @@

text:use-index-source-sty RNG Relations - text:use-index-source-styles="<boolean>"   + text:use-index-source-styles="#boolean"  
@@ -66385,7 +66385,7 @@

text:use-keys-as-entries Attr RNG Relations - text:use-keys-as-entries="<boolean>"   + text:use-keys-as-entries="#boolean"  
@@ -66411,7 +66411,7 @@

text:use-math-objects Attribute< RNG Relations - text:use-math-objects="<boolean>"   + text:use-math-objects="#boolean"  
@@ -66437,7 +66437,7 @@

text:use-objects Attribute

RNG Relations - text:use-objects="<boolean>"   + text:use-objects="#boolean"  
@@ -66463,7 +66463,7 @@

text:use-other-objects Attribut RNG Relations - text:use-other-objects="<boolean>"   + text:use-other-objects="#boolean"  
@@ -66489,7 +66489,7 @@

text:use-outline-level Attribut RNG Relations - text:use-outline-level="<boolean>"   + text:use-outline-level="#boolean"  
@@ -66515,7 +66515,7 @@

text:use-soft-page-breaks At RNG Relations - text:use-soft-page-breaks="<boolean>"   + text:use-soft-page-breaks="#boolean"  
@@ -66541,7 +66541,7 @@

text:use-spreadsheet-obje RNG Relations - text:use-spreadsheet-objects="<boolean>"   + text:use-spreadsheet-objects="#boolean"  
@@ -66567,7 +66567,7 @@

text:use-tables Attribute

RNG Relations - text:use-tables="<boolean>"   + text:use-tables="#boolean"  
@@ -66593,7 +66593,7 @@

text:value[1] Attribute

RNG Relations - text:value="<string>"   + text:value="#string"  
@@ -66619,7 +66619,7 @@

text:value[2] Attribute

RNG Relations - text:value="<nonNegativeInteger>"   + text:value="#nonNegativeInteger"  
@@ -66644,7 +66644,7 @@

text:visited-style-name Attrib RNG Relations - text:visited-style-name="(<NCName>)?"   + text:visited-style-name="(#NCName)?"  
@@ -66669,7 +66669,7 @@

text:volume Attribute

RNG Relations - CHOICE_NAME_CLASS="<string>"   + CHOICE_NAME_CLASS="#string"  
@@ -66694,7 +66694,7 @@

text:year Attribute

RNG Relations - CHOICE_NAME_CLASS="<string>"   + CHOICE_NAME_CLASS="#string"  
@@ -66739,7 +66739,7 @@

xforms:bind Attribute

RNG Relations - xforms:bind="<string>"   + xforms:bind="#string"  
@@ -66770,7 +66770,7 @@

xhtml:about Attribute (new in ODF RNG Relations - xhtml:about="<anyURI> | string]"   + xhtml:about="#anyURI | string]"  
@@ -66800,7 +66800,7 @@

xhtml:content Attribute (new in RNG Relations - xhtml:content="<string>"   + xhtml:content="#string"  
@@ -66995,7 +66995,7 @@

xlink:href Attribute

RNG Relations - xlink:href="<anyIRI>"   + xlink:href="#anyIRI"  
@@ -67142,7 +67142,7 @@

xlink:title Attribute (new in ODF RNG Relations - xlink:title="<string>"   + xlink:title="#string"  
@@ -67308,7 +67308,7 @@

xml:id Attribute (new in ODF 1.2)

RNG Relations - xml:id="<ID>"   + xml:id="#ID"