[Checkins] SVN: z3c.xmlhttp/trunk/ - cleanup msxml2 setup. See comments about the correct MSXML2.XMLHTTP usage at

Roger Ineichen cvs-admin at zope.org
Fri May 4 22:07:04 UTC 2012


Log message for revision 125646:
  - cleanup msxml2 setup. See comments about the correct MSXML2.XMLHTTP usage at
    http://blogs.msdn.com/b/xmlteam/archive/2006/10/23/using-the-right-version-of-msxml-in-internet-explorer.aspx

Changed:
  U   z3c.xmlhttp/trunk/CHANGES.txt
  U   z3c.xmlhttp/trunk/src/z3c/xmlhttp/js/z3c.xmlhttp-0.5.0.js

-=-
Modified: z3c.xmlhttp/trunk/CHANGES.txt
===================================================================
--- z3c.xmlhttp/trunk/CHANGES.txt	2012-05-03 22:46:17 UTC (rev 125645)
+++ z3c.xmlhttp/trunk/CHANGES.txt	2012-05-04 22:07:00 UTC (rev 125646)
@@ -2,9 +2,12 @@
 CHANGES
 =======
 
-0.5.1dev (unreleased)
----------------------
+0.5.1 (unreleased)
+------------------
 
+- cleanup msxml2 setup. See comments about the correct MSXML2.XMLHTTP usage at
+  http://blogs.msdn.com/b/xmlteam/archive/2006/10/23/using-the-right-version-of-msxml-in-internet-explorer.aspx
+
 - Removed slugs for ZPKG and ZCML.
 
 0.5.0 (2008-04-16)

Modified: z3c.xmlhttp/trunk/src/z3c/xmlhttp/js/z3c.xmlhttp-0.5.0.js
===================================================================
--- z3c.xmlhttp/trunk/src/z3c/xmlhttp/js/z3c.xmlhttp-0.5.0.js	2012-05-03 22:46:17 UTC (rev 125645)
+++ z3c.xmlhttp/trunk/src/z3c/xmlhttp/js/z3c.xmlhttp-0.5.0.js	2012-05-04 22:07:00 UTC (rev 125646)
@@ -214,12 +214,16 @@
         }
         return req;
     }
+    // see comments about the MSXML2.XMLHTTP order,
+    // http://blogs.msdn.com/b/xmlteam/archive/2006/10/23/
+    // using-the-right-version-of-msxml-in-internet-explorer.aspx
     else if (window.ActiveXObject) {
         var MSXML_XMLHTTP_IDS = new Array(
+            "MSXML2.XMLHTTP.6.0",
+            "MSXML2.XMLHTTP.3.0",
+            "MSXML2.XMLHTTP",
             "MSXML2.XMLHTTP.5.0",
             "MSXML2.XMLHTTP.4.0",
-            "MSXML2.XMLHTTP.3.0",
-            "MSXML2.XMLHTTP",
             "Microsoft.XMLHTTP");
         var success = false;
         for (var i = 0; i < MSXML_XMLHTTP_IDS.length && !success; i++) {



More information about the checkins mailing list