[geeklog-cvs] Geeklog-1.x/public_html/fckeditor/editor fckdialog.html, 1.6, 1.7 fckeditor.html, 1.7, 1.8 fckeditor.original.html, 1.7, 1.8

Blaine Lang blaine at qs1489.pair.com
Sun Aug 10 12:46:32 EDT 2008


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

Modified Files:
	fckdialog.html fckeditor.html fckeditor.original.html 
Log Message:
Upgrade to FCKeditor ver 2.6.3

Index: fckdialog.html
===================================================================
RCS file: /cvsroot/geeklog/Geeklog-1.x/public_html/fckeditor/editor/fckdialog.html,v
retrieving revision 1.6
retrieving revision 1.7
diff -C2 -d -r1.6 -r1.7
*** fckdialog.html	5 May 2008 00:35:24 -0000	1.6
--- fckdialog.html	10 Aug 2008 16:46:30 -0000	1.7
***************
*** 28,31 ****
--- 28,33 ----
  		<meta name="robots" content="noindex, nofollow" />
  		<script type="text/javascript">
+ // <![CDATA[
+ 
  // Domain relaxation logic.
  (function()
***************
*** 191,194 ****
--- 193,209 ----
  	}
  
+ 	/**
+ 	 * IE6 has a similar bug where it sometimes thinks $('contents') has an
+ 	 * offsetHeight of 0 (#2114).
+ 	 */
+ 	if ( FCKBrowserInfo.IsIE && !FCKBrowserInfo.IsIE7 )
+ 	{
+ 		var originalRefreshContainerSize = retval.RefreshContainerSize ;
+ 		retval.RefreshContainerSize = function()
+ 		{
+ 			FCKTools.SetTimeout( originalRefreshContainerSize, 1, retval ) ;
+ 		}
+ 	}
+ 
  	window.onresize = function()
  	{
***************
*** 233,240 ****
  			var throbberParent = $( 'throbberBlock' ) ;
  
! 			// Create the throbber blocks.
! 			var classIds = [ 1,2,3,4,5,4,3,2 ] ;
! 			while ( classIds.length > 0 )
! 				throbberParent.appendChild( document.createElement( 'div' ) ).className = ' throbber_' + classIds.shift() ;
  
  			// Center the throbber.
--- 248,258 ----
  			var throbberParent = $( 'throbberBlock' ) ;
  
! 			if (throbberParent.childNodes.length == 0)
! 			{
! 				// Create the throbber blocks.
! 				var classIds = [ 1,2,3,4,5,4,3,2 ] ;
! 				while ( classIds.length > 0 )
! 					throbberParent.appendChild( document.createElement( 'div' ) ).className = ' throbber_' + classIds.shift() ;
! 			}
  
  			// Center the throbber.
***************
*** 249,252 ****
--- 267,274 ----
  			throbberParent.style.visibility = ''  ;
  
+ 			// Hide tabs and buttons:
+ 			$( 'Tabs' ).style.visibility = 'hidden' ;
+ 			$( 'PopupButtons' ).style.visibility = 'hidden' ;
+ 
  			// Setup the animation interval.
  			timer = setInterval( updateThrobber, 100 ) ;
***************
*** 261,267 ****
  			}
  
! 			var throbberParent = document.getElementById( 'throbberBlock' ) ;
! 			if ( throbberParent )
! 				FCKDomTools.RemoveNode( throbberParent ) ;
  		}
  	} ;
--- 283,291 ----
  			}
  
! 			$( 'throbberBlock' ).style.visibility = 'hidden' ;
! 
! 			// Show tabs and buttons:
! 			$( 'Tabs' ).style.visibility = '' ;
! 			$( 'PopupButtons' ).style.visibility = '' ;
  		}
  	} ;
***************
*** 618,622 ****
  
  		// Create the IFRAME that holds the dialog contents.
! 		$( 'innerContents' ).innerHTML = '<iframe id="frmMain" src="' + Args().Page + '" name="frmMain" frameborder="0" width="100%" height="100%" scrolling="auto" style="visibility: hidden;" allowtransparency="true"></iframe>' ;
  	} ;
  
