summaryrefslogtreecommitdiffstats
path: root/schemas/info.xsd
diff options
context:
space:
mode:
authorSol Jerome <solj@ices.utexas.edu>2010-06-22 17:30:07 +0000
committerSol Jerome <sol.jerome@gmail.com>2010-06-22 12:30:16 -0500
commit224025473e2f37c684c80556fdeb8102ddaf3b13 (patch)
tree9f826c611860e76dabc732452a0160b0341a0160 /schemas/info.xsd
parent149301969d2256c36603aa6074383a4c5211610b (diff)
downloadbcfg2-224025473e2f37c684c80556fdeb8102ddaf3b13.tar.gz
bcfg2-224025473e2f37c684c80556fdeb8102ddaf3b13.tar.bz2
bcfg2-224025473e2f37c684c80556fdeb8102ddaf3b13.zip
Add the ability to specify important entries via info/info.xml
We currently have 'important' entries specified only inside the code for various client tools. This provides no room for growing that list outside of adding things to the code itself. With this change, users can now specify important entries via an additional attribute in their info.xml files. Signed-off-by: Sol Jerome <sol.jerome@gmail.com> git-svn-id: https://svn.mcs.anl.gov/repos/bcfg/trunk/bcfg2@5957 ce84e21b-d406-0410-9b95-82705330c041
Diffstat (limited to 'schemas/info.xsd')
-rw-r--r--schemas/info.xsd5
1 files changed, 3 insertions, 2 deletions
diff --git a/schemas/info.xsd b/schemas/info.xsd
index 972b55c8d..4028f5c15 100644
--- a/schemas/info.xsd
+++ b/schemas/info.xsd
@@ -9,10 +9,11 @@
<xsd:include schemaLocation="atom.xsd"/>
<xsd:complexType name='InfoType'>
- <xsd:attribute name='owner' type='xsd:string'/>
+ <xsd:attribute name='encoding' type='xsd:string'/>
<xsd:attribute name='group' type='xsd:string'/>
+ <xsd:attribute name='important' type='xsd:string'/>
+ <xsd:attribute name='owner' type='xsd:string'/>
<xsd:attribute name='perms' type='xsd:string'/>
- <xsd:attribute name='encoding' type='xsd:string'/>
<xsd:attribute name='paranoid' type='xsd:string'/>
</xsd:complexType>