[Mydatabasepilot-cvs] MyDatabasePilot/Include Header.cfm,1.1.1.1,1.2
Status: Alpha
Brought to you by:
nanoface
From: <nan...@us...> - 2003-04-30 03:39:07
|
Update of /cvsroot/mydatabasepilot/MyDatabasePilot/Include In directory sc8-pr-cvs1:/tmp/cvs-serv7065/Include Modified Files: Header.cfm Log Message: Internal Structure Changed: [ 727872 ] Place Repeated Tags in Header File Also added mainMenuIsVisible Boolean Index: Header.cfm =================================================================== RCS file: /cvsroot/mydatabasepilot/MyDatabasePilot/Include/Header.cfm,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -d -r1.1.1.1 -r1.2 *** Header.cfm 23 Mar 2003 03:44:35 -0000 1.1.1.1 --- Header.cfm 30 Apr 2003 03:39:04 -0000 1.2 *************** *** 1,11 **** ! <!---******************************************************************************************* ! * Copyright: MyDatabase Pilot is distributed under the terms of the GNU GPL license * ! * Template: Include/Header.cfm * ! * Purpose: Header File used by MyDatabase Pilot * ! * Requiremets: None * ! * Todo: * ! * Known Issues/Bugs: * ! ********************************************************************************************---> ! ! <!---||| Create Header |||---> ! <h1>MyDatabase Pilot</h1> \ No newline at end of file --- 1,43 ---- ! <!---******************************************************************************************* ! * Copyright: MyDatabase Pilot is distributed under the terms of the GNU GPL license * ! * Template: Include/Header.cfm * ! * Purpose: Header File used by MyDatabase Pilot * ! * Requiremets: None * ! ********************************************************************************************---> ! ! <!---------------------> ! <!--- Create Header ---> ! <!---------------------> ! <!---||| Open HTML file |||---> ! <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> ! <html> ! <head> ! ! <!---||| Generate Document Title |||---> ! <title> ! <!--- 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> ! </cfoutput> ! </title> ! ! <link rel="STYLESHEET" type="text/css" href="Styles/master.css"> ! </head> ! ! <!-------------------> ! <!--- Create Body ---> ! <!-------------------> ! <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> ! ! <!---||| Open Top Level Table, which Divides the Main Menu from the Main Work Area |||---> ! <table width="100%" border="0" cellspacing="0" cellpadding="0"><tr> ! <!--- Print MainMenu if it is set to visible ---> ! <cfif mainMenuIsVisible><cfinclude template="MainMenu.cfm"></cfif> ! <td valign="top"> \ No newline at end of file |