--- 642,646 ----
  
  		// Create the IFRAME that holds the dialog contents.
! 		$( 'innerContents' ).innerHTML = '<iframe id="frmMain" src="' + Args().Page + '" name="frmMain" frameborder="0" width="100%" height="100%" scrolling="auto" style="visibility: hidden;" allowtransparency="true"><\/iframe>' ;
  	} ;
  
***************
*** 728,731 ****
--- 752,756 ----
  	} ;
  })() ;
+ // ]]>
  		</script>
  	</head>
***************
*** 735,739 ****
--- 760,766 ----
  				<div id="TitleArea" class="PopupTitle PopupTitleBorder">
  					<script type="text/javascript">
+ // <![CDATA[
  document.write( Args().Title ) ;
+ // ]]>
  					</script>
  					<div id="closeButton" onclick="Cancel();"></div>
***************
*** 773,776 ****
--- 800,804 ----
  		<div id="throbberBlock" style="position: absolute; visibility: hidden"></div>
  		<script type="text/javascript">
+ // <![CDATA[
  			// Set the class name for language direction.
  			document.body.className += ' ' + langDir ;
***************
*** 779,782 ****
--- 807,811 ----
  			cover.style.backgroundColor = FCKConfig.BackgroundBlockerColor ;
  			FCKDomTools.SetOpacity( cover, FCKConfig.BackgroundBlockerOpacity ) ;
+ // ]]>
  		</script>
  	</body>

Index: fckeditor.original.html
===================================================================
RCS file: /cvsroot/geeklog/Geeklog-1.x/public_html/fckeditor/editor/fckeditor.original.html,v
retrieving revision 1.7
retrieving revision 1.8
diff -C2 -d -r1.7 -r1.8
*** fckeditor.original.html	5 May 2008 00:35:24 -0000	1.7
--- fckeditor.original.html	10 Aug 2008 16:46:30 -0000	1.8
***************
*** 32,35 ****
--- 32,66 ----
  	<script type="text/javascript">
  
+ // #1645: Alert the user if opening FCKeditor in FF3 from local filesystem
+ // without security.fileuri.strict_origin_policy disabled.
+ if ( document.location.protocol == 'file:' )
+ {
+ 	try
+ 	{
+ 		window.parent.document.domain ;
+ 	}
+ 	catch ( e )
+ 	{
+ 		window.addEventListener( 'load', function()
+ 			{
+ 				document.body.innerHTML = '\
+ 					<div style="border: 1px red solid; font-family: arial; font-size: 12px; color: red; padding:10px;">\
+ 						<p>\
+ 							<b>Your browser security settings don\'t allow FCKeditor to be opened from\
+ 							the local filesystem.<\/b>\
+ 						<\/p>\
+ 						<p>\
+ 							Please open the <b>about:config<\/b> page and disable the\
+ 							"security.fileuri.strict_origin_policy" option; then load this page again.\
+ 						<\/p>\
+ 						<p>\
+ 							Check our <a href="http://docs.fckeditor.net/FCKeditor_2.x/Developers_Guide/FAQ#ff3perms">FAQ<\/a>\
+ 							for more information.\
+ 						<\/p>\
+ 					<\/div>' ;
+ 			}, false ) ;
+ 	}
+ }
+ 
  // Save a reference to the default domain.
  var FCK_ORIGINAL_DOMAIN ;
***************
*** 104,108 ****
  LoadScript( '_source/internals/fckconfig.js' ) ;
  
! LoadScript( '_source/internals/fckdebug.js' ) ;
  LoadScript( '_source/internals/fckdomtools.js' ) ;
  LoadScript( '_source/internals/fcktools.js' ) ;
--- 135,139 ----
  LoadScript( '_source/internals/fckconfig.js' ) ;
  
! LoadScript( '_source/internals/fckdebug_empty.js' ) ;
  LoadScript( '_source/internals/fckdomtools.js' ) ;
  LoadScript( '_source/internals/fcktools.js' ) ;
***************
*** 238,247 ****
  FCKConfig_PreProcess() ;
  
