Changeset 1728
- Timestamp:
- 08/23/08 18:24:30 (5 months ago)
- Files:
-
- coldbox/trunk/CodeDepot/interceptors/com/ortussolutions/deployment (added)
- coldbox/trunk/CodeDepot/interceptors/com/ortussolutions/deployment/Deploy.cfc (added)
- coldbox/trunk/CodeDepot/interceptors/com/ortussolutions/deployment/_deploy.tag (added)
- coldbox/trunk/CodeDepot/interceptors/com/ortussolutions/deployment/deploy.xml (added)
- coldbox/trunk/system/interceptors/ses.cfc (modified) (1 diff)
- coldbox/trunk/testharness/config/_deploy.tag (added)
- coldbox/trunk/testharness/config/coldbox.xml.cfm (modified) (1 diff)
- coldbox/trunk/testharness/config/deploy.xml (added)
- coldbox/trunk/testharness/model/DeployCleanup.cfc (added)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
coldbox/trunk/system/interceptors/ses.cfc
r1727 r1728 38 38 39 39 /* Setup the config Path */ 40 configFilePath = configFilePath & getProperty('configFile');40 configFilePath = configFilePath & reReplace(getProperty('ConfigFile'),"^/",""); 41 41 42 42 /* We are ready to roll. Import config to setup the routes. */ coldbox/trunk/testharness/config/coldbox.xml.cfm
r1695 r1728 125 125 <Property name="fireOnInit">true</Property> 126 126 </Interceptor> 127 <Interceptor class="coldbox.CodeDepot.interceptors.com.ortussolutions.deployment.Deploy"> 128 <Property name="tagFile">config/_deploy.tag</Property> 129 <Property name="cleanupCommandObject">coldbox.testharness.model.DeployCleanup</Property> 130 </Interceptor> 127 131 <Interceptor class="coldbox.system.interceptors.autowire"> 128 132 <Property name="debugMode">true</Property> 129 133 <Property name="enableSetterInjection">false</Property> 130 134 </Interceptor> 135 <!-- 131 136 <Interceptor class="coldbox.testharness.interceptors.executionTracer"> 132 137 <Property name="Simple">Luis</Property> 133 138 <Property name="Complex">[1,2,3,4,5]</Property> 134 </Interceptor> 139 </Interceptor> 140 --> 135 141 <Interceptor class="coldbox.system.interceptors.ses"> 136 <Property name="configFile"> config/routes.cfm</Property>142 <Property name="configFile">/config/routes.cfm</Property> 137 143 </Interceptor> 138 144
