[geeklog-cvs] Geeklog-1.x/public_html/fckeditor _documentation.html, 1.5, 1.6 _upgrade.html, 1.1, 1.2 _whatsnew.html, 1.7, 1.8 _whatsnew_history.html, 1.1, 1.2 fckconfig.js, 1.11, 1.12 fckeditor.js, 1.7, 1.8 fckeditor.php, 1.6, 1.7 fckeditor_php4.php, 1.1, 1.2 fckeditor_php5.php, 1.1, 1.2 fckpackager.xml, 1.1, 1.2 fckstyles.xml, 1.4, 1.5 fcktemplates.xml, 1.6, 1.7 license.txt, 1.3, 1.4

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


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

Modified Files:
	_documentation.html _upgrade.html _whatsnew.html 
	_whatsnew_history.html fckconfig.js fckeditor.js fckeditor.php 
	fckeditor_php4.php fckeditor_php5.php fckpackager.xml 
	fckstyles.xml fcktemplates.xml license.txt 
Log Message:
Upgraded the FCKeditor to version 2.6 Final - latest release April 7/08

Index: fckeditor.php
===================================================================
RCS file: /cvsroot/geeklog/Geeklog-1.x/public_html/fckeditor/fckeditor.php,v
retrieving revision 1.6
retrieving revision 1.7
diff -C2 -d -r1.6 -r1.7
*** fckeditor.php	9 Feb 2008 12:53:56 -0000	1.6
--- fckeditor.php	5 May 2008 00:35:23 -0000	1.7
***************
*** 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,42 ****
   */
  
  function FCKeditor_IsCompatibleBrowser()
  {
! 	global $HTTP_USER_AGENT ;
! 
! 	if ( !isset( $_SERVER ) ) {
  		global $HTTP_SERVER_VARS ;
! 	    $_SERVER = $HTTP_SERVER_VARS ;
  	}
- 		
- 	if ( isset( $HTTP_USER_AGENT ) )
- 		$sAgent = $HTTP_USER_AGENT ;
- 	else
- 		$sAgent = $_SERVER['HTTP_USER_AGENT'] ;
  
  	if ( strpos($sAgent, 'MSIE') !== false && strpos($sAgent, 'mac') === false && strpos($sAgent, 'Opera') === false )
--- 26,50 ----
   */
  
+ /**
+  * Check if browser is compatible with FCKeditor.
+  * Return true if is compatible.
+  *
+  * @return boolean
+  */
  function FCKeditor_IsCompatibleBrowser()
  {
! 	if ( isset( $_SERVER ) ) {
! 		$sAgent = $_SERVER['HTTP_USER_AGENT'] ;
! 	}
! 	else {
  		global $HTTP_SERVER_VARS ;
! 		if ( isset( $HTTP_SERVER_VARS ) ) {
! 			$sAgent = $HTTP_SERVER_VARS['HTTP_USER_AGENT'] ;
! 		}
! 		else {
! 			global $HTTP_USER_AGENT ;
! 			$sAgent = $HTTP_USER_AGENT ;
! 		}
  	}
  
  	if ( strpos($sAgent, 'MSIE') !== false && strpos($sAgent, 'mac') === false && strpos($sAgent, 'Opera') === false )
***************
*** 61,65 ****
  	}
  	else
! 		return false ;	
  }
  
--- 69,73 ----
  	}
  	else
! 		return false ;
  }
  
***************
*** 68,71 ****
  else
  	include_once( 'fckeditor_php5.php' ) ;
- 
- ?>
--- 76,77 ----

Index: fckstyles.xml
===================================================================
RCS file: /cvsroot/geeklog/Geeklog-1.x/public_html/fckeditor/fckstyles.xml,v
retrieving revision 1.4
retrieving revision 1.5
diff -C2 -d -r1.4 -r1.5
*** fckstyles.xml	9 Feb 2008 12:53:56 -0000	1.4
--- fckstyles.xml	5 May 2008 00:35:23 -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 ==
***************
*** 69,75 ****
  	</Style>
  
- 	<Style name="Strong Emphasis" element="strong" />
- 	<Style name="Emphasis" element="em" />
- 
  	<Style name="Big" element="big" />
  	<Style name="Small" element="small" />
--- 69,72 ----
***************
*** 112,114 ****
  		<Attribute name="align" value="right" />
  	</Style>
! </Styles>
\ No newline at end of file
--- 109,111 ----
  		<Attribute name="align" value="right" />
  	</Style>
! </Styles>

Index: _documentation.html
===================================================================
RCS file: /cvsroot/geeklog/Geeklog-1.x/public_html/fckeditor/_documentation.html,v
retrieving revision 1.5
retrieving revision 1.6
diff -C2 -d -r1.5 -r1.6
*** _documentation.html	9 Feb 2008 12:53:56 -0000	1.5
--- _documentation.html	5 May 2008 00:35:23 -0000	1.6
***************
*** 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 ==
***************
*** 33,38 ****
  		FCKeditor Documentation</h1>
  	<p>
! 		You can find the official documentation for FCKeditor online, at <a href="http://wiki.fckeditor.net/">
! 			http://wiki.fckeditor.net/</a>.</p>
  </body>
  </html>
--- 33,38 ----
  		FCKeditor Documentation</h1>
  	<p>
! 		You can find the official documentation for FCKeditor online, at <a href="http://docs.fckeditor.net/">
! 			http://docs.fckeditor.net/</a>.</p>
  </body>
  </html>

Index: fcktemplates.xml
===================================================================
RCS file: /cvsroot/geeklog/Geeklog-1.x/public_html/fckeditor/fcktemplates.xml,v
retrieving revision 1.6
retrieving revision 1.7
diff -C2 -d -r1.6 -r1.7
*** fcktemplates.xml	9 Feb 2008 12:53:56 -0000	1.6
--- fcktemplates.xml	5 May 2008 00:35:23 -0000	1.7
***************
*** 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: fckeditor.js
===================================================================
RCS file: /cvsroot/geeklog/Geeklog-1.x/public_html/fckeditor/fckeditor.js,v
retrieving revision 1.7
retrieving revision 1.8
diff -C2 -d -r1.7 -r1.8
*** fckeditor.js	9 Feb 2008 12:53:56 -0000	1.7
--- fckeditor.js	5 May 2008 00:35:23 -0000	1.8
***************
*** 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 ==
***************
*** 60,65 ****
  FCKeditor.MinWidth = 750 ;
  
! FCKeditor.prototype.Version			= '2.5.1' ;
! FCKeditor.prototype.VersionBuild	= '17566' ;
  
  FCKeditor.prototype.Create = function()
--- 60,65 ----
  FCKeditor.MinWidth = 750 ;
  
! FCKeditor.prototype.Version			= '2.6' ;
! FCKeditor.prototype.VersionBuild	= '18638' ;
  
  FCKeditor.prototype.Create = function()
***************
*** 77,81 ****
  	}
  
! 	var sHtml = '<div>' ;
  
  	if ( !this.CheckBrowser || this._IsCompatibleBrowser() )
--- 77,81 ----
  	}
  
! 	var sHtml = '' ;
  
  	if ( !this.CheckBrowser || this._IsCompatibleBrowser() )
***************
*** 92,97 ****
  	}
  
- 	sHtml += '</div>' ;
- 
  	return sHtml ;
  }
--- 92,95 ----
***************
*** 206,216 ****
  	{
  		var editor = new FCKeditor( textarea.name ) ;
! 		
  		editor.Width = Math.max( textarea.offsetWidth, FCKeditor.MinWidth ) ;
  		editor.Height = Math.max( textarea.offsetHeight, FCKeditor.MinHeight ) ;
! 		
  		return editor ;
  	}
