[geeklog-cvs] Geeklog-1.x/public_html/fckeditor/editor/filemanager/browser/default browser.css, 1.3, 1.4 browser.html, 1.3, 1.4 frmactualfolder.html, 1.3, 1.4 frmcreatefolder.html, 1.3, 1.4 frmfolders.html, 1.3, 1.4 frmresourceslist.html, 1.4, 1.5 frmresourcetype.html, 1.3, 1.4 frmupload.html, 1.3, 1.4

Blaine Lang blaine at qs1489.pair.com
Sun May 4 20:35:28 EDT 2008


Update of /cvsroot/geeklog/Geeklog-1.x/public_html/fckeditor/editor/filemanager/browser/default
In directory qs1489.pair.com:/tmp/cvs-serv85146/editor/filemanager/browser/default

Modified Files:
	browser.css browser.html frmactualfolder.html 
	frmcreatefolder.html frmfolders.html frmresourceslist.html 
	frmresourcetype.html frmupload.html 
Log Message:
Upgraded the FCKeditor to version 2.6 Final - latest release April 7/08

Index: frmfolders.html
===================================================================
RCS file: /cvsroot/geeklog/Geeklog-1.x/public_html/fckeditor/editor/filemanager/browser/default/frmfolders.html,v
retrieving revision 1.3
retrieving revision 1.4
diff -C2 -d -r1.3 -r1.4
*** frmfolders.html	9 Feb 2008 12:53:58 -0000	1.3
--- frmfolders.html	5 May 2008 00:35:25 -0000	1.4
***************
*** 2,6 ****
  <!--
   * FCKeditor - The text editor for Internet - http://www.fckeditor.net
!  * Copyright (C) 2003-2007 Frederico Caldeira Knabben
   *
   * == BEGIN LICENSE ==
--- 2,6 ----
  <!--
   * FCKeditor - The text editor for Internet - http://www.fckeditor.net
!  * Copyright (C) 2003-2008 Frederico Caldeira Knabben
   *
   * == BEGIN LICENSE ==
***************
*** 26,29 ****
--- 26,30 ----
  	<head>
  		<link href="browser.css" type="text/css" rel="stylesheet">
+ 		<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
  		<script type="text/javascript" src="js/common.js"></script>
  		<script language="javascript">

Index: frmactualfolder.html
===================================================================
RCS file: /cvsroot/geeklog/Geeklog-1.x/public_html/fckeditor/editor/filemanager/browser/default/frmactualfolder.html,v
retrieving revision 1.3
retrieving revision 1.4
diff -C2 -d -r1.3 -r1.4
*** frmactualfolder.html	9 Feb 2008 12:53:58 -0000	1.3
--- frmactualfolder.html	5 May 2008 00:35:25 -0000	1.4
***************
*** 2,6 ****
  <!--
   * FCKeditor - The text editor for Internet - http://www.fckeditor.net
!  * Copyright (C) 2003-2007 Frederico Caldeira Knabben
   *
   * == BEGIN LICENSE ==
--- 2,6 ----
  <!--
   * FCKeditor - The text editor for Internet - http://www.fckeditor.net
!  * Copyright (C) 2003-2008 Frederico Caldeira Knabben
   *
   * == BEGIN LICENSE ==
***************
*** 24,29 ****
--- 24,61 ----
  <html>
  	<head>
+ 		<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
  		<link href="browser.css" type="text/css" rel="stylesheet">
  		<script type="text/javascript">
+ // Automatically detect the correct document.domain (#1919).
+ (function()
+ {
+ 	var d = document.domain ;
+ 
+ 	while ( true )
+ 	{
+ 		// Test if we can access a parent property.
+ 		try
+ 		{
+ 			var test = window.top.opener.document.domain ;
+ 			break ;
+ 		}
+ 		catch( e ) {}
+ 
+ 		// Remove a domain part: www.mytest.example.com => mytest.example.com => example.com ...
+ 		d = d.replace( /.*?(?:\.|$)/, '' ) ;
+ 
+ 		if ( d.length == 0 )
+ 			break ;		// It was not able to detect the domain.
+ 
+ 		try
+ 		{
+ 			document.domain = d ;
+ 		}
+ 		catch (e)
+ 		{
+ 			break ;
+ 		}
+ 	}
+ })() ;
  
  function OnResize()

