update address standardization for cust_location changes
[freeside.git] / rt / share / html / NoAuth / RichText / FCKeditor / editor / fckdebug.html
diff --git a/rt/share/html/NoAuth/RichText/FCKeditor/editor/fckdebug.html b/rt/share/html/NoAuth/RichText/FCKeditor/editor/fckdebug.html
deleted file mode 100644 (file)
index 35dd663..0000000
+++ /dev/null
@@ -1,153 +0,0 @@
-<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">\r
-<!--\r
- * FCKeditor - The text editor for Internet - http://www.fckeditor.net\r
- * Copyright (C) 2003-2009 Frederico Caldeira Knabben\r
- *\r
- * == BEGIN LICENSE ==\r
- *\r
- * Licensed under the terms of any of the following licenses at your\r
- * choice:\r
- *\r
- *  - GNU General Public License Version 2 or later (the "GPL")\r
- *    http://www.gnu.org/licenses/gpl.html\r
- *\r
- *  - GNU Lesser General Public License Version 2.1 or later (the "LGPL")\r
- *    http://www.gnu.org/licenses/lgpl.html\r
- *\r
- *  - Mozilla Public License Version 1.1 or later (the "MPL")\r
- *    http://www.mozilla.org/MPL/MPL-1.1.html\r
- *\r
- * == END LICENSE ==\r
- *\r
- * This is the Debug window.\r
- * It automatically popups if the Debug = true in the configuration file.\r
--->\r
-<html xmlns="http://www.w3.org/1999/xhtml">\r
-<head>\r
-       <title>FCKeditor Debug Window</title>\r
-       <meta name="robots" content="noindex, nofollow" />\r
-       <script type="text/javascript">\r
-\r
-var oWindow ;\r
-var oDiv ;\r
-\r
-if ( !window.FCKMessages )\r
-       window.FCKMessages = new Array() ;\r
-\r
-window.onload = function()\r
-{\r
-       oWindow = document.getElementById('xOutput').contentWindow ;\r
-       oWindow.document.open() ;\r
-       oWindow.document.write( '<div id="divMsg"><\/div>' ) ;\r
-       oWindow.document.close() ;\r
-       oDiv    = oWindow.document.getElementById('divMsg') ;\r
-}\r
-\r
-function Output( message, color, noParse )\r
-{\r
-       if ( !noParse && message != null && isNaN( message ) )\r
-               message = message.replace(/</g, "&lt;") ;\r
-\r
-       if ( color )\r
-               message = '<font color="' + color + '">' + message + '<\/font>' ;\r
-\r
-       window.FCKMessages[ window.FCKMessages.length ] = message ;\r
-       StartTimer() ;\r
-}\r
-\r
-function OutputObject( anyObject, color )\r
-{\r
-       var message ;\r
-\r
-       if ( anyObject != null )\r
-       {\r
-               message = 'Properties of: ' + anyObject + '</b><blockquote>' ;\r
-\r
-               for (var prop in anyObject)\r
-               {\r
-                       try\r
-                       {\r
-                               var sVal = anyObject[ prop ] != null ? anyObject[ prop ] + '' : '[null]' ;\r
-                               message += '<b>' + prop + '</b> : ' + sVal.replace(/</g, '&lt;') + '<br>' ;\r
-                       }\r
-                       catch (e)\r
-                       {\r
-                               try\r
-                               {\r
-                                       message += '<b>' + prop + '</b> : [' + typeof( anyObject[ prop ] ) + ']<br>' ;\r
-                               }\r
-                               catch (e)\r
-                               {\r
-                                       message += '<b>' + prop + '</b> : [-error-]<br>' ;\r
-                               }\r
-                       }\r
-               }\r
-\r
-               message += '</blockquote><b>' ;\r
-       } else\r
-               message = 'OutputObject : Object is "null".' ;\r
-\r
-       Output( message, color, true ) ;\r
-}\r
-\r
-function StartTimer()\r
-{\r
-       window.setTimeout( 'CheckMessages()', 100 ) ;\r
-}\r
-\r
-function CheckMessages()\r
-{\r
-       if ( window.FCKMessages.length > 0 )\r
-       {\r
-               // Get the first item in the queue\r
-               var sMessage = window.FCKMessages[0] ;\r
-\r
-               // Removes the first item from the queue\r
-               var oTempArray = new Array() ;\r
-               for ( i = 1 ; i < window.FCKMessages.length ; i++ )\r
-                       oTempArray[ i - 1 ] = window.FCKMessages[ i ] ;\r
-               window.FCKMessages = oTempArray ;\r
-\r
-               var d = new Date() ;\r
-               var sTime =\r
-                       ( d.getHours() + 100 + '' ).substr( 1,2 ) + ':' +\r
-                       ( d.getMinutes() + 100 + '' ).substr( 1,2 ) + ':' +\r
-                       ( d.getSeconds() + 100 + '' ).substr( 1,2 ) + ':' +\r
-                       ( d.getMilliseconds() + 1000 + '' ).substr( 1,3 ) ;\r
-\r
-               var oMsgDiv = oWindow.document.createElement( 'div' ) ;\r
-               oMsgDiv.innerHTML = sTime + ': <b>' + sMessage + '<\/b>' ;\r
-               oDiv.appendChild( oMsgDiv ) ;\r
-               oMsgDiv.scrollIntoView() ;\r
-       }\r
-}\r
-\r
-function Clear()\r
-{\r
-       oDiv.innerHTML = '' ;\r
-}\r
-       </script>\r
-</head>\r
-<body style="margin: 10px">\r
-       <table style="height: 100%" cellspacing="5" cellpadding="0" width="100%" border="0">\r
-               <tr>\r
-                       <td>\r
-                               <table cellspacing="0" cellpadding="0" width="100%" border="0">\r
-                                       <tr>\r
-                                               <td style="font-weight: bold; font-size: 1.2em;">\r
-                                                       FCKeditor Debug Window</td>\r
-                                               <td align="right">\r
-                                                       <input type="button" value="Clear" onclick="Clear();" /></td>\r
-                                       </tr>\r
-                               </table>\r
-                       </td>\r
-               </tr>\r
-               <tr style="height: 100%">\r
-                       <td style="border: #696969 1px solid">\r
-                               <iframe id="xOutput" width="100%" height="100%" scrolling="auto" src="javascript:void(0)"\r
-                                       frameborder="0"></iframe>\r
-                       </td>\r
-               </tr>\r
-       </table>\r
-</body>\r
-</html>\r