summaryrefslogtreecommitdiffstats
path: root/sudoers/user.rng
diff options
context:
space:
mode:
authorSumit Bose <sbose@nb.localdomain>2008-10-08 11:42:22 +0200
committerSumit Bose <sbose@nb.localdomain>2008-10-08 11:42:22 +0200
commit9765f5729bca58fd9bc57d315377ce143891d774 (patch)
tree3cbdb3f182cc7e37343832b7f8bf05624732652b /sudoers/user.rng
parent3af8a59bbae275bfd9031729b661c512b4641a72 (diff)
downloadipa_policy-9765f5729bca58fd9bc57d315377ce143891d774.tar.gz
ipa_policy-9765f5729bca58fd9bc57d315377ce143891d774.tar.xz
ipa_policy-9765f5729bca58fd9bc57d315377ce143891d774.zip
more metadata and policy fixes
Diffstat (limited to 'sudoers/user.rng')
-rw-r--r--sudoers/user.rng49
1 files changed, 0 insertions, 49 deletions
diff --git a/sudoers/user.rng b/sudoers/user.rng
deleted file mode 100644
index b0aec32..0000000
--- a/sudoers/user.rng
+++ /dev/null
@@ -1,49 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<grammar xmlns="http://relaxng.org/ns/structure/1.0"
- datatypeLibrary="http://www.w3.org/2001/XMLSchema-datatypes"
- xmlns:a="http://freeipa.org/xml/rng/ns/annotations/1.0">
-
- <a:doc> user configuration</a:doc>
-
- <start ns="http://freeipa.org/xml/rng/user/1.0">
- <element name="user">
- <ref name="options"/>
- <ref name="anyElement"/>
- </element>
-
- </start>
-
- <define name="options">
- <zeroOrMore>
- <choice>
- <attribute name="uids">
- <text/>
- </attribute>
- </choice>
- </zeroOrMore>
- </define>
- <!--
- This allows anything in another namespace.
- The way nsName works requires that this be in each schema (grammar);
- it cannot be included.
- -->
- <define name="anyElement">
- <element>
- <anyName>
- <except>
- <nsName/>
- <nsName ns=""/>
- </except>
- </anyName>
- <zeroOrMore>
- <choice>
- <attribute>
- <anyName/>
- </attribute>
- <text/>
- <ref name="anyElement"/>
- </choice>
- </zeroOrMore>
- </element>
- </define>
-</grammar>