Title: [161213] trunk/Tools
Revision
161213
Author
a...@apple.com
Date
2014-01-02 11:42:11 -0800 (Thu, 02 Jan 2014)

Log Message

https://bugs.webkit.org/show_bug.cgi?id=126391
Accessing Trac from build.webkit.org/dashboard should enable XMLHttpRequest.withCredentials

Rubber-stamped by Dan Bernstein.

* BuildSlaveSupport/build.webkit.org-config/public_html/dashboard/Scripts/Utilities.js:
(loadXML): Quick and dirty fix, with a FIXME.

Modified Paths

Diff

Modified: trunk/Tools/BuildSlaveSupport/build.webkit.org-config/public_html/dashboard/Scripts/Utilities.js (161212 => 161213)


--- trunk/Tools/BuildSlaveSupport/build.webkit.org-config/public_html/dashboard/Scripts/Utilities.js	2014-01-02 19:41:45 UTC (rev 161212)
+++ trunk/Tools/BuildSlaveSupport/build.webkit.org-config/public_html/dashboard/Scripts/Utilities.js	2014-01-02 19:42:11 UTC (rev 161213)
@@ -67,6 +67,9 @@
     };
 
     request.open("GET", url);
+    // FIXME: It's not nice that one of the loading helpers here enables credentials, and
+    // others don't. Credentials are needed for some trac installations.
+    request.withCredentials = true;
     request.send();
 };
 

Modified: trunk/Tools/ChangeLog (161212 => 161213)


--- trunk/Tools/ChangeLog	2014-01-02 19:41:45 UTC (rev 161212)
+++ trunk/Tools/ChangeLog	2014-01-02 19:42:11 UTC (rev 161213)
@@ -1,3 +1,13 @@
+2014-01-02  Alexey Proskuryakov  <a...@apple.com>
+
+        https://bugs.webkit.org/show_bug.cgi?id=126391
+        Accessing Trac from build.webkit.org/dashboard should enable XMLHttpRequest.withCredentials
+
+        Rubber-stamped by Dan Bernstein.
+
+        * BuildSlaveSupport/build.webkit.org-config/public_html/dashboard/Scripts/Utilities.js:
+        (loadXML): Quick and dirty fix, with a FIXME.
+
 2014-01-01  Martin Robinson  <mrobin...@igalia.com>
 
         [GTK] Rename libtestnetscapeplugin to libTestNetscapePlugin
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to