Skip to content

Commit

Permalink
[FrameworkBundle] added validation in XSD
Browse files Browse the repository at this point in the history
  • Loading branch information
fabpot committed Aug 1, 2010
1 parent ee2ff39 commit b9199cb
Showing 1 changed file with 5 additions and 0 deletions.
Expand Up @@ -12,6 +12,7 @@
<xsd:complexType name="config">
<xsd:sequence>
<xsd:element name="router" type="router" minOccurs="0" maxOccurs="1" />
<xsd:element name="validation" type="validation" minOccurs="0" maxOccurs="1" />
</xsd:sequence>

<xsd:attribute name="ide" type="xsd:string" />
Expand All @@ -23,6 +24,10 @@
<xsd:attribute name="resource" type="xsd:string" />
</xsd:complexType>

<xsd:complexType name="validation">
<xsd:attribute name="enabled" type="xsd:boolean" />
</xsd:complexType>

<xsd:complexType name="user">
<xsd:sequence>
<xsd:element name="session" type="session" minOccurs="0" maxOccurs="1" />
Expand Down

0 comments on commit b9199cb

Please sign in to comment.