fckxml_ie.js
上传用户:dbstep
上传日期:2022-08-06
资源大小:2803k
文件大小:2k
源码类别:

WEB源码(ASP,PHP,...)

开发平台:

ASP/ASPX

  1. /*
  2.  * FCKeditor - The text editor for Internet - http://www.fckeditor.net
  3.  * Copyright (C) 2003-2009 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.  * FCKXml Class: class to load and manipulate XML files.
  22.  * (IE specific implementation)
  23.  */
  24. FCKXml.prototype =
  25. {
  26. LoadUrl : function( urlToCall )
  27. {
  28. this.Error = false ;
  29. var oXmlHttp = FCKTools.CreateXmlObject( 'XmlHttp' ) ;
  30. if ( !oXmlHttp )
  31. {
  32. this.Error = true ;
  33. return ;
  34. }
  35. oXmlHttp.open( "GET", urlToCall, false ) ;
  36. oXmlHttp.send( null ) ;
  37. if ( oXmlHttp.status == 200 || oXmlHttp.status == 304 || ( oXmlHttp.status == 0 && oXmlHttp.readyState == 4 ) )
  38. {
  39. this.DOMDocument = oXmlHttp.responseXML ;
  40. // #1426: Fallback if responseXML isn't set for some
  41. // reason (e.g. improperly configured web server)
  42. if ( !this.DOMDocument || this.DOMDocument.firstChild == null )
  43. {
  44. this.DOMDocument = FCKTools.CreateXmlObject( 'DOMDocument' ) ;
  45. this.DOMDocument.async = false ;
  46. this.DOMDocument.resolveExternals = false ;
  47. this.DOMDocument.loadXML( oXmlHttp.responseText ) ;
  48. }
  49. }
  50. else
  51. {
  52. this.DOMDocument = null ;
  53. }
  54. if ( this.DOMDocument == null || this.DOMDocument.firstChild == null )
  55. {
  56. this.Error = true ;
  57. if (window.confirm( 'Error loading "' + urlToCall + '"rnDo you want to see more info?' ) )
  58. alert( 'URL requested: "' + urlToCall + '"rn' +
  59. 'Server response:rnStatus: ' + oXmlHttp.status + 'rn' +
  60. 'Response text:rn' + oXmlHttp.responseText ) ;
  61. }
  62. },
  63. SelectNodes : function( xpath, contextNode )
  64. {
  65. if ( this.Error )
  66. return new Array() ;
  67. if ( contextNode )
  68. return contextNode.selectNodes( xpath ) ;
  69. else
  70. return this.DOMDocument.selectNodes( xpath ) ;
  71. },
  72. SelectSingleNode : function( xpath, contextNode )
  73. {
  74. if ( this.Error )
  75. return null ;
  76. if ( contextNode )
  77. return contextNode.selectSingleNode( xpath ) ;
  78. else
  79. return this.DOMDocument.selectSingleNode( xpath ) ;
  80. }
  81. } ;