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

数据库编程

开发平台:

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.  * 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 oFCKXml = this ;
  29. var oXmlHttp = FCKTools.CreateXmlObject( 'XmlHttp' ) ;
  30. oXmlHttp.open( "GET", urlToCall, false ) ;
  31. oXmlHttp.send( null ) ;
  32. if ( oXmlHttp.status == 200 || oXmlHttp.status == 304 )
  33. this.DOMDocument = oXmlHttp.responseXML ;
  34. else if ( oXmlHttp.status == 0 && oXmlHttp.readyState == 4 )
  35. this.DOMDocument = oXmlHttp.responseXML ;
  36. else
  37. this.DOMDocument = null ;
  38. if ( this.DOMDocument == null || this.DOMDocument.firstChild == null )
  39. {
  40. this.Error = true ;
  41. if (window.confirm( 'Error loading "' + urlToCall + '"rnDo you want to see more info?' ) )
  42. alert( 'URL requested: "' + urlToCall + '"rn' +
  43. 'Server response:rnStatus: ' + oXmlHttp.status + 'rn' +
  44. 'Response text:rn' + oXmlHttp.responseText ) ;
  45. }
  46. },
  47. SelectNodes : function( xpath, contextNode )
  48. {
  49. if ( this.Error )
  50. return new Array() ;
  51. var aNodeArray = new Array();
  52. var xPathResult = this.DOMDocument.evaluate( xpath, contextNode ? contextNode : this.DOMDocument,
  53. this.DOMDocument.createNSResolver(this.DOMDocument.documentElement), XPathResult.ORDERED_NODE_ITERATOR_TYPE, null) ;
  54. if ( xPathResult )
  55. {
  56. var oNode = xPathResult.iterateNext() ;
  57. while( oNode )
  58. {
  59. aNodeArray[aNodeArray.length] = oNode ;
  60. oNode = xPathResult.iterateNext();
  61. }
  62. }
  63. return aNodeArray ;
  64. },
  65. SelectSingleNode : function( xpath, contextNode )
  66. {
  67. if ( this.Error )
  68. return null ;
  69. var xPathResult = this.DOMDocument.evaluate( xpath, contextNode ? contextNode : this.DOMDocument,
  70. this.DOMDocument.createNSResolver(this.DOMDocument.documentElement), 9, null);
  71. if ( xPathResult && xPathResult.singleNodeValue )
  72. return xPathResult.singleNodeValue ;
  73. else
  74. return null ;
  75. }
  76. } ;