home *** CD-ROM | disk | FTP | other *** search
/ Chip 2002 February / CHIPCD_02_2002.iso / Internet / Macromedia ColdFusion Server 5 / coldfusion-50-win-us.exe / data1.cab / Examples / CFDOCS / exampleapps / Application.cfm next >
Encoding:
Text File  |  2001-06-13  |  979 b   |  36 lines

  1. <!--- If not localhost, abort to message window --->
  2.  
  3. <CFParam Name = "CGI.REMOTE_ADDR" default="">
  4.  
  5. <CFIF CGI.REMOTE_ADDR is '' OR NOT (CGI.REMOTE_ADDR IS 'localhost' OR CGI.REMOTE_ADDR IS '127.0.0.1')>
  6.  
  7.  
  8.     <CFINCLUDE template="/cfdocs/sorry.htm">
  9.  
  10.     <CFABORT>
  11.  
  12. </CFIF>
  13.  
  14.  
  15. <!--- Hard coded UUIDs refer for docs --->
  16.  
  17. <CFSET DOC1 = "BA1EA6CC-7D79-11D3-A928005004218998">
  18. <CFSET DOC2 = "BA1EA6CD-7D79-11D3-A928005004218998">
  19. <CFSET DOC3 = "BA1EA6CE-7D79-11D3-A928005004218998">
  20. <CFSET DOC4 = "BA1EA6CF-7D79-11D3-A928005004218998">
  21. <CFSET DOC5 = "BA1EA6D0-7D79-11D3-A928005004218998">
  22. <CFSET DOC6 = "BA1EA6D1-7D79-11D3-A928005004218998">
  23. <CFSET DOC7 = "BA1EA6D2-7D79-11D3-A928005004218998">
  24. <CFSET DOC8 = "BA1EA6D3-7D79-11D3-A928005004218998">
  25.  
  26. <CFIF IsDefined("URL.DocID") AND Len(URL.DocID) LT 3 AND Val(URL.DocID)>
  27.     <CFTRY>
  28.         <CFSET URL.DocID = Evaluate("DOC#URL.DocID#")>
  29.         <CFCATCH>
  30.             <CFSET URL.DocID = DOC1>
  31.         </CFCATCH>
  32.     </CFTRY>
  33.  
  34. </CFIF>
  35.  
  36.