summaryrefslogtreecommitdiffstats
path: root/schemas/rules.xsd
diff options
context:
space:
mode:
authorChris St. Pierre <chris.a.st.pierre@gmail.com>2012-12-10 17:19:54 -0600
committerChris St. Pierre <chris.a.st.pierre@gmail.com>2012-12-10 17:22:38 -0600
commit9d6e6241954d001a5b49e4ea9a48c10e2a792958 (patch)
tree270309c0e04eacf2ce1e0d6cc6d61f1485899c0a /schemas/rules.xsd
parent7dcb468f09781bacf79823748ef12bfbd1faeb21 (diff)
downloadbcfg2-9d6e6241954d001a5b49e4ea9a48c10e2a792958.tar.gz
bcfg2-9d6e6241954d001a5b49e4ea9a48c10e2a792958.tar.bz2
bcfg2-9d6e6241954d001a5b49e4ea9a48c10e2a792958.zip
generate XML schema docs from XML schemas themselves
Diffstat (limited to 'schemas/rules.xsd')
-rw-r--r--schemas/rules.xsd114
1 files changed, 105 insertions, 9 deletions
diff --git a/schemas/rules.xsd b/schemas/rules.xsd
index 241ffe5bf..ddfb7ad0d 100644
--- a/schemas/rules.xsd
+++ b/schemas/rules.xsd
@@ -1,6 +1,5 @@
<xsd:schema xmlns:xsd="http://www.w3.org/2001/XMLSchema"
xmlns:py="http://genshi.edgewall.org/" xml:lang="en">
-
<xsd:annotation>
<xsd:documentation>
string enumeration definitions for bcfg2
@@ -50,10 +49,66 @@
</xsd:documentation>
</xsd:annotation>
</xsd:element>
- <xsd:element name='SELinux' type='SELinuxType'>
+ <xsd:element name='SEBoolean' type='SEBooleanType'>
+ <xsd:annotation>
+ <xsd:documentation>
+ Fully bound description of an SELinux boolean entry.
+ </xsd:documentation>
+ </xsd:annotation>
+ </xsd:element>
+ <xsd:element name='SEPort' type='SEPortType'>
<xsd:annotation>
<xsd:documentation>
- Fully bound description of an SELinux entry.
+ Fully bound description of an SELinux port entry.
+ </xsd:documentation>
+ </xsd:annotation>
+ </xsd:element>
+ <xsd:element name='SEFcontext' type='SEFcontextType'>
+ <xsd:annotation>
+ <xsd:documentation>
+ Fully bound description of an SELinux file context entry.
+ </xsd:documentation>
+ </xsd:annotation>
+ </xsd:element>
+ <xsd:element name='SENode' type='SENodeType'>
+ <xsd:annotation>
+ <xsd:documentation>
+ Fully bound description of an SELinux node entry.
+ </xsd:documentation>
+ </xsd:annotation>
+ </xsd:element>
+ <xsd:element name='SELogin' type='SELoginType'>
+ <xsd:annotation>
+ <xsd:documentation>
+ Fully bound description of an SELinux login entry.
+ </xsd:documentation>
+ </xsd:annotation>
+ </xsd:element>
+ <xsd:element name='SEUser' type='SEUserType'>
+ <xsd:annotation>
+ <xsd:documentation>
+ Fully bound description of an SELinux user entry.
+ </xsd:documentation>
+ </xsd:annotation>
+ </xsd:element>
+ <xsd:element name='SEInterface' type='SEInterfaceType'>
+ <xsd:annotation>
+ <xsd:documentation>
+ Fully bound description of an SELinux interface entry.
+ </xsd:documentation>
+ </xsd:annotation>
+ </xsd:element>
+ <xsd:element name='SEPermissive' type='SEPermissiveType'>
+ <xsd:annotation>
+ <xsd:documentation>
+ Fully bound description of an SELinux permissive domain entry.
+ </xsd:documentation>
+ </xsd:annotation>
+ </xsd:element>
+ <xsd:element name='SEModule' type='SEModuleType'>
+ <xsd:annotation>
+ <xsd:documentation>
+ Fully bound description of an SELinux module entry.
</xsd:documentation>
</xsd:annotation>
</xsd:element>
@@ -84,8 +139,8 @@
<xsd:annotation>
<xsd:documentation>
Elements within Group tags only apply to clients that are
- members of that group (or vice-versa; see #element_negate
- below)
+ members of that group (or vice-versa, if
+ :xml:attribute:`RContainerType:negate` is set)
</xsd:documentation>
</xsd:annotation>
</xsd:element>
@@ -93,7 +148,8 @@
<xsd:annotation>
<xsd:documentation>
Elements within Client tags only apply to the named client
- (or vice-versa; see #element_negate below)
+ (or vice-versa, if :xml:attribute:`RContainerType:negate`
+ is set)
</xsd:documentation>
</xsd:annotation>
</xsd:element>
@@ -101,20 +157,60 @@
</xsd:group>
<xsd:complexType name='RContainerType'>
+ <xsd:annotation>
+ <xsd:documentation>
+ An **RContainerType** is a Rules tag used to provide logic.
+ Child entries of an RContainerType tag only apply to machines
+ that match the condition specified -- either membership in a
+ group, or a matching client name.
+ :xml:attribute:`RContainerType:negate` can be set to negate
+ the sense of the match.
+ </xsd:documentation>
+ </xsd:annotation>
<xsd:choice minOccurs='0' maxOccurs='unbounded'>
<xsd:group ref="rulesElements"/>
</xsd:choice>
- <xsd:attribute name='name' type='xsd:string'/>
- <xsd:attribute name='negate' type='xsd:boolean'/>
+ <xsd:attribute name='name' type='xsd:string'>
+ <xsd:annotation>
+ <xsd:documentation>
+ The name of the client or group to match on. Child entries
+ will only apply to this client or group (unless
+ :xml:attribute:`RContainerType:negate` is set).
+ </xsd:documentation>
+ </xsd:annotation>
+ </xsd:attribute>
+ <xsd:attribute name='negate' type='xsd:boolean' default="false">
+ <xsd:annotation>
+ <xsd:documentation>
+ Negate the sense of the match, so that child entries only
+ apply to a client if it is not a member of the given group
+ or does not have the given name.
+ </xsd:documentation>
+ </xsd:annotation>
+ </xsd:attribute>
<xsd:attributeGroup ref="py:genshiAttrs"/>
</xsd:complexType>
<xsd:element name='Rules'>
+ <xsd:annotation>
+ <xsd:documentation>
+ The top-level tag for concrete descriptions of entries in
+ :ref:`server-plugins-generators-rules`.
+ </xsd:documentation>
+ </xsd:annotation>
<xsd:complexType>
<xsd:choice minOccurs='0' maxOccurs='unbounded'>
<xsd:group ref="rulesElements"/>
</xsd:choice>
- <xsd:attribute name='priority' type='xsd:integer' use='required'/>
+ <xsd:attribute name='priority' type='xsd:integer' use='required'>
+ <xsd:annotation>
+ <xsd:documentation>
+ Sets the priority for rules in this file for
+ :ref:`server-plugins-generators-rules`. The higher value
+ wins.
+ </xsd:documentation>
+ </xsd:annotation>
+ </xsd:attribute>
<xsd:attributeGroup ref="py:genshiAttrs"/>
</xsd:complexType>
</xsd:element>