fckdocumentprocessor.js
上传用户:ah_jiwei
上传日期:2022-07-24
资源大小:54044k
文件大小:7k
源码类别:

数据库编程

开发平台:

Visual C++

  1. /*
  2.  * FCKeditor - The text editor for Internet - http://www.fckeditor.net
  3.  * Copyright (C) 2003-2007 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.  * Advanced document processors.
  22.  */
  23. var FCKDocumentProcessor = new Object() ;
  24. FCKDocumentProcessor._Items = new Array() ;
  25. FCKDocumentProcessor.AppendNew = function()
  26. {
  27. var oNewItem = new Object() ;
  28. this._Items.AddItem( oNewItem ) ;
  29. return oNewItem ;
  30. }
  31. FCKDocumentProcessor.Process = function( document )
  32. {
  33. var oProcessor, i = 0 ;
  34. while( ( oProcessor = this._Items[i++] ) )
  35. oProcessor.ProcessDocument( document ) ;
  36. }
  37. var FCKDocumentProcessor_CreateFakeImage = function( fakeClass, realElement )
  38. {
  39. var oImg = FCK.EditorDocument.createElement( 'IMG' ) ;
  40. oImg.className = fakeClass ;
  41. oImg.src = FCKConfig.FullBasePath + 'images/spacer.gif' ;
  42. oImg.setAttribute( '_fckfakelement', 'true', 0 ) ;
  43. oImg.setAttribute( '_fckrealelement', FCKTempBin.AddElement( realElement ), 0 ) ;
  44. return oImg ;
  45. }
  46. // Link Anchors
  47. if ( FCKBrowserInfo.IsIE || FCKBrowserInfo.IsOpera )
  48. {
  49. var FCKAnchorsProcessor = FCKDocumentProcessor.AppendNew() ;
  50. FCKAnchorsProcessor.ProcessDocument = function( document )
  51. {
  52. var aLinks = document.getElementsByTagName( 'A' ) ;
  53. var oLink ;
  54. var i = aLinks.length - 1 ;
  55. while ( i >= 0 && ( oLink = aLinks[i--] ) )
  56. {
  57. // If it is anchor. Doesn't matter if it's also a link (even better: we show that it's both a link and an anchor)
  58. if ( oLink.name.length > 0 )
  59. {
  60. //if the anchor has some content then we just add a temporary class
  61. if ( oLink.innerHTML !== '' )
  62. {
  63. if ( FCKBrowserInfo.IsIE )
  64. oLink.className += ' FCK__AnchorC' ;
  65. }
  66. else
  67. {
  68. var oImg = FCKDocumentProcessor_CreateFakeImage( 'FCK__Anchor', oLink.cloneNode(true) ) ;
  69. oImg.setAttribute( '_fckanchor', 'true', 0 ) ;
  70. oLink.parentNode.insertBefore( oImg, oLink ) ;
  71. oLink.parentNode.removeChild( oLink ) ;
  72. }
  73. }
  74. }
  75. }
  76. }
  77. // Page Breaks
  78. var FCKPageBreaksProcessor = FCKDocumentProcessor.AppendNew() ;
  79. FCKPageBreaksProcessor.ProcessDocument = function( document )
  80. {
  81. var aDIVs = document.getElementsByTagName( 'DIV' ) ;
  82. var eDIV ;
  83. var i = aDIVs.length - 1 ;
  84. while ( i >= 0 && ( eDIV = aDIVs[i--] ) )
  85. {
  86. if ( eDIV.style.pageBreakAfter == 'always' && eDIV.childNodes.length == 1 && eDIV.childNodes[0].style && eDIV.childNodes[0].style.display == 'none' )
  87. {
  88. var oFakeImage = FCKDocumentProcessor_CreateFakeImage( 'FCK__PageBreak', eDIV.cloneNode(true) ) ;
  89. eDIV.parentNode.insertBefore( oFakeImage, eDIV ) ;
  90. eDIV.parentNode.removeChild( eDIV ) ;
  91. }
  92. }
  93. /*
  94. var aCenters = document.getElementsByTagName( 'CENTER' ) ;
  95. var oCenter ;
  96. var i = aCenters.length - 1 ;
  97. while ( i >= 0 && ( oCenter = aCenters[i--] ) )
  98. {
  99. if ( oCenter.style.pageBreakAfter == 'always' && oCenter.innerHTML.Trim().length == 0 )
  100. {
  101. var oFakeImage = FCKDocumentProcessor_CreateFakeImage( 'FCK__PageBreak', oCenter.cloneNode(true) ) ;
  102. oCenter.parentNode.insertBefore( oFakeImage, oCenter ) ;
  103. oCenter.parentNode.removeChild( oCenter ) ;
  104. }
  105. }
  106. */
  107. }
  108. // Flash Embeds.
  109. var FCKFlashProcessor = FCKDocumentProcessor.AppendNew() ;
  110. FCKFlashProcessor.ProcessDocument = function( document )
  111. {
  112. /*
  113. Sample code:
  114. This is some <embed src="/UserFiles/Flash/Yellow_Runners.swf"></embed><strong>sample text</strong>. You are&nbsp;<a name="fred"></a> using <a href="http://www.fckeditor.net/">FCKeditor</a>.
  115. */
  116. var aEmbeds = document.getElementsByTagName( 'EMBED' ) ;
  117. var oEmbed ;
  118. var i = aEmbeds.length - 1 ;
  119. while ( i >= 0 && ( oEmbed = aEmbeds[i--] ) )
  120. {
  121. // IE doesn't return the type attribute with oEmbed.type or oEmbed.getAttribute("type") 
  122. // But it turns out that after accessing it then it doesn't gets copied later
  123. var oType = oEmbed.attributes[ 'type' ] ;
  124. // Check the extension and the type. Now it should be enough with just the type
  125. // Opera doesn't return oEmbed.src so oEmbed.src.EndsWith will fail
  126. if ( (oEmbed.src && oEmbed.src.EndsWith( '.swf', true )) || ( oType && oType.nodeValue == 'application/x-shockwave-flash' ) )
  127. {
  128. var oCloned = oEmbed.cloneNode( true ) ;
  129. var oImg = FCKDocumentProcessor_CreateFakeImage( 'FCK__Flash', oCloned ) ;
  130. oImg.setAttribute( '_fckflash', 'true', 0 ) ;
  131. FCKFlashProcessor.RefreshView( oImg, oEmbed ) ;
  132. oEmbed.parentNode.insertBefore( oImg, oEmbed ) ;
  133. oEmbed.parentNode.removeChild( oEmbed ) ;
  134. }
  135. }
  136. }
  137. FCKFlashProcessor.RefreshView = function( placeHolderImage, originalEmbed )
  138. {
  139. if ( originalEmbed.getAttribute( 'width' ) > 0 )
  140. placeHolderImage.style.width = FCKTools.ConvertHtmlSizeToStyle( originalEmbed.getAttribute( 'width' ) ) ;
  141. if ( originalEmbed.getAttribute( 'height' ) > 0 )
  142. placeHolderImage.style.height = FCKTools.ConvertHtmlSizeToStyle( originalEmbed.getAttribute( 'height' ) ) ;
  143. }
  144. FCK.GetRealElement = function( fakeElement )
  145. {
  146. var e = FCKTempBin.Elements[ fakeElement.getAttribute('_fckrealelement') ] ;
  147. if ( fakeElement.getAttribute('_fckflash') )
  148. {
  149. if ( fakeElement.style.width.length > 0 )
  150. e.width = FCKTools.ConvertStyleSizeToHtml( fakeElement.style.width ) ;
  151. if ( fakeElement.style.height.length > 0 )
  152. e.height = FCKTools.ConvertStyleSizeToHtml( fakeElement.style.height ) ;
  153. }
  154. return e ;
  155. }
  156. // HR Processor.
  157. // This is a IE only (tricky) thing. We protect all HR tags before loading them
  158. // (see FCK.ProtectTags). Here we put the HRs back.
  159. if ( FCKBrowserInfo.IsIE )
  160. {
  161. FCKDocumentProcessor.AppendNew().ProcessDocument = function( document )
  162. {
  163. var aHRs = document.getElementsByTagName( 'HR' ) ;
  164. var eHR ;
  165. var i = aHRs.length - 1 ;
  166. while ( i >= 0 && ( eHR = aHRs[i--] ) )
  167. {
  168. // Create the replacement HR.
  169. var newHR = document.createElement( 'hr' ) ;
  170. newHR.mergeAttributes( eHR, true ) ;
  171. // We must insert the new one after it. insertBefore will not work in all cases.
  172. FCKDomTools.InsertAfterNode( eHR, newHR ) ;
  173. eHR.parentNode.removeChild( eHR ) ;
  174. }
  175. }
  176. }
  177. // INPUT:hidden Processor.
  178. FCKDocumentProcessor.AppendNew().ProcessDocument = function( document )
  179. {
  180. var aInputs = document.getElementsByTagName( 'INPUT' ) ;
  181. var oInput ;
  182. var i = aInputs.length - 1 ;
  183. while ( i >= 0 && ( oInput = aInputs[i--] ) )
  184. {
  185. if ( oInput.type == 'hidden' )
  186. {
  187. var oImg = FCKDocumentProcessor_CreateFakeImage( 'FCK__InputHidden', oInput.cloneNode(true) ) ;
  188. oImg.setAttribute( '_fckinputhidden', 'true', 0 ) ;
  189. oInput.parentNode.insertBefore( oImg, oInput ) ;
  190. oInput.parentNode.removeChild( oInput ) ;
  191. }
  192. }
  193. }