Changeset 1580

Show
Ignore:
Timestamp:
06/15/08 19:58:10 (7 months ago)
Author:
lmajano
Message:

Finalized RC2

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • coldbox/trunk/ApplicationTemplate/Application_noinheritance.cfc

    r1572 r1580  
    4747                <!--- BootStrap Reinit Check ---> 
    4848                <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")> 
    5051                                <cfset application.cbBootstrap = CreateObject("component","coldbox.system.coldbox").init(COLDBOX_CONFIG_FILE,COLDBOX_APP_ROOT_PATH)> 
    5152                        </cflock> 
  • coldbox/trunk/system/config/readme.txt

    r1533 r1580  
    4848        I THANK GOD FOR HIS WISDOM FOR THIS PROJECT 
    4949 
    50 - Oscar Arevalo (A true OO Genius) 
     50- Oscar Arevalo 
    5151        Fixes, ideas, sample apps, cfcViewer, documentation, ColdBoxReader 
    5252- Sana Ullah 
     
    5454- Brian LeGros 
    5555        Refactoring, design and ideas 
     56- Ernst Van der Linden 
     57        Testing, ideas and design 
    5658- Rob Gonda 
    5759        Design, ideas, architecture 
     
    141143******************************************************************************** 
    142144 
    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 === 
    146148 
    147149 * #230 Debugger Event Tracing Log & Panel, you can now keep track of executing requests, their profilers and their tracers. 
     
    196198 * #449 Request context decorator now receives a reference to the coldbox controller and a getController() method. 
    197199 * #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 === 
    200210 
    201211 * #248 !ColdFusion & !BlueDragon 6.X Support will be deprecated 
     
    232242 * #448 Autowire interceptor not correctly traversing inheritance tree with dependencies. 
    233243 * #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 
    235250== Version 2.5.2 (February 2008) CODENAME: Gálatas 5:1 == 
    236251This is an important update that will fix several bugs and some new updates. 
  • coldbox/trunk/testharness/Application.cfc

    r1578 r1580  
    5353                <!--- BootStrap Reinit Check ---> 
    5454                <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")> 
    5657                                <cfset application.cbBootstrap = CreateObject("component","coldbox.system.coldbox").init(COLDBOX_CONFIG_FILE,COLDBOX_APP_ROOT_PATH)> 
    5758                        </cflock> 
  • coldbox/trunk/testharness/config/coldbox.xml.cfm

    r1569 r1580  
    2626                <Setting name="MessageboxStyleOverride"         value="true" /> 
    2727                <Setting name="HandlersIndexAutoReload"         value="true" /> 
    28                 <Setting name="ConfigAutoReload"                        value="false" /> 
     28                <Setting name="ConfigAutoReload"                        value="true" /> 
    2929                <Setting name="ExceptionHandler"                value="" /> 
    3030                <Setting name="onInvalidEvent"                          value="" /> 

Copyright 2006 ColdBox Framework by Luis Majano