! 	
  	/**
  	 * Replace all <textarea> elements available in the document with FCKeditor
--- 204,214 ----
  	{
  		var editor = new FCKeditor( textarea.name ) ;
! 
  		editor.Width = Math.max( textarea.offsetWidth, FCKeditor.MinWidth ) ;
  		editor.Height = Math.max( textarea.offsetHeight, FCKeditor.MinHeight ) ;
! 
  		return editor ;
  	}
! 
  	/**
  	 * Replace all <textarea> elements available in the document with FCKeditor
***************
*** 245,249 ****
  			if ( !name || name.length == 0 )
  				continue ;
! 			
  			if ( typeof arguments[0] == 'string' )
  			{
--- 243,247 ----
  			if ( !name || name.length == 0 )
  				continue ;
! 
  			if ( typeof arguments[0] == 'string' )
  			{
***************
*** 290,294 ****
  	// Opera 9.50+
  	if ( window.opera && window.opera.version && parseFloat( window.opera.version() ) >= 9.5 )
! 			return true ;
  
  	// Safari 3+
--- 288,298 ----
  	// Opera 9.50+
  	if ( window.opera && window.opera.version && parseFloat( window.opera.version() ) >= 9.5 )
! 		return true ;
! 
! 	// Adobe AIR
! 	// Checked before Safari because AIR have the WebKit rich text editor
! 	// features from Safari 3.0.4, but the version reported is 420.
! 	if ( sAgent.indexOf( ' adobeair/' ) != -1 )
! 		return ( sAgent.match( / adobeair\/(\d+)/ )[1] >= 1 ) ;	// Build must be at least v1
  
  	// Safari 3+

Index: _upgrade.html
===================================================================
RCS file: /cvsroot/geeklog/Geeklog-1.x/public_html/fckeditor/_upgrade.html,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -d -r1.1 -r1.2
*** _upgrade.html	9 Feb 2008 12:53:56 -0000	1.1
--- _upgrade.html	5 May 2008 00:35:23 -0000	1.2
***************
*** 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 ==
***************
*** 33,38 ****
  		FCKeditor Upgrade</h1>
  	<p>
! 		Please check the following URL for notes regarding upgrade: <a href="http://wiki.fckeditor.net/Developer%27s_Guide/Upgrade">
! 			http://wiki.fckeditor.net/Developer%27s_Guide/Upgrade</a></p>
  </body>
  </html>
--- 33,39 ----
  		FCKeditor Upgrade</h1>
  	<p>
! 		Please check the following URL for notes regarding upgrade:<br />
! 		<a href="http://docs.fckeditor.net/FCKeditor_2.x/Developers_Guide/Installation/Upgrading">
! 			http://docs.fckeditor.net/FCKeditor_2.x/Developers_Guide/Installation/Upgrading</a></p>
  </body>
  </html>

Index: fckpackager.xml
===================================================================
RCS file: /cvsroot/geeklog/Geeklog-1.x/public_html/fckeditor/fckpackager.xml,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -d -r1.1 -r1.2
*** fckpackager.xml	9 Feb 2008 12:53:56 -0000	1.1
--- fckpackager.xml	5 May 2008 00:35:23 -0000	1.2
***************
*** 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 ==
***************
*** 28,49 ****
  	<Header><![CDATA[/*
   * FCKeditor - The text editor for Internet - http://www.fckeditor.net
!  * Copyright (C) 2003-2007 Frederico Caldeira Knabben
!  * 
   * == BEGIN LICENSE ==
!  * 
   * Licensed under the terms of any of the following licenses at your
   * choice:
!  * 
   *  - GNU General Public License Version 2 or later (the "GPL")
   *    http://www.gnu.org/licenses/gpl.html
!  * 
   *  - GNU Lesser General Public License Version 2.1 or later (the "LGPL")
   *    http://www.gnu.org/licenses/lgpl.html
!  * 
   *  - Mozilla Public License Version 1.1 or later (the "MPL")
   *    http://www.mozilla.org/MPL/MPL-1.1.html
!  * 
   * == END LICENSE ==
!  * 
   * This file has been compressed for better performance. The original source
   * can be found at "editor/_source".
--- 28,49 ----
  	<Header><![CDATA[/*
   * FCKeditor - The text editor for Internet - http://www.fckeditor.net
!  * Copyright (C) 2003-2008 Frederico Caldeira Knabben
!  *
   * == BEGIN LICENSE ==
!  *
   * Licensed under the terms of any of the following licenses at your
   * choice:
!  *
   *  - GNU General Public License Version 2 or later (the "GPL")
   *    http://www.gnu.org/licenses/gpl.html
!  *
   *  - GNU Lesser General Public License Version 2.1 or later (the "LGPL")
   *    http://www.gnu.org/licenses/lgpl.html
!  *
   *  - Mozilla Public License Version 1.1 or later (the "MPL")
   *    http://www.mozilla.org/MPL/MPL-1.1.html
!  *
   * == END LICENSE ==
!  *
   * This file has been compressed for better performance. The original source
   * can be found at "editor/_source".
***************
*** 99,103 ****
  		<File path="editor/_source/classes/fckstyle.js" />
  		<File path="editor/_source/internals/fckstyles.js" />
! 			  
  		<File path="editor/_source/internals/fcklisthandler.js" />
  		<File path="editor/_source/classes/fckelementpath.js" />
--- 99,103 ----
  		<File path="editor/_source/classes/fckstyle.js" />
  		<File path="editor/_source/internals/fckstyles.js" />
! 
  		<File path="editor/_source/internals/fcklisthandler.js" />
  		<File path="editor/_source/classes/fckelementpath.js" />
***************
*** 152,156 ****
  		<File path="editor/_source/internals/fcktoolbarset.js" />
  		<File path="editor/_source/internals/fckdialog.js" />
- 		<File path="editor/_source/internals/fckdialog_ie.js" />
  
  		<File path="editor/_source/classes/fckmenuitem.js" />
--- 152,155 ----
***************
*** 159,162 ****
--- 158,162 ----
  		<File path="editor/_source/classes/fckcontextmenu.js" />
  		<File path="editor/_source/internals/fck_contextmenu.js" />
+ 		<File path="editor/_source/classes/fckhtmliterator.js" />
  
  		<File path="editor/_source/classes/fckplugin.js" />
***************
*** 248,252 ****
  		<File path="editor/_source/internals/fcktoolbarset.js" />
  		<File path="editor/_source/internals/fckdialog.js" />
- 		<File path="editor/_source/internals/fckdialog_gecko.js" />
  
  		<File path="editor/_source/classes/fckmenuitem.js" />
--- 248,251 ----
***************
*** 255,258 ****
--- 254,258 ----
  		<File path="editor/_source/classes/fckcontextmenu.js" />
  		<File path="editor/_source/internals/fck_contextmenu.js" />
+ 		<File path="editor/_source/classes/fckhtmliterator.js" />
  
  		<File path="editor/_source/classes/fckplugin.js" />

Index: fckconfig.js
===================================================================
RCS file: /cvsroot/geeklog/Geeklog-1.x/public_html/fckeditor/fckconfig.js,v
retrieving revision 1.11
retrieving revision 1.12
diff -C2 -d -r1.11 -r1.12
*** fckconfig.js	9 Feb 2008 12:53:56 -0000	1.11
--- fckconfig.js	5 May 2008 00:35:23 -0000	1.12
***************
*** 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 ==
***************
*** 44,47 ****
--- 44,50 ----
  
  FCKConfig.SkinPath = FCKConfig.BasePath + 'skins/default/' ;
+ FCKConfig.SkinEditorCSS = '' ;	// FCKConfig.SkinPath + "|<minified css>" ;
+ FCKConfig.SkinDialogCSS = '' ;	// FCKConfig.SkinPath + "|<minified css>" ;
+ 
  FCKConfig.PreloadImages = [ FCKConfig.SkinPath + 'images/toolbar.start.gif', FCKConfig.SkinPath + 'images/toolbar.buttonarrow.gif' ] ;
  
***************
*** 123,126 ****
--- 126,130 ----
  	[ CTRL + 70 /*F*/, true ],
  	[ CTRL + 83 /*S*/, true ],
