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:
base
nameclass: 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:
base
Defines a part of a grammar pattern (also a pattern), recursion possible only inside an element.
- class ll.xist.ns.rng.div[source]
Bases:
base
Allows logical divisions, no effect on validation, annotations can be made here
- class ll.xist.ns.rng.except_[source]
Bases:
base
An
except_
element can remove a name class from another (this class has no attributes) (inside aname
element) or it is used to remove a set of values from a data pattern.
- class ll.xist.ns.rng.externalRef[source]
Bases:
base
Reference to an extern pattern stored in a file.
- class ll.xist.ns.rng.grammar[source]
Bases:
base
A
grammar
element has a singlestart
child element, and zero or moredefine
child elements. Thestart
anddefine
elements contain patterns. These patterns can containref
elements that refer to patterns defined by any of thedefine
elements in that grammar element. Agrammar
pattern is matched by matching the pattern contained in thestart
element.
- class ll.xist.ns.rng.group[source]
Bases:
base
Is 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:
base
Includes 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:
base
Child 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:
base
There can be one or more recurrence of the enclosed pattern.
- class ll.xist.ns.rng.param[source]
Bases:
base
Specifies parameters passed to the datatype library to determine whether a value is valid per a datatype.
- class ll.xist.ns.rng.parentRef[source]
Bases:
base
Escapes out of the current grammar and references a definition from the parent of the current grammar.
- class ll.xist.ns.rng.ref[source]
Bases:
base
A
ref
pattern refers to a definition from the nearest grammar ancestor.
- class ll.xist.ns.rng.text[source]
Bases:
base
Matches arbitrary text (one or more text nodes), including empty text.
- class ll.xist.ns.rng.value[source]
Bases:
base
By default, the
value
pattern 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.