config.cfm
上传用户:li2971742
上传日期:2021-11-18
资源大小:39096k
文件大小:3k
源码类别:

OA系统

开发平台:

C#

  1. <!---
  2.  * FCKeditor - The text editor for internet
  3.  * Copyright (C) 2003-2006 Frederico Caldeira Knabben
  4.  * 
  5.  * Licensed under the terms of the GNU Lesser General Public License:
  6.  *  http://www.opensource.org/licenses/lgpl-license.php
  7.  * 
  8.  * For further information visit:
  9.  *  http://www.fckeditor.net/
  10.  * 
  11.  * "Support Open Source software. What about a donation today?"
  12.  * 
  13.  * File Name: config.cfm
  14.  *  Configuration file for the ColdFusion File Uploader.
  15.  * 
  16.  * File Authors:
  17.  *  Wim Lemmens (didgiman@gmail.com)
  18. --->
  19. <cfscript>
  20. config = StructNew();
  21.  
  22. // SECURITY: You must explicitelly enable this "uploader". 
  23. config.enabled = false;
  24. // Path to uploaded files relative to the document root.
  25. config.userFilesPath = "/UserFiles/";
  26. config.serverPath = ""; // use this to force the server path if FCKeditor is not running directly off the root of the application or the FCKeditor directory in the URL is a virtual directory or a symbolic link / junction
  27. config.allowedExtensions = StructNew();
  28. config.deniedExtensions = StructNew();
  29. config.allowedExtensions["File"] = "";
  30. config.deniedExtensions["File"] = "php,php2,php3,php4,php5,phtml,pwml,inc,asp,aspx,ascx,jsp,cfm,cfc,pl,bat,exe,com,dll,vbs,js,reg,cgi";
  31. config.allowedExtensions["Image"] = "png,gif,jpg,jpeg,bmp";
  32. config.deniedExtensions["Image"] = "";
  33. config.allowedExtensions["Flash"] = "swf,fla";
  34. config.deniedExtensions["Flash"] = "";
  35. </cfscript>
  36. <!--- code to maintain backwards compatibility with previous version of cfm connector --->
  37. <cfif isDefined("application.userFilesPath")>
  38. <cflock scope="application" type="readonly" timeout="5">
  39. <cfset config.userFilesPath = application.userFilesPath>
  40. </cflock>
  41. <cfelseif isDefined("server.userFilesPath")>
  42. <cflock scope="server" type="readonly" timeout="5">
  43. <cfset config.userFilesPath = server.userFilesPath>
  44. </cflock>
  45. </cfif>
  46. <!--- look for config struct in request, application and server scopes --->
  47. <cfif isDefined("request.FCKeditor") and isStruct(request.FCKeditor)>
  48. <cfset variables.FCKeditor = request.FCKeditor>
  49. <cfelseif isDefined("application.FCKeditor") and isStruct(application.FCKeditor)>
  50. <cflock scope="application" type="readonly" timeout="5">
  51. <cfset variables.FCKeditor = duplicate(application.FCKeditor)>
  52. </cflock>
  53. <cfelseif isDefined("server.FCKeditor") and isStruct(server.FCKeditor)>
  54. <cflock scope="server" type="readonly" timeout="5">
  55. <cfset variables.FCKeditor = duplicate(server.FCKeditor)>
  56. </cflock>
  57. </cfif>
  58. <cfif isDefined("FCKeditor")>
  59. <!--- copy key values from external to local config (i.e. override default config as required) --->
  60. <cfscript>
  61. function structCopyKeys(stFrom, stTo) {
  62. for ( key in stFrom ) {
  63. if ( isStruct(stFrom[key]) ) {
  64. structCopyKeys(stFrom[key],stTo[key]);
  65. } else {
  66. stTo[key] = stFrom[key];
  67. }
  68. }
  69. }
  70. structCopyKeys(FCKeditor, config);
  71. </cfscript>
  72. </cfif>