Subversion Repositories Applications.papyrus

Rev

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

Rev 1688 Rev 1921
Line 1... Line 1...
1
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
1
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
2
<!--
2
<!--
3
 * FCKeditor - The text editor for internet
3
 * FCKeditor - The text editor for Internet - http://www.fckeditor.net
4
 * Copyright (C) 2003-2006 Frederico Caldeira Knabben
4
 * Copyright (C) 2003-2008 Frederico Caldeira Knabben
-
 
5
 *
-
 
6
 * == BEGIN LICENSE ==
5
 * 
7
 *
6
 * Licensed under the terms of the GNU Lesser General Public License:
8
 * Licensed under the terms of any of the following licenses at your
-
 
9
 * choice:
-
 
10
 *
-
 
11
 *  - GNU General Public License Version 2 or later (the "GPL")
7
 * 		http://www.opensource.org/licenses/lgpl-license.php
12
 *    http://www.gnu.org/licenses/gpl.html
8
 * 
13
 *
9
 * For further information visit:
14
 *  - GNU Lesser General Public License Version 2.1 or later (the "LGPL")
10
 * 		http://www.fckeditor.net/
15
 *    http://www.gnu.org/licenses/lgpl.html
11
 * 
16
 *
12
 * "Support Open Source software. What about a donation today?"
17
 *  - Mozilla Public License Version 1.1 or later (the "MPL")
-
 
18
 *    http://www.mozilla.org/MPL/MPL-1.1.html
13
 * 
19
 *
14
 * File Name: fck_paste.html
20
 * == END LICENSE ==
-
 
21
 *
15
 * 	This dialog is shown when, for some reason (usually security settings), 
22
 * This dialog is shown when, for some reason (usually security settings),
16
 * 	the user is not able to paste data from the clipboard to the editor using 
23
 * the user is not able to paste data from the clipboard to the editor using
17
 * 	the toolbar buttons or the context menu.
24
 * the toolbar buttons or the context menu.
18
 * 
-
 
19
 * File Authors:
-
 
20
 * 		Frederico Caldeira Knabben (fredck@fckeditor.net)
-
 
21
-->
25
-->
22
<html xmlns="http://www.w3.org/1999/xhtml">
26
<html xmlns="http://www.w3.org/1999/xhtml">
23
<head>
27
<head>
24
	<title></title>
28
	<title></title>
25
	<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
29
	<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
26
	<meta name="robots" content="noindex, nofollow" />
30
	<meta name="robots" content="noindex, nofollow" />
-
 
31
	<script src="common/fck_dialog_common.js" type="text/javascript"></script>
27
	<script type="text/javascript">
32
	<script type="text/javascript">
-
 
33
var dialog = window.parent ;
28
var oEditor = window.parent.InnerDialogLoaded() ;
34
var oEditor = dialog.InnerDialogLoaded() ;
-
 
35
var FCK = oEditor.FCK;
-
 
36
var FCKTools	= oEditor.FCKTools ;
-
 
37
var FCKConfig	= oEditor.FCKConfig ;
-
 
38
var FCKBrowserInfo = oEditor.FCKBrowserInfo ;
Line 29... Line 39...
29
 
39
 
