fckxhtml_gecko.js
上传用户:wlfwy2004
上传日期:2016-12-12
资源大小:33978k
文件大小:3k
源码类别:

Jsp/Servlet

开发平台:

Java

  1. /*
  2.  * FCKeditor - The text editor for internet
  3.  * Copyright (C) 2003-2005 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.  * File Name: fckxhtml_gecko.js
  12.  *  Defines the FCKXHtml object, responsible for the XHTML operations.
  13.  *  Gecko specific.
  14.  * 
  15.  * File Authors:
  16.  *  Frederico Caldeira Knabben (fredck@fckeditor.net)
  17.  */
  18. FCKXHtml._GetMainXmlString = function()
  19. {
  20. // Create the XMLSerializer.
  21. var oSerializer = new XMLSerializer() ;
  22. if ( FCKConfig.ProcessHTMLEntities )
  23. {
  24. // Return the serialized XML as a string.
  25. // Due to a BUG on Gecko, the special chars sequence "#?-:" must be replaced with "&"
  26. // for the XHTML entities.
  27. return oSerializer.serializeToString( this.MainNode ).replace( FCKXHtmlEntities.GeckoEntitiesMarkerRegex, '&' ) ;
  28. }
  29. else
  30. return oSerializer.serializeToString( this.MainNode ) ;
  31. }
  32. // There is a BUG on Gecko... createEntityReference returns null.
  33. // So we use a trick to append entities on it.
  34. FCKXHtml._AppendEntity = function( xmlNode, entity )
  35. {
  36. xmlNode.appendChild( this.XML.createTextNode( '#?-:' + entity + ';' ) ) ;
  37. }
  38. FCKXHtml._AppendAttributes = function( xmlNode, htmlNode, node )
  39. {
  40. var aAttributes = htmlNode.attributes ;
  41. for ( var n = 0 ; n < aAttributes.length ; n++ )
  42. {
  43. var oAttribute = aAttributes[n] ;
  44. if ( oAttribute.specified )
  45. {
  46. var sAttName = oAttribute.nodeName.toLowerCase() ;
  47. // The "_fckxhtmljob" attribute is used to mark the already processed elements.
  48. if ( sAttName == '_fckxhtmljob' )
  49. continue ;
  50. // There is a bug in Mozilla that returns '_moz_xxx' attributes as specified.
  51. else if ( sAttName.indexOf( '_moz' ) == 0 )
  52. continue ;
  53. // There are one cases (on Gecko) when the oAttribute.nodeValue must be used:
  54. // - for the "class" attribute
  55. else if ( sAttName == 'class' )
  56. var sAttValue = oAttribute.nodeValue ;
  57. // XHTML doens't support attribute minimization like "CHECKED". It must be trasformed to cheched="checked".
  58. else if ( oAttribute.nodeValue === true )
  59. sAttValue = sAttName ;
  60. else
  61. var sAttValue = htmlNode.getAttribute( sAttName, 2 ) ; // We must use getAttribute to get it exactly as it is defined.
  62. if ( FCKConfig.ForceSimpleAmpersand && sAttValue.replace )
  63. sAttValue = sAttValue.replace( /&/g, '___FCKAmp___' ) ;
  64. this._AppendAttribute( node, sAttName, sAttValue ) ;
  65. }
  66. }
  67. }