rng – Relax NG
This module is an XIST namespace for Relax NG files.
- class ll.xist.ns.rng.base[source]
Bases:
Element“Abstract” basis class, providing common attributes.
- class ll.xist.ns.rng.choice[source]
Bases:
basenameclass: a name matches choice if, and only if, it matches at least one of the subname classes. pattern: it matches a node if, and only if, at least one of its subpatterns matches the node
- class ll.xist.ns.rng.define[source]
Bases:
baseDefines a part of a grammar pattern (also a pattern), recursion possible only inside an element.
- class ll.xist.ns.rng.div[source]
Bases:
baseAllows logical divisions, no effect on validation, annotations can be made here
- class ll.xist.ns.rng.except_[source]
Bases:
baseAn
except_element can remove a name class from another (this class has no attributes) (inside anameelement) or it is used to remove a set of values from a data pattern.
- class ll.xist.ns.rng.externalRef[source]
Bases:
baseReference to an extern pattern stored in a file.
- class ll.xist.ns.rng.grammar[source]
Bases:
baseA
grammarelement has a singlestartchild element, and zero or moredefinechild elements. Thestartanddefineelements contain patterns. These patterns can containrefelements that refer to patterns defined by any of thedefineelements in that grammar element. Agrammarpattern is matched by matching the pattern contained in thestartelement.
- class ll.xist.ns.rng.group[source]
Bases:
baseIs implied, can be also explicitly specified: the patterns have to appear in the specified order (except for the attributes, they are allowed to appear in any order in the start tag)
- class ll.xist.ns.rng.include[source]
Bases:
baseIncludes an extern grammar pattern. Can contain define parts to overwrite that part (same name) in the extern pattern. A possible start element inside include overwrites the start element of the extern pattern.
- class ll.xist.ns.rng.interleave[source]
Bases:
baseChild elements can appear in any order, if one is a group, the order must be kept, other direct childs can mix between.
- class ll.xist.ns.rng.mixed[source]
Bases:
base<mixed> p </mixed>is short for<interleave> <text/> p </interleave>
- class ll.xist.ns.rng.oneOrMore[source]
Bases:
baseThere can be one or more recurrence of the enclosed pattern.
- class ll.xist.ns.rng.param[source]
Bases:
baseSpecifies parameters passed to the datatype library to determine whether a value is valid per a datatype.
- class ll.xist.ns.rng.parentRef[source]
Bases:
baseEscapes out of the current grammar and references a definition from the parent of the current grammar.
- class ll.xist.ns.rng.ref[source]
Bases:
baseA
refpattern refers to a definition from the nearest grammar ancestor.
- class ll.xist.ns.rng.text[source]
Bases:
baseMatches arbitrary text (one or more text nodes), including empty text.
- class ll.xist.ns.rng.value[source]
Bases:
baseBy default, the
valuepattern will consider the string in the pattern to match the string in the document if the two strings are the same after the whitespace in both strings is normalized. Whitespace normalization strips leading and trailing whitespace characters, and collapses sequences of one or more whitespace characters to a single space character. This corresponds to the behaviour of an XML parser for an attribute that is declared as other than CDATA.