123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132 |
- <?xml version="1.0" encoding="UTF-8" ?>
- <xsd:schema xmlns="http://symfony.com/schema/dic/symfony"
- xmlns:xsd="http://www.w3.org/2001/XMLSchema"
- targetNamespace="http://symfony.com/schema/dic/symfony"
- elementFormDefault="qualified">
- <xsd:element name="config" type="config" />
- <xsd:complexType name="config">
- <xsd:all>
- <xsd:element name="form" type="form" minOccurs="0" maxOccurs="1" />
- <xsd:element name="csrf-protection" type="csrf_protection" minOccurs="0" maxOccurs="1" />
- <xsd:element name="esi" type="esi" minOccurs="0" maxOccurs="1" />
- <xsd:element name="profiler" type="profiler" minOccurs="0" maxOccurs="1" />
- <xsd:element name="router" type="router" minOccurs="0" maxOccurs="1" />
- <xsd:element name="session" type="session" minOccurs="0" maxOccurs="1" />
- <xsd:element name="templating" type="templating" minOccurs="0" maxOccurs="1" />
- <xsd:element name="translator" type="translator" minOccurs="0" maxOccurs="1" />
- <xsd:element name="validation" type="validation" minOccurs="0" maxOccurs="1" />
- <xsd:element name="annotations" type="annotations" minOccurs="0" maxOccurs="1" />
- </xsd:all>
- <xsd:attribute name="charset" type="xsd:string" />
- <xsd:attribute name="trust-proxy-headers" type="xsd:string" />
- <xsd:attribute name="ide" type="xsd:string" />
- <xsd:attribute name="secret" type="xsd:string" />
- </xsd:complexType>
- <xsd:complexType name="form">
- <xsd:attribute name="enabled" type="xsd:boolean" />
- </xsd:complexType>
- <xsd:complexType name="csrf_protection">
- <xsd:attribute name="enabled" type="xsd:boolean" />
- <xsd:attribute name="field-name" type="xsd:string" />
- </xsd:complexType>
- <xsd:complexType name="esi">
- <xsd:attribute name="enabled" type="xsd:boolean" />
- </xsd:complexType>
- <xsd:complexType name="param_converter">
- <xsd:attribute name="enabled" type="xsd:boolean" />
- </xsd:complexType>
- <xsd:complexType name="profiler">
- <xsd:all>
- <xsd:element name="matcher" type="profiler_matcher" minOccurs="0" maxOccurs="1" />
- </xsd:all>
- <xsd:attribute name="only-exceptions" type="xsd:string" />
- <xsd:attribute name="only-master-requests" type="xsd:string" />
- <xsd:attribute name="dsn" type="xsd:string" />
- <xsd:attribute name="username" type="xsd:string" />
- <xsd:attribute name="password" type="xsd:string" />
- <xsd:attribute name="lifetime" type="xsd:string" />
- </xsd:complexType>
- <xsd:complexType name="profiler_matcher">
- <xsd:attribute name="ip" type="xsd:string" />
- <xsd:attribute name="path" type="xsd:string" />
- <xsd:attribute name="service" type="xsd:string" />
- </xsd:complexType>
- <xsd:complexType name="router">
- <xsd:attribute name="resource" type="xsd:string" />
- <xsd:attribute name="type" type="xsd:string" />
- <xsd:attribute name="http-port" type="xsd:string" />
- <xsd:attribute name="https-port" type="xsd:string" />
- </xsd:complexType>
- <xsd:complexType name="session">
- <xsd:attribute name="storage-id" type="xsd:string" />
- <xsd:attribute name="default-locale" type="xsd:string" />
- <xsd:attribute name="name" type="xsd:string" />
- <xsd:attribute name="lifetime" type="xsd:integer" />
- <xsd:attribute name="path" type="xsd:string" />
- <xsd:attribute name="domain" type="xsd:string" />
- <xsd:attribute name="secure" type="xsd:boolean" />
- <xsd:attribute name="httponly" type="xsd:boolean" />
- <xsd:attribute name="cache-limiter" type="xsd:string" />
- <xsd:attribute name="auto-start" type="xsd:boolean" />
- </xsd:complexType>
- <xsd:complexType name="templating">
- <xsd:sequence>
- <xsd:element name="loader" type="xsd:string" minOccurs="0" maxOccurs="unbounded" />
- <xsd:element name="engine" type="xsd:string" minOccurs="1" maxOccurs="unbounded" />
- <xsd:element name="assets-base-url" type="xsd:string" minOccurs="0" maxOccurs="unbounded" />
- <xsd:element name="package" type="package" minOccurs="0" maxOccurs="unbounded" />
- <xsd:element name="form" type="form-resources" minOccurs="0" maxOccurs="1" />
- </xsd:sequence>
- <xsd:attribute name="assets-version" type="xsd:string" />
- <xsd:attribute name="assets-version-format" type="xsd:string" />
- <xsd:attribute name="cache" type="xsd:string" />
- </xsd:complexType>
- <xsd:complexType name="form-resources">
- <xsd:choice minOccurs="1" maxOccurs="unbounded">
- <xsd:element name="resource" type="xsd:string" />
- </xsd:choice>
- </xsd:complexType>
- <xsd:complexType name="package">
- <xsd:sequence>
- <xsd:element name="base-url" type="xsd:string" minOccurs="0" maxOccurs="unbounded" />
- </xsd:sequence>
- <xsd:attribute name="name" type="xsd:string" use="required" />
- <xsd:attribute name="version" type="xsd:string" />
- <xsd:attribute name="version-format" type="xsd:string" />
- </xsd:complexType>
- <xsd:complexType name="translator">
- <xsd:attribute name="enabled" type="xsd:boolean" />
- <xsd:attribute name="fallback" type="xsd:string" />
- </xsd:complexType>
- <xsd:complexType name="validation">
- <xsd:attribute name="enabled" type="xsd:boolean" />
- <xsd:attribute name="cache" type="xsd:string" />
- <xsd:attribute name="enable-annotations" type="xsd:boolean" />
- </xsd:complexType>
- <xsd:complexType name="annotations">
- <xsd:attribute name="cache" type="xsd:string" />
- <xsd:attribute name="debug" type="xsd:string" />
- <xsd:attribute name="file-cache-dir" type="xsd:string" />
- </xsd:complexType>
- </xsd:schema>
|