fckxml.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.  * Defines the FCKXml object that is used for XML data calls
  22.  * and XML processing.
  23.  *
  24.  * This script is shared by almost all pages that compose the
  25.  * File Browser frameset.
  26.  */
  27. var FCKXml = function()
  28. {}
  29. FCKXml.prototype.GetHttpRequest = function()
  30. {
  31. // Gecko / IE7
  32. if ( typeof(XMLHttpRequest) != 'undefined' )
  33. return new XMLHttpRequest() ;
  34. // IE6
  35. try { return new ActiveXObject( 'Msxml2.XMLHTTP' ) ; }
  36. catch(e) {}
  37. // IE5
  38. try { return new ActiveXObject( 'Microsoft.XMLHTTP' ) ; }
  39. catch(e) {}
  40. return null ;
  41. }
  42. FCKXml.prototype.LoadUrl = function( urlToCall, asyncFunctionPointer )
  43. {
  44. var oFCKXml = this ;
  45. var bAsync = ( typeof(asyncFunctionPointer) == 'function' ) ;
  46. var oXmlHttp = this.GetHttpRequest() ;
  47. oXmlHttp.open( "GET", urlToCall, bAsync ) ;
  48. if ( bAsync )
  49. {
  50. oXmlHttp.onreadystatechange = function()
  51. {
  52. if ( oXmlHttp.readyState == 4 )
  53. {
  54. if ( ( oXmlHttp.status != 200 && oXmlHttp.status != 304 ) || oXmlHttp.responseXML == null || oXmlHttp.responseXML.firstChild == null )
  55. {
  56. alert( 'The server didn't send back a proper XML response. Please contact your system administrator.nn' +
  57. 'XML request error: ' + oXmlHttp.statusText + ' (' + oXmlHttp.status + ')nn' +
  58. 'Requested URL:n' + urlToCall + 'nn' +
  59. 'Response text:n' + oXmlHttp.responseText ) ;
  60. return ;
  61. }
  62. oFCKXml.DOMDocument = oXmlHttp.responseXML ;
  63. asyncFunctionPointer( oFCKXml ) ;
  64. }
  65. }
  66. }
  67. oXmlHttp.send( null ) ;
  68. if ( ! bAsync )
  69. {
  70. if ( oXmlHttp.status == 200 || oXmlHttp.status == 304 )
  71. this.DOMDocument = oXmlHttp.responseXML ;
  72. else
  73. {
  74. alert( 'XML request error: ' + oXmlHttp.statusText + ' (' + oXmlHttp.status + ')' ) ;
  75. }
  76. }
  77. }
  78. FCKXml.prototype.SelectNodes = function( xpath )
  79. {
  80. if ( navigator.userAgent.indexOf('MSIE') >= 0 ) // IE
  81. return this.DOMDocument.selectNodes( xpath ) ;
  82. else // Gecko
  83. {
  84. var aNodeArray = new Array();
  85. var xPathResult = this.DOMDocument.evaluate( xpath, this.DOMDocument,
  86. this.DOMDocument.createNSResolver(this.DOMDocument.documentElement), XPathResult.ORDERED_NODE_ITERATOR_TYPE, null) ;
  87. if ( xPathResult )
  88. {
  89. var oNode = xPathResult.iterateNext() ;
  90.   while( oNode )
  91.   {
  92.   aNodeArray[aNodeArray.length] = oNode ;
  93.   oNode = xPathResult.iterateNext();
  94.   }
  95. }
  96. return aNodeArray ;
  97. }
  98. }
  99. FCKXml.prototype.SelectSingleNode = function( xpath )
  100. {
  101. if ( navigator.userAgent.indexOf('MSIE') >= 0 ) // IE
  102. return this.DOMDocument.selectSingleNode( xpath ) ;
  103. else // Gecko
  104. {
  105. var xPathResult = this.DOMDocument.evaluate( xpath, this.DOMDocument,
  106. this.DOMDocument.createNSResolver(this.DOMDocument.documentElement), 9, null);
  107. if ( xPathResult && xPathResult.singleNodeValue )
  108. return xPathResult.singleNodeValue ;
  109. else
  110. return null ;
  111. }
  112. }