! var FCK_InternalCSS			= FCKConfig.FullBasePath + 'css/fck_internal.css' ;					// @Packager.RemoveLine
! var FCK_ShowTableBordersCSS	= FCKConfig.FullBasePath + 'css/fck_showtableborders_gecko.css' ;	// @Packager.RemoveLine
  /* @Packager.RemoveLine
! // CSS minified by http://iceyboard.no-ip.org/projects/css_compressor
! var FCK_InternalCSS			= FCKTools.FixCssUrls( FCKConfig.FullBasePath + 'css/', 'html{min-height:100%}table.FCK__ShowTableBorders,table.FCK__ShowTableBorders td,table.FCK__ShowTableBorders th{border:#d3d3d3 1px solid}form{border:1px dotted #F00;padding:2px}.FCK__Flash{border:#a9a9a9 1px solid;background-position:center center;background-image:url(images/fck_flashlogo.gif);background-repeat:no-repeat;width:80px;height:80px}.FCK__Anchor{border:1px dotted #00F;background-position:center center;background-image:url(images/fck_anchor.gif);background-repeat:no-repeat;width:16px;height:15px;vertical-align:middle}.FCK__AnchorC{border:1px dotted #00F;background-position:1px center;background-image:url(images/fck_anchor.gif);background-repeat:no-repeat;padding-left:18px}a[name]{border:1px dotted #00F;background-position:0 center;background-image:url(images/fck_anchor.gif);background-repeat:no-repeat;padding-left:18px}.FCK__PageBreak{background-position:center center;background-image:ur
 l(images/fck_pagebreak.gif);background-repeat:no-repeat;clear:both;display:block;float:none;width:100%;border-top:#999 1px dotted;border-bottom:#999 1px dotted;border-right:0;border-left:0;height:5px}.FCK__InputHidden{width:19px;height:18px;background-image:url(images/fck_hiddenfield.gif);background-repeat:no-repeat;vertical-align:text-bottom;background-position:center center}.FCK__ShowBlocks p,.FCK__ShowBlocks div,.FCK__ShowBlocks pre,.FCK__ShowBlocks address,.FCK__ShowBlocks blockquote,.FCK__ShowBlocks h1,.FCK__ShowBlocks h2,.FCK__ShowBlocks h3,.FCK__ShowBlocks h4,.FCK__ShowBlocks h5,.FCK__ShowBlocks h6{background-repeat:no-repeat;border:1px dotted gray;padding-top:8px;padding-left:8px}.FCK__ShowBlocks p{background-image:url(images/block_p.png)}.FCK__ShowBlocks div{background-image:url(images/block_div.png)}.FCK__ShowBlocks pre{background-image:url(images/block_pre.png)}.FCK__ShowBlocks address{background-image:url(images/block_address.png)}.FCK__ShowBlocks blockquote{back
 ground-image:url(images/block_blockquote.png)}.FCK__ShowBlocks h1{background-image:url(images/block_h1.png)}.FCK__ShowBlocks h2{background-image:url(images/block_h2.png)}.FCK__ShowBlocks h3{background-image:url(images/block_h3.png)}.FCK__ShowBlocks h4{background-image:url(images/block_h4.png)}.FCK__ShowBlocks h5{background-image:url(images/block_h5.png)}.FCK__ShowBlocks h6{background-image:url(images/block_h6.png)}' ) ;
! var FCK_ShowTableBordersCSS	= FCKTools.FixCssUrls( FCKConfig.FullBasePath + 'css/', 'table:not([border]),table:not([border]) > tr > td,table:not([border]) > tr > th,table:not([border]) > tbody > tr > td,table:not([border]) > tbody > tr > th,table:not([border]) > thead > tr > td,table:not([border]) > thead > tr > th,table:not([border]) > tfoot > tr > td,table:not([border]) > tfoot > tr > th,table[border=\"0\"],table[border=\"0\"] > tr > td,table[border=\"0\"] > tr > th,table[border=\"0\"] > tbody > tr > td,table[border=\"0\"] > tbody > tr > th,table[border=\"0\"] > thead > tr > td,table[border=\"0\"] > thead > tr > th,table[border=\"0\"] > tfoot > tr > td,table[border=\"0\"] > tfoot > tr > th{border:#d3d3d3 1px dotted}' ) ;
  @Packager.RemoveLine */
  
