Changeset 1580
- Timestamp:
- 06/15/08 19:58:10 (7 months ago)
- Files:
-
- coldbox/trunk/ApplicationTemplate/Application_noinheritance.cfc (modified) (1 diff)
- coldbox/trunk/system/config/readme.txt (modified) (5 diffs)
- coldbox/trunk/testharness/Application.cfc (modified) (1 diff)
- coldbox/trunk/testharness/config/coldbox.xml.cfm (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
coldbox/trunk/ApplicationTemplate/Application_noinheritance.cfc
r1572 r1580 47 47 <!--- BootStrap Reinit Check ---> 48 48 <cfif not structKeyExists(application,"cbBootstrap") or application.cbBootStrap.isfwReinit()> 49 <cflock name="coldbox.bootstrap" type="exclusive" timeout="20" throwontimeout="true"> 49 <cflock name="coldbox.bootstrap_#hash(getCurrentTemplatePath())#" type="exclusive" timeout="5" throwontimeout="true"> 50 <cfset structDelete(application,"cbBootStrap")> 50 51 <cfset application.cbBootstrap = CreateObject("component","coldbox.system.coldbox").init(COLDBOX_CONFIG_FILE,COLDBOX_APP_ROOT_PATH)> 51 52 </cflock> coldbox/trunk/system/config/readme.txt
r1533 r1580 48 48 I THANK GOD FOR HIS WISDOM FOR THIS PROJECT 49 49 50 - Oscar Arevalo (A true OO Genius)50 - Oscar Arevalo 51 51 Fixes, ideas, sample apps, cfcViewer, documentation, ColdBoxReader 52 52 - Sana Ullah … … 54 54 - Brian LeGros 55 55 Refactoring, design and ideas 56 - Ernst Van der Linden 57 Testing, ideas and design 56 58 - Rob Gonda 57 59 Design, ideas, architecture … … 141 143 ******************************************************************************** 142 144 143 == Version 2.6.0 ( 2008) CODENAME: FAITH ==144 145 == New Features==145 == Version 2.6.0 (July 2008) CODENAME: FAITH == 146 147 === New Features === 146 148 147 149 * #230 Debugger Event Tracing Log & Panel, you can now keep track of executing requests, their profilers and their tracers. … … 196 198 * #449 Request context decorator now receives a reference to the coldbox controller and a getController() method. 197 199 * #454 Interceptors - You can now append custom interception points, register new interceptors, get intercepor state containers and unregister interceptors ALL at runtime. 198 199 == Bug Fixes == 200 * #457 Alternate Application.cfc bootstrapper that requires NO inheritance 201 * #458 Finalized the refactoring of the autowire interceptor to use the beanfactory plugin for on demand autowiring. You can use the bean factory plugin now to autowire any object. 202 * #460 populate bean from query 203 * #465 New plugins feedReader/feedGenerator 204 * #471 Resource Bundle new setting: !UnknowTranslation - Developer can set a default message to show when a translation is not found 205 * #474 New Setting: !ViewsExternalLocation - so an external location can be used for view rendering 206 * #477 SES Optional Variables 207 * #478 Event.!RenderData() The new AJAX/REMOTE interaction method 208 209 === Bug Fixes === 200 210 201 211 * #248 !ColdFusion & !BlueDragon 6.X Support will be deprecated … … 232 242 * #448 Autowire interceptor not correctly traversing inheritance tree with dependencies. 233 243 * #450 Handlerservice error on the exception string when no handlers found. 234 244 * #459 update the timer module to decouple it from the application scope, plus some enhancements. 245 * #461 form/url structures not inited on some remoting calls. 246 * #467 optimise getUtil() usage on the internal services 247 * #475 Renderer - External View method can now use caching and also appends .cfm 248 * #476 ses not correctly matching the location of routes. It would scan the entire string instead of left to right 249 235 250 == Version 2.5.2 (February 2008) CODENAME: Gálatas 5:1 == 236 251 This is an important update that will fix several bugs and some new updates. coldbox/trunk/testharness/Application.cfc
r1578 r1580 53 53 <!--- BootStrap Reinit Check ---> 54 54 <cfif not structKeyExists(application,"cbBootstrap") or application.cbBootStrap.isfwReinit()> 55 <cflock name="coldbox.bootstrap" type="exclusive" timeout="20" throwontimeout="true"> 55 <cflock name="coldbox.bootstrap_#hash(getCurrentTemplatePath())#" type="exclusive" timeout="5" throwontimeout="true"> 56 <cfset structDelete(application,"cbBootStrap")> 56 57 <cfset application.cbBootstrap = CreateObject("component","coldbox.system.coldbox").init(COLDBOX_CONFIG_FILE,COLDBOX_APP_ROOT_PATH)> 57 58 </cflock> coldbox/trunk/testharness/config/coldbox.xml.cfm
r1569 r1580 26 26 <Setting name="MessageboxStyleOverride" value="true" /> 27 27 <Setting name="HandlersIndexAutoReload" value="true" /> 28 <Setting name="ConfigAutoReload" value=" false" />28 <Setting name="ConfigAutoReload" value="true" /> 29 29 <Setting name="ExceptionHandler" value="" /> 30 30 <Setting name="onInvalidEvent" value="" />