Index: browser.html
===================================================================
RCS file: /cvsroot/geeklog/Geeklog-1.x/public_html/fckeditor/editor/filemanager/browser/default/browser.html,v
retrieving revision 1.3
retrieving revision 1.4
diff -C2 -d -r1.3 -r1.4
*** browser.html	9 Feb 2008 12:53:58 -0000	1.3
--- browser.html	5 May 2008 00:35:25 -0000	1.4
***************
*** 2,6 ****
  <!--
   * FCKeditor - The text editor for Internet - http://www.fckeditor.net
!  * Copyright (C) 2003-2007 Frederico Caldeira Knabben
   *
   * == BEGIN LICENSE ==
--- 2,6 ----
  <!--
   * FCKeditor - The text editor for Internet - http://www.fckeditor.net
!  * Copyright (C) 2003-2008 Frederico Caldeira Knabben
   *
   * == BEGIN LICENSE ==
***************
*** 25,31 ****
--- 25,63 ----
  	<head>
  		<title>FCKeditor - Resources Browser</title>
+ 		<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
  		<link href="browser.css" type="text/css" rel="stylesheet">
  		<script type="text/javascript" src="js/fckxml.js"></script>
  		<script language="javascript">
+ // Automatically detect the correct document.domain (#1919).
+ (function()
+ {
+ 	var d = document.domain ;
+ 
+ 	while ( true )
+ 	{
+ 		// Test if we can access a parent property.
+ 		try
+ 		{
+ 			var test = window.opener.document.domain ;
+ 			break ;
+ 		}
+ 		catch( e ) {}
+ 
+ 		// Remove a domain part: www.mytest.example.com => mytest.example.com => example.com ...
+ 		d = d.replace( /.*?(?:\.|$)/, '' ) ;
+ 
+ 		if ( d.length == 0 )
+ 			break ;		// It was not able to detect the domain.
+ 
+ 		try
+ 		{
+ 			document.domain = d ;
+ 		}
+ 		catch (e)
+ 		{
+ 			break ;
+ 		}
+ 	}
+ })() ;
  
  function GetUrlParam( paramName )
***************
*** 141,145 ****
  function OnUploadCompleted( errorNumber, fileUrl, fileName, customMsg )
  {
! 	window.frames['frmUpload'].OnUploadCompleted( errorNumber, fileName ) ;
  }
  
--- 173,180 ----
  function OnUploadCompleted( errorNumber, fileUrl, fileName, customMsg )
  {
! 	if (errorNumber == "1")
! 		window.frames['frmUpload'].OnUploadCompleted( errorNumber, customMsg ) ;
! 	else
! 		window.frames['frmUpload'].OnUploadCompleted( errorNumber, fileName ) ;
  }
  

Index: frmresourcetype.html
===================================================================
RCS file: /cvsroot/geeklog/Geeklog-1.x/public_html/fckeditor/editor/filemanager/browser/default/frmresourcetype.html,v
retrieving revision 1.3
retrieving revision 1.4
diff -C2 -d -r1.3 -r1.4
*** frmresourcetype.html	9 Feb 2008 12:53:58 -0000	1.3
--- frmresourcetype.html	5 May 2008 00:35:25 -0000	1.4
***************
*** 2,6 ****
  <!--
   * FCKeditor - The text editor for Internet - http://www.fckeditor.net
!  * Copyright (C) 2003-2007 Frederico Caldeira Knabben
   *
   * == BEGIN LICENSE ==
--- 2,6 ----
  <!--
   * FCKeditor - The text editor for Internet - http://www.fckeditor.net
!  * Copyright (C) 2003-2008 Frederico Caldeira Knabben
   *
   * == BEGIN LICENSE ==

Index: frmresourceslist.html
===================================================================
RCS file: /cvsroot/geeklog/Geeklog-1.x/public_html/fckeditor/editor/filemanager/browser/default/frmresourceslist.html,v
retrieving revision 1.4
retrieving revision 1.5
diff -C2 -d -r1.4 -r1.5
*** frmresourceslist.html	9 Feb 2008 12:53:58 -0000	1.4
--- frmresourceslist.html	5 May 2008 00:35:25 -0000	1.5
***************
*** 2,6 ****
  <!--
   * FCKeditor - The text editor for Internet - http://www.fckeditor.net
!  * Copyright (C) 2003-2007 Frederico Caldeira Knabben
   *
   * == BEGIN LICENSE ==
