Browse CVS Repository
Contents of /cftimeline/cftimeline/index.cfm
Parent Directory
| Revision Log
| Revision Graph
Revision 1.2 -
( show annotations)
( download)
Sat Sep 30 18:09:11 2006 UTC
(17 years, 6 months ago)
by nanzono
Branch: MAIN
CVS Tags: HEAD
Changes since 1.1: +5 -0 lines
*** empty log message ***
| 1 |
<!-- |
| 2 |
Project Name: CfTimeLine |
| 3 |
Author: nanzono |
| 4 |
$Id$ |
| 5 |
--> |
| 6 |
<!--- Set the path to the application's mach-ii.xml file. ---> |
| 7 |
<cfset MACHII_CONFIG_PATH = ExpandPath("./config/mach-ii.xml") /> |
| 8 |
<!--- Set the configuration mode (when to reload): -1=never, 0=dynamic, 1=always ---> |
| 9 |
<cfset MACHII_CONFIG_MODE = 1 /> |
| 10 |
<!--- Set the app key for sub-applications within a single cf-application. ---> |
| 11 |
<cfset MACHII_APP_KEY = GetFileFromPath(ExpandPath(".")) /> |
| 12 |
<!--- |
| 13 |
Whether or not to validate the XML configuration file before parsing. |
| 14 |
Only works on CFMX7. Default to false. |
| 15 |
---> |
| 16 |
<cfset MACHII_VALIDATE_XML = false /> |
| 17 |
<!--- Set the path to the Mach-II's DTD file. Default to ./config/mach-ii_1_1.dtd. ---> |
| 18 |
<cfset MACHII_DTD_PATH = ExpandPath('./config/mach-ii_1_1.dtd') /> |
| 19 |
<!--- Include the mach-ii.cfm file included with the core code. ---> |
| 20 |
<cfinclude template="/MachII/mach-ii.cfm" /> |
|