[Mydatabasepilot-cvs] MyDatabasePilot Application.cfm,1.7,1.8
Status: Alpha
Brought to you by:
nanoface
From: <nan...@us...> - 2003-05-02 02:27:26
|
Update of /cvsroot/mydatabasepilot/MyDatabasePilot In directory sc8-pr-cvs1:/tmp/cvs-serv1366 Modified Files: Application.cfm Log Message: Internal Structure Changed: [ 731110 ] Convert local scope varialbles to Application scope vars Old Vars: applicationName, applicationVersion, applicationReleaseDate New Vars: application.name, application.version, application.releaseDate Index: Application.cfm =================================================================== RCS file: /cvsroot/mydatabasepilot/MyDatabasePilot/Application.cfm,v retrieving revision 1.7 retrieving revision 1.8 diff -C2 -d -r1.7 -r1.8 *** Application.cfm 30 Apr 2003 03:39:03 -0000 1.7 --- Application.cfm 2 May 2003 02:27:23 -0000 1.8 *************** *** 10,14 **** <!--- and enable client variables in the form of cookies ---> <!----------------------------------------------------------> ! <cfapplication name="MyDatabasePilot" clientmanagement="yes" sessionmanagement="yes" setclientcookies="yes" setdomaincookies="no" sessiontimeout="#CreateTimeSpan(0,0,15,0)#"> <!-------------------------> --- 10,16 ---- <!--- and enable client variables in the form of cookies ---> <!----------------------------------------------------------> ! <cfapplication name="MyDatabasePilot-0.7.1.a" applicationtimeout="#CreateTimeSpan(2,0,0,0)#" ! clientmanagement="yes" setclientcookies="yes" setdomaincookies="no" ! sessionmanagement="yes" sessiontimeout="#CreateTimeSpan(0,0,15,0)#"> <!-------------------------> *************** *** 29,32 **** --- 31,47 ---- ---> + <!----------------------------------------> + <!--- Initialize Application Variables ---> + <!----------------------------------------> + <!--- Initiate an Exclusive lock to ensure the integrity of Application variables ---> + <cflock timeout = "30" throwontimeout="no" type = "exclusive" scope = "application"> + <!--- Ensure Application Name has not Expired ---> + <cfif NOT IsDefined("application.name")><cfset application.name = "MyDatabase Pilot"></cfif> + <!--- Ensure Application Version has not Expired ---> + <cfif NOT IsDefined("application.version")><cfset application.version = "v0.7.1(Alpha)"></cfif> + <!--- Ensure Application Release Date has not Expired ---> + <cfif NOT IsDefined("application.releaseDate")><cfset application.releaseDate = "4 May 2003"></cfif> + </cflock> + <!-----------------------------------> <!--- Initialize Client Variables ---> *************** *** 42,46 **** Variables for server clusters (We will see how many users actually run server cluster before spending to much time on this.)---> ! <!--- Lock code that uses session variables to ensure data integrity ---> <cflock timeout = "30" throwontimeout="no" type = "exclusive" scope = "session"> <!---||| Initialize connection variables used by queries to connect to the database |||---> --- 57,61 ---- Variables for server clusters (We will see how many users actually run server cluster before spending to much time on this.)---> ! <!--- Initiate an Exclusive lock to ensure the integrity of Session variables ---> <cflock timeout = "30" throwontimeout="no" type = "exclusive" scope = "session"> <!---||| Initialize connection variables used by queries to connect to the database |||---> *************** *** 85,91 **** <!--- Initialize Application-Wide Local scope variables ---> <!---------------------------------------------------------> - <cfset applicationName = "MyDatabase Pilot"> - <cfset applicationVersion = "v0.7.0(Alpha)"> - <cfset applicationReleaseDate = "17th Mar 2003"> <cfset mainpage = "MyDatabasePilot.cfm"> <cfset currentPath = "#cgi.path_info#"> --- 100,103 ---- |