From fe606bf057567f20ecacf40fa15b968ccaf4a063 Mon Sep 17 00:00:00 2001 From: "abarth@webkit.org" Date: Tue, 10 Jul 2012 23:10:48 +0000 Subject: [PATCH] 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: git-svn-id: https://svn.webkit.org/repository/webkit/trunk@122276 268f45cc-cd09-0410-ab3c-d52691b4dbfc --- Websites/bugs.webkit.org/ChangeLog | 13 +++++++++++++ Websites/bugs.webkit.org/committers-autocomplete.js | 2 +- 2 files changed, 14 insertions(+), 1 deletion(-) diff --git a/Websites/bugs.webkit.org/ChangeLog b/Websites/bugs.webkit.org/ChangeLog index da61897..a45d947 100644 --- a/Websites/bugs.webkit.org/ChangeLog +++ b/Websites/bugs.webkit.org/ChangeLog @@ -1,3 +1,16 @@ +2012-07-10 Adam Barth + + 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 Only include the image checksum error in pretty-diffs for -expected.png files. diff --git a/Websites/bugs.webkit.org/committers-autocomplete.js b/Websites/bugs.webkit.org/committers-autocomplete.js index 657ab3a..084b50d 100644 --- a/Websites/bugs.webkit.org/committers-autocomplete.js +++ b/Websites/bugs.webkit.org/committers-autocomplete.js @@ -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) { -- 1.8.3.1