From: Thyamad c. <th...@us...> - 2005-09-29 19:50:26
|
Update of /cvsroot/thyapi/thyapi/thywidgets/external/fckeditor/editor/_source/globals In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv563/thywidgets/external/fckeditor/editor/_source/globals Modified Files: fck_constants.js fckeditorapi.js 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: fck_constants.js =================================================================== RCS file: /cvsroot/thyapi/thyapi/thywidgets/external/fckeditor/editor/_source/globals/fck_constants.js,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** fck_constants.js 1 Sep 2005 18:15:40 -0000 1.4 --- fck_constants.js 29 Sep 2005 19:49:17 -0000 1.5 *************** *** 1,5 **** ! /* * FCKeditor - The text editor for internet ! * Copyright (C) 2003-2004 Frederico Caldeira Knabben * * Licensed under the terms of the GNU Lesser General Public License: --- 1,5 ---- ! /* * FCKeditor - The text editor for internet ! * Copyright (C) 2003-2005 Frederico Caldeira Knabben * * Licensed under the terms of the GNU Lesser General Public License: *************** *** 13,22 **** * globally available in the page where the editor is placed. * - * Version: 2.0 RC3 - * Modified: 2004-05-31 23:07:48 - * * File Authors: ! * Frederico Caldeira Knabben (fr...@fc...) ! */ // Editor Instance Status. --- 13,19 ---- * globally available in the page where the editor is placed. * * File Authors: ! * Frederico Caldeira Knabben (fr...@fc...) ! */ // Editor Instance Status. Index: fckeditorapi.js =================================================================== RCS file: /cvsroot/thyapi/thyapi/thywidgets/external/fckeditor/editor/_source/globals/fckeditorapi.js,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** fckeditorapi.js 1 Sep 2005 18:15:40 -0000 1.4 --- fckeditorapi.js 29 Sep 2005 19:49:17 -0000 1.5 *************** *** 1,5 **** ! /* * FCKeditor - The text editor for internet ! * Copyright (C) 2003-2004 Frederico Caldeira Knabben * * Licensed under the terms of the GNU Lesser General Public License: --- 1,5 ---- ! /* * FCKeditor - The text editor for internet ! * Copyright (C) 2003-2005 Frederico Caldeira Knabben * * Licensed under the terms of the GNU Lesser General Public License: *************** *** 13,25 **** * the page where the editor is placed in. * - * Version: 2.0 RC3 - * Modified: 2004-05-31 23:07:48 - * * File Authors: ! * Frederico Caldeira Knabben (fr...@fc...) ! */ var FCKeditorAPI ; if ( !window.parent.FCKeditorAPI ) { --- 13,27 ---- * the page where the editor is placed in. * * File Authors: ! * Frederico Caldeira Knabben (fr...@fc...) ! */ var FCKeditorAPI ; + function FCKeditorAPI_GetInstance( instanceName ) + { + return this.__Instances[ instanceName ] ; + } + if ( !window.parent.FCKeditorAPI ) { *************** *** 29,40 **** // Set the current version. ! FCKeditorAPI.Version = '2.0 RC3' ; // Function used to get a instance of an existing editor present in the // page. ! FCKeditorAPI.GetInstance = function( instanceName ) ! { ! return this.__Instances[ instanceName ] ; ! } } else --- 31,39 ---- // Set the current version. ! FCKeditorAPI.Version = '2.0' ; // Function used to get a instance of an existing editor present in the // page. ! FCKeditorAPI.GetInstance = FCKeditorAPI_GetInstance ; } else |