[FrameworkBundle] Updting XSD file for new csrf_protection configuration format.

This commit is contained in:
Ryan Weaver 2011-01-22 12:44:07 -06:00 committed by Fabien Potencier
parent 682e83585b
commit f73107cb9d

View File

@ -16,10 +16,10 @@
<xsd:element name="templating" type="templating" minOccurs="0" maxOccurs="1" />
<xsd:element name="translator" type="translator" minOccurs="0" maxOccurs="1" />
<xsd:element name="param-converter" type="param-converter" minOccurs="0" maxOccurs="1" />
<xsd:element name="csrf_protection" type="csrf_protection" minOccurs="0" maxOccurs="1" />
</xsd:all>
<xsd:attribute name="ide" type="xsd:string" />
<xsd:attribute name="csrf-secret" type="xsd:string" />
<xsd:attribute name="charset" type="xsd:string" />
<xsd:attribute name="error-handler" type="xsd:string" />
</xsd:complexType>
@ -78,4 +78,10 @@
<xsd:complexType name="param-converter">
</xsd:complexType>
<xsd:complexType name="csrf_protection">
<xsd:attribute name="enabled" type="xsd:boolean" />
<xsd:attribute name="field-name" type="xsd:string" />
<xsd:attribute name="secret" type="xsd:string" />
</xsd:complexType>
</xsd:schema>