| 1 | <?xml version="1.0" encoding="ISO-8859-1"?> |
|---|
| 2 | <Config xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
|---|
| 3 | xsi:noNamespaceSchemaLocation="http://www.coldboxframework.com/schema/config_2.1.0.xsd"> |
|---|
| 4 | <Settings> |
|---|
| 5 | <Setting name="AppName" value="Illudium PU-36 Code Generator"/> |
|---|
| 6 | <Setting name="DebugMode" value="true" /> |
|---|
| 7 | <Setting name="DebugPassword" value="Coldbox"/> |
|---|
| 8 | <Setting name="EventName" value="event"/> |
|---|
| 9 | <Setting name="EnableDumpVar" value="true" /> |
|---|
| 10 | <Setting name="EnableColdfusionLogging" value="false" /> |
|---|
| 11 | <Setting name="EnableColdboxLogging" value="true" /> |
|---|
| 12 | <Setting name="ColdboxLogsLocation" value="logs" /> |
|---|
| 13 | <Setting name="DefaultEvent" value="ehGeneral.dspHome"/> |
|---|
| 14 | <Setting name="RequestStartHandler" value="ehGeneral.onRequestStart"/> |
|---|
| 15 | <Setting name="RequestEndHandler" value=""/> |
|---|
| 16 | <Setting name="ApplicationStartHandler" value="ehGeneral.onAppInit"/> |
|---|
| 17 | <Setting name="OwnerEmail" value="myemail@gmail.com" /> |
|---|
| 18 | <Setting name="EnableBugReports" value="false"/> |
|---|
| 19 | <Setting name="UDFLibraryFile" value="" /> |
|---|
| 20 | <Setting name="ExceptionHandler" value="" /> |
|---|
| 21 | <Setting name="CustomErrorTemplate" value="views/vwException.cfm" /> |
|---|
| 22 | <Setting name="MessageboxStyleOverride" value="" /> |
|---|
| 23 | <Setting name="HandlersIndexAutoReload" value="false" /> |
|---|
| 24 | <Setting name="ConfigAutoReload" value="false" /> |
|---|
| 25 | <Setting name="MyPluginsLocation" value="" /> |
|---|
| 26 | <Setting name="HandlerCaching" value="true"/> |
|---|
| 27 | </Settings> |
|---|
| 28 | |
|---|
| 29 | <YourSettings> |
|---|
| 30 | <Setting name="adminPass" value=""/> |
|---|
| 31 | <Setting name="xslBasePath" value="./xsl/" /> |
|---|
| 32 | </YourSettings> |
|---|
| 33 | |
|---|
| 34 | <!--Optional,if blank it will use the CFMX administrator settings.--> |
|---|
| 35 | <MailServerSettings> |
|---|
| 36 | <MailServer></MailServer> |
|---|
| 37 | <MailUsername></MailUsername> |
|---|
| 38 | <MailPassword></MailPassword> |
|---|
| 39 | </MailServerSettings> |
|---|
| 40 | |
|---|
| 41 | <!--Emails to Send bug reports, you can create as many as you like--> |
|---|
| 42 | <BugTracerReports> |
|---|
| 43 | <!--<BugEmail>myemail@gmail.com</BugEmail>--> |
|---|
| 44 | </BugTracerReports> |
|---|
| 45 | |
|---|
| 46 | <!--List url dev environments, this determines your dev/pro environment for the framework--> |
|---|
| 47 | <DevEnvironments> |
|---|
| 48 | <url>dev</url> |
|---|
| 49 | <url>lmajano</url> |
|---|
| 50 | </DevEnvironments> |
|---|
| 51 | |
|---|
| 52 | <WebServices /> |
|---|
| 53 | |
|---|
| 54 | <!--Declare Layouts for your application here--> |
|---|
| 55 | <Layouts> |
|---|
| 56 | <!--Declare the default layout, MANDATORY--> |
|---|
| 57 | <DefaultLayout>Layout.Main.cfm</DefaultLayout> |
|---|
| 58 | |
|---|
| 59 | <!--Declare other layouts, with view assignments if needed, else do not write them--> |
|---|
| 60 | <Layout file="Layout.Popup.cfm" name="popup"> |
|---|
| 61 | <!--You can declare all the views that you want to appear with the above layout--> |
|---|
| 62 | <View>vwTest</View> |
|---|
| 63 | <View>vwMyView</View> |
|---|
| 64 | </Layout> |
|---|
| 65 | </Layouts> |
|---|
| 66 | |
|---|
| 67 | <i18N /> |
|---|
| 68 | |
|---|
| 69 | <Datasources /> |
|---|
| 70 | |
|---|
| 71 | </Config> |
|---|