--
You received this message because you are subscribed to the Google Groups "ColdBox: A ColdFusion Framework" group.
To post to this group, send email to col...@googlegroups.com
To unsubscribe from this group, send email to coldbox-u...@googlegroups.com
For more options, visit this group at http://groups-beta.google.com/group/coldbox
For more information, visit http://www.luismajano.com/projects/coldbox
For Documentation, visit http://ortus.svnrepository.com/coldbox/trac.cgi
Lines 129-137 are:
/* Check if overriding a set setting */
if( settingExists(trim(SettingsArray[i].xmlAttributes.name)) ){
setSetting( trim(SettingsArray[i].xmlAttributes.name) , thisValue );
}
else{
/* Do a full set */
"configSettings.#trim(SettingsArray[i].xmlAttributes.name)#" =
thisValue;
}
~Brad
On Dec 18, 11:54 am, b...@bradwood.com wrote:
> Yep, if you want to see how the environment interceptor works, just take
> a look inside environmentControl.cfc in the interceptors folder. (at
> least in 2.6.3)
>
> Lines 129-137 are:
>
> /* Check if overriding a set setting */
> if( settingExists(trim(SettingsArray[i].xmlAttributes.name)) ){
> setSetting( trim(SettingsArray[i].xmlAttributes.name) , thisValue );}
>
> else{
> /* Do a full set */
> "configSettings.#trim(SettingsArray[i].xmlAttributes.name)#" =
> thisValue;}
>
> ~Brad
>
> -------- Original Message --------
> Subject: Re: [coldbox:3636] Question about coldbox.xml and
>
> Environments.xml
> From: Doug Boude <dougbo...@gmail.com>
> Date: Fri, December 18, 2009 10:37 am
> To: col...@googlegroups.com
>
> It will create them if they didn't already exist, or override them if
> they did.
>
> On Fri, Dec 18, 2009 at 10:23 AM, jim collins <jimcoll...@gmail.com>