Changeset 1611

Show
Ignore:
Timestamp:
07/18/08 07:53:06 (5 years ago)
Author:
lmajano
Message:

ooops, forgot varStruct on the set next event and routes

Location:
coldbox/trunk/install
Files:
3 modified

Legend:

Unmodified
Added
Removed
  • coldbox/trunk/install/cfeclipse_dictionary/coldbox.xml

    r1609 r1611  
    479479                                ]]></help> 
    480480                        </parameter> 
     481                        <parameter name="varStruct" type="struct" required="false"> 
     482                                <help><![CDATA[ 
     483                                        A structure of key-value pairs to persist. Keys in this structure take precedence of what exists in the persist list, if named the same 
     484                                ]]></help> 
     485                        </parameter> 
    481486                </function> 
    482487                 
     
    493498                                <help><![CDATA[ 
    494499                                        A comma delimmited list of keys in the request collection to persist across the request. 
     500                                ]]></help> 
     501                        </parameter> 
     502                        <parameter name="varStruct" type="struct" required="false"> 
     503                                <help><![CDATA[ 
     504                                        A structure of key-value pairs to persist. Keys in this structure take precedence of what exists in the persist list, if named the same 
    495505                                ]]></help> 
    496506                        </parameter> 
  • coldbox/trunk/install/cfeclipse_snippets/coldbox/setNextEventWithPersistance.xml

    r952 r1611  
    33<name>setNextEventWithPersistance</name> 
    44<help></help> 
    5 <starttext><![CDATA[setNextEvent(event="$${event}",queryString="$${url params}",persist="$${Persitance key list}")]]></starttext> 
     5<starttext><![CDATA[setNextEvent(event="$${event}",queryString="$${url params}",persist="$${Persitance key list}",varStruct=structNew())]]></starttext> 
    66<endtext><![CDATA[]]></endtext> 
    77</snippet> 
  • coldbox/trunk/install/cfeclipse_snippets/coldbox/setNextRouteWithPersistance.xml

    r1059 r1611  
    33<name>setNextRouteWithPersistance</name> 
    44<help></help> 
    5 <starttext><![CDATA[setNextRoute("$${Route (do not prepend /)}", "$${Persist List}")]]></starttext> 
     5    <starttext><![CDATA[setNextRoute("$${Route (do not prepend /)}", "$${Persist List}",structNew())]]></starttext> 
    66<endtext><![CDATA[]]></endtext> 
    77</snippet>