From: Thyamad c. <th...@us...> - 2005-09-29 19:50:21
|
Update of /cvsroot/thyapi/thyapi/thywidgets/external/fckeditor/editor/filemanager/browser/default/connectors/cfm In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv563/thywidgets/external/fckeditor/editor/filemanager/browser/default/connectors/cfm Modified Files: connector.cfm Log Message: Commiting file additions and modification from SVN revision 2028 to 2029... Changes made by frank on 2005-09-29 21:42:57 +0200 (Thu, 29 Sep 2005) corresponding to SVN revision 2029 with message: updating fckeditor in dynapi Index: connector.cfm =================================================================== RCS file: /cvsroot/thyapi/thyapi/thywidgets/external/fckeditor/editor/filemanager/browser/default/connectors/cfm/connector.cfm,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** connector.cfm 1 Sep 2005 18:15:43 -0000 1.4 --- connector.cfm 29 Sep 2005 19:49:18 -0000 1.5 *************** *** 1,36 **** <cfsetting enablecfoutputonly="true" showdebugoutput="false"> ! <!--- ! * FCKeditor - The text editor for internet ! * Copyright (C) 2003-2004 Frederico Caldeira Knabben ! * ! * Licensed under the terms of the GNU Lesser General Public License: ! * http://www.opensource.org/licenses/lgpl-license.php ! * ! * For further information visit: ! * http://www.fckeditor.net/ ! * ! * File Name: connector.cfm ! * This is the File Browser Connector for ColdFusion. ! * ! * Notice: ! * FCKEditor needs an UTF-8 encoded XML packet. ! * Only CFMX can encode in UTF-8. If this browser doesn't work in CF 4.0/4.5/5, ! * please send me a notice. We then can use an more object oriented approach (CFC) ! * to clean up this code :) ! * ! * Please declare the base path (e.g. /UserFiles/) as an Application or Server variable ! * Directory structure (with optional subdirectories built by the user). ! * The "Type" subdirectory is automatically submitted by FCKEditor: ! * /UserFiles/Image/ ! * /UserFiles/Flash/ ! * /UserFiles/File/ ! * /UserFiles/Media/ ! * ! * Version: 2.0 RC3 ! * Modified: 2004-12-07 12:01:46 ! * ! * File Authors: ! * Hendrik Kramer (hk...@lw...) ! ---> <cfparam name="URL.Command" type="string"> <cfparam name="URL.Type" type="string"> --- 1,24 ---- <cfsetting enablecfoutputonly="true" showdebugoutput="false"> ! <!--- @Packager.Header ! <FileDescription> ! This is the File Browser Connector for ColdFusion. ! ! Notice: ! FCKeditor needs an UTF-8 encoded XML packet. ! Only CFMX can encode in UTF-8. If this browser doesn't work in CF 4.0/4.5/5, ! please send me a notice. We then can use an more object oriented approach (CFC) ! to clean up this code :) ! ! Please declare the base path (e.g. /UserFiles/) as an Application or Server variable ! Directory structure (with optional subdirectories built by the user). ! The "Type" subdirectory is automatically submitted by FCKeditor: ! /UserFiles/Image/ ! /UserFiles/Flash/ ! /UserFiles/File/ ! /UserFiles/Media/ ! ! </FileDescription> ! <Author name="Hendrik Kramer" email="hk...@lw..." /> ! ---> <cfparam name="URL.Command" type="string"> <cfparam name="URL.Type" type="string"> *************** *** 175,179 **** <cfoutput> <script type="text/javascript"> ! window.parent.frames['frmUpload'].OnUploadCompleted(#sErrorNumber#,'#replace( sFileName & "." & sFileExt, "'", "\'", "ALL")#'); </script> </cfoutput> --- 163,167 ---- <cfoutput> <script type="text/javascript"> ! window.parent.frames['frmUpload'].OnUploadCompleted(#sErrorNumber#,'#replace( sFileName & "." & sFileExt, "'", "\'", "ALL")#'); </script> </cfoutput> |