Changeset 1839
- Timestamp:
- 11/05/08 09:47:03 (5 years ago)
- Location:
- coldbox/trunk
- Files:
-
- 8 added
- 10 removed
- 3 modified
- 1 moved
-
ApplicationTemplate/config/coldbox.xml.cfm (modified) (3 diffs)
-
ApplicationTemplate/config/environments.xml.cfm (added)
-
ApplicationTemplate/handlers/general.cfc (modified) (1 diff)
-
ApplicationTemplate/handlers/place your handlers here.txt (deleted)
-
ApplicationTemplate/handlers/tests (deleted)
-
ApplicationTemplate/includes/helpers (added)
-
ApplicationTemplate/includes/helpers/ApplicationHelper.cfm (added)
-
ApplicationTemplate/includes/images (added)
-
ApplicationTemplate/includes/javascript (added)
-
ApplicationTemplate/includes/place includes here.txt (deleted)
-
ApplicationTemplate/includes/styles (added)
-
ApplicationTemplate/includes/templates (added)
-
ApplicationTemplate/includes/templates/generic_error.cfm (moved) (moved from coldbox/trunk/ApplicationTemplate/includes/generic_error.cfm)
-
ApplicationTemplate/interceptors/place interceptors here.txt (deleted)
-
ApplicationTemplate/layouts/place all your layouts here.txt (deleted)
-
ApplicationTemplate/logs/Use for coldbox logging.txt (deleted)
-
ApplicationTemplate/model/place your model cfcs here.txt (deleted)
-
ApplicationTemplate/model/you can also place your interceptors here.txt (deleted)
-
ApplicationTemplate/plugins/custom plugins by convention here.txt (deleted)
-
ApplicationTemplate/views/homeHelper.cfm (added)
-
ApplicationTemplate/views/place your views here.txt (deleted)
-
system/plugins/XMLParser.cfc (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
coldbox/trunk/ApplicationTemplate/config/coldbox.xml.cfm
r1828 r1839 61 61 <Setting name="EnableBugReports" value="true"/> 62 62 <!--UDF Library To Load on every request for your views and handlers --> 63 <Setting name="UDFLibraryFile" value=" " />63 <Setting name="UDFLibraryFile" value="includes/helpers/ApplicationHelper.cfm" /> 64 64 <!--Messagebox Style Override. A boolean of wether to override the styles using your own css.--> 65 65 <Setting name="MessageboxStyleOverride" value="" /> … … 198 198 <!-- <Datasource alias="MyDSNAlias" name="real_dsn_name" dbtype="mysql" username="" password="" /> --> 199 199 </Datasources> 200 200 201 <!--ColdBox Object Caching Settings Overrides the Framework-wide settings 201 202 <Cache> … … 223 224 224 225 <Interceptors> 225 <!-- config file is relative to app root --> 226 <!-- USE ENVIRONMENT CONTROL --> 227 <Interceptor class="coldbox.system.interceptors.environment"> 228 <Property name='configFile'>config/environments.xml.cfm</Property> 229 </Interceptor> 230 <!-- USE SES --> 226 231 <Interceptor class="coldbox.system.interceptors.ses"> 227 232 <Property name="configFile">config/routes.cfm</Property> 228 233 </Interceptor> 234 229 235 <!-- Developer's ColdBox Sidebar --> 230 236 <Interceptor class="coldbox.system.interceptors.coldboxSideBar"> -
coldbox/trunk/ApplicationTemplate/handlers/general.cfc
r1574 r1839 11 11 -----------------------------------------------------------------------> 12 12 <cfcomponent name="general" extends="coldbox.system.eventhandler" output="false"> 13 14 <!--- Event Caching Suffix: It will be appended to every event cached key. This can be a locale, dynamic, etc. ---> 15 <cfset this.EVENT_CACHE_SUFFIX = ""> 13 16 14 17 <!--- This init is mandatory, including the super.init(). ---> -
coldbox/trunk/system/plugins/XMLParser.cfc
r1828 r1839 417 417 //Check For Owner Email or Throw 418 418 if ( not StructKeyExists(ConfigStruct, "OwnerEmail") ) 419 throw("There was no 'OwnerEmail' setting defined. This is required by the framework.","","ColdBox.plugins.XMLParser.ConfigXMLParsingException");419 ConfigStruct["OwnerEmail"] = ""; 420 420 421 421 //Check For EnableDumpvar or set to true
