Changeset 463

Show
Ignore:
Timestamp:
06/05/07 17:55:10 (1 year ago)
Author:
scorfield
Message:

Fusebox 6 is now officially Fusebox 5.5.

Location:
framework/trunk
Files:
10 modified

Legend:

Unmodified
Added
Removed
  • framework/trunk/README.txt

    r306 r463  
    1 Fusebox 5.1 Core Files 
     1Fusebox 5.5 Core Files 
    22 
    3 The simplest way to install Fusebox 5.1 is to copy this (fusebox5) 
     3The simplest way to install Fusebox 5.5 is to copy this (fusebox5) 
    44directory to your webroot. 
    55 
     
    77this directory. 
    88 
    9 Then install the Fusebox 5.1 Skeleton application template 
     9Then install the Fusebox 5.5 Skeleton application template 
    1010(see the Downloads section of fusebox.org) and test that 
    1111it works. 
    1212 
    13 Fusebox 5.1 supports: 
     13Fusebox 5.5 supports: 
    1414- ColdFusion MX 6.1 and higher 
    1515- BlueDragon 7.0 Beta and higher 
    1616- Railo 1.0.0.025 and higher 
    1717 
    18 For more details, see the Fusebox 5 documentation: 
     18For more details, see the Fusebox 5.5 documentation: (location TBD) 
    1919 
    2020        http://fuseboxframework.org/index.cfm?fuseaction=documentation.WhatsNewInFusebox5 
  • framework/trunk/extensions/README.txt

    r459 r463  
    1 Fusebox 6 Extensions Pack 
     1Fusebox 5.5 Extensions Pack 
    22 
    33Please 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. 
     1This is a new development by Kevin Roche and Peter Bell to experiment with scaffolding for Fusebox 5.5. 
    22 
    33*** 10/Apr/2007 - Current Status - Kevin Roche 
  • framework/trunk/fusebox6.cfm

    r460 r463  
    2020<!--- FB5: application key - FB41 always uses 'fusebox': ---> 
    2121<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: ---> 
    2323<cfparam name="variables.FUSEBOX_CALLER_PATH" default="#replace(getDirectoryFromPath(getBaseTemplatePath()),"\","/","all")#" /> 
    24 <!--- FB6: easy way to override fusebox.xml parameters programmatically: ---> 
     24<!--- FB55: easy way to override fusebox.xml parameters programmatically: ---> 
    2525<cfparam name="variables.FUSEBOX_PARAMETERS" default="#structNew()#" /> 
    2626 
  • framework/trunk/fuseboxApplication.cfc

    r461 r463  
    6767                 
    6868                <!--- 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')#" /> 
    7070 
    7171                <cfset variables.factory = createObject("component","fuseboxFactory").init() /> 
     
    142142                <cfset var p = "" /> 
    143143                 
    144                 <!--- FB6: can override fusebox.xml parameters programmatically ---> 
     144                <!--- FB55: can override fusebox.xml parameters programmatically ---> 
    145145                <!--- this sets up the defaults for the reload - prior to actually reading parameters ---> 
    146146                <cfloop collection="#arguments.appParameters#" item="p"> 
     
    263263                        <cfset loadParameters(fbCode) /> 
    264264 
    265                         <!--- FB6: can override fusebox.xml parameters programmatically ---> 
     265                        <!--- FB55: can override fusebox.xml parameters programmatically ---> 
    266266                        <cfloop collection="#arguments.appParameters#" item="p"> 
    267267                                <cfset this[p] = arguments.appParameters[p] /> 
     
    652652 
    653653                <cfif not structKeyExists(this.circuits,arguments.circuit)> 
    654                         <!--- FB6: attempt to create an implicit circuit ---> 
     654                        <!--- FB55: attempt to create an implicit circuit ---> 
    655655                        <!--- TODO: there needs to be a mode to make this an undefined circuit ---> 
    656656                        <cfset this.circuits[arguments.circuit] =  
  • framework/trunk/myFusebox.cfc

    r461 r463  
    1717        <cfscript> 
    1818        // 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')#"; 
    2020           
    2121        this.version.loader      = "unknown"; 
  • framework/trunk/skeleton/README.txt

    r458 r463  
    1 Fusebox 6 Skeleton Application 
     1Fusebox 5.5 Skeleton Application 
    22 
    3 Install the Fusebox 6 core files (see the Downloads section of fusebox.org). 
     3Install the Fusebox 5.5 core files (see the Downloads section of fusebox.org). 
    44 
    55Copy this (skeleton) directory into your webroot. 
  • framework/trunk/skeleton/build.xml

    r458 r463  
    1 <project name="Test Fusebox 6 Skeleton" default="deploy"> 
     1<project name="Test Fusebox 5.5 Skeleton" default="deploy"> 
    22         
    33        <!-- 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  
    11Fusebox 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 6 apps. 
     2sure to have a directory off your root called "parsed" in all your Fusebox apps. 
  • framework/trunk/skeleton/views/lay_template.cfm

    r458 r463  
    11<cfoutput> 
    2         <div>This is a skeleton Fusebox 6 application.</div> 
     2        <div>This is a skeleton Fusebox 5.5 application.</div> 
    33        <hr /> 
    44        #body# 
    55        <hr /> 
    6         <div align="right">Powered by Fusebox 6! 
     6        <div align="right">Powered by Fusebox 5.5! 
    77                (build <cfoutput>#myFusebox.getApplication().getVersion()# - #myFusebox.getApplication().mode#</cfoutput>)</div> 
    88</cfoutput>