--- 269,285 ----
  FCKConfig_PreProcess() ;
  
! // Load the full debug script.
! if ( FCKConfig.Debug )
! 	LoadScript( '_source/internals/fckdebug.js' ) ;
! 
! 	</script>
! 	<script type="text/javascript">
! 
! var FCK_InternalCSS			= FCKConfig.BasePath + 'css/fck_internal.css' ;					// @Packager.RemoveLine
! var FCK_ShowTableBordersCSS	= FCKConfig.BasePath + 'css/fck_showtableborders_gecko.css' ;	// @Packager.RemoveLine
  /* @Packager.RemoveLine
! // CSS minified by http://iceyboard.no-ip.org/projects/css_compressor (see _dev/css_compression.txt).
! var FCK_InternalCSS			= FCKTools.FixCssUrls( FCKConfig.BasePath + 'css/', 'html{min-height:100%}table.FCK__ShowTableBorders,table.FCK__ShowTableBorders td,table.FCK__ShowTableBorders th{border:#d3d3d3 1px solid}form{border:1px dotted #F00;padding:2px}.FCK__Flash{border:#a9a9a9 1px solid;background-position:center center;background-image:url(images/fck_flashlogo.gif);background-repeat:no-repeat;width:80px;height:80px}.FCK__UnknownObject{border:#a9a9a9 1px solid;background-position:center center;background-image:url(images/fck_plugin.gif);background-repeat:no-repeat;width:80px;height:80px}.FCK__Anchor{border:1px dotted #00F;background-position:center center;background-image:url(images/fck_anchor.gif);background-repeat:no-repeat;width:16px;height:15px;vertical-align:middle}.FCK__AnchorC{border:1px dotted #00F;background-position:1px center;background-image:url(images/fck_anchor.gif);background-repeat:no-repeat;padding-left:18px}a[name]{border:1px dotted #00F;background-positio
 n:0 center;background-image:url(images/fck_anchor.gif);background-repeat:no-repeat;padding-left:18px}.FCK__PageBreak{background-position:center center;background-image:url(images/fck_pagebreak.gif);background-repeat:no-repeat;clear:both;display:block;float:none;width:100%;border-top:#999 1px dotted;border-bottom:#999 1px dotted;border-right:0;border-left:0;height:5px}.FCK__InputHidden{width:19px;height:18px;background-image:url(images/fck_hiddenfield.gif);background-repeat:no-repeat;vertical-align:text-bottom;background-position:center center}.FCK__ShowBlocks p,.FCK__ShowBlocks div,.FCK__ShowBlocks pre,.FCK__ShowBlocks address,.FCK__ShowBlocks blockquote,.FCK__ShowBlocks h1,.FCK__ShowBlocks h2,.FCK__ShowBlocks h3,.FCK__ShowBlocks h4,.FCK__ShowBlocks h5,.FCK__ShowBlocks h6{background-repeat:no-repeat;border:1px dotted gray;padding-top:8px;padding-left:8px}.FCK__ShowBlocks p{background-image:url(images/block_p.png)}.FCK__ShowBlocks div{background-image:url(images/block_div.png
 )}.FCK__ShowBlocks pre{background-image:url(images/block_pre.png)}.FCK__ShowBlocks address{background-image:url(images/block_address.png)}.FCK__ShowBlocks blockquote{background-image:url(images/block_blockquote.png)}.FCK__ShowBlocks h1{background-image:url(images/block_h1.png)}.FCK__ShowBlocks h2{background-image:url(images/block_h2.png)}.FCK__ShowBlocks h3{background-image:url(images/block_h3.png)}.FCK__ShowBlocks h4{background-image:url(images/block_h4.png)}.FCK__ShowBlocks h5{background-image:url(images/block_h5.png)}.FCK__ShowBlocks h6{background-image:url(images/block_h6.png)}' ) ;
! var FCK_ShowTableBordersCSS	= FCKTools.FixCssUrls( FCKConfig.BasePath + 'css/', 'table:not([border]),table:not([border]) > tr > td,table:not([border]) > tr > th,table:not([border]) > tbody > tr > td,table:not([border]) > tbody > tr > th,table:not([border]) > thead > tr > td,table:not([border]) > thead > tr > th,table:not([border]) > tfoot > tr > td,table:not([border]) > tfoot > tr > th,table[border=\"0\"],table[border=\"0\"] > tr > td,table[border=\"0\"] > tr > th,table[border=\"0\"] > tbody > tr > td,table[border=\"0\"] > tbody > tr > th,table[border=\"0\"] > thead > tr > td,table[border=\"0\"] > thead > tr > th,table[border=\"0\"] > tfoot > tr > td,table[border=\"0\"] > tfoot > tr > th{border:#d3d3d3 1px dotted}' ) ;
  @Packager.RemoveLine */
  