--- 2,6 ----
  <!--
   * FCKeditor - The text editor for Internet - http://www.fckeditor.net
!  * Copyright (C) 2003-2008 Frederico Caldeira Knabben
   *
   * == BEGIN LICENSE ==
***************
*** 25,28 ****
--- 25,29 ----
  <head>
  	<link href="browser.css" type="text/css" rel="stylesheet" />
+ 	<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
  	<script type="text/javascript" src="js/common.js"></script>
  	<script type="text/javascript">
***************
*** 88,92 ****
  function OpenFile( fileUrl )
  {
! 	window.top.opener.SetUrl( encodeURI( fileUrl ) ) ;
  	window.top.close() ;
  	window.top.opener.focus() ;
--- 89,93 ----
  function OpenFile( fileUrl )
  {
! 	window.top.opener.SetUrl( encodeURI( fileUrl ).replace( '#', '%23' ) ) ;
  	window.top.close() ;
  	window.top.opener.focus() ;

Index: frmcreatefolder.html
===================================================================
RCS file: /cvsroot/geeklog/Geeklog-1.x/public_html/fckeditor/editor/filemanager/browser/default/frmcreatefolder.html,v
retrieving revision 1.3
retrieving revision 1.4
diff -C2 -d -r1.3 -r1.4
*** frmcreatefolder.html	9 Feb 2008 12:53:58 -0000	1.3
--- frmcreatefolder.html	5 May 2008 00:35:25 -0000	1.4
***************
*** 2,6 ****
  <!--
   * FCKeditor - The text editor for Internet - http://www.fckeditor.net
!  * Copyright (C) 2003-2007 Frederico Caldeira Knabben
   *
   * == BEGIN LICENSE ==
--- 2,6 ----
  <!--
   * FCKeditor - The text editor for Internet - http://www.fckeditor.net
!  * Copyright (C) 2003-2008 Frederico Caldeira Knabben
   *
   * == BEGIN LICENSE ==

Index: browser.css
===================================================================
RCS file: /cvsroot/geeklog/Geeklog-1.x/public_html/fckeditor/editor/filemanager/browser/default/browser.css,v
retrieving revision 1.3
retrieving revision 1.4
diff -C2 -d -r1.3 -r1.4
*** browser.css	9 Feb 2008 12:53:58 -0000	1.3
--- browser.css	5 May 2008 00:35:25 -0000	1.4
***************
*** 1,5 ****
  /*
   * FCKeditor - The text editor for Internet - http://www.fckeditor.net
!  * Copyright (C) 2003-2007 Frederico Caldeira Knabben
   *
   * == BEGIN LICENSE ==
--- 1,5 ----
  /*
   * FCKeditor - The text editor for Internet - http://www.fckeditor.net
!  * Copyright (C) 2003-2008 Frederico Caldeira Knabben
   *
   * == BEGIN LICENSE ==
***************
*** 87,89 ****
  {
  	background-image: url(images/Folder.gif);
! }
\ No newline at end of file
--- 87,89 ----
  {
  	background-image: url(images/Folder.gif);
! }

Index: frmupload.html
===================================================================
RCS file: /cvsroot/geeklog/Geeklog-1.x/public_html/fckeditor/editor/filemanager/browser/default/frmupload.html,v
retrieving revision 1.3
retrieving revision 1.4
diff -C2 -d -r1.3 -r1.4
*** frmupload.html	9 Feb 2008 12:53:58 -0000	1.3
--- frmupload.html	5 May 2008 00:35:25 -0000	1.4
***************
*** 2,6 ****
  <!--
   * FCKeditor - The text editor for Internet - http://www.fckeditor.net
!  * Copyright (C) 2003-2007 Frederico Caldeira Knabben
   *
   * == BEGIN LICENSE ==
--- 2,6 ----
  <!--
   * FCKeditor - The text editor for Internet - http://www.fckeditor.net
!  * Copyright (C) 2003-2008 Frederico Caldeira Knabben
   *
   * == BEGIN LICENSE ==
***************
*** 25,28 ****
--- 25,29 ----
  	<head>
  		<title>File Upload</title>
+ 		<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
  		<link href="browser.css" type="text/css" rel="stylesheet" />
  		<script type="text/javascript" src="js/common.js"></script>




More information about the geeklog-cvs mailing list