root/coldbox/trunk/src/helloworld/Application.cfc @ 860

Revision 860, 1.3 kB (checked in by lmajano, 6 years ago)

Whitespace fixes, (INCREDIBLE FIX)

Line 
1<cfcomponent output="false">
2
3<cfset this.name = "Coldbox Second Hello World"> 
4<cfset this.clientManagement = true> 
5<cfset this.sessionManagement = true> 
6<cfset this.sessionTimeout = createTimeSpan(0,0,30,0)> 
7<cfset this.setClientCookies = true>
8<cfset this.loginStorage = "session">
9               
10<cffunction name="onApplicationStart" returnType="boolean" output="false"> 
11        <cfreturn true>
12</cffunction>
13
14<cffunction name="onApplicationEnd" returnType="void" output="false"> 
15        <cfargument name="applicationScope" required="true">
16</cffunction>
17
18<cffunction name="onRequestStart" returnType="boolean" output="false">
19        <cfargument name="thePage" type="string" required="true">
20        <cfreturn  true>
21</cffunction>
22
23<cffunction name="onRequest" returnType="void">
24        <cfargument name="thePage" type="string" required="true">
25        <cfinclude template="#arguments.thePage#">             
26</cffunction>
27
28<cffunction name="onRequestEnd" returnType="void" output="false">
29        <cfargument name="thePage" type="string" required="true">
30</cffunction>
31       
32<cffunction name="onSessionStart" returnType="void" output="false"> 
33</cffunction>
34
35<cffunction name="onSessionEnd" returnType="void" output="false"> 
36        <cfargument name="sessionScope" type="struct" required="true">
37        <cfargument name="appScope" type="struct" required="false">
38</cffunction>
39 
40</cfcomponent>
Note: See TracBrowser for help on using the browser.