***************
*** 323,327 ****
  			FCKTools.RunFunction( window.onresize ) ;
  
! 		_AttachFormSubmitToAPI() ;
  
  		FCK.SetStatus( FCK_STATUS_COMPLETE ) ;
--- 361,366 ----
  			FCKTools.RunFunction( window.onresize ) ;
  
! 		if ( !FCKConfig.PreventSubmitHandler )
! 			_AttachFormSubmitToAPI() ;
  
  		FCK.SetStatus( FCK_STATUS_COMPLETE ) ;

Index: fckeditor.html
===================================================================
RCS file: /cvsroot/geeklog/Geeklog-1.x/public_html/fckeditor/editor/fckeditor.html,v
retrieving revision 1.7
retrieving revision 1.8
diff -C2 -d -r1.7 -r1.8
*** fckeditor.html	5 May 2008 00:35:24 -0000	1.7
--- fckeditor.html	10 Aug 2008 16:46:30 -0000	1.8
***************
*** 30,33 ****
--- 30,64 ----
  	<script type="text/javascript">
  
+ // #1645: Alert the user if opening FCKeditor in FF3 from local filesystem
+ // without security.fileuri.strict_origin_policy disabled.
+ if ( document.location.protocol == 'file:' )
+ {
+ 	try
+ 	{
+ 		window.parent.document.domain ;
+ 	}
+ 	catch ( e )
+ 	{
+ 		window.addEventListener( 'load', function()
+ 			{
+ 				document.body.innerHTML = '\
+ 					<div style="border: 1px red solid; font-family: arial; font-size: 12px; color: red; padding:10px;">\
+ 						<p>\
+ 							<b>Your browser security settings don\'t allow FCKeditor to be opened from\
+ 							the local filesystem.<\/b>\
+ 						<\/p>\
+ 						<p>\
+ 							Please open the <b>about:config<\/b> page and disable the\
+ 							"security.fileuri.strict_origin_policy" option; then load this page again.\
+ 						<\/p>\
+ 						<p>\
+ 							Check our <a href="http://docs.fckeditor.net/FCKeditor_2.x/Developers_Guide/FAQ#ff3perms">FAQ<\/a>\
+ 							for more information.\
+ 						<\/p>\
+ 					<\/div>' ;
+ 			}, false ) ;
+ 	}
+ }
+ 
  // Save a reference to the default domain.
  var FCK_ORIGINAL_DOMAIN ;
***************
*** 135,141 ****
  FCKConfig_PreProcess() ;
  
