by Eric van der Vlist is published by O'Reilly & Associates (ISBN: 0596004214)
div (in the context of a include-content) — Division (in the context of an include)
element div
{
(
attribute ns { text }?,
attribute datatypeLibrary { xsd:anyURI }?,
attribute * - (rng:* | local:*) { text }*
),
(
( element * - rng:* { ... }* )
& (
( element start { ... } )
| ( element define { ... } )
| element div { ... }
)*
)
} |
The div element is provided to define logical divisions in RELAX NG schemas. It has no effect on the validation. It defines a group of definitions within an include that may be annotated as a whole.
In the context of an include, the content of a div element is the same as the content of an include. (div elements may be embedded in other div elements.)
<include href="common.rng">
...
<div>
<xhtml:p>The content of the book element has been split in two named patterns:
</xhtml:p>
<define name="book-start">
<attribute name="id"/>
<ref name="isbn-element"/>
<ref name="title-element"/>
<zeroOrMore>
<ref name="author-element"/>
</zeroOrMore>
</define>
<define name="book-end">
<zeroOrMore>
<ref name="author-element"/>
</zeroOrMore>
<zeroOrMore>
<ref name="character-element"/>
</zeroOrMore>
<attribute name="available"/>
</define>
</div>
...
</include> |
This text is released under the Free Software Foundation GFDL.