Title: [122276] trunk/Websites/bugs.webkit.org
Revision
122276
Author
[email protected]
Date
2012-07-10 16:10:48 -0700 (Tue, 10 Jul 2012)

Log Message

bugs.webkit.org has mixed content
https://bugs.webkit.org/show_bug.cgi?id=90907

Reviewed by Eric Seidel.

Now that we detect http XMLHttpRequests as mixed content, I've noticed
that we're loading committers.py over http instead of https.  For
better security, we should use https.

* committers-autocomplete.js:

Modified Paths

Diff

Modified: trunk/Websites/bugs.webkit.org/ChangeLog (122275 => 122276)


--- trunk/Websites/bugs.webkit.org/ChangeLog	2012-07-10 23:06:16 UTC (rev 122275)
+++ trunk/Websites/bugs.webkit.org/ChangeLog	2012-07-10 23:10:48 UTC (rev 122276)
@@ -1,3 +1,16 @@
+2012-07-10  Adam Barth  <[email protected]>
+
+        bugs.webkit.org has mixed content
+        https://bugs.webkit.org/show_bug.cgi?id=90907
+
+        Reviewed by Eric Seidel.
+
+        Now that we detect http XMLHttpRequests as mixed content, I've noticed
+        that we're loading committers.py over http instead of https.  For
+        better security, we should use https.
+
+        * committers-autocomplete.js:
+
 2012-05-30  Ojan Vafai  <[email protected]>
 
         Only include the image checksum error in pretty-diffs for -expected.png files.

Modified: trunk/Websites/bugs.webkit.org/committers-autocomplete.js (122275 => 122276)


--- trunk/Websites/bugs.webkit.org/committers-autocomplete.js	2012-07-10 23:06:16 UTC (rev 122275)
+++ trunk/Websites/bugs.webkit.org/committers-autocomplete.js	2012-07-10 23:10:48 UTC (rev 122276)
@@ -24,7 +24,7 @@
 // DAMAGE.
 
 WebKitCommitters = (function() {
-    var COMMITTERS_URL = 'http://svn.webkit.org/repository/webkit/trunk/Tools/Scripts/webkitpy/common/config/committers.py';
+    var COMMITTERS_URL = 'https://svn.webkit.org/repository/webkit/trunk/Tools/Scripts/webkitpy/common/config/committers.py';
     var m_committers;
 
     function getValues(param) {
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to