fck_ie.js
上传用户:dbstep
上传日期:2022-08-06
资源大小:2803k
文件大小:13k
源码类别:

WEB源码(ASP,PHP,...)

开发平台:

ASP/ASPX

  1. /*
  2.  * FCKeditor - The text editor for Internet - http://www.fckeditor.net
  3.  * Copyright (C) 2003-2009 Frederico Caldeira Knabben
  4.  *
  5.  * == BEGIN LICENSE ==
  6.  *
  7.  * Licensed under the terms of any of the following licenses at your
  8.  * choice:
  9.  *
  10.  *  - GNU General Public License Version 2 or later (the "GPL")
  11.  *    http://www.gnu.org/licenses/gpl.html
  12.  *
  13.  *  - GNU Lesser General Public License Version 2.1 or later (the "LGPL")
  14.  *    http://www.gnu.org/licenses/lgpl.html
  15.  *
  16.  *  - Mozilla Public License Version 1.1 or later (the "MPL")
  17.  *    http://www.mozilla.org/MPL/MPL-1.1.html
  18.  *
  19.  * == END LICENSE ==
  20.  *
  21.  * Creation and initialization of the "FCK" object. This is the main
  22.  * object that represents an editor instance.
  23.  * (IE specific implementations)
  24.  */
  25. FCK.Description = "FCKeditor for Internet Explorer 5.5+" ;
  26. FCK._GetBehaviorsStyle = function()
  27. {
  28. if ( !FCK._BehaviorsStyle )
  29. {
  30. var sBasePath = FCKConfig.BasePath ;
  31. var sTableBehavior = '' ;
  32. var sStyle ;
  33. // The behaviors should be pointed using the BasePath to avoid security
  34. // errors when using a different BaseHref.
  35. sStyle = '<style type="text/css" _fcktemp="true">' ;
  36. if ( FCKConfig.ShowBorders )
  37. sTableBehavior = 'url(' + sBasePath + 'css/behaviors/showtableborders.htc)' ;
  38. // Disable resize handlers.
  39. sStyle += 'INPUT,TEXTAREA,SELECT,.FCK__Anchor,.FCK__PageBreak,.FCK__InputHidden' ;
  40. if ( FCKConfig.DisableObjectResizing )
  41. {
  42. sStyle += ',IMG' ;
  43. sTableBehavior += ' url(' + sBasePath + 'css/behaviors/disablehandles.htc)' ;
  44. }
  45. sStyle += ' { behavior: url(' + sBasePath + 'css/behaviors/disablehandles.htc) ; }' ;
  46. if ( sTableBehavior.length > 0 )
  47. sStyle += 'TABLE { behavior: ' + sTableBehavior + ' ; }' ;
  48. sStyle += '</style>' ;
  49. FCK._BehaviorsStyle = sStyle ;
  50. }
  51. return FCK._BehaviorsStyle ;
  52. }
  53. function Doc_OnMouseUp()
  54. {
  55. if ( FCK.EditorWindow.event.srcElement.tagName == 'HTML' )
  56. {
  57. FCK.Focus() ;
  58. FCK.EditorWindow.event.cancelBubble = true ;
  59. FCK.EditorWindow.event.returnValue = false ;
  60. }
  61. }
  62. function Doc_OnPaste()
  63. {
  64. var body = FCK.EditorDocument.body ;
  65. body.detachEvent( 'onpaste', Doc_OnPaste ) ;
  66. var ret = FCK.Paste( !FCKConfig.ForcePasteAsPlainText && !FCKConfig.AutoDetectPasteFromWord ) ;
  67. body.attachEvent( 'onpaste', Doc_OnPaste ) ;
  68. return ret ;
  69. }
  70. function Doc_OnDblClick()
  71. {
  72. FCK.OnDoubleClick( FCK.EditorWindow.event.srcElement ) ;
  73. FCK.EditorWindow.event.cancelBubble = true ;
  74. }
  75. function Doc_OnSelectionChange()
  76. {
  77. // Don't fire the event if no document is loaded.
  78. if ( !FCK.IsSelectionChangeLocked && FCK.EditorDocument )
  79. FCK.Events.FireEvent( "OnSelectionChange" ) ;
  80. }
  81. function Doc_OnDrop()
  82. {
  83. if ( FCK.MouseDownFlag )
  84. {
  85. FCK.MouseDownFlag = false ;
  86. return ;
  87. }
  88. if ( FCKConfig.ForcePasteAsPlainText )
  89. {
  90. var evt = FCK.EditorWindow.event ;
  91. if ( FCK._CheckIsPastingEnabled() || FCKConfig.ShowDropDialog )
  92. FCK.PasteAsPlainText( evt.dataTransfer.getData( 'Text' ) ) ;
  93. evt.returnValue = false ;
  94. evt.cancelBubble = true ;
  95. }
  96. }
  97. FCK.InitializeBehaviors = function( dontReturn )
  98. {
  99. // Set the focus to the editable area when clicking in the document area.
  100. // TODO: The cursor must be positioned at the end.
  101. this.EditorDocument.attachEvent( 'onmouseup', Doc_OnMouseUp ) ;
  102. // Intercept pasting operations
  103. this.EditorDocument.body.attachEvent( 'onpaste', Doc_OnPaste ) ;
  104. // Intercept drop operations
  105. this.EditorDocument.body.attachEvent( 'ondrop', Doc_OnDrop ) ;
  106. // Reset the context menu.
  107. FCK.ContextMenu._InnerContextMenu.AttachToElement( FCK.EditorDocument.body ) ;
  108. this.EditorDocument.attachEvent("onkeydown", FCK._KeyDownListener ) ;
  109. this.EditorDocument.attachEvent("ondblclick", Doc_OnDblClick ) ;
  110. this.EditorDocument.attachEvent("onbeforedeactivate", function(){ FCKSelection.Save() ; } ) ;
  111. // Catch cursor selection changes.
  112. this.EditorDocument.attachEvent("onselectionchange", Doc_OnSelectionChange ) ;
  113. FCKTools.AddEventListener( FCK.EditorDocument, 'mousedown', Doc_OnMouseDown ) ;
  114. }
  115. FCK.InsertHtml = function( html )
  116. {
  117. html = FCKConfig.ProtectedSource.Protect( html ) ;
  118. html = FCK.ProtectEvents( html ) ;
  119. html = FCK.ProtectUrls( html ) ;
  120. html = FCK.ProtectTags( html ) ;
  121. // FCK.Focus() ;
  122. FCKSelection.Restore() ;
  123. FCK.EditorWindow.focus() ;
  124. FCKUndo.SaveUndoStep() ;
  125. // Gets the actual selection.
  126. var oSel = FCKSelection.GetSelection() ;
  127. // Deletes the actual selection contents.
  128. if ( oSel.type.toLowerCase() == 'control' )
  129. oSel.clear() ;
  130. // Using the following trick, any comment in the beginning of the HTML will
  131. // be preserved.
  132. html = '<span id="__fakeFCKRemove__" style="display:none;">fakeFCKRemove</span>' + html ;
  133. // Insert the HTML.
  134. oSel.createRange().pasteHTML( html ) ;
  135. // Remove the fake node
  136. FCK.EditorDocument.getElementById('__fakeFCKRemove__').removeNode( true ) ;
  137. FCKDocumentProcessor.Process( FCK.EditorDocument ) ;
  138. // For some strange reason the SaveUndoStep() call doesn't activate the undo button at the first InsertHtml() call.
  139. this.Events.FireEvent( "OnSelectionChange" ) ;
  140. }
  141. FCK.SetInnerHtml = function( html ) // IE Only
  142. {
  143. var oDoc = FCK.EditorDocument ;
  144. // Using the following trick, any comment in the beginning of the HTML will
  145. // be preserved.
  146. oDoc.body.innerHTML = '<div id="__fakeFCKRemove__">&nbsp;</div>' + html ;
  147. oDoc.getElementById('__fakeFCKRemove__').removeNode( true ) ;
  148. }
  149. function FCK_PreloadImages()
  150. {
  151. var oPreloader = new FCKImagePreloader() ;
  152. // Add the configured images.
  153. oPreloader.AddImages( FCKConfig.PreloadImages ) ;
  154. // Add the skin icons strip.
  155. oPreloader.AddImages( FCKConfig.SkinPath + 'fck_strip.gif' ) ;
  156. oPreloader.OnComplete = LoadToolbarSetup ;
  157. oPreloader.Start() ;
  158. }
  159. // Disable the context menu in the editor (outside the editing area).
  160. function Document_OnContextMenu()
  161. {
  162. return ( event.srcElement._FCKShowContextMenu == true ) ;
  163. }
  164. document.oncontextmenu = Document_OnContextMenu ;
  165. function FCK_Cleanup()
  166. {
  167. this.LinkedField = null ;
  168. this.EditorWindow = null ;
  169. this.EditorDocument = null ;
  170. }
  171. FCK._ExecPaste = function()
  172. {
  173. // As we call ExecuteNamedCommand('Paste'), it would enter in a loop. So, let's use a semaphore.
  174. if ( FCK._PasteIsRunning )
  175. return true ;
  176. if ( FCKConfig.ForcePasteAsPlainText )
  177. {
  178. FCK.PasteAsPlainText() ;
  179. return false ;
  180. }
  181. var sHTML = FCK._CheckIsPastingEnabled( true ) ;
  182. if ( sHTML === false )
  183. FCKTools.RunFunction( FCKDialog.OpenDialog, FCKDialog, ['FCKDialog_Paste', FCKLang.Paste, 'dialog/fck_paste.html', 400, 330, 'Security'] ) ;
  184. else
  185. {
  186. if ( FCKConfig.AutoDetectPasteFromWord && sHTML.length > 0 )
  187. {
  188. var re = /<w[^>]*(( class="?MsoNormal"?)|(="mso-))/gi ;
  189. if ( re.test( sHTML ) )
  190. {
  191. if ( confirm( FCKLang.PasteWordConfirm ) )
  192. {
  193. FCK.PasteFromWord() ;
  194. return false ;
  195. }
  196. }
  197. }
  198. // Instead of inserting the retrieved HTML, let's leave the OS work for us,
  199. // by calling FCK.ExecuteNamedCommand( 'Paste' ). It could give better results.
  200. // Enable the semaphore to avoid a loop.
  201. FCK._PasteIsRunning = true ;
  202. FCK.ExecuteNamedCommand( 'Paste' ) ;
  203. // Removes the semaphore.
  204. delete FCK._PasteIsRunning ;
  205. }
  206. // Let's always make a custom implementation (return false), otherwise
  207. // the new Keyboard Handler may conflict with this code, and the CTRL+V code
  208. // could result in a simple "V" being pasted.
  209. return false ;
  210. }
  211. FCK.PasteAsPlainText = function( forceText )
  212. {
  213. if ( !FCK._CheckIsPastingEnabled() )
  214. {
  215. FCKDialog.OpenDialog( 'FCKDialog_Paste', FCKLang.PasteAsText, 'dialog/fck_paste.html', 400, 330, 'PlainText' ) ;
  216. return ;
  217. }
  218. // Get the data available in the clipboard in text format.
  219. var sText = null ;
  220. if ( ! forceText )
  221. sText = clipboardData.getData("Text") ;
  222. else
  223. sText = forceText ;
  224. if ( sText && sText.length > 0 )
  225. {
  226. // Replace the carriage returns with <BR>
  227. sText = FCKTools.HTMLEncode( sText ) ;
  228. sText = FCKTools.ProcessLineBreaks( window, FCKConfig, sText ) ;
  229. var closeTagIndex = sText.search( '</p>' ) ;
  230. var startTagIndex = sText.search( '<p>' ) ;
  231. if ( ( closeTagIndex != -1 && startTagIndex != -1 && closeTagIndex < startTagIndex )
  232. || ( closeTagIndex != -1 && startTagIndex == -1 ) )
  233. {
  234. var prefix = sText.substr( 0, closeTagIndex ) ;
  235. sText = sText.substr( closeTagIndex + 4 ) ;
  236. this.InsertHtml( prefix ) ;
  237. }
  238. // Insert the resulting data in the editor.
  239. FCKUndo.SaveLocked = true ;
  240. this.InsertHtml( sText ) ;
  241. FCKUndo.SaveLocked = false ;
  242. }
  243. }
  244. FCK._CheckIsPastingEnabled = function( returnContents )
  245. {
  246. // The following seams to be the only reliable way to check is script
  247. // pasting operations are enabled in the security settings of IE6 and IE7.
  248. // It adds a little bit of overhead to the check, but so far that's the
  249. // only way, mainly because of IE7.
  250. FCK._PasteIsEnabled = false ;
  251. document.body.attachEvent( 'onpaste', FCK_CheckPasting_Listener ) ;
  252. // The execCommand in GetClipboardHTML will fire the "onpaste", only if the
  253. // security settings are enabled.
  254. var oReturn = FCK.GetClipboardHTML() ;
  255. document.body.detachEvent( 'onpaste', FCK_CheckPasting_Listener ) ;
  256. if ( FCK._PasteIsEnabled )
  257. {
  258. if ( !returnContents )
  259. oReturn = true ;
  260. }
  261. else
  262. oReturn = false ;
  263. delete FCK._PasteIsEnabled ;
  264. return oReturn ;
  265. }
  266. function FCK_CheckPasting_Listener()
  267. {
  268. FCK._PasteIsEnabled = true ;
  269. }
  270. FCK.GetClipboardHTML = function()
  271. {
  272. var oDiv = document.getElementById( '___FCKHiddenDiv' ) ;
  273. if ( !oDiv )
  274. {
  275. oDiv = document.createElement( 'DIV' ) ;
  276. oDiv.id = '___FCKHiddenDiv' ;
  277. var oDivStyle = oDiv.style ;
  278. oDivStyle.position = 'absolute' ;
  279. oDivStyle.visibility = oDivStyle.overflow = 'hidden' ;
  280. oDivStyle.width = oDivStyle.height = 1 ;
  281. document.body.appendChild( oDiv ) ;
  282. }
  283. oDiv.innerHTML = '' ;
  284. var oTextRange = document.body.createTextRange() ;
  285. oTextRange.moveToElementText( oDiv ) ;
  286. oTextRange.execCommand( 'Paste' ) ;
  287. var sData = oDiv.innerHTML ;
  288. oDiv.innerHTML = '' ;
  289. return sData ;
  290. }
  291. FCK.CreateLink = function( url, noUndo )
  292. {
  293. // Creates the array that will be returned. It contains one or more created links (see #220).
  294. var aCreatedLinks = new Array() ;
  295. // Remove any existing link in the selection.
  296. FCK.ExecuteNamedCommand( 'Unlink', null, false, !!noUndo ) ;
  297. if ( url.length > 0 )
  298. {
  299. // If there are several images, and you try to link each one, all the images get inside the link:
  300. // <img><img> -> <a><img></a><img> -> <a><img><img></a> due to the call to 'CreateLink' (bug in IE)
  301. if (FCKSelection.GetType() == 'Control')
  302. {
  303. // Create a link
  304. var oLink = this.EditorDocument.createElement( 'A' ) ;
  305. oLink.href = url ;
  306. // Get the selected object
  307. var oControl = FCKSelection.GetSelectedElement() ;
  308. // Put the link just before the object
  309. oControl.parentNode.insertBefore(oLink, oControl) ;
  310. // Move the object inside the link
  311. oControl.parentNode.removeChild( oControl ) ;
  312. oLink.appendChild( oControl ) ;
  313. return [ oLink ] ;
  314. }
  315. // Generate a temporary name for the link.
  316. var sTempUrl = 'javascript:void(0);/*' + ( new Date().getTime() ) + '*/' ;
  317. // Use the internal "CreateLink" command to create the link.
  318. FCK.ExecuteNamedCommand( 'CreateLink', sTempUrl, false, !!noUndo ) ;
  319. // Look for the just create link.
  320. var oLinks = this.EditorDocument.links ;
  321. for ( i = 0 ; i < oLinks.length ; i++ )
  322. {
  323. var oLink = oLinks[i] ;
  324. // Check it this a newly created link.
  325. // getAttribute must be used. oLink.url may cause problems with IE7 (#555).
  326. if ( oLink.getAttribute( 'href', 2 ) == sTempUrl )
  327. {
  328. var sInnerHtml = oLink.innerHTML ; // Save the innerHTML (IE changes it if it is like an URL).
  329. oLink.href = url ;
  330. oLink.innerHTML = sInnerHtml ; // Restore the innerHTML.
  331. // If the last child is a <br> move it outside the link or it
  332. // will be too easy to select this link again #388.
  333. var oLastChild = oLink.lastChild ;
  334. if ( oLastChild && oLastChild.nodeName == 'BR' )
  335. {
  336. // Move the BR after the link.
  337. FCKDomTools.InsertAfterNode( oLink, oLink.removeChild( oLastChild ) ) ;
  338. }
  339. aCreatedLinks.push( oLink ) ;
  340. }
  341. }
  342. }
  343. return aCreatedLinks ;
  344. }
  345. function _FCK_RemoveDisabledAtt()
  346. {
  347. this.removeAttribute( 'disabled' ) ;
  348. }
  349. function Doc_OnMouseDown( evt )
  350. {
  351. var e = evt.srcElement ;
  352. // Radio buttons and checkboxes should not be allowed to be triggered in IE
  353. // in editable mode. Otherwise the whole browser window may be locked by
  354. // the buttons. (#1782)
  355. if ( e.nodeName.IEquals( 'input' ) && e.type.IEquals( ['radio', 'checkbox'] ) && !e.disabled )
  356. {
  357. e.disabled = true ;
  358. FCKTools.SetTimeout( _FCK_RemoveDisabledAtt, 1, e ) ;
  359. }
  360. }