ColdFusion 8's OnMissingTemplate() - So Close To Being Good

<h1>
	Index.cfm
</h1>
 
<!---
	Output the name of the file that was actually requested by
	the user (perhaps not the same as the one currently being
	executed as the front controller).
--->
<h2>
	<cfoutput>
		Requested: #getFileFromPath( cgi.script_name )#
	</cfoutput>
</h2>
 
<cfdump
	var="#form#"
	label="Form Scope"
	/>
 
<br />
 
<cfdump
	var="#url#"
	label="Url Scope"
	/>
 
<br />
 
<cfdump
	var="#cgi#"
	label="CGI Scope"
	show="cf_template_path, script_name, path_translated, path_info"
	/>

For Cut-and-Paste