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

数据库编程

开发平台:

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.  * Defines the FCKXHtml object, responsible for the XHTML operations.
  22.  */
  23. var FCKXHtml = new Object() ;
  24. FCKXHtml.CurrentJobNum = 0 ;
  25. FCKXHtml.GetXHTML = function( node, includeNode, format )
  26. {
  27. FCKDomTools.CheckAndRemovePaddingNode( node.ownerDocument, FCKConfig.EnterMode ) ;
  28. FCKXHtmlEntities.Initialize() ;
  29. // Set the correct entity to use for empty blocks.
  30. this._NbspEntity = ( FCKConfig.ProcessHTMLEntities? 'nbsp' : '#160' ) ;
  31. // Save the current IsDirty state. The XHTML processor may change the
  32. // original HTML, dirtying it.
  33. var bIsDirty = FCK.IsDirty() ;
  34. // Special blocks are blocks of content that remain untouched during the
  35. // process. It is used for SCRIPTs and STYLEs.
  36. FCKXHtml.SpecialBlocks = new Array() ;
  37. // Create the XML DOMDocument object.
  38. this.XML = FCKTools.CreateXmlObject( 'DOMDocument' ) ;
  39. // Add a root element that holds all child nodes.
  40. this.MainNode = this.XML.appendChild( this.XML.createElement( 'xhtml' ) ) ;
  41. FCKXHtml.CurrentJobNum++ ;
  42. // var dTimer = new Date() ;
  43. if ( includeNode )
  44. this._AppendNode( this.MainNode, node ) ;
  45. else
  46. this._AppendChildNodes( this.MainNode, node, false ) ;
  47. // Get the resulting XHTML as a string.
  48. var sXHTML = this._GetMainXmlString() ;
  49. // alert( 'Time: ' + ( ( ( new Date() ) - dTimer ) ) + ' ms' ) ;
  50. this.XML = null ;
  51. // Safari adds xmlns="http://www.w3.org/1999/xhtml" to the root node (#963)
  52. if ( FCKBrowserInfo.IsSafari )
  53. sXHTML = sXHTML.replace( /^<xhtml.*?>/, '<xhtml>' ) ;
  54. // Strip the "XHTML" root node.
  55. sXHTML = sXHTML.substr( 7, sXHTML.length - 15 ).Trim() ;
  56. // Add a space in the tags with no closing tags, like <br/> -> <br />
  57. sXHTML = sXHTML.replace( FCKRegexLib.SpaceNoClose, ' />');
  58. if ( FCKConfig.ForceSimpleAmpersand )
  59. sXHTML = sXHTML.replace( FCKRegexLib.ForceSimpleAmpersand, '&' ) ;
  60. if ( format )
  61. sXHTML = FCKCodeFormatter.Format( sXHTML ) ;
  62. // Now we put back the SpecialBlocks contents.
  63. for ( var i = 0 ; i < FCKXHtml.SpecialBlocks.length ; i++ )
  64. {
  65. var oRegex = new RegExp( '___FCKsi___' + i ) ;
  66. sXHTML = sXHTML.replace( oRegex, FCKXHtml.SpecialBlocks[i] ) ;
  67. }
  68. // Replace entities marker with the ampersand.
  69. sXHTML = sXHTML.replace( FCKRegexLib.GeckoEntitiesMarker, '&' ) ;
  70. // Restore the IsDirty state if it was not dirty.
  71. if ( !bIsDirty )
  72. FCK.ResetIsDirty() ;
  73. FCKDomTools.EnforcePaddingNode( FCKTools.GetElementDocument( node ), FCKConfig.EnterMode ) ;
  74. return sXHTML ;
  75. }
  76. FCKXHtml._AppendAttribute = function( xmlNode, attributeName, attributeValue )
  77. {
  78. try
  79. {
  80. if ( attributeValue == undefined || attributeValue == null )
  81. attributeValue = '' ;
  82. else if ( attributeValue.replace )
  83. {
  84. if ( FCKConfig.ForceSimpleAmpersand )
  85. attributeValue = attributeValue.replace( /&/g, '___FCKAmp___' ) ;
  86. // Entities must be replaced in the attribute values.
  87. attributeValue = attributeValue.replace( FCKXHtmlEntities.EntitiesRegex, FCKXHtml_GetEntity ) ;
  88. }
  89. // Create the attribute.
  90. var oXmlAtt = this.XML.createAttribute( attributeName ) ;
  91. oXmlAtt.value = attributeValue ;
  92. // Set the attribute in the node.
  93. xmlNode.attributes.setNamedItem( oXmlAtt ) ;
  94. }
  95. catch (e)
  96. {}
  97. }
  98. FCKXHtml._AppendChildNodes = function( xmlNode, htmlNode, isBlockElement )
  99. {
  100. var oNode = htmlNode.firstChild ;
  101. while ( oNode )
  102. {
  103. this._AppendNode( xmlNode, oNode ) ;
  104. oNode = oNode.nextSibling ;
  105. }
  106. // Trim block elements. This is also needed to avoid Firefox leaving extra
  107. // BRs at the end of them.
  108. if ( isBlockElement && htmlNode.tagName && htmlNode.tagName.toLowerCase() != 'pre' )
  109. {
  110. FCKDomTools.TrimNode( xmlNode ) ;
  111. if ( FCKConfig.FillEmptyBlocks )
  112. {
  113. var lastChild = xmlNode.lastChild ;
  114. if ( lastChild && lastChild.nodeType == 1 && lastChild.nodeName == 'br' )
  115. this._AppendEntity( xmlNode, this._NbspEntity ) ;
  116. }
  117. }
  118. // If the resulting node is empty.
  119. if ( xmlNode.childNodes.length == 0 )
  120. {
  121. if ( isBlockElement && FCKConfig.FillEmptyBlocks )
  122. {
  123. this._AppendEntity( xmlNode, this._NbspEntity ) ;
  124. return xmlNode ;
  125. }
  126. var sNodeName = xmlNode.nodeName ;
  127. // Some inline elements are required to have something inside (span, strong, etc...).
  128. if ( FCKListsLib.InlineChildReqElements[ sNodeName ] )
  129. return null ;
  130. // We can't use short representation of empty elements that are not marked
  131. // as empty in th XHTML DTD.
  132. if ( !FCKListsLib.EmptyElements[ sNodeName ] )
  133. xmlNode.appendChild( this.XML.createTextNode('') ) ;
  134. }
  135. return xmlNode ;
  136. }
  137. FCKXHtml._AppendNode = function( xmlNode, htmlNode )
  138. {
  139. if ( !htmlNode )
  140. return false ;
  141. switch ( htmlNode.nodeType )
  142. {
  143. // Element Node.
  144. case 1 :
  145. // If we detect a <br> inside a <pre> in Gecko, turn it into a line break instead.
  146. // This is a workaround for the Gecko bug here: https://bugzilla.mozilla.org/show_bug.cgi?id=92921
  147. if ( FCKBrowserInfo.IsGecko 
  148. && htmlNode.tagName.toLowerCase() == 'br' 
  149. && htmlNode.parentNode.tagName.toLowerCase() == 'pre' )
  150. {
  151. var val = 'r' ;
  152. if ( htmlNode == htmlNode.parentNode.firstChild )
  153. val += 'r' ;
  154. return FCKXHtml._AppendNode( xmlNode, this.XML.createTextNode( val ) ) ;
  155. }
  156. // Here we found an element that is not the real element, but a
  157. // fake one (like the Flash placeholder image), so we must get the real one.
  158. if ( htmlNode.getAttribute('_fckfakelement') )
  159. return FCKXHtml._AppendNode( xmlNode, FCK.GetRealElement( htmlNode ) ) ;
  160. // Ignore bogus BR nodes in the DOM.
  161. if ( FCKBrowserInfo.IsGecko && 
  162. ( htmlNode.hasAttribute('_moz_editor_bogus_node') || htmlNode.getAttribute( 'type' ) == '_moz' ) )
  163. return false ;
  164. // This is for elements that are instrumental to FCKeditor and
  165. // must be removed from the final HTML.
  166. if ( htmlNode.getAttribute('_fcktemp') )
  167. return false ;
  168. // Get the element name.
  169. var sNodeName = htmlNode.tagName.toLowerCase()  ;
  170. if ( FCKBrowserInfo.IsIE )
  171. {
  172. // IE doens't include the scope name in the nodeName. So, add the namespace.
  173. if ( htmlNode.scopeName && htmlNode.scopeName != 'HTML' && htmlNode.scopeName != 'FCK' )
  174. sNodeName = htmlNode.scopeName.toLowerCase() + ':' + sNodeName ;
  175. }
  176. else
  177. {
  178. if ( sNodeName.StartsWith( 'fck:' ) )
  179. sNodeName = sNodeName.Remove( 0,4 ) ;
  180. }
  181. // Check if the node name is valid, otherwise ignore this tag.
  182. // If the nodeName starts with a slash, it is a orphan closing tag.
  183. // On some strange cases, the nodeName is empty, even if the node exists.
  184. if ( !FCKRegexLib.ElementName.test( sNodeName ) )
  185. return false ;
  186. // The already processed nodes must be marked to avoid then to be duplicated (bad formatted HTML).
  187. // So here, the "mark" is checked... if the element is Ok, then mark it.
  188. if ( htmlNode._fckxhtmljob && htmlNode._fckxhtmljob == FCKXHtml.CurrentJobNum )
  189. return false ;
  190. var oNode = this.XML.createElement( sNodeName ) ;
  191. // Add all attributes.
  192. FCKXHtml._AppendAttributes( xmlNode, htmlNode, oNode, sNodeName ) ;
  193. htmlNode._fckxhtmljob = FCKXHtml.CurrentJobNum ;
  194. // Tag specific processing.
  195. var oTagProcessor = FCKXHtml.TagProcessors[ sNodeName ] ;
  196. if ( oTagProcessor )
  197. oNode = oTagProcessor( oNode, htmlNode, xmlNode ) ;
  198. else
  199. oNode = this._AppendChildNodes( oNode, htmlNode, Boolean( FCKListsLib.NonEmptyBlockElements[ sNodeName ] ) ) ;
  200. if ( !oNode )
  201. return false ;
  202. xmlNode.appendChild( oNode ) ;
  203. break ;
  204. // Text Node.
  205. case 3 :
  206. if ( htmlNode.parentNode && htmlNode.parentNode.nodeName.IEquals( 'pre' ) )
  207. return this._AppendTextNode( xmlNode, htmlNode.nodeValue ) ;
  208. return this._AppendTextNode( xmlNode, htmlNode.nodeValue.ReplaceNewLineChars(' ') ) ;
  209. // Comment
  210. case 8 :
  211. // IE catches the <!DOTYPE ... > as a comment, but it has no
  212. // innerHTML, so we can catch it, and ignore it.
  213. if ( FCKBrowserInfo.IsIE && !htmlNode.innerHTML )
  214. break ;
  215. try { xmlNode.appendChild( this.XML.createComment( htmlNode.nodeValue ) ) ; }
  216. catch (e) { /* Do nothing... probably this is a wrong format comment. */ }
  217. break ;
  218. // Unknown Node type.
  219. default :
  220. xmlNode.appendChild( this.XML.createComment( "Element not supported - Type: " + htmlNode.nodeType + " Name: " + htmlNode.nodeName ) ) ;
  221. break ;
  222. }
  223. return true ;
  224. }
  225. // Append an item to the SpecialBlocks array and returns the tag to be used.
  226. FCKXHtml._AppendSpecialItem = function( item )
  227. {
  228. return '___FCKsi___' + FCKXHtml.SpecialBlocks.AddItem( item ) ;
  229. }
  230. FCKXHtml._AppendEntity = function( xmlNode, entity )
  231. {
  232. xmlNode.appendChild( this.XML.createTextNode( '#?-:' + entity + ';' ) ) ;
  233. }
  234. FCKXHtml._AppendTextNode = function( targetNode, textValue )
  235. {
  236. var bHadText = textValue.length > 0 ;
  237. if ( bHadText )
  238. targetNode.appendChild( this.XML.createTextNode( textValue.replace( FCKXHtmlEntities.EntitiesRegex, FCKXHtml_GetEntity ) ) ) ;
  239. return bHadText ;
  240. }
  241. // Retrieves a entity (internal format) for a given character.
  242. function FCKXHtml_GetEntity( character )
  243. {
  244. // We cannot simply place the entities in the text, because the XML parser
  245. // will translate & to &amp;. So we use a temporary marker which is replaced
  246. // in the end of the processing.
  247. var sEntity = FCKXHtmlEntities.Entities[ character ] || ( '#' + character.charCodeAt(0) ) ;
  248. return '#?-:' + sEntity + ';' ;
  249. }
  250. // An object that hold tag specific operations.
  251. FCKXHtml.TagProcessors =
  252. {
  253. img : function( node, htmlNode )
  254. {
  255. // The "ALT" attribute is required in XHTML.
  256. if ( ! node.attributes.getNamedItem( 'alt' ) )
  257. FCKXHtml._AppendAttribute( node, 'alt', '' ) ;
  258. var sSavedUrl = htmlNode.getAttribute( '_fcksavedurl' ) ;
  259. if ( sSavedUrl != null )
  260. FCKXHtml._AppendAttribute( node, 'src', sSavedUrl ) ;
  261. return node ;
  262. },
  263. a : function( node, htmlNode )
  264. {
  265. // Firefox may create empty tags when deleting the selection in some special cases (SF-BUG 1556878).
  266. if ( htmlNode.innerHTML.Trim().length == 0 && !htmlNode.name )
  267. return false ;
  268. var sSavedUrl = htmlNode.getAttribute( '_fcksavedurl' ) ;
  269. if ( sSavedUrl != null )
  270. FCKXHtml._AppendAttribute( node, 'href', sSavedUrl ) ;
  271. // Anchors with content has been marked with an additional class, now we must remove it.
  272. if ( FCKBrowserInfo.IsIE )
  273. {
  274. // Buggy IE, doesn't copy the name of changed anchors.
  275. if ( htmlNode.name )
  276. FCKXHtml._AppendAttribute( node, 'name', htmlNode.name ) ;
  277. }
  278. node = FCKXHtml._AppendChildNodes( node, htmlNode, false ) ;
  279. return node ;
  280. },
  281. script : function( node, htmlNode )
  282. {
  283. // The "TYPE" attribute is required in XHTML.
  284. if ( ! node.attributes.getNamedItem( 'type' ) )
  285. FCKXHtml._AppendAttribute( node, 'type', 'text/javascript' ) ;
  286. node.appendChild( FCKXHtml.XML.createTextNode( FCKXHtml._AppendSpecialItem( htmlNode.text ) ) ) ;
  287. return node ;
  288. },
  289. style : function( node, htmlNode )
  290. {
  291. // The "TYPE" attribute is required in XHTML.
  292. if ( ! node.attributes.getNamedItem( 'type' ) )
  293. FCKXHtml._AppendAttribute( node, 'type', 'text/css' ) ;
  294. var cssText = htmlNode.innerHTML ;
  295. if ( FCKBrowserInfo.IsIE ) // Bug #403 : IE always appends a rn to the beginning of StyleNode.innerHTML
  296. cssText = cssText.replace( /^(rn|n|r)/, '' ) ;
  297. node.appendChild( FCKXHtml.XML.createTextNode( FCKXHtml._AppendSpecialItem( cssText ) ) ) ;
  298. return node ;
  299. },
  300. pre : function ( node, htmlNode )
  301. {
  302. for ( var i = 0 ; i < htmlNode.childNodes.length ; i++ )
  303. {
  304. var item = htmlNode.childNodes[i] ;
  305. var val = item.nodeValue ;
  306. if ( item.nodeType == 3 && i == 0 )
  307. node.appendChild( FCKXHtml.XML.createTextNode( FCKXHtml._AppendSpecialItem( 'rn' + val ) ) ) ;
  308. else
  309. FCKXHtml._AppendNode( node, item ) ;
  310. }
  311. return node ;
  312. },
  313. title : function( node, htmlNode )
  314. {
  315. node.appendChild( FCKXHtml.XML.createTextNode( FCK.EditorDocument.title ) ) ;
  316. return node ;
  317. },
  318. // Fix nested <ul> and <ol>.
  319. ol : function( node, htmlNode, targetNode )
  320. {
  321. if ( htmlNode.innerHTML.Trim().length == 0 )
  322. return false ;
  323. var ePSibling = targetNode.lastChild ;
  324. if ( ePSibling && ePSibling.nodeType == 3 )
  325. ePSibling = ePSibling.previousSibling ;
  326. if ( ePSibling && ePSibling.nodeName.toUpperCase() == 'LI' )
  327. {
  328. htmlNode._fckxhtmljob = null ;
  329. FCKXHtml._AppendNode( ePSibling, htmlNode ) ;
  330. return false ;
  331. }
  332. node = FCKXHtml._AppendChildNodes( node, htmlNode ) ;
  333. return node ;
  334. },
  335. span : function( node, htmlNode )
  336. {
  337. // Firefox may create empty tags when deleting the selection in some special cases (SF-BUG 1084404).
  338. if ( htmlNode.innerHTML.length == 0 )
  339. return false ;
  340. node = FCKXHtml._AppendChildNodes( node, htmlNode, false ) ;
  341. return node ;
  342. },
  343. // IE loses contents of iframes, and Gecko does give it back HtmlEncoded
  344. // Note: Opera does lose the content and doesn't provide it in the innerHTML string
  345. iframe : function( node, htmlNode )
  346. {
  347. var sHtml = htmlNode.innerHTML ;
  348. // Gecko does give back the encoded html
  349. if ( FCKBrowserInfo.IsGecko )
  350. sHtml = FCKTools.HTMLDecode( sHtml );
  351. // Remove the saved urls here as the data won't be processed as nodes
  352. sHtml = sHtml.replace( /s_fcksavedurl="[^"]*"/g, '' ) ;
  353. node.appendChild( FCKXHtml.XML.createTextNode( FCKXHtml._AppendSpecialItem( sHtml ) ) ) ;
  354. return node ;
  355. },
  356. body : function( node, htmlNode )
  357. {
  358. node = FCKXHtml._AppendChildNodes( node, htmlNode, false ) ;
  359. // Remove spellchecker attributes added for Firefox when converting to HTML code (Bug #1351).
  360. node.removeAttribute( 'spellcheck' ) ;
  361. return node ;
  362. }
  363. } ;
  364. FCKXHtml.TagProcessors.ul = FCKXHtml.TagProcessors.ol ;