2007-12-17 18:58:19 +01:00
|
|
|
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
|
|
|
|
<!--
|
|
|
|
* FCKeditor - The text editor for Internet - http://www.fckeditor.net
|
2008-04-15 14:15:22 +02:00
|
|
|
* Copyright (C) 2003-2008 Frederico Caldeira Knabben
|
2007-12-17 18:58:19 +01:00
|
|
|
*
|
|
|
|
* == BEGIN LICENSE ==
|
|
|
|
*
|
|
|
|
* Licensed under the terms of any of the following licenses at your
|
|
|
|
* choice:
|
|
|
|
*
|
|
|
|
* - GNU General Public License Version 2 or later (the "GPL")
|
|
|
|
* http://www.gnu.org/licenses/gpl.html
|
|
|
|
*
|
|
|
|
* - GNU Lesser General Public License Version 2.1 or later (the "LGPL")
|
|
|
|
* http://www.gnu.org/licenses/lgpl.html
|
|
|
|
*
|
|
|
|
* - Mozilla Public License Version 1.1 or later (the "MPL")
|
|
|
|
* http://www.mozilla.org/MPL/MPL-1.1.html
|
|
|
|
*
|
|
|
|
* == END LICENSE ==
|
|
|
|
*
|
|
|
|
* This dialog is shown when, for some reason (usually security settings),
|
|
|
|
* the user is not able to paste data from the clipboard to the editor using
|
|
|
|
* the toolbar buttons or the context menu.
|
|
|
|
-->
|
|
|
|
<html xmlns="http://www.w3.org/1999/xhtml">
|
|
|
|
<head>
|
|
|
|
<title></title>
|
|
|
|
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
|
|
|
|
<meta name="robots" content="noindex, nofollow" />
|
2008-04-15 14:15:22 +02:00
|
|
|
<script src="common/fck_dialog_common.js" type="text/javascript"></script>
|
2007-12-17 18:58:19 +01:00
|
|
|
<script type="text/javascript">
|
2008-04-15 14:15:22 +02:00
|
|
|
var dialog = window.parent ;
|
|
|
|
var oEditor = dialog.InnerDialogLoaded() ;
|
2007-12-17 18:58:19 +01:00
|
|
|
var FCK = oEditor.FCK;
|
|
|
|
var FCKTools = oEditor.FCKTools ;
|
|
|
|
var FCKConfig = oEditor.FCKConfig ;
|
2008-04-15 14:15:22 +02:00
|
|
|
var FCKBrowserInfo = oEditor.FCKBrowserInfo ;
|
2007-12-17 18:58:19 +01:00
|
|
|
|
|
|
|
window.onload = function ()
|
|
|
|
{
|
|
|
|
// First of all, translate the dialog box texts
|
|
|
|
oEditor.FCKLanguageManager.TranslatePage(document) ;
|
|
|
|
|
2008-04-15 14:15:22 +02:00
|
|
|
var sPastingType = dialog.Args().CustomValue ;
|
2007-12-17 18:58:19 +01:00
|
|
|
|
|
|
|
if ( sPastingType == 'Word' || sPastingType == 'Security' )
|
|
|
|
{
|
|
|
|
if ( sPastingType == 'Security' )
|
|
|
|
document.getElementById( 'xSecurityMsg' ).style.display = '' ;
|
|
|
|
|
2008-04-15 14:15:22 +02:00
|
|
|
// For document.domain compatibility (#123) we must do all the magic in
|
|
|
|
// the URL for IE.
|
|
|
|
var sFrameUrl = !oEditor.FCK_IS_CUSTOM_DOMAIN || !FCKBrowserInfo.IsIE ?
|
|
|
|
'javascript:void(0)' :
|
|
|
|
'javascript:void( (function(){' +
|
|
|
|
'document.open() ;' +
|
|
|
|
'document.domain=\'' + document.domain + '\' ;' +
|
|
|
|
'document.write(\'<html><head><script>window.onerror = function() { return true ; };<\/script><\/head><body><\/body><\/html>\') ;' +
|
|
|
|
'document.close() ;' +
|
|
|
|
'document.body.contentEditable = true ;' +
|
|
|
|
'window.focus() ;' +
|
|
|
|
'})() )' ;
|
|
|
|
|
|
|
|
var eFrameSpace = document.getElementById( 'xFrameSpace' ) ;
|
|
|
|
eFrameSpace.innerHTML = '<iframe id="frmData" src="' + sFrameUrl + '" ' +
|
|
|
|
'height="98%" width="99%" frameborder="0" style="border: #000000 1px; background-color: #ffffff"></iframe>' ;
|
|
|
|
|
|
|
|
var oFrame = eFrameSpace.firstChild ;
|
|
|
|
|
|
|
|
if ( !oEditor.FCK_IS_CUSTOM_DOMAIN || !FCKBrowserInfo.IsIE )
|
|
|
|
{
|
|
|
|
// Avoid errors if the pasted content has any script that fails: #389
|
|
|
|
var oDoc = oFrame.contentWindow.document ;
|
|
|
|
oDoc.open() ;
|
|
|
|
oDoc.write('<html><head><script>window.onerror = function() { return true ; };<\/script><\/head><body><\/body><\/html>') ;
|
|
|
|
oDoc.close() ;
|
|
|
|
|
|
|
|
if ( FCKBrowserInfo.IsIE )
|
|
|
|
oDoc.body.contentEditable = true ;
|
|
|
|
else
|
|
|
|
oDoc.designMode = 'on' ;
|
2007-12-17 18:58:19 +01:00
|
|
|
|
2008-04-15 14:15:22 +02:00
|
|
|
oFrame.contentWindow.focus();
|
|
|
|
}
|
2007-12-17 18:58:19 +01:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
document.getElementById('txtData').style.display = '' ;
|
|
|
|
}
|
|
|
|
|
|
|
|
if ( sPastingType != 'Word' )
|
|
|
|
document.getElementById('oWordCommands').style.display = 'none' ;
|
|
|
|
|
2008-04-15 14:15:22 +02:00
|
|
|
dialog.SetOkButton( true ) ;
|
|
|
|
dialog.SetAutoSize( true ) ;
|
2007-12-17 18:58:19 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
function Ok()
|
|
|
|
{
|
|
|
|
// Before doing anything, save undo snapshot.
|
|
|
|
oEditor.FCKUndo.SaveUndoStep() ;
|
|
|
|
|
|
|
|
var sHtml ;
|
|
|
|
|
2008-04-15 14:15:22 +02:00
|
|
|
var sPastingType = dialog.Args().CustomValue ;
|
2007-12-17 18:58:19 +01:00
|
|
|
|
|
|
|
if ( sPastingType == 'Word' || sPastingType == 'Security' )
|
|
|
|
{
|
|
|
|
var oFrame = document.getElementById('frmData') ;
|
|
|
|
var oBody ;
|
|
|
|
|
|
|
|
if ( oFrame.contentDocument )
|
|
|
|
oBody = oFrame.contentDocument.body ;
|
|
|
|
else
|
|
|
|
oBody = oFrame.contentWindow.document.body ;
|
|
|
|
|
|
|
|
if ( sPastingType == 'Word' )
|
|
|
|
{
|
|
|
|
// If a plugin creates a FCK.CustomCleanWord function it will be called instead of the default one
|
|
|
|
if ( typeof( FCK.CustomCleanWord ) == 'function' )
|
|
|
|
sHtml = FCK.CustomCleanWord( oBody, document.getElementById('chkRemoveFont').checked, document.getElementById('chkRemoveStyles').checked ) ;
|
|
|
|
else
|
|
|
|
sHtml = CleanWord( oBody, document.getElementById('chkRemoveFont').checked, document.getElementById('chkRemoveStyles').checked ) ;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
sHtml = oBody.innerHTML ;
|
|
|
|
|
|
|
|
// Fix relative anchor URLs (IE automatically adds the current page URL).
|
|
|
|
var re = new RegExp( window.location + "#", "g" ) ;
|
|
|
|
sHtml = sHtml.replace( re, '#') ;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
sHtml = oEditor.FCKTools.HTMLEncode( document.getElementById('txtData').value ) ;
|
|
|
|
sHtml = FCKTools.ProcessLineBreaks( oEditor, FCKConfig, sHtml ) ;
|
|
|
|
|
|
|
|
// FCK.InsertHtml() does not work for us, since document fragments cannot contain node fragments. :(
|
|
|
|
// Use the marker method instead. It's primitive, but it works.
|
|
|
|
var range = new oEditor.FCKDomRange( oEditor.FCK.EditorWindow ) ;
|
|
|
|
var oDoc = oEditor.FCK.EditorDocument ;
|
2008-04-15 14:15:22 +02:00
|
|
|
dialog.Selection.EnsureSelection() ;
|
2007-12-17 18:58:19 +01:00
|
|
|
range.MoveToSelection() ;
|
|
|
|
range.DeleteContents() ;
|
|
|
|
var marker = [] ;
|
|
|
|
for ( var i = 0 ; i < 5 ; i++ )
|
|
|
|
marker.push( parseInt(Math.random() * 100000, 10 ) ) ;
|
|
|
|
marker = marker.join( "" ) ;
|
|
|
|
range.InsertNode ( oDoc.createTextNode( marker ) ) ;
|
|
|
|
var bookmark = range.CreateBookmark() ;
|
|
|
|
|
|
|
|
// Now we've got a marker indicating the paste position in the editor document.
|
|
|
|
// Find its position in the HTML code.
|
|
|
|
var htmlString = oDoc.body.innerHTML ;
|
|
|
|
var index = htmlString.indexOf( marker ) ;
|
|
|
|
|
|
|
|
// Split it the HTML code up, add the code we generated, and put them back together.
|
|
|
|
var htmlList = [] ;
|
|
|
|
htmlList.push( htmlString.substr( 0, index ) ) ;
|
|
|
|
htmlList.push( sHtml ) ;
|
|
|
|
htmlList.push( htmlString.substr( index + marker.length ) ) ;
|
|
|
|
htmlString = htmlList.join( "" ) ;
|
|
|
|
|
|
|
|
if ( oEditor.FCKBrowserInfo.IsIE )
|
|
|
|
oEditor.FCK.SetInnerHtml( htmlString ) ;
|
|
|
|
else
|
|
|
|
oDoc.body.innerHTML = htmlString ;
|
|
|
|
|
|
|
|
range.MoveToBookmark( bookmark ) ;
|
|
|
|
range.Collapse( false ) ;
|
|
|
|
range.Select() ;
|
|
|
|
range.Release() ;
|
|
|
|
return true ;
|
|
|
|
}
|
|
|
|
|
|
|
|
oEditor.FCK.InsertHtml( sHtml ) ;
|
|
|
|
|
|
|
|
return true ;
|
|
|
|
}
|
|
|
|
|
|
|
|
// This function will be called from the PasteFromWord dialog (fck_paste.html)
|
|
|
|
// Input: oNode a DOM node that contains the raw paste from the clipboard
|
|
|
|
// bIgnoreFont, bRemoveStyles booleans according to the values set in the dialog
|
|
|
|
// Output: the cleaned string
|
|
|
|
function CleanWord( oNode, bIgnoreFont, bRemoveStyles )
|
|
|
|
{
|
|
|
|
var html = oNode.innerHTML ;
|
|
|
|
|
|
|
|
html = html.replace(/<o:p>\s*<\/o:p>/g, '') ;
|
|
|
|
html = html.replace(/<o:p>.*?<\/o:p>/g, ' ') ;
|
|
|
|
|
|
|
|
// Remove mso-xxx styles.
|
|
|
|
html = html.replace( /\s*mso-[^:]+:[^;"]+;?/gi, '' ) ;
|
|
|
|
|
|
|
|
// Remove margin styles.
|
|
|
|
html = html.replace( /\s*MARGIN: 0cm 0cm 0pt\s*;/gi, '' ) ;
|
|
|
|
html = html.replace( /\s*MARGIN: 0cm 0cm 0pt\s*"/gi, "\"" ) ;
|
|
|
|
|
|
|
|
html = html.replace( /\s*TEXT-INDENT: 0cm\s*;/gi, '' ) ;
|
|
|
|
html = html.replace( /\s*TEXT-INDENT: 0cm\s*"/gi, "\"" ) ;
|
|
|
|
|
|
|
|
html = html.replace( /\s*TEXT-ALIGN: [^\s;]+;?"/gi, "\"" ) ;
|
|
|
|
|
|
|
|
html = html.replace( /\s*PAGE-BREAK-BEFORE: [^\s;]+;?"/gi, "\"" ) ;
|
|
|
|
|
|
|
|
html = html.replace( /\s*FONT-VARIANT: [^\s;]+;?"/gi, "\"" ) ;
|
|
|
|
|
|
|
|
html = html.replace( /\s*tab-stops:[^;"]*;?/gi, '' ) ;
|
|
|
|
html = html.replace( /\s*tab-stops:[^"]*/gi, '' ) ;
|
|
|
|
|
|
|
|
// Remove FONT face attributes.
|
|
|
|
if ( bIgnoreFont )
|
|
|
|
{
|
|
|
|
html = html.replace( /\s*face="[^"]*"/gi, '' ) ;
|
|
|
|
html = html.replace( /\s*face=[^ >]*/gi, '' ) ;
|
|
|
|
|
|
|
|
html = html.replace( /\s*FONT-FAMILY:[^;"]*;?/gi, '' ) ;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Remove Class attributes
|
|
|
|
html = html.replace(/<(\w[^>]*) class=([^ |>]*)([^>]*)/gi, "<$1$3") ;
|
|
|
|
|
|
|
|
// Remove styles.
|
|
|
|
if ( bRemoveStyles )
|
|
|
|
html = html.replace( /<(\w[^>]*) style="([^\"]*)"([^>]*)/gi, "<$1$3" ) ;
|
|
|
|
|
|
|
|
// Remove empty styles.
|
|
|
|
html = html.replace( /\s*style="\s*"/gi, '' ) ;
|
|
|
|
|
|
|
|
html = html.replace( /<SPAN\s*[^>]*>\s* \s*<\/SPAN>/gi, ' ' ) ;
|
|
|
|
|
|
|
|
html = html.replace( /<SPAN\s*[^>]*><\/SPAN>/gi, '' ) ;
|
|
|
|
|
|
|
|
// Remove Lang attributes
|
|
|
|
html = html.replace(/<(\w[^>]*) lang=([^ |>]*)([^>]*)/gi, "<$1$3") ;
|
|
|
|
|
|
|
|
html = html.replace( /<SPAN\s*>(.*?)<\/SPAN>/gi, '$1' ) ;
|
|
|
|
|
|
|
|
html = html.replace( /<FONT\s*>(.*?)<\/FONT>/gi, '$1' ) ;
|
|
|
|
|
|
|
|
// Remove XML elements and declarations
|
|
|
|
html = html.replace(/<\\?\?xml[^>]*>/gi, '' ) ;
|
|
|
|
|
|
|
|
// Remove Tags with XML namespace declarations: <o:p><\/o:p>
|
|
|
|
html = html.replace(/<\/?\w+:[^>]*>/gi, '' ) ;
|
|
|
|
|
|
|
|
// Remove comments [SF BUG-1481861].
|
|
|
|
html = html.replace(/<\!--.*?-->/g, '' ) ;
|
|
|
|
|
|
|
|
html = html.replace( /<(U|I|STRIKE)> <\/\1>/g, ' ' ) ;
|
|
|
|
|
|
|
|
html = html.replace( /<H\d>\s*<\/H\d>/gi, '' ) ;
|
|
|
|
|
|
|
|
// Remove "display:none" tags.
|
|
|
|
html = html.replace( /<(\w+)[^>]*\sstyle="[^"]*DISPLAY\s?:\s?none(.*?)<\/\1>/ig, '' ) ;
|
|
|
|
|
|
|
|
// Remove language tags
|
|
|
|
html = html.replace( /<(\w[^>]*) language=([^ |>]*)([^>]*)/gi, "<$1$3") ;
|
|
|
|
|
|
|
|
// Remove onmouseover and onmouseout events (from MS Word comments effect)
|
|
|
|
html = html.replace( /<(\w[^>]*) onmouseover="([^\"]*)"([^>]*)/gi, "<$1$3") ;
|
|
|
|
html = html.replace( /<(\w[^>]*) onmouseout="([^\"]*)"([^>]*)/gi, "<$1$3") ;
|
|
|
|
|
|
|
|
if ( FCKConfig.CleanWordKeepsStructure )
|
|
|
|
{
|
|
|
|
// The original <Hn> tag send from Word is something like this: <Hn style="margin-top:0px;margin-bottom:0px">
|
|
|
|
html = html.replace( /<H(\d)([^>]*)>/gi, '<h$1>' ) ;
|
|
|
|
|
|
|
|
// Word likes to insert extra <font> tags, when using MSIE. (Wierd).
|
|
|
|
html = html.replace( /<(H\d)><FONT[^>]*>(.*?)<\/FONT><\/\1>/gi, '<$1>$2<\/$1>' );
|
|
|
|
html = html.replace( /<(H\d)><EM>(.*?)<\/EM><\/\1>/gi, '<$1>$2<\/$1>' );
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
html = html.replace( /<H1([^>]*)>/gi, '<div$1><b><font size="6">' ) ;
|
|
|
|
html = html.replace( /<H2([^>]*)>/gi, '<div$1><b><font size="5">' ) ;
|
|
|
|
html = html.replace( /<H3([^>]*)>/gi, '<div$1><b><font size="4">' ) ;
|
|
|
|
html = html.replace( /<H4([^>]*)>/gi, '<div$1><b><font size="3">' ) ;
|
|
|
|
html = html.replace( /<H5([^>]*)>/gi, '<div$1><b><font size="2">' ) ;
|
|
|
|
html = html.replace( /<H6([^>]*)>/gi, '<div$1><b><font size="1">' ) ;
|
|
|
|
|
|
|
|
html = html.replace( /<\/H\d>/gi, '<\/font><\/b><\/div>' ) ;
|
|
|
|
|
|
|
|
// Transform <P> to <DIV>
|
|
|
|
var re = new RegExp( '(<P)([^>]*>.*?)(<\/P>)', 'gi' ) ; // Different because of a IE 5.0 error
|
|
|
|
html = html.replace( re, '<div$2<\/div>' ) ;
|
|
|
|
|
|
|
|
// Remove empty tags (three times, just to be sure).
|
|
|
|
// This also removes any empty anchor
|
|
|
|
html = html.replace( /<([^\s>]+)(\s[^>]*)?>\s*<\/\1>/g, '' ) ;
|
|
|
|
html = html.replace( /<([^\s>]+)(\s[^>]*)?>\s*<\/\1>/g, '' ) ;
|
|
|
|
html = html.replace( /<([^\s>]+)(\s[^>]*)?>\s*<\/\1>/g, '' ) ;
|
|
|
|
}
|
|
|
|
|
|
|
|
return html ;
|
|
|
|
}
|
|
|
|
|
|
|
|
</script>
|
|
|
|
|
|
|
|
</head>
|
|
|
|
<body style="overflow: hidden">
|
|
|
|
<table cellspacing="0" cellpadding="0" width="100%" border="0" style="height: 98%">
|
|
|
|
<tr>
|
|
|
|
<td>
|
|
|
|
<div id="xSecurityMsg" style="display: none">
|
|
|
|
<span fcklang="DlgPasteSec">Because of your browser security settings,
|
|
|
|
the editor is not able to access your clipboard data directly. You are required
|
|
|
|
to paste it again in this window.</span><br />
|
|
|
|
|
|
|
|
</div>
|
|
|
|
<div>
|
|
|
|
<span fcklang="DlgPasteMsg2">Please paste inside the following box using the keyboard
|
|
|
|
(<strong>Ctrl+V</strong>) and hit <strong>OK</strong>.</span><br />
|
|
|
|
|
|
|
|
</div>
|
|
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
<tr>
|
2008-04-15 14:15:22 +02:00
|
|
|
<td id="xFrameSpace" valign="top" height="100%" style="border: #000000 1px solid">
|
2007-12-17 18:58:19 +01:00
|
|
|
<textarea id="txtData" cols="80" rows="5" style="border: #000000 1px; display: none;
|
|
|
|
width: 99%; height: 98%"></textarea>
|
|
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
<tr id="oWordCommands">
|
|
|
|
<td>
|
2008-04-15 14:15:22 +02:00
|
|
|
|
|
|
|
<input id="chkRemoveFont" type="checkbox" checked="checked" />
|
|
|
|
<label for="chkRemoveFont" fcklang="DlgPasteIgnoreFont">
|
|
|
|
Ignore Font Face definitions</label>
|
|
|
|
<br />
|
|
|
|
<input id="chkRemoveStyles" type="checkbox" />
|
|
|
|
<label for="chkRemoveStyles" fcklang="DlgPasteRemoveStyles">
|
|
|
|
Remove Styles definitions</label>
|
|
|
|
|
2007-12-17 18:58:19 +01:00
|
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
</table>
|
|
|
|
</body>
|
|
|
|
</html>
|