[Mydatabasepilot-cvs] MyDatabasePilot/Include Header.cfm,1.2,1.3
Status: Alpha
Brought to you by:
nanoface
From: <nan...@us...> - 2003-05-02 02:27:26
|
Update of /cvsroot/mydatabasepilot/MyDatabasePilot/Include In directory sc8-pr-cvs1:/tmp/cvs-serv1366/Include Modified Files: Header.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: Header.cfm =================================================================== RCS file: /cvsroot/mydatabasepilot/MyDatabasePilot/Include/Header.cfm,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** Header.cfm 30 Apr 2003 03:39:04 -0000 1.2 --- Header.cfm 2 May 2003 02:27:23 -0000 1.3 *************** *** 18,23 **** <!--- Print Title in the following format: "Application Name" "Version" - "Given Page Title if any" ---> <cfoutput> ! <!--- Application Name, Application Version ---> ! #applicationName# #applicationVersion# <!--- If specific document title exist than print it ---> <cfif IsDefined("title")>- #title#</cfif> --- 18,26 ---- <!--- Print Title in the following format: "Application Name" "Version" - "Given Page Title if any" ---> <cfoutput> ! <!--- Initiate a Readonly lock to ensure the integrity of Application variables ---> ! <cflock timeout = "30" throwontimeout="no" type = "readonly" scope = "application"> ! <!--- Application Name, Application Version ---> ! #application.name# #application.version# ! </cflock> <!--- If specific document title exist than print it ---> <cfif IsDefined("title")>- #title#</cfif> *************** *** 32,38 **** <!-------------------> <body> ! <!--- Create Heading with Application Name and Version ---> ! <h1><cfoutput>#applicationName# #applicationVersion#</cfoutput></h1> ! <!--- Print Alpha Release Warning ---> <div class="Warning">Warning: This software is currently under development. It is currently in Alpha release. Which means it is not fully tested and could be unstable.</div> --- 35,45 ---- <!-------------------> <body> ! <!---||| Create Heading with Application Name and Version |||---> ! <!--- Initiate a Readonly lock to ensure the integrity of Application variables ---> ! <cflock timeout = "30" throwontimeout="no" type = "readonly" scope = "application"> ! <h1><cfoutput>#application.name# #application.version#</cfoutput></h1> ! </cflock> ! ! <!---||| Print Alpha Release Warning |||---> <div class="Warning">Warning: This software is currently under development. It is currently in Alpha release. Which means it is not fully tested and could be unstable.</div> |