Changeset 463
- Timestamp:
- 06/05/07 17:55:10 (1 year ago)
- Location:
- framework/trunk
- Files:
-
- 10 modified
-
README.txt (modified) (2 diffs)
-
extensions/README.txt (modified) (1 diff)
-
extensions/scaffolding/README.txt (modified) (1 diff)
-
fusebox6.cfm (modified) (1 diff)
-
fuseboxApplication.cfc (modified) (4 diffs)
-
myFusebox.cfc (modified) (1 diff)
-
skeleton/README.txt (modified) (1 diff)
-
skeleton/build.xml (modified) (1 diff)
-
skeleton/parsed/FuseboxWillPlaceParsedFilesHere.txt (modified) (1 diff)
-
skeleton/views/lay_template.cfm (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
framework/trunk/README.txt
r306 r463 1 Fusebox 5. 1Core Files1 Fusebox 5.5 Core Files 2 2 3 The simplest way to install Fusebox 5. 1is to copy this (fusebox5)3 The simplest way to install Fusebox 5.5 is to copy this (fusebox5) 4 4 directory to your webroot. 5 5 … … 7 7 this directory. 8 8 9 Then install the Fusebox 5. 1Skeleton application template9 Then install the Fusebox 5.5 Skeleton application template 10 10 (see the Downloads section of fusebox.org) and test that 11 11 it works. 12 12 13 Fusebox 5. 1supports:13 Fusebox 5.5 supports: 14 14 - ColdFusion MX 6.1 and higher 15 15 - BlueDragon 7.0 Beta and higher 16 16 - Railo 1.0.0.025 and higher 17 17 18 For more details, see the Fusebox 5 documentation:18 For more details, see the Fusebox 5.5 documentation: (location TBD) 19 19 20 20 http://fuseboxframework.org/index.cfm?fuseaction=documentation.WhatsNewInFusebox5 -
framework/trunk/extensions/README.txt
r459 r463 1 Fusebox 6Extensions Pack1 Fusebox 5.5 Extensions Pack 2 2 3 3 Please note that the lexicon/cf/ directory contains a number of verbs that -
framework/trunk/extensions/scaffolding/README.txt
r459 r463 1 This is a new development by Kevin Roche and Peter Bell to experiment with scaffolding for Fusebox 6.1 This is a new development by Kevin Roche and Peter Bell to experiment with scaffolding for Fusebox 5.5. 2 2 3 3 *** 10/Apr/2007 - Current Status - Kevin Roche -
framework/trunk/fusebox6.cfm
r460 r463 20 20 <!--- FB5: application key - FB41 always uses 'fusebox': ---> 21 21 <cfparam name="variables.FUSEBOX_APPLICATION_KEY" default="fusebox" /> 22 <!--- FB5 .1: allow application to be included from other directories: --->22 <!--- FB51: allow application to be included from other directories: ---> 23 23 <cfparam name="variables.FUSEBOX_CALLER_PATH" default="#replace(getDirectoryFromPath(getBaseTemplatePath()),"\","/","all")#" /> 24 <!--- FB 6: easy way to override fusebox.xml parameters programmatically: --->24 <!--- FB55: easy way to override fusebox.xml parameters programmatically: ---> 25 25 <cfparam name="variables.FUSEBOX_PARAMETERS" default="#structNew()#" /> 26 26 -
framework/trunk/fuseboxApplication.cfc
r461 r463 67 67 68 68 <!--- tidied up circuit-as-cfc ---> 69 <cfset var myVersion = " 6.0.0.#REReplace('$LastChangedRevision$','[^0-9]','','all')#" />69 <cfset var myVersion = "5.5.0.#REReplace('$LastChangedRevision$','[^0-9]','','all')#" /> 70 70 71 71 <cfset variables.factory = createObject("component","fuseboxFactory").init() /> … … 142 142 <cfset var p = "" /> 143 143 144 <!--- FB 6: can override fusebox.xml parameters programmatically --->144 <!--- FB55: can override fusebox.xml parameters programmatically ---> 145 145 <!--- this sets up the defaults for the reload - prior to actually reading parameters ---> 146 146 <cfloop collection="#arguments.appParameters#" item="p"> … … 263 263 <cfset loadParameters(fbCode) /> 264 264 265 <!--- FB 6: can override fusebox.xml parameters programmatically --->265 <!--- FB55: can override fusebox.xml parameters programmatically ---> 266 266 <cfloop collection="#arguments.appParameters#" item="p"> 267 267 <cfset this[p] = arguments.appParameters[p] /> … … 652 652 653 653 <cfif not structKeyExists(this.circuits,arguments.circuit)> 654 <!--- FB 6: attempt to create an implicit circuit --->654 <!--- FB55: attempt to create an implicit circuit ---> 655 655 <!--- TODO: there needs to be a mode to make this an undefined circuit ---> 656 656 <cfset this.circuits[arguments.circuit] = -
framework/trunk/myFusebox.cfc
r461 r463 17 17 <cfscript> 18 18 // tidied up circuit-as-cfc 19 this.version.runtime = " 6.0.0.#REReplace('$LastChangedRevision$','[^0-9]','','all')#";19 this.version.runtime = "5.5.0.#REReplace('$LastChangedRevision$','[^0-9]','','all')#"; 20 20 21 21 this.version.loader = "unknown"; -
framework/trunk/skeleton/README.txt
r458 r463 1 Fusebox 6Skeleton Application1 Fusebox 5.5 Skeleton Application 2 2 3 Install the Fusebox 6core files (see the Downloads section of fusebox.org).3 Install the Fusebox 5.5 core files (see the Downloads section of fusebox.org). 4 4 5 5 Copy this (skeleton) directory into your webroot. -
framework/trunk/skeleton/build.xml
r458 r463 1 <project name="Test Fusebox 6Skeleton" default="deploy">1 <project name="Test Fusebox 5.5 Skeleton" default="deploy"> 2 2 3 3 <!-- modify this to point to your installed web root or wherever you want to create new applications: --> -
framework/trunk/skeleton/parsed/FuseboxWillPlaceParsedFilesHere.txt
r458 r463 1 1 Fusebox will take care of putting parsed files in here automatically. Just be 2 sure to have a directory off your root called "parsed" in all your Fusebox 6apps.2 sure to have a directory off your root called "parsed" in all your Fusebox apps. -
framework/trunk/skeleton/views/lay_template.cfm
r458 r463 1 1 <cfoutput> 2 <div>This is a skeleton Fusebox 6application.</div>2 <div>This is a skeleton Fusebox 5.5 application.</div> 3 3 <hr /> 4 4 #body# 5 5 <hr /> 6 <div align="right">Powered by Fusebox 6!6 <div align="right">Powered by Fusebox 5.5! 7 7 (build <cfoutput>#myFusebox.getApplication().getVersion()# - #myFusebox.getApplication().mode#</cfoutput>)</div> 8 8 </cfoutput>
