fckdocumentprocessor.js
上传用户:li2971742
上传日期:2021-11-18
资源大小:39096k
文件大小:6k
源码类别:

OA系统

开发平台:

C#

  1. /*
  2.  * FCKeditor - The text editor for internet
  3.  * Copyright (C) 2003-2006 Frederico Caldeira Knabben
  4.  * 
  5.  * Licensed under the terms of the GNU Lesser General Public License:
  6.  *  http://www.opensource.org/licenses/lgpl-license.php
  7.  * 
  8.  * For further information visit:
  9.  *  http://www.fckeditor.net/
  10.  * 
  11.  * "Support Open Source software. What about a donation today?"
  12.  * 
  13.  * File Name: fckdocumentprocessor.js
  14.  *  Advanced document processors.
  15.  * 
  16.  * File Authors:
  17.  *  Frederico Caldeira Knabben (fredck@fckeditor.net)
  18.  */
  19. var FCKDocumentProcessor = new Object() ;
  20. FCKDocumentProcessor._Items = new Array() ;
  21. FCKDocumentProcessor.AppendNew = function()
  22. {
  23. var oNewItem = new Object() ;
  24. this._Items.AddItem( oNewItem ) ;
  25. return oNewItem ;
  26. }
  27. FCKDocumentProcessor.Process = function( document )
  28. {
  29. var oProcessor, i = 0 ;
  30. while( ( oProcessor = this._Items[i++] ) )
  31. oProcessor.ProcessDocument( document ) ;
  32. }
  33. var FCKDocumentProcessor_CreateFakeImage = function( fakeClass, realElement )
  34. {
  35. var oImg = FCK.EditorDocument.createElement( 'IMG' ) ;
  36. oImg.className = fakeClass ;
  37. oImg.src = FCKConfig.FullBasePath + 'images/spacer.gif' ;
  38. oImg.setAttribute( '_fckfakelement', 'true', 0 ) ;
  39. oImg.setAttribute( '_fckrealelement', FCKTempBin.AddElement( realElement ), 0 ) ;
  40. return oImg ;
  41. }
  42. // Link Anchors
  43. var FCKAnchorsProcessor = FCKDocumentProcessor.AppendNew() ;
  44. FCKAnchorsProcessor.ProcessDocument = function( document )
  45. {
  46. var aLinks = document.getElementsByTagName( 'A' ) ;
  47. var oLink ;
  48. var i = aLinks.length - 1 ;
  49. while ( i >= 0 && ( oLink = aLinks[i--] ) )
  50. {
  51. // If it is anchor.
  52. if ( oLink.name.length > 0 && ( !oLink.getAttribute('href') || oLink.getAttribute('href').length == 0 ) )
  53. {
  54. var oImg = FCKDocumentProcessor_CreateFakeImage( 'FCK__Anchor', oLink.cloneNode(true) ) ;
  55. oImg.setAttribute( '_fckanchor', 'true', 0 ) ;
  56. oLink.parentNode.insertBefore( oImg, oLink ) ;
  57. oLink.parentNode.removeChild( oLink ) ;
  58. }
  59. }
  60. }
  61. // Page Breaks
  62. var FCKPageBreaksProcessor = FCKDocumentProcessor.AppendNew() ;
  63. FCKPageBreaksProcessor.ProcessDocument = function( document )
  64. {
  65. var aDIVs = document.getElementsByTagName( 'DIV' ) ;
  66. var eDIV ;
  67. var i = aDIVs.length - 1 ;
  68. while ( i >= 0 && ( eDIV = aDIVs[i--] ) )
  69. {
  70. if ( eDIV.style.pageBreakAfter == 'always' && eDIV.childNodes.length == 1 && eDIV.childNodes[0].style && eDIV.childNodes[0].style.display == 'none' )
  71. {
  72. var oFakeImage = FCKDocumentProcessor_CreateFakeImage( 'FCK__PageBreak', eDIV.cloneNode(true) ) ;
  73. eDIV.parentNode.insertBefore( oFakeImage, eDIV ) ;
  74. eDIV.parentNode.removeChild( eDIV ) ;
  75. }
  76. }
  77. /*
  78. var aCenters = document.getElementsByTagName( 'CENTER' ) ;
  79. var oCenter ;
  80. var i = aCenters.length - 1 ;
  81. while ( i >= 0 && ( oCenter = aCenters[i--] ) )
  82. {
  83. if ( oCenter.style.pageBreakAfter == 'always' && oCenter.innerHTML.trim().length == 0 )
  84. {
  85. var oFakeImage = FCKDocumentProcessor_CreateFakeImage( 'FCK__PageBreak', oCenter.cloneNode(true) ) ;
  86. oCenter.parentNode.insertBefore( oFakeImage, oCenter ) ;
  87. oCenter.parentNode.removeChild( oCenter ) ;
  88. }
  89. }
  90. */
  91. }
  92. // Flash Embeds.
  93. var FCKFlashProcessor = FCKDocumentProcessor.AppendNew() ;
  94. FCKFlashProcessor.ProcessDocument = function( document )
  95. {
  96. /*
  97. Sample code:
  98. 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>.
  99. */
  100. var aEmbeds = document.getElementsByTagName( 'EMBED' ) ;
  101. var oEmbed ;
  102. var i = aEmbeds.length - 1 ;
  103. while ( i >= 0 && ( oEmbed = aEmbeds[i--] ) )
  104. {
  105. if ( oEmbed.src.endsWith( '.swf', true ) )
  106. {
  107. var oCloned = oEmbed.cloneNode( true ) ;
  108. // On IE, some properties are not getting clonned properly, so we 
  109. // must fix it. Thanks to Alfonso Martinez.
  110. if ( FCKBrowserInfo.IsIE )
  111. {
  112. var oAtt ;
  113. if ( oAtt = oEmbed.getAttribute( 'scale' ) ) oCloned.setAttribute( 'scale', oAtt ) ;
  114. if ( oAtt = oEmbed.getAttribute( 'play' ) ) oCloned.setAttribute( 'play', oAtt ) ;
  115. if ( oAtt = oEmbed.getAttribute( 'loop' ) ) oCloned.setAttribute( 'loop', oAtt ) ;
  116. if ( oAtt = oEmbed.getAttribute( 'menu' ) ) oCloned.setAttribute( 'menu', oAtt ) ;
  117. if ( oAtt = oEmbed.getAttribute( 'wmode' ) ) oCloned.setAttribute( 'wmode', oAtt ) ;
  118. if ( oAtt = oEmbed.getAttribute( 'quality' ) ) oCloned.setAttribute( 'quality', oAtt ) ;
  119. }
  120. var oImg = FCKDocumentProcessor_CreateFakeImage( 'FCK__Flash', oCloned ) ;
  121. oImg.setAttribute( '_fckflash', 'true', 0 ) ;
  122. FCKFlashProcessor.RefreshView( oImg, oEmbed ) ;
  123. oEmbed.parentNode.insertBefore( oImg, oEmbed ) ;
  124. oEmbed.parentNode.removeChild( oEmbed ) ;
  125. // oEmbed.setAttribute( '_fcktemp', 'true', 0) ;
  126. // oEmbed.style.display = 'none' ;
  127. // oEmbed.hidden = true ;
  128. }
  129. }
  130. }
  131. FCKFlashProcessor.RefreshView = function( placholderImage, originalEmbed )
  132. {
  133. if ( originalEmbed.width > 0 )
  134. placholderImage.style.width = FCKTools.ConvertHtmlSizeToStyle( originalEmbed.width ) ;
  135. if ( originalEmbed.height > 0 )
  136. placholderImage.style.height = FCKTools.ConvertHtmlSizeToStyle( originalEmbed.height ) ;
  137. }
  138. FCK.GetRealElement = function( fakeElement )
  139. {
  140. var e = FCKTempBin.Elements[ fakeElement.getAttribute('_fckrealelement') ] ;
  141. if ( fakeElement.getAttribute('_fckflash') )
  142. {
  143. if ( fakeElement.style.width.length > 0 )
  144. e.width = FCKTools.ConvertStyleSizeToHtml( fakeElement.style.width ) ;
  145. if ( fakeElement.style.height.length > 0 )
  146. e.height = FCKTools.ConvertStyleSizeToHtml( fakeElement.style.height ) ;
  147. }
  148. return e ;
  149. }