30
window.onload = function ()
40
window.onload = function ()
31
{
41
{
32
	// First of all, translate the dialog box texts
42
	// First of all, translate the dialog box texts
33
	oEditor.FCKLanguageManager.TranslatePage(document) ;
43
	oEditor.FCKLanguageManager.TranslatePage(document) ;
34
	
44
 
-
 
45
	var sPastingType = dialog.Args().CustomValue ;
-
 
46
 
35
	if ( window.parent.dialogArguments.CustomValue == 'Word' )
47
	if ( sPastingType == 'Word' || sPastingType == 'Security' )
-
 
48
	{
-
 
49
		if ( sPastingType == 'Security' )
-
 
50
			document.getElementById( 'xSecurityMsg' ).style.display = '' ;
-
 
51
 
-
 
52
		// For document.domain compatibility (#123) we must do all the magic in
-
 
53
		// the URL for IE.
-
 
54
		var sFrameUrl = !oEditor.FCK_IS_CUSTOM_DOMAIN || !FCKBrowserInfo.IsIE ?
-
 
55
			'javascript:void(0)' :
-
 
56
			'javascript:void( (function(){' +
-
 
57
				'document.open() ;' +
-
 
58
				'document.domain=\'' + document.domain + '\' ;' +
-
 
59
				'document.write(\'<html><head><script>window.onerror = function() { return true ; };<\/script><\/head><body><\/body><\/html>\') ;' +
-
 
60
				'document.close() ;' +
-
 
61
				'document.body.contentEditable = true ;' +
-
 
62
				'window.focus() ;' +
-
 
63
				'})() )' ;
36
	{
64
 
-
 
65
		var eFrameSpace = document.getElementById( 'xFrameSpace' ) ;
-
 
66
		eFrameSpace.innerHTML = '<iframe id="frmData" src="' + sFrameUrl + '" ' +
-
 
67
					'height="98%" width="99%" frameborder="0" style="border: #000000 1px; background-color: #ffffff"><\/iframe>' ;
37
		var oFrame = document.getElementById('frmData')
68
 
38
		oFrame.style.display = '' ;
69
		var oFrame = eFrameSpace.firstChild ;
-
 
70
 
-
 
71
		if ( !oEditor.FCK_IS_CUSTOM_DOMAIN || !FCKBrowserInfo.IsIE )
-
 
72
		{
39
		
73
			// Avoid errors if the pasted content has any script that fails: #389
-
 
74
			var oDoc = oFrame.contentWindow.document ;
-
 
75
			oDoc.open() ;
-
 
76
			oDoc.write('<html><head><script>window.onerror = function() { return true ; };<\/script><\/head><body><\/body><\/html>') ;
-
 
77
			oDoc.close() ;
-
 
78
 
40
		if ( oFrame.contentDocument ) 
79
			if ( FCKBrowserInfo.IsIE )
41
			oFrame.contentDocument.designMode = 'on' ;
80
				oDoc.body.contentEditable = true ;
-
 
81
			else
-
 
82
				oDoc.designMode = 'on' ;
42
		else
83
 
-
 
84
			oFrame.contentWindow.focus();
43
			oFrame.contentWindow.document.body.contentEditable = true ;
85
		}
44
	}
86
	}
45
	else
87
	else
46
	{
88
	{
47
		document.getElementById('txtData').style.display = '' ;
-
 
48
		document.getElementById('oWordCommands').style.display = 'none' ;
89
		document.getElementById('txtData').style.display = '' ;
Line -... Line 90...
-
 
90
	}
-
 
91
 
-
 
92
	if ( sPastingType != 'Word' )
49
	}
93
		document.getElementById('oWordCommands').style.display = 'none' ;
50
 
94
 
51
	window.parent.SetOkButton( true ) ;	
95
	dialog.SetOkButton( true ) ;
Line 52... Line 96...
52
	window.parent.SetAutoSize( true ) ;	
96
	dialog.SetAutoSize( true ) ;
53
}
97
}
-
 
98
 
-
 
99
function Ok()
-
 
