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