! // CSS minified by http://iceyboard.no-ip.org/projects/css_compressor
! var FCK_InternalCSS			= FCKTools.FixCssUrls( FCKConfig.FullBasePath + 'css/', 'html{min-height:100%}table.FCK__ShowTableBorders,table.FCK__ShowTableBorders td,table.FCK__ShowTableBorders th{border:#d3d3d3 1px solid}form{border:1px dotted #F00;padding:2px}.FCK__Flash{border:#a9a9a9 1px solid;background-position:center center;background-image:url(images/fck_flashlogo.gif);background-repeat:no-repeat;width:80px;height:80px}.FCK__Anchor{border:1px dotted #00F;background-position:center center;background-image:url(images/fck_anchor.gif);background-repeat:no-repeat;width:16px;height:15px;vertical-align:middle}.FCK__AnchorC{border:1px dotted #00F;background-position:1px center;background-image:url(images/fck_anchor.gif);background-repeat:no-repeat;padding-left:18px}a[name]{border:1px dotted #00F;background-position:0 center;background-image:url(images/fck_anchor.gif);background-repeat:no-repeat;padding-left:18px}.FCK__PageBreak{background-position:center center;background-image:ur
 l(images/fck_pagebreak.gif);background-repeat:no-repeat;clear:both;display:block;float:none;width:100%;border-top:#999 1px dotted;border-bottom:#999 1px dotted;border-right:0;border-left:0;height:5px}.FCK__InputHidden{width:19px;height:18px;background-image:url(images/fck_hiddenfield.gif);background-repeat:no-repeat;vertical-align:text-bottom;background-position:center center}.FCK__ShowBlocks p,.FCK__ShowBlocks div,.FCK__ShowBlocks pre,.FCK__ShowBlocks address,.FCK__ShowBlocks blockquote,.FCK__ShowBlocks h1,.FCK__ShowBlocks h2,.FCK__ShowBlocks h3,.FCK__ShowBlocks h4,.FCK__ShowBlocks h5,.FCK__ShowBlocks h6{background-repeat:no-repeat;border:1px dotted gray;padding-top:8px;padding-left:8px}.FCK__ShowBlocks p{background-image:url(images/block_p.png)}.FCK__ShowBlocks div{background-image:url(images/block_div.png)}.FCK__ShowBlocks pre{background-image:url(images/block_pre.png)}.FCK__ShowBlocks address{background-image:url(images/block_address.png)}.FCK__ShowBlocks blockquote{back
 ground-image:url(images/block_blockquote.png)}.FCK__ShowBlocks h1{background-image:url(images/block_h1.png)}.FCK__ShowBlocks h2{background-image:url(images/block_h2.png)}.FCK__ShowBlocks h3{background-image:url(images/block_h3.png)}.FCK__ShowBlocks h4{background-image:url(images/block_h4.png)}.FCK__ShowBlocks h5{background-image:url(images/block_h5.png)}.FCK__ShowBlocks h6{background-image:url(images/block_h6.png)}' ) ;
! var FCK_ShowTableBordersCSS	= FCKTools.FixCssUrls( FCKConfig.FullBasePath + 'css/', 'table:not([border]),table:not([border]) > tr > td,table:not([border]) > tr > th,table:not([border]) > tbody > tr > td,table:not([border]) > tbody > tr > th,table:not([border]) > thead > tr > td,table:not([border]) > thead > tr > th,table:not([border]) > tfoot > tr > td,table:not([border]) > tfoot > tr > th,table[border=\"0\"],table[border=\"0\"] > tr > td,table[border=\"0\"] > tr > th,table[border=\"0\"] > tbody > tr > td,table[border=\"0\"] > tbody > tr > th,table[border=\"0\"] > thead > tr > td,table[border=\"0\"] > thead > tr > th,table[border=\"0\"] > tfoot > tr > td,table[border=\"0\"] > tfoot > tr > th{border:#d3d3d3 1px dotted}' ) ;
  
  // Popup the debug window if debug mode is set to true. It guarantees that the
--- 166,179 ----
  FCKConfig_PreProcess() ;
  
