Skip to content

Instantly share code, notes, and snippets.

@robwala
robwala / Application.cfc
Created December 19, 2012 16:46 — forked from awmichel/Application.cfc
empty template application.cfc
<cfcomponent output="false">
<!--- Application name, should be unique --->
<cfset this.name = "ApplicationName">
<!--- How long application vars persist --->
<cfset this.applicationTimeout = createTimeSpan(0,2,0,0)>
<!--- Should client vars be enabled? --->
<cfset this.clientManagement = false>
<!--- Where should we store them, if enable? --->
<cfset this.clientStorage = "registry">
@robwala
robwala / gist:4269891
Created December 12, 2012 17:39 — forked from dfs-snippets/gist:4269064
Coldfusion: template comment header
<!---
********************************************
** File:
** Description:
**
**
********************************************
** Revision History:
** XXX mm/dd/yyyy Created
**