Title: [157640] trunk/Websites/webkit.org
Revision
157640
Author
[email protected]
Date
2013-10-18 10:11:16 -0700 (Fri, 18 Oct 2013)

Log Message

Mixed content error when accessing webkit.org/team.html over https
https://bugs.webkit.org/show_bug.cgi?id=123020

Patch by Tibor Meszaros <[email protected]> on 2013-10-18
Reviewed by Alexey Proskuryakov.

When the webkit.org/team.html page is accessed over https most browsers report
Mixed Content error, which is caused by the fact that the contributos.json file
is accessed over a plain http connection and not https.

* team.html:

Modified Paths

Diff

Modified: trunk/Websites/webkit.org/ChangeLog (157639 => 157640)


--- trunk/Websites/webkit.org/ChangeLog	2013-10-18 17:03:48 UTC (rev 157639)
+++ trunk/Websites/webkit.org/ChangeLog	2013-10-18 17:11:16 UTC (rev 157640)
@@ -1,5 +1,18 @@
 2013-10-18  Tibor Meszaros  <[email protected]>
 
+        Mixed content error when accessing webkit.org/team.html over https
+        https://bugs.webkit.org/show_bug.cgi?id=123020
+
+        Reviewed by Alexey Proskuryakov.
+
+        When the webkit.org/team.html page is accessed over https most browsers report
+        Mixed Content error, which is caused by the fact that the contributos.json file
+        is accessed over a plain http connection and not https.     
+
+        * team.html:
+
+2013-10-18  Tibor Meszaros  <[email protected]>
+
         Cleanup webkit.org/team.html
         https://bugs.webkit.org/show_bug.cgi?id=123022
 

Modified: trunk/Websites/webkit.org/team.html (157639 => 157640)


--- trunk/Websites/webkit.org/team.html	2013-10-18 17:03:48 UTC (rev 157639)
+++ trunk/Websites/webkit.org/team.html	2013-10-18 17:11:16 UTC (rev 157640)
@@ -25,7 +25,7 @@
 
 <script>
 
-var svnTrunkUrl = 'http://svn.webkit.org/repository/webkit/trunk/';
+var svnTrunkUrl = 'https://svn.webkit.org/repository/webkit/trunk/';
 var domainAffiliations = {
     'apple.com': 'Apple',
     'adobe.com': 'Adobe',
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to