100
{
54
 
101
	// Before doing anything, save undo snapshot.
55
function Ok()
102
	oEditor.FCKUndo.SaveUndoStep() ;
56
{
103
 
-
 
104
	var sHtml ;
-
 
105
 
57
	var sHtml ;
106
	var sPastingType = dialog.Args().CustomValue ;
58
	
107
 
-
 
108
	if ( sPastingType == 'Word' || sPastingType == 'Security' )
59
	if ( window.parent.dialogArguments.CustomValue == 'Word' )
109
	{
60
	{
110
		var oFrame = document.getElementById('frmData') ;
61
		var oFrame = document.getElementById('frmData') ;
111
		var oBody ;
62
		
112
 
63
		if ( oFrame.contentDocument ) 
113
		if ( oFrame.contentDocument )
Line -... Line 114...
-
 
114
			oBody = oFrame.contentDocument.body ;
-
 
115
		else
-
 
116
			oBody = oFrame.contentWindow.document.body ;
-
 
117
 
-
 
118
		if ( sPastingType == 'Word' )
-
 
119
		{
-
 
120
			// If a plugin creates a FCK.CustomCleanWord function it will be called instead of the default one
-
 
121
			if ( typeof( FCK.CustomCleanWord ) == 'function' )
-
 
122
				sHtml = FCK.CustomCleanWord( oBody, document.getElementById('chkRemoveFont').checked, document.getElementById('chkRemoveStyles').checked ) ;
-
 
123
			else
-
 
124
				sHtml = CleanWord( oBody, document.getElementById('chkRemoveFont').checked, document.getElementById('chkRemoveStyles').checked ) ;
-
 
125
		}
-
 
126
		else
64
			sHtml = oFrame.contentDocument.body.innerHTML ;
127
			sHtml = oBody.innerHTML ;
65
		else
128
 
66
			sHtml = oFrame.contentWindow.document.body.innerHTML ;
129
		// Fix relative anchor URLs (IE automatically adds the current page URL).
67
 
130
		var re = new RegExp( window.location + "#", "g" ) ;
68
		sHtml = CleanWord( sHtml ) ;
131
		sHtml = sHtml.replace( re, '#') ;
-
 
132
	}
-
 
133
	else
-
 
134
	{
-
 
135
		sHtml = oEditor.FCKTools.HTMLEncode( document.getElementById('txtData').value )  ;
-
 
136
		sHtml = FCKTools.ProcessLineBreaks( oEditor, FCKConfig, sHtml ) ;
-
 
137
 
-
 
138
		// FCK.InsertHtml() does not work for us, since document fragments cannot contain node fragments. :(
-
 
139
		// Use the marker method instead. It's primitive, but it works.
-
 
140
		var range = new oEditor.FCKDomRange( oEditor.FCK.EditorWindow ) ;
-
 
141
		var oDoc = oEditor.FCK.EditorDocument ;
-
 
142
		dialog.Selection.EnsureSelection() ;
-
 
143
		range.MoveToSelection() ;
-
 
144
		range.DeleteContents() ;
-
 
145
		var marker = [] ;
-
 
146
		for ( var i = 0 ; i < 5 ; i++ )
-
 
147
			marker.push( parseInt(Math.random() * 100000, 10 ) ) ;
-
 
148
		marker = marker.join( "" ) ;
-
 
149
		range.InsertNode ( oDoc.createTextNode( marker ) ) ;
-
 
150
		var bookmark = range.CreateBookmark() ;
-
 
151
 
-
 
152
		// Now we've got a marker indicating the paste position in the editor document.
-
 
153
		// Find its position in the HTML code.
-
 
154
		var htmlString = oDoc.body.innerHTML ;
69
	}
155
		var index = htmlString.indexOf( marker ) ;
-
 
156
 
-
 
157
		// Split it the HTML code up, add the code we generated, and put them back together.
-
 
158
		var htmlList = [] ;
-
 
159
		htmlList.push( htmlString.substr( 0, index ) ) ;
-
 
160
		htmlList.push( sHtml ) ;
-
 
161
		htmlList.push( htmlString.substr( index + marker.length ) ) ;
-
 
162
		htmlString = htmlList.join( "" ) ;
-
 
163
 
-
 
164
		if ( oEditor.FCKBrowserInfo.IsIE )
-
 
165
			oEditor.FCK.SetInnerHtml( htmlString ) ;
-
 
166
		else
-
 
167
			oDoc.body.innerHTML = htmlString ;
-
 
168
 
-
 
169
		range.MoveToBookmark( bookmark ) ;
70
	else
170
		range.Collapse( false ) ;
71
	{
171
		range.Select() ;
72
		var sHtml = oEditor.FCKTools.HTMLEncode( document.getElementById('txtData').value )  ;
172
		range.Release() ;
73
		sHtml = sHtml.replace( /\n/g, '<BR>' ) ;
173
		return true ;
74
	}
174
	}
75
	
175
 
Line -... Line 176...
-
 
176
	oEditor.FCK.InsertHtml( sHtml ) ;
-
 
177
 
-
 
178
	return true ;
76
	oEditor.FCK.InsertHtml( sHtml ) ;
179
}
-
 
180
 
77
	
181
// This function will be called from the PasteFromWord dialog (fck_paste.html)
78
	return true ;
-
 
79
}
-
 
80
 
-
 
