fckstylesloader.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: fckstylesloader.js
  12.  *  FCKStylesLoader Class: this class define objects that are responsible
  13.  *  for loading the styles defined in the XML file.
  14.  * 
  15.  * File Authors:
  16.  *  Frederico Caldeira Knabben (fredck@fckeditor.net)
  17.  */
  18. var FCKStylesLoader = function()
  19. {
  20. this.Styles = new Object() ;
  21. this.StyleGroups = new Object() ;
  22. this.Loaded = false ;
  23. this.HasObjectElements = false ;
  24. }
  25. FCKStylesLoader.prototype.Load = function( stylesXmlUrl )
  26. {
  27. // Load the XML file into a FCKXml object.
  28. var oXml = new FCKXml() ;
  29. oXml.LoadUrl( stylesXmlUrl ) ;
  30. // Get the "Style" nodes defined in the XML file.
  31. var aStyleNodes = oXml.SelectNodes( 'Styles/Style' ) ;
  32. // Add each style to our "Styles" collection.
  33. for ( var i = 0 ; i < aStyleNodes.length ; i++ )
  34. {
  35. var sElement = aStyleNodes[i].attributes.getNamedItem('element').value.toUpperCase() ;
  36. // Create the style definition object.
  37. var oStyleDef = new FCKStyleDef( aStyleNodes[i].attributes.getNamedItem('name').value, sElement ) ;
  38. if ( oStyleDef.IsObjectElement )
  39. this.HasObjectElements = true ;
  40. // Get the attributes defined for the style (if any).
  41. var aAttNodes = oXml.SelectNodes( 'Attribute', aStyleNodes[i] ) ;
  42. // Add the attributes to the style definition object.
  43. for ( var j = 0 ; j < aAttNodes.length ; j++ )
  44. {
  45. var sAttName = aAttNodes[j].attributes.getNamedItem('name').value ;
  46. var sAttValue = aAttNodes[j].attributes.getNamedItem('value').value ;
  47. // IE changes the "style" attribute value when applied to an element
  48. // so we must get the final resulting value (for comparision issues).
  49. if ( sAttName.toLowerCase() == 'style' )
  50. {
  51. var oTempE = document.createElement( 'SPAN' ) ;
  52. oTempE.style.cssText = sAttValue ;
  53. sAttValue = oTempE.style.cssText ;
  54. }
  55. oStyleDef.AddAttribute( sAttName, sAttValue ) ;
  56. }
  57. // Add the style to the "Styles" collection using it's name as the key.
  58. this.Styles[ oStyleDef.Name ] = oStyleDef ;
  59. // Add the style to the "StyleGroups" collection.
  60. var aGroup = this.StyleGroups[sElement] ;
  61. if ( aGroup == null )
  62. {
  63. this.StyleGroups[sElement] = new Array() ;
  64. aGroup = this.StyleGroups[sElement] ;
  65. }
  66. aGroup[aGroup.length] = oStyleDef ;
  67. }
  68. this.Loaded = true ;
  69. }