Changeset 264
- Timestamp:
- 11/04/06 19:13:23 (2 years ago)
- Location:
- framework/trunk
- Files:
-
- 3 modified
-
fuseboxApplication.cfc (modified) (1 diff)
-
fuseboxCircuit.cfc (modified) (1 diff)
-
myFusebox.cfc (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
framework/trunk/fuseboxApplication.cfc
r263 r264 93 93 hint="I am the myFusebox data structure." /> 94 94 95 <!--- fixed ticket 99 --->95 <!--- fixed ticket 99 again ---> 96 96 <cfset var myVersion = "5.0.1.#REReplace('$LastChangedRevision$','[^0-9]','','all')#" /> 97 97 -
framework/trunk/fuseboxCircuit.cfc
r263 r264 109 109 110 110 <cfif structKeyExists(this,"timestamp")> 111 <cfif not fileExists(variables.fullPath & circuitFile)> 112 <cfset circuitFile = "circuit.xml" /> 113 </cfif> 111 114 <!--- Java timestamp solution provided by Daniel Schmid ---> 112 115 <cfset myCircuitFilePath = variables.fullPath & circuitFile /> 113 116 <cfset jCircuitFile = createObject("java","java.io.File").init(myCircuitFilePath) /> 114 117 <cfset dtLastModified = createObject("java","java.util.Date").init(jCircuitFile.lastModified()) /> 115 <cfset needToLoad = parseDateTime(dtLastModified) gt parseDateTime( variables.timestamp) />118 <cfset needToLoad = parseDateTime(dtLastModified) gt parseDateTime(this.timestamp) /> 116 119 </cfif> 117 120 -
framework/trunk/myFusebox.cfc
r263 r264 51 51 <cfcomponent hint="I provide the per-request myFusebox data structure and some convenience methods."> 52 52 <cfscript> 53 // fixed ticket 99 53 // fixed ticket 99 again 54 54 this.version.runtime = "5.0.1.#REReplace('$LastChangedRevision$','[^0-9]','','all')#"; 55 55
