Subversion Repositories Applications.papyrus

Rev

Rev 521 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 521 Rev 875
Line -... Line 1...
-
 
1
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
1
<!--
2
<!--
2
 * FCKeditor - The text editor for internet
3
 * FCKeditor - The text editor for internet
3
 * Copyright (C) 2003-2005 Frederico Caldeira Knabben
4
 * Copyright (C) 2003-2006 Frederico Caldeira Knabben
4
 * 
5
 * 
5
 * Licensed under the terms of the GNU Lesser General Public License:
6
 * Licensed under the terms of the GNU Lesser General Public License:
6
 * 		http://www.opensource.org/licenses/lgpl-license.php
7
 * 		http://www.opensource.org/licenses/lgpl-license.php
7
 * 
8
 * 
8
 * For further information visit:
9
 * For further information visit:
Line 15... Line 16...
15
 * 	It automatically popups if the Debug = true in the configuration file.
16
 * 	It automatically popups if the Debug = true in the configuration file.
16
 * 
17
 * 
17
 * File Authors:
18
 * File Authors:
18
 * 		Frederico Caldeira Knabben (fredck@fckeditor.net)
19
 * 		Frederico Caldeira Knabben (fredck@fckeditor.net)
19
-->
20
-->
20
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
21
<html xmlns="http://www.w3.org/1999/xhtml">
21
<html>
-
 
22
	<head>
22
<head>
23
		<meta name="ROBOTS" content="NOINDEX, NOFOLLOW">
-
 
24
		<title>FCKeditor Debug Window</title>
23
	<title>FCKeditor Debug Window</title>
-
 
24
	<meta name="robots" content="noindex, nofollow" />
25
		<script type="text/javascript">
25
	<script type="text/javascript">
Line 26... Line 26...
26
 
26
 
27
var oWindow ;
27
var oWindow ;
Line 28... Line 28...
28
var oDiv ;
28
var oDiv ;
29
 
29
 
Line 30... Line 30...
30
if ( !window.FCKMessages )
30
if ( !window.FCKMessages )
31
	window.FCKMessages = new Array() ;
31
	window.FCKMessages = new Array() ;
32
 
32
 
33
function Initialize()
33
window.onload = function()
34
{
34
{
35
	oWindow = window.frames[ 'eOutput' ]
35
	oWindow = document.getElementById('xOutput').contentWindow ;
36
	oWindow.document.open() ;
36
	oWindow.document.open() ;
37
	oWindow.document.write( '<div id="divMsg"><\/div>' ) ;
37
	oWindow.document.write( '<div id="divMsg"><\/div>' ) ;
Line 82... Line 82...
82
 
82
 
83
function Clear()
83
function Clear()
84
{
84
{
85
	oDiv.innerHTML = '' ;
85
	oDiv.innerHTML = '' ;
86
}
-
 
87
		</script>
-
 
88
	</head>
-
 
89
	<body onload="Initialize();" bottomMargin="10" leftMargin="10" topMargin="10" rightMargin="10">
-
 
90
		<TABLE height="100%" cellSpacing="5" cellPadding="0" width="100%" border="0">
-
 
91
			<TR>
-
 
92
				<TD>
-
 
93
					<TABLE cellSpacing="0" cellPadding="0" width="100%" border="0">
-
 
94
						<TR>
-
 
95
							<TD><FONT size="+2"><STRONG>FCKeditor Debug Window</STRONG></FONT></TD>
-
 
96
							<TD align="right"><INPUT type="button" value="Clear" onclick="Clear();"></TD>
-
 
97
						</TR>
-
 
98
					</TABLE>
-
 
99
				</TD>
-
 
100
			</TR>
-
 
101
			<TR>
-
 
102
				<TD height="100%" style="BORDER-RIGHT: #696969 1px solid; BORDER-TOP: #696969 1px solid; BORDER-LEFT: #696969 1px solid; BORDER-BOTTOM: #696969 1px solid">
-
 
103
					<iframe id="eOutput" name="eOutput" width="100%" height="100%" scrolling="auto" src="fckblank.html" frameborder="no"></iframe>
-
 
104
				</TD>
-
 
105
			</TR>
-
 
106
		</TABLE>
-
 
107
	</body>
-
 
108
</html>
86
}
-
 
87
	</script>
-
 
88
</head>
-
 
89
<body style="margin: 10px">
-
 
90
	<table style="height: 100%" cellspacing="5" cellpadding="0" width="100%" border="0">
-
 
91
		<tr>
-
 
92
			<td>
-
 
93
				<table cellspacing="0" cellpadding="0" width="100%" border="0">
-
 
94
					<tr>
-
 
95
						<td style="font-weight: bold; font-size: 1.2em;">
-
 
96
							FCKeditor Debug Window</td>
-
 
97
						<td align="right">
-
 
98
							<input type="button" value="Clear" onclick="Clear();" /></td>
-
 
99
					</tr>
-
 
100
				</table>
-
 
101
			</td>
-
 
102
		</tr>
-
 
103
		<tr style="height: 100%">
-
 
104
			<td style="border: #696969 1px solid">
-
 
105
				<iframe id="xOutput" width="100%" height="100%" scrolling="auto" src="fckblank.html"
-
 
106
					frameborder="0"></iframe>
-
 
107
			</td>
-
 
108
		</tr>
-
 
109
	</table>
-
 
110
</body>
-
 
111
</html>