Update of /cvsroot/phpslash/phpslash-dev/public_html/scripts/fckeditor/editor/filemanager/browser/default/js
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv6803/phpslash-dev/public_html/scripts/fckeditor/editor/filemanager/browser/default/js
Modified Files:
common.js fckxml.js
Log Message:
complete fckeditor addition
Index: common.js
===================================================================
RCS file: /cvsroot/phpslash/phpslash-dev/public_html/scripts/fckeditor/editor/filemanager/browser/default/js/common.js,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -d -r1.1 -r1.2
*** common.js 28 Oct 2004 20:17:46 -0000 1.1
--- common.js 30 Oct 2004 13:53:13 -0000 1.2
***************
*** 13,18 ****
* File Browser dialog window.
*
! * Version: 2.0 Beta 1
! * Modified: 2004-05-31 23:07:53
*
* File Authors:
--- 13,18 ----
* File Browser dialog window.
*
! * Version: 2.0 Beta 2
! * Modified: 2004-06-19 00:51:22
*
* File Authors:
***************
*** 20,30 ****
*/
! var oConnector = new Object() ;
! oConnector.ResourceType = '' ;
! oConnector.CurrentFolder = '/' ;
! // Get the connector path from the URL.
! oConnector.Regex = new RegExp( '[\?&]Connector=([^&]+)', 'i' ) ;
! oConnector.ConnectorUrl = oConnector.Regex.exec( window.top.location.search )[1] ;
oConnector.SendCommand = function( command, params, callBackFunction )
--- 20,50 ----
*/
! function AddSelectOption( selectElement, optionText, optionValue )
! {
! var oOption = document.createElement("OPTION") ;
! oOption.text = optionText ;
! oOption.value = optionValue ;
!
! selectElement.options.add(oOption) ;
!
! return oOption ;
! }
!
! function GetUrlParam( paramName )
! {
! var oRegex = new RegExp( '[\?&]' + paramName + '=([^&]+)', 'i' ) ;
! var oMatch = oRegex.exec( window.top.location.search ) ;
!
! if ( oMatch && oMatch.length > 1 )
! return oMatch[1] ;
! else
! return '' ;
! }
!
! var oConnector = new Object() ;
! oConnector.CurrentFolder = '/' ;
! oConnector.ConnectorUrl = GetUrlParam( 'Connector' ) ;
! oConnector.ResourceType = GetUrlParam( 'Type' ) ;
oConnector.SendCommand = function( command, params, callBackFunction )
Index: fckxml.js
===================================================================
RCS file: /cvsroot/phpslash/phpslash-dev/public_html/scripts/fckeditor/editor/filemanager/browser/default/js/fckxml.js,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -d -r1.1 -r1.2
*** fckxml.js 28 Oct 2004 20:17:46 -0000 1.1
--- fckxml.js 30 Oct 2004 13:53:13 -0000 1.2
***************
*** 15,19 ****
* File Browser frameset.
*
! * Version: 2.0 Beta 1
* Modified: 2004-05-31 23:07:53
*
--- 15,19 ----
* File Browser frameset.
*
! * Version: 2.0 Beta 2
* Modified: 2004-05-31 23:07:53
*
|