Changeset 1586
- Timestamp:
- 06/24/08 10:44:19 (7 months ago)
- Files:
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
coldbox/trunk/system/beans/interceptorState.cfc
r1538 r1586 82 82 /* Invoke the execution point */ 83 83 invoker( getInterceptors().get(key), arguments.event, arguments.interceptData ); 84 /* Check for _stopchain */ 85 if( arguments.event.valueExists('_stopchain') ){ 86 break; 87 } 84 88 } 85 89 </cfscript> coldbox/trunk/testharness/config/coldbox.xml.cfm
r1580 r1586 129 129 <Property name="enableSetterInjection">false</Property> 130 130 </Interceptor> 131 < !--<Interceptor class="coldbox.testharness.interceptors.executionTracer">131 <Interceptor class="coldbox.testharness.interceptors.executionTracer"> 132 132 <Property name="Simple">Luis</Property> 133 133 <Property name="Complex">[1,2,3,4,5]</Property> 134 </Interceptor> -->134 </Interceptor> 135 135 <Interceptor class="coldbox.system.interceptors.ses"> 136 136 <Property name="configFile">config/routes.cfm</Property> coldbox/trunk/testharness/interceptors/executionTracer.cfc
r1471 r1586 24 24 <!------------------------------------------- INTERCEPTION POINTS -------------------------------------------> 25 25 26 <cffunction name="preProcess" access="public" returntype="void" hint="My very own custom interception point. " output="false" > 27 <!--- ************************************************************* ---> 28 <cfargument name="event" required="true" type="coldbox.system.beans.requestContext" hint="The event object."> 29 <cfargument name="interceptData" required="true" type="struct" hint="Metadata of intercepted info."> 30 <!--- ************************************************************* ---> 31 32 </cffunction> 33 26 34 <!--- Custom Interception Point ---> 27 35 <cffunction name="onLog" access="public" returntype="void" hint="My very own custom interception point. " output="false" >
