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

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.  */
  23. FCKXml.prototype =
  24. {
  25. LoadUrl : function( urlToCall )
  26. {
  27. this.Error = false ;
  28. var oXml ;
  29. var oXmlHttp = FCKTools.CreateXmlObject( 'XmlHttp' ) ;
  30. oXmlHttp.open( 'GET', urlToCall, false ) ;
  31. oXmlHttp.send( null ) ;
  32. if ( oXmlHttp.status == 200 || oXmlHttp.status == 304 || ( oXmlHttp.status == 0 && oXmlHttp.readyState == 4 ) )
  33. {
  34. oXml = oXmlHttp.responseXML ;
  35. // #1426: Fallback if responseXML isn't set for some
  36. // reason (e.g. improperly configured web server)
  37. if ( !oXml )
  38. oXml = (new DOMParser()).parseFromString( oXmlHttp.responseText, 'text/xml' ) ;
  39. }
  40. else
  41. oXml = null ;
  42. if ( oXml )
  43. {
  44. // Try to access something on it.
  45. try
  46. {
  47. var test = oXml.firstChild ;
  48. }
  49. catch (e)
  50. {
  51. // If document.domain has been changed (#123), we'll have a security
  52. // error at this point. The workaround here is parsing the responseText:
  53. // http://alexander.kirk.at/2006/07/27/firefox-15-xmlhttprequest-reqresponsexml-and-documentdomain/
  54. oXml = (new DOMParser()).parseFromString( oXmlHttp.responseText, 'text/xml' ) ;
  55. }
  56. }
  57. if ( !oXml || !oXml.firstChild )
  58. {
  59. this.Error = true ;
  60. if ( window.confirm( 'Error loading "' + urlToCall + '" (HTTP Status: ' + oXmlHttp.status + ').rnDo you want to see the server response dump?' ) )
  61. alert( oXmlHttp.responseText ) ;
  62. }
  63. this.DOMDocument = oXml ;
  64. },
  65. SelectNodes : function( xpath, contextNode )
  66. {
  67. if ( this.Error )
  68. return new Array() ;
  69. var aNodeArray = new Array();
  70. var xPathResult = this.DOMDocument.evaluate( xpath, contextNode ? contextNode : this.DOMDocument,
  71. this.DOMDocument.createNSResolver(this.DOMDocument.documentElement), XPathResult.ORDERED_NODE_ITERATOR_TYPE, null) ;
  72. if ( xPathResult )
  73. {
  74. var oNode = xPathResult.iterateNext() ;
  75. while( oNode )
  76. {
  77. aNodeArray[aNodeArray.length] = oNode ;
  78. oNode = xPathResult.iterateNext();
  79. }
  80. }
  81. return aNodeArray ;
  82. },
  83. SelectSingleNode : function( xpath, contextNode )
  84. {
  85. if ( this.Error )
  86. return null ;
  87. var xPathResult = this.DOMDocument.evaluate( xpath, contextNode ? contextNode : this.DOMDocument,
  88. this.DOMDocument.createNSResolver(this.DOMDocument.documentElement), 9, null);
  89. if ( xPathResult && xPathResult.singleNodeValue )
  90. return xPathResult.singleNodeValue ;
  91. else
  92. return null ;
  93. }
  94. } ;