-
Notifications
You must be signed in to change notification settings - Fork 343
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Low: xml: Prepare schemas for 1.1/1.2
Mercurial revision: f219f7dc71ad6d125bf6d335283d95911b2af78d
- Loading branch information
Showing
17 changed files
with
1,020 additions
and
58 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,180 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<grammar xmlns="http://relaxng.org/ns/structure/1.0" | ||
datatypeLibrary="http://www.w3.org/2001/XMLSchema-datatypes"> | ||
<start> | ||
<ref name="element-constraints"/> | ||
</start> | ||
|
||
<define name="element-constraints"> | ||
<zeroOrMore> | ||
<choice> | ||
<ref name="element-location"/> | ||
<ref name="element-colocation"/> | ||
<ref name="element-order"/> | ||
</choice> | ||
</zeroOrMore> | ||
</define> | ||
|
||
<define name="element-location"> | ||
<element name="rsc_location"> | ||
<attribute name="id"><data type="ID"/></attribute> | ||
<attribute name="rsc"><data type="IDREF"/></attribute> | ||
<choice> | ||
<group> | ||
<externalRef href="score.rng"/> | ||
<attribute name="node"><text/></attribute> | ||
</group> | ||
<oneOrMore> | ||
<externalRef href="rule.rng"/> | ||
</oneOrMore> | ||
</choice> | ||
<optional> | ||
<ref name="element-lifetime"/> | ||
</optional> | ||
</element> | ||
</define> | ||
|
||
<define name="element-resource-set"> | ||
<element name="resource_set"> | ||
<choice> | ||
<attribute name="id-ref"><data type="IDREF"/></attribute> | ||
<group> | ||
<attribute name="id"><data type="ID"/></attribute> | ||
<optional> | ||
<attribute name="sequential"><data type="boolean"/></attribute> | ||
</optional> | ||
<optional> | ||
<attribute name="action"> | ||
<ref name="attribute-actions"/> | ||
</attribute> | ||
</optional> | ||
<optional> | ||
<attribute name="role"> | ||
<ref name="attribute-roles"/> | ||
</attribute> | ||
</optional> | ||
<optional> | ||
<externalRef href="score.rng"/> | ||
</optional> | ||
<oneOrMore> | ||
<element name="resource_ref"> | ||
<attribute name="id"><data type="IDREF"/></attribute> | ||
</element> | ||
</oneOrMore> | ||
</group> | ||
</choice> | ||
</element> | ||
</define> | ||
|
||
<define name="element-colocation"> | ||
<element name="rsc_colocation"> | ||
<attribute name="id"><data type="ID"/></attribute> | ||
<optional> | ||
<choice> | ||
<externalRef href="score.rng"/> | ||
<attribute name="score-attribute"><text/></attribute> | ||
<attribute name="score-attribute-mangle"><text/></attribute> | ||
</choice> | ||
</optional> | ||
<optional> | ||
<ref name="element-lifetime"/> | ||
</optional> | ||
<choice> | ||
<oneOrMore> | ||
<ref name="element-resource-set"/> | ||
</oneOrMore> | ||
<group> | ||
<attribute name="rsc"><data type="IDREF"/></attribute> | ||
<attribute name="with-rsc"><data type="IDREF"/></attribute> | ||
<optional> | ||
<attribute name="node-attribute"><text/></attribute> | ||
</optional> | ||
<optional> | ||
<attribute name="rsc-role"> | ||
<ref name="attribute-roles"/> | ||
</attribute> | ||
</optional> | ||
<optional> | ||
<attribute name="with-rsc-role"> | ||
<ref name="attribute-roles"/> | ||
</attribute> | ||
</optional> | ||
</group> | ||
</choice> | ||
</element> | ||
</define> | ||
|
||
<define name="element-order"> | ||
<element name="rsc_order"> | ||
<attribute name="id"><data type="ID"/></attribute> | ||
<optional> | ||
<ref name="element-lifetime"/> | ||
</optional> | ||
<optional> | ||
<attribute name="symmetrical"><data type="boolean"/></attribute> | ||
</optional> | ||
<optional> | ||
<choice> | ||
<externalRef href="score.rng"/> | ||
<attribute name="kind"> | ||
<ref name="order-types"/> | ||
</attribute> | ||
</choice> | ||
</optional> | ||
<choice> | ||
<oneOrMore> | ||
<ref name="element-resource-set"/> | ||
</oneOrMore> | ||
<group> | ||
<attribute name="first"><data type="IDREF"/></attribute> | ||
<attribute name="then"><data type="IDREF"/></attribute> | ||
<optional> | ||
<attribute name="first-action"> | ||
<ref name="attribute-actions"/> | ||
</attribute> | ||
</optional> | ||
<optional> | ||
<attribute name="then-action"> | ||
<ref name="attribute-actions"/> | ||
</attribute> | ||
</optional> | ||
</group> | ||
</choice> | ||
</element> | ||
</define> | ||
|
||
<define name="attribute-actions"> | ||
<choice> | ||
<value>start</value> | ||
<value>promote</value> | ||
<value>demote</value> | ||
<value>stop</value> | ||
</choice> | ||
</define> | ||
|
||
<define name="attribute-roles"> | ||
<choice> | ||
<value>Stopped</value> | ||
<value>Started</value> | ||
<value>Master</value> | ||
<value>Slave</value> | ||
</choice> | ||
</define> | ||
|
||
<define name="order-types"> | ||
<choice> | ||
<value>Optional</value> | ||
<value>Mandatory</value> | ||
<value>Serialize</value> | ||
</choice> | ||
</define> | ||
|
||
<define name="element-lifetime"> | ||
<element name="lifetime"> | ||
<oneOrMore> | ||
<externalRef href="rule.rng"/> | ||
</oneOrMore> | ||
</element> | ||
</define> | ||
|
||
</grammar> |
Oops, something went wrong.