Changeset 30

Show
Ignore:
Timestamp:
11/23/10 03:01:19 (15 years ago)
Author:
eparker
Message:

Updated XSD to latest version from newScaffolding branch

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • trunk/website/schema/gesture/ModelGlue.xsd

    r28 r30  
    192192                        </xsd:attribute> 
    193193                         
    194                         <xsd:attribute name="type" type="xsd:string" use="required"> 
    195                                 <xsd:annotation> 
    196                                         <xsd:documentation><![CDATA[The CFC to use for a controller in the same format that you'd use in a CreateObject() call, such as "myapplication.controller.MyController"]]></xsd:documentation> 
     194                        <xsd:attribute name="type" type="xsd:string" use="optional"> 
     195                                <xsd:annotation> 
     196                                        <xsd:documentation><![CDATA[The CFC to use for a controller in the same format that you'd use in a CreateObject() call, such as "myapplication.controller.MyController". Required if not using the 'bean' attribute.]]></xsd:documentation> 
    197197                                </xsd:annotation> 
    198198                        </xsd:attribute> 
     
    201201                                <xsd:annotation> 
    202202                                        <xsd:documentation><![CDATA[A bean (or comma delimited list, if more than one) as defined in ColdSpring.xml, that will be accessible to any cffunction in the controller. Replaces the need for getModelGlue().getBean() within controller methods.]]></xsd:documentation> 
     203                                </xsd:annotation> 
     204                        </xsd:attribute> 
     205                         
     206                        <xsd:attribute name="bean" type="xsd:string" use="optional"> 
     207                                <xsd:annotation> 
     208                                        <xsd:documentation><![CDATA[If you wish to define the controller directly in your ColdSpring.xml you can tell ModelGlue the id of it here instead of providing a type.]]></xsd:documentation> 
    203209                                </xsd:annotation> 
    204210                        </xsd:attribute> 
     
    415421                 
    416422                <xsd:complexType> 
     423                 
    417424                        <xsd:sequence> 
    418425                        <xsd:choice minOccurs="0" maxOccurs="unbounded"> 
     
    421428                                </xsd:choice> 
    422429                        </xsd:sequence> 
     430 
     431                        <xsd:attribute name="format" type="xsd:string" use="optional"> 
     432                                <xsd:annotation> 
     433                                        <xsd:documentation><![CDATA[(Optional) - Specifies what requestFormat this group of views should be rendered for. Defaults to "html".]]></xsd:documentation> 
     434                                </xsd:annotation> 
     435                        </xsd:attribute> 
    423436                         
    424437                </xsd:complexType>