/* * FCKeditor - The text editor for internet * Copyright (C) 2003-2006 Frederico Caldeira Knabben * * Licensed under the terms of the GNU Lesser General Public License: * http://www.opensource.org/licenses/lgpl-license.php * * For further information visit: * http://www.fckeditor.net/ * * "Support Open Source software. What about a donation today?" * * File Name: fckdebug.js * Debug window control and operations. * * File Authors: * Frederico Caldeira Knabben (fredck@fckeditor.net) */ var FCKDebug = new Object() ; FCKDebug.Output = function( message, color, noParse ) { if ( ! FCKConfig.Debug ) return ; if ( !noParse && message != null && isNaN( message ) ) message = message.replace(/
' ; for (var prop in anyObject) { try { var sVal = anyObject[ prop ] ? anyObject[ prop ] + '' : '[null]' ; message += '' + prop + ' : ' + sVal.replace(/' ; } catch (e) { try { message += '' + prop + ' : [' + typeof( anyObject[ prop ] ) + ']
' ; } catch (e) { message += '' + prop + ' : [-error-]
' ; } } } message += '
' ; } else message = 'OutputObject : Object is "null".' ; FCKDebug.Output( message, color, true ) ; }