Changeset 708

Show
Ignore:
Timestamp:
03/09/08 22:51:23 (8 months ago)
Author:
scorfield
Message:

Fixes #322 by applying patches from Derek Hedstrom to change default mode to development-full-load.

Location:
framework/trunk/skeleton
Files:
2 modified

Legend:

Unmodified
Added
Removed
  • framework/trunk/skeleton/noxml/Application.cfc

    r663 r708  
    1313                // the rest is taken straight from the traditional fusebox.xml skeleton: 
    1414                FUSEBOX_PARAMETERS.defaultFuseaction = "app.welcome"; 
    15                 // you may want to change this to development-full-load mode: 
    16                 FUSEBOX_PARAMETERS.mode = "development-circuit-load"; 
     15                // possible values: development-full-load, development-circuit-load or production: 
     16                FUSEBOX_PARAMETERS.mode = "development-full-load"; 
    1717                FUSEBOX_PARAMETERS.conditionalParse = true; 
    1818                // change this to something more secure: 
  • framework/trunk/skeleton/traditional/fusebox.xml.cfm

    r583 r708  
    3232        <parameters> 
    3333                <parameter name="defaultFuseaction" value="app.welcome" /> 
    34                 <!-- you may want to change this to development-full-load mode: --> 
    35                 <parameter name="mode" value="development-circuit-load" /> 
     34                <!-- possible values: development-circuit-load, development-full-load or production: --> 
     35                <parameter name="mode" value="development-full-load" /> 
    3636                <parameter name="conditionalParse" value="true" /> 
    3737                <!-- change this to something more secure: -->