This repository was archived by the owner on Jul 2, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathApplication.cfc
112 lines (97 loc) · 3.35 KB
/
Application.cfc
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
<cfcomponent extends="_Application">
<cfscript>
dynORMPath = "/data"; // the goal here is if there is a site ID to embed it in the data class path
this.name = "Appestry_1.0.c33";
this.datasource = 'sosensible3';
this.ormenabled = true;
this.ormsettings = {
autorebuild = false,
cfclocation = ['/_site#dynORMPath#'],
dbcreate = 'update'
};
REQUEST.__domain = ["beta.www.sosensible.com","betaskin.www.sosensible.com"];
/* Agenda for MVP Collaboration Framework.
* . basic Site/Application API, convention based
* . data schema standard
* . authentication
* . user UI
* . admin UI
* . theme/skin
* . docs
* . training
*/
</cfscript>
<cffunction name="onRequest" output="yes">
<cfscript>
SESSION['_skins'] = 'amelia,bootstrap,cerulean,cosmo,cyborg,journal,readable,shamrock,simplex,slate,spacelab,spruce,superhero,united';
if(!structKeyExists(SESSION,"_skin")){ SESSION['_skin'] = "cerulean"; }
// temp permission variable
VARIABLES._allowURLSkin = true;
if(listContainsNoCase(CGI.HTTP_HOST,"betaskin",".")){
if(!structKeyExists(SESSION,"_demo")){
SESSION["_demo"] = {};
SESSION['_skin'] = "bootstrap";
}
if(structKeyExists(URL,"_skin") && VARIABLES._allowURLSkin){
REQUEST._skin = createObject("component","share.objects.cfish.skin").init(URL._skin);
SESSION._demo["skin"] = REQUEST._skin;
} else if(structKeyExists(SESSION._demo,"skin")) {
REQUEST._skin = SESSION._demo.skin;
} else {
REQUEST._skin = createObject("component","share.objects.cfish.skin").init(SESSION._skin);
}
}
super.onRequest();
</cfscript>
</cffunction>
<!---
<cffunction name="onApplicationStart">
<cfscript>
REQUEST._progress = "application start";
APPLICATION.__server = {
platform = "ColdFusion",
OS = SERVER.OS.Name,
slash = "/"
};
if(structKeyExists(server,"railo")){ APPLICATION.__server.platform = "Railo"; }
if(findNoCase("windows",APPLICATION.__server.OS)){ APPLICATION.__server.slash = "\"; }
APPLICATION.__site = createObject("component","_site.object.site").init();
</cfscript>
</cffunction>
<cffunction name="onApplicationEnd"></cffunction>
<cffunction name="onSessionStart"></cffunction>
<cffunction name="onSessionEnd"></cffunction>
<cffunction name="onRequestStart">
<cfscript>
APPLICATION.__api.site = createObject("component","_site.object.site").init();
APPLICATION.__api.site.setRequestAPI();
structAppend(form,url,false);
REQUEST._content = createObject("component","share.objects.sos.content");
</cfscript>
</cffunction>
<cffunction name="onCFCRequest"></cffunction>
<cffunction name="onRequest" output="yes">
<cftry>
<cfoutput>
<cfif REQUEST._meta.routeType EQ "managed">
<cfsavecontent variable="REQUEST.__bodyContent"><cfinclude template='#REQUEST._meta.template#' /></cfsavecontent>
<cfelse>
<cfsavecontent variable="REQUEST.__bodyContent"><cfinclude template="/apps/main/index.cfm" /></cfsavecontent>
</cfif>
<cfcontent reset="yes" /><cfinclude template="/_site/layout/default.cfm" />
</cfoutput>
<cfcatch>
<cfdump var="#cfcatch#">
</cfcatch>
</cftry>
</cffunction>
<cffunction name="onRequestEnd">
</cffunction>
<cffunction name="onError">
<cfdump var="#arguments#" label="onError Handler">
<cfdump var="#request#" label="Request" expand="no">
<cfabort>
</cffunction>
<cffunction name="xonAbort"></cffunction>
--->
</cfcomponent>