81
function CleanUpBox()
182
// Input: oNode a DOM node that contains the raw paste from the clipboard
82
{
-
 
83
	var oFrame = document.getElementById('frmData') ;
-
 
84
	
-
 
Line 85... Line -...
85
	if ( oFrame.contentDocument ) 
-
 
86
		oFrame.contentDocument.body.innerHTML = '' ;
-
 
87
	else
183
// bIgnoreFont, bRemoveStyles booleans according to the values set in the dialog
88
		oFrame.contentWindow.document.body.innerHTML = '' ;
184
// Output: the cleaned string
Line 89... Line -...
89
}
-
 
90
 
-
 
91
function CleanWord( html )
-
 
92
{
185
function CleanWord( oNode, bIgnoreFont, bRemoveStyles )
93
	var bIgnoreFont = document.getElementById('chkRemoveFont').checked ;
186
{
Line 94... Line 187...
94
	var bRemoveStyles = document.getElementById('chkRemoveStyles').checked ;
187
	var html = oNode.innerHTML ;
95
 
188
 
96
	html = html.replace(/<o:p>\s*<\/o:p>/g, "") ;
189
	html = html.replace(/<o:p>\s*<\/o:p>/g, '') ;
Line 97... Line 190...
97
	html = html.replace(/<o:p>.*?<\/o:p>/g, "&nbsp;") ;
190
	html = html.replace(/<o:p>[\s\S]*?<\/o:p>/g, '&nbsp;') ;
98
	
191
 
Line 99... Line 192...
99
	// Remove mso-xxx styles.
192
	// Remove mso-xxx styles.
Line 100... Line 193...
100
	html = html.replace( /\s*mso-[^:]+:[^;"]+;?/gi, "" ) ;
193
	html = html.replace( /\s*mso-[^:]+:[^;"]+;?/gi, '' ) ;
Line 101... Line 194...
101
 
194
 
Line 102... Line 195...
102
	// Remove margin styles.
195
	// Remove margin styles.
103
	html = html.replace( /\s*MARGIN: 0cm 0cm 0pt\s*;/gi, "" ) ;
196
	html = html.replace( /\s*MARGIN: 0cm 0cm 0pt\s*;/gi, '' ) ;
Line 104... Line 197...
104
	html = html.replace( /\s*MARGIN: 0cm 0cm 0pt\s*"/gi, "\"" ) ;
197
	html = html.replace( /\s*MARGIN: 0cm 0cm 0pt\s*"/gi, "\"" ) ;
105
 
198
 
106
	html = html.replace( /\s*TEXT-INDENT: 0cm\s*;/gi, "" ) ;
199
	html = html.replace( /\s*TEXT-INDENT: 0cm\s*;/gi, '' ) ;
107
	html = html.replace( /\s*TEXT-INDENT: 0cm\s*"/gi, "\"" ) ;
200
	html = html.replace( /\s*TEXT-INDENT: 0cm\s*"/gi, "\"" ) ;
108
 
201
 
Line 109... Line 202...
109
	html = html.replace( /\s*TEXT-ALIGN: [^\s;]+;?"/gi, "\"" ) ;
202
	html = html.replace( /\s*TEXT-ALIGN: [^\s;]+;?"/gi, "\"" ) ;
110
 
203
 
111
	html = html.replace( /\s*PAGE-BREAK-BEFORE: [^\s;]+;?"/gi, "\"" ) ;
204
	html = html.replace( /\s*PAGE-BREAK-BEFORE: [^\s;]+;?"/gi, "\"" ) ;
112
 
205
 
113
	html = html.replace( /\s*FONT-VARIANT: [^\s;]+;?"/gi, "\"" ) ;
206
	html = html.replace( /\s*FONT-VARIANT: [^\s;]+;?"/gi, "\"" ) ;
Line 114... Line 207...
114
 
207
 
115
	html = html.replace( /\s*tab-stops:[^;"]*;?/gi, "" ) ;
208
	html = html.replace( /\s*tab-stops:[^;"]*;?/gi, '' ) ;
116
	html = html.replace( /\s*tab-stops:[^"]*/gi, "" ) ;
209
	html = html.replace( /\s*tab-stops:[^"]*/gi, '' ) ;
Line -... Line 210...
-
 
210
 
-
 
211
	// Remove FONT face attributes.
-
 
212
	if ( bIgnoreFont )
-
 
213
	{
117
 
214
		html = html.replace( /\s*face="[^"]*"/gi, '' ) ;
118
	// Remove FONT face attributes.
215
		html = html.replace( /\s*face=[^ >]*/gi, '' ) ;
119
	if ( bIgnoreFont )
216
 
120
	{
217
		html = html.replace( /\s*FONT-FAMILY:[^;"]*;?/gi, '' ) ;
121
		html = html.replace( /\s*face="[^"]*"/gi, "" ) ;
218
	}
122
		html = html.replace( /\s*face=[^ >]*/gi, "" ) ;
219
 
123
 
220
	// Remove Class attributes
124
		html = html.replace( /\s*FONT-FAMILY:[^;"]*;?/gi, "" ) ;
221
	html = html.replace(/<(\w[^>]*) class=([^ |>]*)([^>]*)/gi, "<$1$3") ;
125
	}
222
 
126
	
223
	// Remove styles.
127
	// Remove Class attributes
224
	if ( bRemoveStyles )
128
	html = html.replace(/<(\w[^>]*) class=([^ |>]*)([^>]*)/gi, "<$1$3") ;
225
		html = html.replace( /<(\w[^>]*) style="([^\"]*)"([^>]*)/gi, "<$1$3" ) ;
129
 
226
 
Line 130... Line 227...
130
	// Remove styles.
227
	// Remove style, meta and link tags
131
	if ( bRemoveStyles )
228
	html = html.replace( /<STYLE[^>]*>[\s\S]*?<\/STYLE[^>]*>/gi, '' ) ;
-
 
229
	html = html.replace( /<(?:META|LINK)[^>]*>\s*/gi, '' ) ;
-
 
230
 
-
 
231
	// Remove empty styles.
132
		html = html.replace( /<(\w[^>]*) style="([^\"]*)"([^>]*)/gi, "<$1$3" ) ;
232
	html =  html.replace( /\s*style="\s*"/gi, '' ) ;
133
 
233
 
134
	// Remove empty styles.
234
	html = html.replace( /<SPAN\s*[^>]*>\s*&nbsp;\s*<\/SPAN>/gi, '&nbsp;' ) ;
135
	html =  html.replace( /\s*style="\s*"/gi, '' ) ;
235
 
136
	
236
	html = html.replace( /<SPAN\s*[^>]*><\/SPAN>/gi, '' ) ;
137
	html = html.replace( /<SPAN\s*[^>]*>\s*&nbsp;\s*<\/SPAN>/gi, '&nbsp;' ) ;
237
 
-
 
238
	// Remove Lang attributes
-
 
239
	html = html.replace(/<(\w[^>]*) lang=([^ |>]*)([^>]*)/gi, "<$1$3") ;
138
	
240
 
139
	html = html.replace( /<SPAN\s*[^>]*><\/SPAN>/gi, '' ) ;
241
	html = html.replace( /<SPAN\s*>([\s\S]*?)<\/SPAN>/gi, '$1' ) ;
Line 140... Line 242...
140
	
242
 
141
	// Remove Lang attributes
243
	html = html.replace( /<FONT\s*>([\s\S]*?)<\/FONT>/gi, '$1' ) ;
142
	html = html.replace(/<(\w[^>]*) lang=([^ |>]*)([^>]*)/gi, "<$1$3") ;
-
 
143
	
-
 
144
	html = html.replace( /<SPAN\s*>(.*?)<\/SPAN>/gi, '$1' ) ;
-
 
145
	
-
 
Line -... Line 244...
-
 
244
 
146
	html = html.replace( /<FONT\s*>(.*?)<\/FONT>/gi, '$1' ) ;
245
	// Remove XML elements and declarations
147
 
246
	html = html.replace(/<\\?\?xml[^>]*>/gi, '' ) ;
-
 
247
 
-
 
248
	// Remove w: tags with contents.
148
	// Remove XML elements and declarations
249
	html = html.replace( /<w:[^>]*>[\s\S]*?<\/w:[^>]*>/gi, '' ) ;
Line 149... Line 250...
149
	html = html.replace(/<\\?\?xml[^>]*>/gi, "") ;
250
 
-
 
251
	// Remove Tags with XML namespace declarations: <o:p><\/o:p>
-
 
252
	html = html.replace(/<\/?\w+:[^>]*>/gi, '' ) ;
150
	
253
 
-
 
254
	// Remove comments [SF BUG-1481861].
-
 
255
	html = html.replace(/<\!--[\s\S]*?-->/g, '' ) ;
-
 
256
 
151
	// Remove Tags with XML namespace declarations: <o:p><\/o:p>
257
	html = html.replace( /<(U|I|STRIKE)>&nbsp;<\/\1>/g, '&nbsp;' ) ;
-
 
258
 
-
 
259
	html = html.replace( /<H\d>\s*<\/H\d>/gi, '' ) ;
-
 
260
 
-
 
261
	// Remove "display:none" tags.
-
 
262
	html = html.replace( /<(\w+)[^>]*\sstyle="[^"]*DISPLAY\s?:\s?none[\s\S]*?<\/\1>/ig, '' ) ;
-
 
263
 
-
 
264
	// Remove language tags
-
 
265
	html = html.replace( /<(\w[^>]*) language=([^ |>]*)([^>]*)/gi, "<$1$3") ;
-
 
266
 
-
 
267
	// Remove onmouseover and onmouseout events (from MS Word comments effect)
152
	html = html.replace(/<\/?\w+:[^>]*>/gi, "") ;
268
	html = html.replace( /<(\w[^>]*) onmouseover="([^\"]*)"([^>]*)/gi, "<$1$3") ;
153
	
269
	html = html.replace( /<(\w[^>]*) onmouseout="([^\"]*)"([^>]*)/gi, "<$1$3") ;
154
	// Remove comments [SF BUG-1481861].
270
 
155
	html = html.replace(/<\!--.*-->/g, "") ;
271
	if ( FCKConfig.CleanWordKeepsStructure )
156
	
272
	{
157
	html = html.replace( /<H\d>\s*<\/H\d>/gi, '' ) ;
273
		// The original <Hn> tag send from Word is something like this: <Hn style="margin-top:0px;margin-bottom:0px">
158
 
274
		html = html.replace( /<H(\d)([^>]*)>/gi, '<h$1>' ) ;
-
 
275
 
-
 
276
		// Word likes to insert extra <font> tags, when using MSIE. (Wierd).
159
	html = html.replace( /<H1([^>]*)>/gi, '<div$1><b><font size="6">' ) ;
277
		html = html.replace( /<(H\d)><FONT[^>]*>([\s\S]*?)<\/FONT><\/\1>/gi, '<$1>$2<\/$1>' );
160
	html = html.replace( /<H2([^>]*)>/gi, '<div$1><b><font size="5">' ) ;
278
		html = html.replace( /<(H\d)><EM>([\s\S]*?)<\/EM><\/\1>/gi, '<$1>$2<\/$1>' );
-
 
279
	}
Line 161... Line 280...
161
	html = html.replace( /<H3([^>]*)>/gi, '<div$1><b><font size="4">' ) ;
280
	else
162
	html = html.replace( /<H4([^>]*)>/gi, '<div$1><b><font size="3">' ) ;
281
	{
Line 163... Line 282...
163
	html = html.replace( /<H5([^>]*)>/gi, '<div$1><b><font size="2">' ) ;
282
		html = html.replace( /<H1([^>]*)>/gi, '<div$1><b><font size="6">' ) ;
-
 
283
		html = html.replace( /<H2([^>]*)>/gi, '<div$1><b><font size="5">' ) ;
164
	html = html.replace( /<H6([^>]*)>/gi, '<div$1><b><font size="1">' ) ;
284
		html = html.replace( /<H3([^>]*)>/gi, '<div$1><b><font size="4">' ) ;
165
 
285
		html = html.replace( /<H4([^>]*)>/gi, '<div$1><b><font size="3">' ) ;
166
	html = html.replace( /<\/H\d>/gi, '<\/font><\/b><\/div>' ) ;
286
		html = html.replace( /<H5([^>]*)>/gi, '<div$1><b><font size="2">' ) ;
167
	
287
		html = html.replace( /<H6([^>]*)>/gi, '<div$1><b><font size="1">' ) ;
168
	html = html.replace( /<(U|I|STRIKE)>&nbsp;<\/\1>/g, '&nbsp;' ) ;
288
 
-
 
289
		html = html.replace( /<\/H\d>/gi, '<\/font><\/b><\/div>' ) ;
-
 
290
 
-
 
291
		// Transform <P> to <DIV>
-
 
292
		var re = new RegExp( '(<P)([^>]*>[\\s\\S]*?)(<\/P>)', 'gi' ) ;	// Different because of a IE 5.0 error
-
 
293
		html = html.replace( re, '<div$2<\/div>' ) ;
-
 
294
 
-
 
295
		// Remove empty tags (three times, just to be sure).
169
 
296
		// This also removes any empty anchor
170
	// Remove empty tags (three times, just to be sure).
297
		html = html.replace( /<([^\s>]+)(\s[^>]*)?>\s*<\/\1>/g, '' ) ;
171
	html = html.replace( /<([^\s>]+)(\s[^>]*)?>\s*<\/\1>/g, '' ) ;
298
		html = html.replace( /<([^\s>]+)(\s[^>]*)?>\s*<\/\1>/g, '' ) ;
172
	html = html.replace( /<([^\s>]+)(\s[^>]*)?>\s*<\/\1>/g, '' ) ;
299
		html = html.replace( /<([^\s>]+)(\s[^>]*)?>\s*<\/\1>/g, '' ) ;
173
	html = html.replace( /<([^\s>]+)(\s[^>]*)?>\s*<\/\1>/g, '' ) ;
300
	}
174
 
301
 
175
	// Transform <P> to <DIV>
302
	return html ;
176
	var re = new RegExp( "(<P)([^>]*>.*?)(<\/P>)", "gi" ) ;	// Different because of a IE 5.0 error
303
}
177
	html = html.replace( re, "<div$2<\/div>" ) ;
-
 
178
	
304
 
179
	// Fix relative anchor URLs (IE automatically adds the current page URL).
305
	</script>
180
	re = new RegExp( window.location + "#", "g" ) ;
-
 
181
	html = html.replace( re, '#') ;
-
 
182
 
-
 
183
	return html ;
306
 
184
}
307
</head>
185
 
308
<body style="overflow: hidden">
186
	</script>
309
	<table cellspacing="0" cellpadding="0" width="100%" border="0" style="height: 98%">
187
</head>
-
 
188
<body style="overflow: hidden">
310
		<tr>
189
	<table cellspacing="0" cellpadding="0" width="100%" border="0" style="height: 98%">
-
 
190
		<tr>
311
			<td>
191
			<td>
312
				<div id="xSecurityMsg" style="display: none">
192
				<span fcklang="DlgPasteMsg2">Please paste inside the following box using the keyboard
313
					<span fcklang="DlgPasteSec">Because of your browser security settings,
193
					(<strong>Ctrl+V</strong>) and hit <strong>OK</strong>.</span>
314
						the editor is not able to access your clipboard data directly. You are required
194
				<br />
315
						to paste it again in this window.</span><br />
195
				&nbsp;
316
					&nbsp;
196
			</td>
317
				</div>
197
		</tr>
-
 
198
		<tr>
-
 
199
			<td valign="top" height="100%" style="border-right: #000000 1px solid; border-top: #000000 1px solid;
-
 
200
				border-left: #000000 1px solid; border-bottom: #000000 1px solid">
-
 
201
				<textarea id="txtData" cols="80" rows="5" style="border: #000000 1px; display: none;
318
				<div>
202
					width: 99%; height: 98%"></textarea>
-
 
203
				<iframe id="frmData" src="javascript:void(0)" height="98%" width="99%" frameborder="0"
319
					<span fcklang="DlgPasteMsg2">Please paste inside the following box using the keyboard
204
					style="border-right: #000000 1px; border-top: #000000 1px; display: none; border-left: #000000 1px;
320
						(<strong>Ctrl+V</strong>) and hit <strong>OK</strong>.</span><br />
205
					border-bottom: #000000 1px; background-color: #ffffff"></iframe>
321
					&nbsp;
206
			</td>
322
				</div>
207
		</tr>
323
			</td>