! // Load the full debug script.
! if ( FCKConfig.Debug )
! 	LoadScript( '_source/internals/fckdebug.js' ) ;
! 
! 	</script>
! 	<script type="text/javascript">
! 
! // CSS minified by http://iceyboard.no-ip.org/projects/css_compressor (see _dev/css_compression.txt).
! var FCK_InternalCSS			= FCKTools.FixCssUrls( FCKConfig.BasePath + 'css/', 'html{min-height:100%}table.FCK__ShowTableBorders,table.FCK__ShowTableBorders td,table.FCK__ShowTableBorders th{border:#d3d3d3 1px solid}form{border:1px dotted #F00;padding:2px}.FCK__Flash{border:#a9a9a9 1px solid;background-position:center center;background-image:url(images/fck_flashlogo.gif);background-repeat:no-repeat;width:80px;height:80px}.FCK__UnknownObject{border:#a9a9a9 1px solid;background-position:center center;background-image:url(images/fck_plugin.gif);background-repeat:no-repeat;width:80px;height:80px}.FCK__Anchor{border:1px dotted #00F;background-position:center center;background-image:url(images/fck_anchor.gif);background-repeat:no-repeat;width:16px;height:15px;vertical-align:middle}.FCK__AnchorC{border:1px dotted #00F;background-position:1px center;background-image:url(images/fck_anchor.gif);background-repeat:no-repeat;padding-left:18px}a[name]{border:1px dotted #00F;background-positio
 n:0 center;background-image:url(images/fck_anchor.gif);background-repeat:no-repeat;padding-left:18px}.FCK__PageBreak{background-position:center center;background-image:url(images/fck_pagebreak.gif);background-repeat:no-repeat;clear:both;display:block;float:none;width:100%;border-top:#999 1px dotted;border-bottom:#999 1px dotted;border-right:0;border-left:0;height:5px}.FCK__InputHidden{width:19px;height:18px;background-image:url(images/fck_hiddenfield.gif);background-repeat:no-repeat;vertical-align:text-bottom;background-position:center center}.FCK__ShowBlocks p,.FCK__ShowBlocks div,.FCK__ShowBlocks pre,.FCK__ShowBlocks address,.FCK__ShowBlocks blockquote,.FCK__ShowBlocks h1,.FCK__ShowBlocks h2,.FCK__ShowBlocks h3,.FCK__ShowBlocks h4,.FCK__ShowBlocks h5,.FCK__ShowBlocks h6{background-repeat:no-repeat;border:1px dotted gray;padding-top:8px;padding-left:8px}.FCK__ShowBlocks p{background-image:url(images/block_p.png)}.FCK__ShowBlocks div{background-image:url(images/block_div.png
 )}.FCK__ShowBlocks pre{background-image:url(images/block_pre.png)}.FCK__ShowBlocks address{background-image:url(images/block_address.png)}.FCK__ShowBlocks blockquote{background-image:url(images/block_blockquote.png)}.FCK__ShowBlocks h1{background-image:url(images/block_h1.png)}.FCK__ShowBlocks h2{background-image:url(images/block_h2.png)}.FCK__ShowBlocks h3{background-image:url(images/block_h3.png)}.FCK__ShowBlocks h4{background-image:url(images/block_h4.png)}.FCK__ShowBlocks h5{background-image:url(images/block_h5.png)}.FCK__ShowBlocks h6{background-image:url(images/block_h6.png)}' ) ;
! var FCK_ShowTableBordersCSS	= FCKTools.FixCssUrls( FCKConfig.BasePath + 'css/', 'table:not([border]),table:not([border]) > tr > td,table:not([border]) > tr > th,table:not([border]) > tbody > tr > td,table:not([border]) > tbody > tr > th,table:not([border]) > thead > tr > td,table:not([border]) > thead > tr > th,table:not([border]) > tfoot > tr > td,table:not([border]) > tfoot > tr > th,table[border=\"0\"],table[border=\"0\"] > tr > td,table[border=\"0\"] > tr > th,table[border=\"0\"] > tbody > tr > td,table[border=\"0\"] > tbody > tr > th,table[border=\"0\"] > thead > tr > td,table[border=\"0\"] > thead > tr > th,table[border=\"0\"] > tfoot > tr > td,table[border=\"0\"] > tfoot > tr > th{border:#d3d3d3 1px dotted}' ) ;
  
  // Popup the debug window if debug mode is set to true. It guarantees that the
***************
*** 216,220 ****
  			FCKTools.RunFunction( window.onresize ) ;
  
! 		_AttachFormSubmitToAPI() ;
  
  		FCK.SetStatus( FCK_STATUS_COMPLETE ) ;
--- 254,259 ----
  			FCKTools.RunFunction( window.onresize ) ;
  
! 		if ( !FCKConfig.PreventSubmitHandler )
! 			_AttachFormSubmitToAPI() ;
  
  		FCK.SetStatus( FCK_STATUS_COMPLETE ) ;




More information about the geeklog-cvs mailing list