+ 	[ CTRL + 84 /*T*/, true ],
  	[ CTRL + 88 /*X*/, true ],
  	[ CTRL + 86 /*V*/, 'Paste' ],
***************
*** 136,141 ****
  	[ CTRL + 85 /*U*/, 'Underline' ],
  	[ CTRL + SHIFT + 83 /*S*/, 'Save' ],
! 	[ CTRL + ALT + 13 /*ENTER*/, 'FitWindow' ],
! 	[ CTRL + 9 /*TAB*/, 'Source' ]
  ] ;
  
--- 140,144 ----
  	[ CTRL + 85 /*U*/, 'Underline' ],
  	[ CTRL + SHIFT + 83 /*S*/, 'Save' ],
! 	[ CTRL + ALT + 13 /*ENTER*/, 'FitWindow' ]
  ] ;
  
***************
*** 190,194 ****
  FCKConfig.RemoveFormatTags = 'b,big,code,del,dfn,em,font,i,ins,kbd,q,samp,small,span,strike,strong,sub,sup,tt,u,var' ;
  
! FCKConfig.CustomStyles = 
  {
  	'Red Title'	: { Element : 'h3', Styles : { 'color' : 'Red' } }
--- 193,200 ----
  FCKConfig.RemoveFormatTags = 'b,big,code,del,dfn,em,font,i,ins,kbd,q,samp,small,span,strike,strong,sub,sup,tt,u,var' ;
  
! // Attributes that will be removed
! FCKConfig.RemoveAttributes = 'class,style,lang,width,height,align,hspace,valign' ;
! 
! FCKConfig.CustomStyles =
  {
  	'Red Title'	: { Element : 'h3', Styles : { 'color' : 'Red' } }
***************
*** 196,209 ****
  
  // Do not add, rename or remove styles here. Only apply definition changes.
! FCKConfig.CoreStyles = 
  {
  	// Basic Inline Styles.
! 	'Bold'			: { Element : 'b', Overrides : 'strong' },
! 	'Italic'		: { Element : 'i', Overrides : 'em' },
  	'Underline'		: { Element : 'u' },
  	'StrikeThrough'	: { Element : 'strike' },
  	'Subscript'		: { Element : 'sub' },
  	'Superscript'	: { Element : 'sup' },
! 	
  	// Basic Block Styles (Font Format Combo).
  	'p'				: { Element : 'p' },
--- 202,215 ----
  
  // Do not add, rename or remove styles here. Only apply definition changes.
! FCKConfig.CoreStyles =
  {
  	// Basic Inline Styles.
! 	'Bold'			: { Element : 'strong', Overrides : 'b' },
! 	'Italic'		: { Element : 'em', Overrides : 'i' },
  	'Underline'		: { Element : 'u' },
  	'StrikeThrough'	: { Element : 'strike' },
  	'Subscript'		: { Element : 'sub' },
  	'Superscript'	: { Element : 'sup' },
! 
  	// Basic Block Styles (Font Format Combo).
  	'p'				: { Element : 'p' },
***************
*** 217,244 ****
  	'h5'			: { Element : 'h5' },
  	'h6'			: { Element : 'h6' },
! 	
  	// Other formatting features.
! 	'FontFace' : 
! 	{ 
! 		Element		: 'span', 
! 		Styles		: { 'font-family' : '#("Font")' }, 
  		Overrides	: [ { Element : 'font', Attributes : { 'face' : null } } ]
  	},
! 	
  	'Size' :
! 	{ 
! 		Element		: 'span', 
! 		Styles		: { 'font-size' : '#("Size","fontSize")' }, 
  		Overrides	: [ { Element : 'font', Attributes : { 'size' : null } } ]
  	},
! 	
  	'Color' :
! 	{ 
! 		Element		: 'span', 
! 		Styles		: { 'color' : '#("Color","color")' }, 
  		Overrides	: [ { Element : 'font', Attributes : { 'color' : null } } ]
  	},
! 	
! 	'BackColor'		: { Element : 'span', Styles : { 'background-color' : '#("Color","color")' } }
  };
  
--- 223,252 ----
  	'h5'			: { Element : 'h5' },
  	'h6'			: { Element : 'h6' },
! 
  	// Other formatting features.
! 	'FontFace' :
! 	{
! 		Element		: 'span',
! 		Styles		: { 'font-family' : '#("Font")' },
  		Overrides	: [ { Element : 'font', Attributes : { 'face' : null } } ]
  	},
! 
  	'Size' :
! 	{
! 		Element		: 'span',
! 		Styles		: { 'font-size' : '#("Size","fontSize")' },
  		Overrides	: [ { Element : 'font', Attributes : { 'size' : null } } ]
  	},
! 
  	'Color' :
! 	{
! 		Element		: 'span',
! 		Styles		: { 'color' : '#("Color","color")' },
  		Overrides	: [ { Element : 'font', Attributes : { 'color' : null } } ]
  	},
! 
! 	'BackColor'		: { Element : 'span', Styles : { 'background-color' : '#("Color","color")' } },
! 
! 	'SelectionHighlight' : { Element : 'span', Styles : { 'background-color' : 'navy', 'color' : 'white' } }
  };
  
***************
*** 270,284 ****
  
  FCKConfig.LinkBrowser = true ;
! FCKConfig.LinkBrowserURL = FCKConfig.BasePath + 'filemanager/browser/default/browser.html?Connector=../../connectors/' + _FileBrowserLanguage + '/connector.' + _FileBrowserExtension ;
  FCKConfig.LinkBrowserWindowWidth	= FCKConfig.ScreenWidth * 0.7 ;		// 70%
  FCKConfig.LinkBrowserWindowHeight	= FCKConfig.ScreenHeight * 0.7 ;	// 70%
  
  FCKConfig.ImageBrowser = true ;
! FCKConfig.ImageBrowserURL = FCKConfig.BasePath + 'filemanager/browser/default/browser.html?Type=Image&Connector=../../connectors/' + _FileBrowserLanguage + '/connector.' + _FileBrowserExtension ;
  FCKConfig.ImageBrowserWindowWidth  = FCKConfig.ScreenWidth * 0.7 ;	// 70% ;
  FCKConfig.ImageBrowserWindowHeight = FCKConfig.ScreenHeight * 0.7 ;	// 70% ;
  
  FCKConfig.FlashBrowser = true ;
! FCKConfig.FlashBrowserURL = FCKConfig.BasePath + 'filemanager/browser/default/browser.html?Type=Flash&Connector=../../connectors/' + _FileBrowserLanguage + '/connector.' + _FileBrowserExtension ;
  FCKConfig.FlashBrowserWindowWidth  = FCKConfig.ScreenWidth * 0.7 ;	//70% ;
  FCKConfig.FlashBrowserWindowHeight = FCKConfig.ScreenHeight * 0.7 ;	//70% ;
--- 278,292 ----
  
  FCKConfig.LinkBrowser = true ;
! FCKConfig.LinkBrowserURL = FCKConfig.BasePath + 'filemanager/browser/default/browser.html?Connector=' + encodeURIComponent( FCKConfig.BasePath + 'filemanager/connectors/' + _FileBrowserLanguage + '/connector.' + _FileBrowserExtension ) ;
  FCKConfig.LinkBrowserWindowWidth	= FCKConfig.ScreenWidth * 0.7 ;		// 70%
  FCKConfig.LinkBrowserWindowHeight	= FCKConfig.ScreenHeight * 0.7 ;	// 70%
  
  FCKConfig.ImageBrowser = true ;
! FCKConfig.ImageBrowserURL = FCKConfig.BasePath + 'filemanager/browser/default/browser.html?Type=Image&Connector=' + encodeURIComponent( FCKConfig.BasePath + 'filemanager/connectors/' + _FileBrowserLanguage + '/connector.' + _FileBrowserExtension ) ;
  FCKConfig.ImageBrowserWindowWidth  = FCKConfig.ScreenWidth * 0.7 ;	// 70% ;
  FCKConfig.ImageBrowserWindowHeight = FCKConfig.ScreenHeight * 0.7 ;	// 70% ;
  
  FCKConfig.FlashBrowser = true ;
! FCKConfig.FlashBrowserURL = FCKConfig.BasePath + 'filemanager/browser/default/browser.html?Type=Flash&Connector=' + encodeURIComponent( FCKConfig.BasePath + 'filemanager/connectors/' + _FileBrowserLanguage + '/connector.' + _FileBrowserExtension ) ;
  FCKConfig.FlashBrowserWindowWidth  = FCKConfig.ScreenWidth * 0.7 ;	//70% ;
  FCKConfig.FlashBrowserWindowHeight = FCKConfig.ScreenHeight * 0.7 ;	//70% ;
***************
*** 303,306 ****
  FCKConfig.SmileyColumns = 8 ;
  FCKConfig.SmileyWindowWidth		= 320 ;
! FCKConfig.SmileyWindowHeight	= 240 ;
  
--- 311,316 ----
  FCKConfig.SmileyColumns = 8 ;
  FCKConfig.SmileyWindowWidth		= 320 ;
! FCKConfig.SmileyWindowHeight	= 210 ;
  
+ FCKConfig.BackgroundBlockerColor = '#ffffff' ;
+ FCKConfig.BackgroundBlockerOpacity = 0.50 ;

Index: fckeditor_php4.php
===================================================================
RCS file: /cvsroot/geeklog/Geeklog-1.x/public_html/fckeditor/fckeditor_php4.php,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -d -r1.1 -r1.2
*** fckeditor_php4.php	9 Feb 2008 12:53:56 -0000	1.1
--- fckeditor_php4.php	5 May 2008 00:35:23 -0000	1.2
***************
*** 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 ==
***************
*** 28,40 ****
  class FCKeditor
  {
  	var $InstanceName ;
  	var $BasePath ;
  	var $Width ;
  	var $Height ;
  	var $ToolbarSet ;
  	var $Value ;
  	var $Config ;
  
! 	// PHP 4 Constructor
  	function FCKeditor( $instanceName )
  	{
--- 28,85 ----
  class FCKeditor
  {
+ 	/**
+ 	 * Name of the FCKeditor instance.
+ 	 *
+ 	 * @access protected
+ 	 * @var string
+ 	 */
  	var $InstanceName ;
+ 	/**
+ 	 * Path to FCKeditor relative to the document root.
+ 	 *
+ 	 * @var string
+ 	 */
  	var $BasePath ;
+ 	/**
+ 	 * Width of the FCKeditor.
+ 	 * Examples: 100%, 600
+ 	 *
+ 	 * @var mixed
+ 	 */
  	var $Width ;
+ 	/**
+ 	 * Height of the FCKeditor.
+ 	 * Examples: 400, 50%
+ 	 *
+ 	 * @var mixed
+ 	 */
  	var $Height ;
+ 	/**
+ 	 * Name of the toolbar to load.
+ 	 *
+ 	 * @var string
+ 	 */
  	var $ToolbarSet ;
+ 	/**
+ 	 * Initial value.
+ 	 *
+ 	 * @var string
+ 	 */
  	var $Value ;
+ 	/**
+ 	 * This is where additional configuration can be passed.
+ 	 * Example:
+ 	 * $oFCKeditor->Config['EnterMode'] = 'br';
+ 	 *
+ 	 * @var array
+ 	 */
  	var $Config ;
  
! 	/**
! 	 * Main Constructor.
! 	 * Refer to the _samples/php directory for examples.
! 	 *
! 	 * @param string $instanceName
! 	 */
  	function FCKeditor( $instanceName )
  	{
***************
*** 49,52 ****
--- 94,101 ----
  	}
  
+ 	/**
+ 	 * Display FCKeditor.
+ 	 *
+ 	 */
  	function Create()
  	{
***************
*** 54,66 ****
  	}
  
  	function CreateHtml()
  	{
  		$HtmlValue = htmlspecialchars( $this->Value ) ;
  
! 		$Html = '<div>' ;
! 		
  		if ( !isset( $_GET ) ) {
  			global $HTTP_GET_VARS ;
! 		    $_GET = $HTTP_GET_VARS ;
  		}
  
--- 103,120 ----
  	}
  
+ 	/**
+ 	 * Return the HTML code required to run FCKeditor.
+ 	 *
+ 	 * @return string
+ 	 */
  	function CreateHtml()
  	{
  		$HtmlValue = htmlspecialchars( $this->Value ) ;
  
! 		$Html = '' ;
! 
  		if ( !isset( $_GET ) ) {
  			global $HTTP_GET_VARS ;
! 			$_GET = $HTTP_GET_VARS ;
  		}
  
***************
*** 101,109 ****
  		}
  
- 		$Html .= '</div>' ;
- 
  		return $Html ;
  	}
  
  	function IsCompatible()
  	{
--- 155,166 ----
  		}
  
  		return $Html ;
  	}
  
+ 	/**
+ 	 * Returns true if browser is compatible with FCKeditor.
+ 	 *
+ 	 * @return boolean
+ 	 */
  	function IsCompatible()
  	{
***************
*** 111,114 ****
--- 168,177 ----
  	}
  
+ 	/**
+ 	 * Get settings from Config array as a single string.
+ 	 *
+ 	 * @access protected
+ 	 * @return string
+ 	 */
  	function GetConfigFieldString()
  	{
***************
*** 134,137 ****
--- 197,208 ----
  	}
  
+ 	/**
+ 	 * Encode characters that may break the configuration string
+ 	 * generated by GetConfigFieldString().
+ 	 *
+ 	 * @access protected
+ 	 * @param string $valueToEncode
+ 	 * @return string
+ 	 */
  	function EncodeConfig( $valueToEncode )
  	{
***************
*** 144,147 ****
  	}
  }
- 
- ?>
--- 215,216 ----

Index: fckeditor_php5.php
===================================================================
RCS file: /cvsroot/geeklog/Geeklog-1.x/public_html/fckeditor/fckeditor_php5.php,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -d -r1.1 -r1.2
*** fckeditor_php5.php	9 Feb 2008 12:53:56 -0000	1.1
--- fckeditor_php5.php	5 May 2008 00:35:23 -0000	1.2
***************
*** 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 ==
***************
*** 28,41 ****
  class FCKeditor
  {
! 	var $InstanceName ;
! 	var $BasePath ;
! 	var $Width ;
! 	var $Height ;
! 	var $ToolbarSet ;
! 	var $Value ;
! 	var $Config ;
  
! 	// PHP 5 Constructor (by Marcus Bointon <coolbru at users.sourceforge.net>)
! 	function __construct( $instanceName )
   	{
  		$this->InstanceName	= $instanceName ;
--- 28,86 ----
  class FCKeditor
  {
! 	/**
! 	 * Name of the FCKeditor instance.
! 	 *
! 	 * @access protected
! 	 * @var string
! 	 */
! 	public $InstanceName ;
! 	/**
! 	 * Path to FCKeditor relative to the document root.
! 	 *
! 	 * @var string
! 	 */
! 	public $BasePath ;
! 	/**
! 	 * Width of the FCKeditor.
! 	 * Examples: 100%, 600
! 	 *
! 	 * @var mixed
! 	 */
! 	public $Width ;
! 	/**
! 	 * Height of the FCKeditor.
! 	 * Examples: 400, 50%
! 	 *
! 	 * @var mixed
! 	 */
! 	public $Height ;
! 	/**
! 	 * Name of the toolbar to load.
! 	 *
! 	 * @var string
! 	 */
! 	public $ToolbarSet ;
! 	/**
! 	 * Initial value.
! 	 *
! 	 * @var string
! 	 */
! 	public $Value ;
! 	/**
! 	 * This is where additional configuration can be passed.
! 	 * Example:
! 	 * $oFCKeditor->Config['EnterMode'] = 'br';
! 	 *
! 	 * @var array
! 	 */
! 	public $Config ;
  
! 	/**
! 	 * Main Constructor.
! 	 * Refer to the _samples/php directory for examples.
! 	 *
! 	 * @param string $instanceName
! 	 */
! 	public function __construct( $instanceName )
   	{
  		$this->InstanceName	= $instanceName ;
***************
*** 49,62 ****
  	}
  
! 	function Create()
  	{
  		echo $this->CreateHtml() ;
  	}
  
! 	function CreateHtml()
  	{
  		$HtmlValue = htmlspecialchars( $this->Value ) ;
  
! 		$Html = '<div>' ;
  
  		if ( $this->IsCompatible() )
--- 94,116 ----
  	}
  
! 	/**
! 	 * Display FCKeditor.
! 	 *
! 	 */
! 	public function Create()
  	{
  		echo $this->CreateHtml() ;
  	}
  
! 	/**
! 	 * Return the HTML code required to run FCKeditor.
! 	 *
! 	 * @return string
! 	 */
! 	public function CreateHtml()
  	{
  		$HtmlValue = htmlspecialchars( $this->Value ) ;
  
! 		$Html = '' ;
  
  		if ( $this->IsCompatible() )
***************
*** 96,110 ****
  		}
  
- 		$Html .= '</div>' ;
- 
  		return $Html ;
  	}
  
! 	function IsCompatible()
  	{
  		return FCKeditor_IsCompatibleBrowser() ;
  	}
  
! 	function GetConfigFieldString()
  	{
  		$sParams = '' ;
--- 150,173 ----
  		}
  
  		return $Html ;
  	}
  
! 	/**
! 	 * Returns true if browser is compatible with FCKeditor.
! 	 *
! 	 * @return boolean
! 	 */
! 	public function IsCompatible()
  	{
  		return FCKeditor_IsCompatibleBrowser() ;
  	}
  
! 	/**
! 	 * Get settings from Config array as a single string.
! 	 *
! 	 * @access protected
! 	 * @return string
! 	 */
! 	public function GetConfigFieldString()
  	{
  		$sParams = '' ;
***************
*** 129,133 ****
  	}
  
! 	function EncodeConfig( $valueToEncode )
  	{
  		$chars = array(
--- 192,204 ----
  	}
  
! 	/**
! 	 * Encode characters that may break the configuration string
! 	 * generated by GetConfigFieldString().
! 	 *
! 	 * @access protected
! 	 * @param string $valueToEncode
! 	 * @return string
! 	 */
! 	public function EncodeConfig( $valueToEncode )
  	{
  		$chars = array(
***************
*** 139,142 ****
  	}
  }
- 
- ?>
\ No newline at end of file
--- 210,211 ----

Index: license.txt
===================================================================
RCS file: /cvsroot/geeklog/Geeklog-1.x/public_html/fckeditor/license.txt,v
retrieving revision 1.3
retrieving revision 1.4
diff -C2 -d -r1.3 -r1.4
*** license.txt	9 Feb 2008 12:53:56 -0000	1.3
--- license.txt	5 May 2008 00:35:23 -0000	1.4
***************
*** 1,4 ****
  FCKeditor - The text editor for Internet - http://www.fckeditor.net
! Copyright (C) 2003-2007 Frederico Caldeira Knabben
  
  Licensed under the terms of any of the following licenses at your
--- 1,4 ----
  FCKeditor - The text editor for Internet - http://www.fckeditor.net
! Copyright (C) 2003-2008 Frederico Caldeira Knabben
  
  Licensed under the terms of any of the following licenses at your
***************
*** 1245,1247 ****
       use the text of this Exhibit A rather than the text found in the
       Original Code Source Code for Your Modifications.]
- 
--- 1245,1246 ----

Index: _whatsnew.html
===================================================================
RCS file: /cvsroot/geeklog/Geeklog-1.x/public_html/fckeditor/_whatsnew.html,v
retrieving revision 1.7
retrieving revision 1.8
diff -C2 -d -r1.7 -r1.8
*** _whatsnew.html	9 Feb 2008 12:53:56 -0000	1.7
--- _whatsnew.html	5 May 2008 00:35:23 -0000	1.8
***************
*** 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 ==
***************
*** 34,69 ****
  		FCKeditor ChangeLog - What's New?</h1>
  	<h3>
! 		Version 2.5.1</h3>
  	<p>
  		New Features and Improvements:</p>
  	<ul>
! 		<li><strong>FCKeditor.Net 2.5</strong> compatibility.</li>
! 		<li>JavaScript integration file:
! 			<ul>
! 				<li>The new "<strong>FCKeditor.ReplaceAllTextareas</strong>" function is being introduced,
! 					making it possible to replace many (or unknown) <textarea> elements in a single
! 					call. The replacement can be also filtered by CSS class name, or by a custom function
! 					evaluator. </li>
! 				<li>It is now possible to set the default BasePath for all editor instances by setting
! 					<strong>FCKeditor.BasePath</strong>. This is extremely useful when working with
! 					the ReplaceAllTextareas function. </li>
! 			</ul>
! 		</li>
  	</ul>
  	<p>
  		Fixed Bugs:</p>
  	<ul>
! 		<li>[<a href="http://dev.fckeditor.net/ticket/339" target="_blank">#339</a>] [<a
! 			href="http://dev.fckeditor.net/ticket/681" target="_blank">#681</a>] The SpellerPages
! 			spell checker will now completely ignore the presence of HTML tags in the text.
! 		</li>
! 		<li>[<a href="http://dev.fckeditor.net/ticket/1643" target="_blank">#1643</a>] Resolved
! 			several "strict warning" messages in Firefox when running FCKeditor. </li>
! 		<li>[<a href="http://dev.fckeditor.net/ticket/1603" target="_blank">#1603</a>] Certain
! 			specific markup was making FCKeditor entering in a loop, blocking its execution.
! 		</li>
! 		<li>[<a href="http://dev.fckeditor.net/ticket/1664" target="_blank">#1664</a>] The ENTER
! 			key will not any more swap the order of the tags when hit at the end of paragraphs.
  		</li>
  	</ul>
  	<p>
--- 34,289 ----
  		FCKeditor ChangeLog - What's New?</h1>
  	<h3>
! 		Version 2.6</h3>
! 	<p>
! 		No changes. The stabilization of the 2.6 RC was completed successfully, as expected.</p>
! 	<h3>
! 		Version 2.6 RC</h3>
  	<p>
  		New Features and Improvements:</p>
  	<ul>
! 		<li>[<a target="_blank" href="http://dev.fckeditor.net/ticket/2017">#2017</a>] The FCKeditorAPI.Instances
! 			object can now be used to access all FCKeditor instances available in the page.</li>
! 		<li>[<a target="_blank" href="http://dev.fckeditor.net/ticket/1980">#1980</a>] <span
! 			style="color: #ff0000">Attention:</span> By default, the editor now produces <strong>
! 			and <em> instead of <b> and <i>.</li>
  	</ul>
  	<p>
  		Fixed Bugs:</p>
  	<ul>
! 		<li>[<a target="_blank" href="http://dev.fckeditor.net/ticket/1924">#1924</a>] The dialog
! 			close button is now correctly positioned in IE in RTL languages.</li>
! 		<li>[<a target="_blank" href="http://dev.fckeditor.net/ticket/1933">#1933</a>] Placeholder
! 			dialog will now display the placeholder value correctly in IE.</li>
! 		<li>[<a target="_blank" href="http://dev.fckeditor.net/ticket/957">#957</a>] Pressing
! 			Enter or typing after a placeholder with the placeholder plugin will no longer generate
! 			colored text.</li>
! 		<li>[<a target="_blank" href="http://dev.fckeditor.net/ticket/1952">#1952</a>] Fixed
! 			an issue in FCKTools.FixCssUrls that, other than wrong, was breaking Opera.</li>
! 		<li>[<a target="_blank" href="http://dev.fckeditor.net/ticket/1695">#1695</a>] Removed
! 			Ctrl-Tab hotkey for Source mode and allowed Ctrl-T to work in Firefox.</li>
! 		<li>[<a target="_blank" href="http://dev.fckeditor.net/ticket/1666">#1666</a>] Fixed
! 			permission denied errors during opening popup menus in IE6 under domain relaxation
! 			mode.</li>
! 		<li>[<a target="_blank" href="http://dev.fckeditor.net/ticket/1934">#1934</a>] Fixed
! 			JavaScript errors when calling Selection.EnsureSelection() in dialogs.</li>
! 		<li>[<a target="_blank" href="http://dev.fckeditor.net/ticket/1920">#1920</a>] Fixed
! 			SSL warning message when opening image and flash dialogs under HTTPS in IE6.</li>
! 		<li>[<a target="_blank" href="http://dev.fckeditor.net/ticket/1955">#1955</a>] [<a
! 			target="_blank" href="http://dev.fckeditor.net/ticket/1981">#1981</a>] [<a target="_blank"
! 				href="http://dev.fckeditor.net/ticket/1985">#1985</a>] [<a target="_blank" href="http://dev.fckeditor.net/ticket/1989">#1989</a>]
! 			Fixed XHTML source formatting errors in non-IE browsers.</li>
! 		<li>[<a target="_blank" href="http://dev.fckeditor.net/ticket/2000">#2000</a>] The #
! 			character is now properly encoded in file names returned by the File Browser.</li>
! 		<li>[<a target="_blank" href="http://dev.fckeditor.net/ticket/1945">#1945</a>] New folders
! 			and file names are now properly sanitized against control characters. </li>
! 		<li>[<a target="_blank" href="http://dev.fckeditor.net/ticket/1944">#1944</a>] Backslash
! 			character is now disallowed in current folder path.</li>
! 		<li>[<a target="_blank" href="http://dev.fckeditor.net/ticket/1055">#1055</a>] Added
! 			logic to override JavaScript errors occurring inside the editing frame due to user
! 			added JavaScript code.</li>
! 		<li>[<a target="_blank" href="http://dev.fckeditor.net/ticket/1647">#1647</a>] Hitting
! 			ENTER on list items containing block elements will now create new list item elements,
! 			instead of adding further blocks to the same list item.</li>
! 		<li>[<a target="_blank" href="http://dev.fckeditor.net/ticket/1411">#1411</a>] Label
! 			only combos now get properly grayed out when moving to source view.</li>
! 		<li>[<a target="_blank" href="http://dev.fckeditor.net/ticket/2009">#2009</a>] Fixed
! 			an important bug regarding styles removal on styled text boundaries, introduced
! 			with the 2.6 Beta 1. </li>
! 		<li>[<a target="_blank" href="http://dev.fckeditor.net/ticket/2011">#2011</a>] Internal
! 			CSS <style> tags where being outputted when FullPage=true.</li>
! 		<li>[<a target="_blank" href="http://dev.fckeditor.net/ticket/2016">#2016</a>] The Link
! 			dialog now properly selects the first field when opening it to modify mailto or
! 			anchor links. This problem was also throwing an error in IE.</li>
! 		<li>[<a target="_blank" href="http://dev.fckeditor.net/ticket/2021">#2021</a>] The caret
! 			will no longer remain behind in the editing area when the placeholder dialog is
! 			opened.</li>
! 		<li>[<a target="_blank" href="http://dev.fckeditor.net/ticket/2024">#2024</a>] Fixed
! 			JavaScript error in IE when the user tries to open dialogs in Source mode.</li>
! 		<li>[<a target="_blank" href="http://dev.fckeditor.net/ticket/1853">#1853</a>] Setting
! 			ShiftEnterMode to p or div now works correctly when EnterMode is br.</li>
! 		<li>[<a target="_blank" href="http://dev.fckeditor.net/ticket/1838">#1838</a>] Fixed
! 			the issue where context menus sometimes don't disappear after selecting an option.
  		</li>
+ 		<li>[<a target="_blank" href="http://dev.fckeditor.net/ticket/2028">#2028</a>] Fixed
+ 			JavaScript error when EnterMode=br and user tries to insert a page break.</li>
+ 		<li>[<a target="_blank" href="http://dev.fckeditor.net/ticket/2002">#2002</a>] Fixed
+ 			the issue where the maximize editor button does not vertically expand the editing
+ 			area in Firefox.</li>
+ 		<li>[<a target="_blank" href="http://dev.fckeditor.net/ticket/1842">#1842</a>] PHP integration:
+ 			fixed filename encoding problems in file browser.</li>
+ 		<li>[<a target="_blank" href="http://dev.fckeditor.net/ticket/1832">#1832</a>] Calling
+ 			FCK.InsertHtml() in non-IE browsers would now activate the document processor as
+ 			expected.</li>
+ 		<li>[<a target="_blank" href="http://dev.fckeditor.net/ticket/1998">#1998</a>] The native
+ 			XMLHttpRequest class is now used in IE, whenever it is available.</li>
+ 		<li>[<a target="_blank" href="http://dev.fckeditor.net/ticket/1792">#1792</a>] In IE,
+ 			the browser was able to enter in an infinite loop when working with multiple editors
+ 			in the same page. </li>
+ 		<li>[<a target="_blank" href="http://dev.fckeditor.net/ticket/1948">#1948</a>] Some
+ 			CSS rules are reset to dialog elements to avoid conflict with the page CSS.</li>
+ 		<li>[<a target="_blank" href="http://dev.fckeditor.net/ticket/1965">#1965</a>] IE was
+ 			having problems with SpellerPages, causing some errors to be thrown when completing
+ 			the spell checking in some situations.</li>
+ 		<li>[<a target="_blank" href="http://dev.fckeditor.net/ticket/2042">#2042</a>] The FitWindow
+ 			command was throwing an error if executed in an editor where its relative button
+ 			is not present in the toolbar.</li>
+ 		<li>[<a target="_blank" href="http://dev.fckeditor.net/ticket/922">#922</a>] Implemented
+ 			a generic document processor for <OBJECT> and <EMBED> tags.</li>
+ 		<li>[<a target="_blank" href="http://dev.fckeditor.net/ticket/1831">#1831</a>] Fixed
+ 			the issue where the placeholder icon for <EMBED> tags does not always show
+ 			up in IE7.</li>
+ 		<li>[<a target="_blank" href="http://dev.fckeditor.net/ticket/2049">#2049</a>] Fixed
+ 			a deleted cursor CSS attribute in the minified CSS inside fck_dialog_common.js.</li>
+ 		<li>[<a target="_blank" href="http://dev.fckeditor.net/ticket/1806">#1806</a>] In IE,
+ 			the caret will not any more move to the previous line when selecting a Format style
+ 			inside an empty paragraph.</li>
+ 		<li>[<a target="_blank" href="http://dev.fckeditor.net/ticket/1990">#1990</a>] In IE,
+ 			dialogs using API calls which deals with the selection, like InsertHtml now can
+ 			be sure the selection will be placed in the correct position.</li>
+ 		<li>[<a target="_blank" href="http://dev.fckeditor.net/ticket/1997">#1997</a>] With
+ 			IE, the first character of table captions where being lost on table creation.</li>
+ 		<li>The selection and cursor position was not being properly handled when creating some
+ 			elements like forms and tables.</li>
+ 		<li>[<a target="_blank" href="http://dev.fckeditor.net/ticket/662">#662</a>] In the
+ 			Perl sample files, the GetServerPath function will now calculate the path properly.</li>
+ 	</ul>
+ 	<h3>
+ 		Version 2.6 Beta 1</h3>
+ 	<p>
+ 		New Features and Improvements:</p>
+ 	<ul>
+ 		<li>[<a target="_blank" href="http://dev.fckeditor.net/ticket/35">#35</a>] <strong>New
+ 			(and cool!) floating dialog system</strong>, avoiding problems with popup blockers
+ 			and enhancing the editor usability.</li>
+ 		<li>[<a target="_blank" href="http://dev.fckeditor.net/ticket/1886">#1886</a>] <strong>
+ 			Adobe AIR</strong> compatibility.</li>
+ 		<li>[<a target="_blank" href="http://dev.fckeditor.net/ticket/123">#123</a>] Full support
+ 			for <strong>document.domain</strong> with automatic domain detection.</li>
+ 		<li>[<a target="_blank" href="http://dev.fckeditor.net/ticket/1622">#1622</a>] New <strong>
+ 			inline CSS cache</strong> feature, making it possible to avoid downloading the CSS
+ 			files for the editing area and skins. For that, it is enough to set the EditorAreaCSS,
+ 			SkinEditorCSS and SkinDialogCSS to string values in the format "/absolute/path/for/urls/|<minified
+ 			CSS styles". All internal CSS links are already using this feature. </li>
+ 		<li>New language file for <strong>Canadian French</strong>.</li>
+ 	</ul>
+ 	<p>
+ 		Fixed Bugs:</p>
+ 	<ul>
+ 		<li>[<a target="_blank" href="http://dev.fckeditor.net/ticket/1643">#1643</a>] Resolved
+ 			several "strict warning" messages in Firefox when running FCKeditor.</li>
+ 		<li>[<a target="_blank" href="http://dev.fckeditor.net/ticket/1522">#1522</a>] The ENTER
+ 			key will now work properly in IE with the cursor at the start of a formatted block.</li>
+ 		<li>[<a target="_blank" href="http://dev.fckeditor.net/ticket/1503">#1503</a>] It's
+ 			possible to define in the Styles that a Style (with an empty class) must be shown
+ 			selected only when no class is present in the current element, and selecting that
+ 			item will clear the current class (it does apply to any attribute, not only classes).</li>
+ 		<li>[<a target="_blank" href="http://dev.fckeditor.net/ticket/191">#191</a>] The scrollbars
+ 			are now being properly shown in Firefox Mac when placing FCKeditor inside a hidden
+ 			div.</li>
+ 		<li>[<a target="_blank" href="http://dev.fckeditor.net/ticket/503">#503</a>] Orphaned
+ 			<li> elements now get properly enclosed in a <ul> on output.</li>
+ 		<li>[<a target="_blank" href="http://dev.fckeditor.net/ticket/309">#309</a>] The ENTER
+ 			key will not any more break <button> elements at the beginning of paragraphs.</li>
+ 		<li>[<a target="_blank" href="http://dev.fckeditor.net/ticket/1654">#1654</a>] The editor
+ 			was not loading on a specific unknown situation. The breaking point has been removed.</li>
+ 		<li>[<a target="_blank" href="http://dev.fckeditor.net/ticket/1707">#1707</a>] The editor
+ 			no longer hangs when operating on documents imported from Microsoft Word.</li>
+ 		<li>[<a target="_blank" href="http://dev.fckeditor.net/ticket/1514">#1514</a>] Floating
+ 			panels attached to a shared toolbar among multiple FCKeditor instances are no longer
+ 			misplaced when the editing areas are absolutely or relatively positioned.</li>
+ 		<li>[<a target="_blank" href="http://dev.fckeditor.net/ticket/1715">#1715</a>] The ShowDropDialog
+ 			is now enforced only when ForcePasteAsPlainText = true.</li>
+ 		<li>[<a target="_blank" href="http://dev.fckeditor.net/ticket/1336">#1336</a>] Sometimes
+ 			the autogrow plugin didn't work properly in Firefox.</li>
+ 		<li>[<a target="_blank" href="http://dev.fckeditor.net/ticket/1728">#1728</a>] External
+ 			toolbars are now properly sized in Opera.</li>
+ 		<li>[<a target="_blank" href="http://dev.fckeditor.net/ticket/1782">#1782</a>] Clicking
+ 			on radio buttons or checkboxes in the editor in IE will no longer cause lockups
+ 			in IE.</li>
+ 		<li>[<a target="_blank" href="http://dev.fckeditor.net/ticket/805">#805</a>] The FCKConfig.Keystrokes
+ 			commands where executed even if the command itself was disabled.</li>
+ 		<li>[<a target="_blank" href="http://dev.fckeditor.net/ticket/982">#982</a>] The button
+ 			to empty the box in the "Paste from Word" has been removed as it leads to confusion
+ 			for some users.</li>
+ 		<li>[<a target="_blank" href="http://dev.fckeditor.net/ticket/1682">#1682</a>] Editing
+ 			control elements in Firefox, Opera and Safari now works properly.</li>
+ 		<li>[<a target="_blank" href="http://dev.fckeditor.net/ticket/1613">#1613</a>] The editor
+ 			was surrounded by a <div> element that wasn't really needed.</li>
+ 		<li>[<a target="_blank" href="http://dev.fckeditor.net/ticket/676">#676</a>] If a form
+ 			control was moved in IE after creating it, then it did lose its name.</li>
+ 		<li>[<a target="_blank" href="http://dev.fckeditor.net/ticket/738">#738</a>] It wasn't
+ 			possible to change the type of an existing button.</li>
+ 		<li>[<a target="_blank" href="http://dev.fckeditor.net/ticket/1854">#1854</a>] Indentation
+ 			now works inside table cells.</li>
+ 		<li>[<a target="_blank" href="http://dev.fckeditor.net/ticket/1717">#1717</a>] The editor
+ 			was entering on looping on some specific cases when dealing with invalid source
+ 			markup.</li>
+ 		<li>[<a target="_blank" href="http://dev.fckeditor.net/ticket/1530">#1530</a>] Pasting
+ 			text into the "Find what" fields in the Find and Replace dialog would now activate
+ 			the find and replace buttons.</li>
+ 		<li>[<a target="_blank" href="http://dev.fckeditor.net/ticket/1828">#1828</a>] The Find/Replace
+ 			dialog will no longer display wrong starting positions for the match when there
+ 			are multiple and identical characters preceding the character at the real starting
+ 			point of the match.</li>
+ 		<li>[<a target="_blank" href="http://dev.fckeditor.net/ticket/1878">#1878</a>] Fixed
+ 			a JavaScript error which occurs in the Find/Replace dialog when the user presses
+ 			"Find" or "Replace" after the "No match found" message has appeared.</li>
+ 		<li>[<a target="_blank" href="http://dev.fckeditor.net/ticket/1355">#1355</a>] Line
+ 			breaks and spaces are now conserved when converting to and from the "Formatted"
+ 			format.</li>
+ 		<li>[<a target="_blank" href="http://dev.fckeditor.net/ticket/1670">#1670</a>] Improved
+ 			the background color behind smiley icons and special characters in their corresponding
+ 			dialogs.</li>
+ 		<li>[<a target="_blank" href="http://dev.fckeditor.net/ticket/1693">#1693</a>] Custom
+ 			error messages are now properly displayed in the file browser.</li>
+ 		<li>[<a target="_blank" href="http://dev.fckeditor.net/ticket/970">#970</a>] The text
+ 			and value fields in the selection box dialog will no longer extend beyond the dialog
+ 			limits when the user inputs a very long text or value for one of the selection options.</li>
+ 		<li>[<a target="_blank" href="http://dev.fckeditor.net/ticket/479">#479</a>] Fixed the
+ 			issue where pressing Enter in an <o:p> tag in IE does not generate line breaks.</li>
+ 		<li>[<a target="_blank" href="http://dev.fckeditor.net/ticket/481">#481</a>] Fixed the
+ 			issue where the image preview in image dialog sometimes doesn't display after selecting
+ 			the image from server browser.</li>
+ 		<li>[<a target="_blank" href="http://dev.fckeditor.net/ticket/1488">#1488</a>] PHP integration:
+ 			the FCKeditor class is now more PHP5/6 friendly ("public" keyword is used instead
+ 			of depreciated "var").</li>
+ 		<li>[<a target="_blank" href="http://dev.fckeditor.net/ticket/1815">#1815</a>] PHP integration:
+ 			removed closing tag: "?>", so no additional whitespace added when files are included.</li>
+ 		<li>[<a target="_blank" href="http://dev.fckeditor.net/ticket/1906">#1906</a>] PHP file
+ 			browser: fixed problems with DetectHtml() function when open_basedir was set.</li>
+ 		<li>[<a target="_blank" href="http://dev.fckeditor.net/ticket/1871">#1871</a>] PHP file
+ 			browser: permissions applied with the chmod command are now configurable.</li>
+ 		<li>[<a target="_blank" href="http://dev.fckeditor.net/ticket/1872">#1872</a>] Perl
+ 			file browser: permissions applied with the chmod command are now configurable.</li>
+ 		<li>[<a target="_blank" href="http://dev.fckeditor.net/ticket/1873">#1873</a>] Python
+ 			file browser: permissions applied with the chmod command are now configurable.</li>
+ 		<li>[<a target="_blank" href="http://dev.fckeditor.net/ticket/1572">#1572</a>] ColdFusion
+ 			integration: fixed issues with setting the editor height.</li>
+ 		<li>[<a target="_blank" href="http://dev.fckeditor.net/ticket/1692">#1692</a>] ColdFusion
+ 			file browser: it is possible now to define TempDirectory to avoid issues with GetTempdirectory()
+ 			returning an empty string.</li>
+ 		<li>[<a target="_blank" href="http://dev.fckeditor.net/ticket/1379">#1379</a>] ColdFusion
+ 			file browser: resolved issues with OnRequestEnd.cfm breaking the file browser.</li>
+ 		<li>[<a target="_blank" href="http://dev.fckeditor.net/ticket/1509">#1509</a>] InsertHtml()
+ 			in IE will no longer turn the preceding normal whitespace into &nbsp;.</li>
+ 		<li>[<a target="_blank" href="http://dev.fckeditor.net/ticket/958">#958</a>] The AddItem
+ 			method now has an additional fifth parameter "customData" that will be sent to the
+ 			Execute method of the command for that menu item, allowing a single command to be
+ 			used for different menu items..</li>
+ 		<li>[<a target="_blank" href="http://dev.fckeditor.net/ticket/1502">#1502</a>] The RemoveFormat
+ 			command now also removes the attributes from the cleaned text. The list of attributes
+ 			is configurable with FCKConfig.RemoveAttributes.</li>
+ 		<li>[<a target="_blank" href="http://dev.fckeditor.net/ticket/1596">#1596</a>] On Safari,
+ 			dialogs have now right-to-left layout when it runs a RTL language, like Arabic.</li>
+ 		<li>[<a target="_blank" href="http://dev.fckeditor.net/ticket/1344">#1344</a>] Added
+ 			warning message on Copy and Cut operation failure on IE due to paste permission
+ 			settings.</li>
+ 		<li>[<a target="_blank" href="http://dev.fckeditor.net/ticket/1868">#1868</a>] Links
+ 			to file browser has been changed to avoid requests containing double dots.</li>
+ 		<li>[<a target="_blank" href="http://dev.fckeditor.net/ticket/1229">#1229</a>] Converting
+ 			multiple contiguous paragraphs to Formatted will now be merged into a single <PRE>
+ 			block.</li>
+ 		<li>[<a target="_blank" href="http://dev.fckeditor.net/ticket/1627">#1627</a>] Samples
+ 			failed to load from local filesystem in IE7.</li>
  	</ul>
  	<p>

Index: _whatsnew_history.html
===================================================================
RCS file: /cvsroot/geeklog/Geeklog-1.x/public_html/fckeditor/_whatsnew_history.html,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -d -r1.1 -r1.2
*** _whatsnew_history.html	9 Feb 2008 12:53:56 -0000	1.1
--- _whatsnew_history.html	5 May 2008 00:35:23 -0000	1.2
***************
*** 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 ==
***************
*** 33,36 ****
--- 33,70 ----
  	<h1>
  		FCKeditor ChangeLog - What's New?</h1>
+ 	<h3>
+ 		Version 2.5.1</h3>
+ 	<p>
+ 		New Features and Improvements:</p>
+ 	<ul>
+ 		<li><strong>FCKeditor.Net 2.5</strong> compatibility.</li>
+ 		<li>JavaScript integration file:
+ 			<ul>
+ 				<li>The new "<strong>FCKeditor.ReplaceAllTextareas</strong>" function is being introduced,
+ 					making it possible to replace many (or unknown) <textarea> elements in a single
+ 					call. The replacement can be also filtered by CSS class name, or by a custom function
+ 					evaluator. </li>
+ 				<li>It is now possible to set the default BasePath for all editor instances by setting
+ 					<strong>FCKeditor.BasePath</strong>. This is extremely useful when working with
+ 					the ReplaceAllTextareas function. </li>
+ 			</ul>
+ 		</li>
+ 	</ul>
+ 	<p>
+ 		Fixed Bugs:</p>
+ 	<ul>
+ 		<li>[<a href="http://dev.fckeditor.net/ticket/339" target="_blank">#339</a>] [<a
+ 			href="http://dev.fckeditor.net/ticket/681" target="_blank">#681</a>] The SpellerPages
+ 			spell checker will now completely ignore the presence of HTML tags in the text.
+ 		</li>
+ 		<li>[<a href="http://dev.fckeditor.net/ticket/1643" target="_blank">#1643</a>] Resolved
+ 			several "strict warning" messages in Firefox when running FCKeditor. </li>
+ 		<li>[<a href="http://dev.fckeditor.net/ticket/1603" target="_blank">#1603</a>] Certain
+ 			specific markup was making FCKeditor entering in a loop, blocking its execution.
+ 		</li>
+ 		<li>[<a href="http://dev.fckeditor.net/ticket/1664" target="_blank">#1664</a>] The ENTER
+ 			key will not any more swap the order of the tags when hit at the end of paragraphs.
+ 		</li>
+ 	</ul>
  	<h3>
  		Version 2.5</h3>




More information about the geeklog-cvs mailing list