Summary | Maps-Driver loaded over insecure http protokol |
Queue | Kronolith |
Queue Version | Git master |
Type | Enhancement |
State | Resolved |
Priority | 1. Low |
Owners | mrubinsk (at) horde (dot) org |
Requester | michael.groene (at) zel (dot) uni-hannover (dot) de |
Created | 05/14/2012 (4809 days ago) |
Due | |
Updated | 08/29/2012 (4702 days ago) |
Assigned | 05/15/2012 (4808 days ago) |
Resolved | 07/21/2012 (4741 days ago) |
Milestone | |
Patch | No |
commit fc7c11dd6ff3f6eee379822f1617971ba47c77c7
Author: Jan Schneider <jan@horde.org>
Date: Sat Jul 21 22:07:18 2012 +0200
[mjr] Request SSL connection from map providers if using SSL (
Bug #11193).horde/docs/CHANGES | 1 +
horde/package.xml | 2 ++
2 files changed, 3 insertions(+), 0 deletions(-)
http://git.horde.org/horde-git/-/commit/fc7c11dd6ff3f6eee379822f1617971ba47c77c7
commit dcf481bddc9d95bbed57b0f0575737b89f347fe3
Author: Michael J Rubinsky <mrubinsk@horde.org>
Date: Fri Jul 20 22:15:41 2012 -0400
Bug: 11193Request SSL connection from map providers if using SSL.horde/js/map/map.js | 8 +++++---
kronolith/lib/Kronolith.php | 1 +
2 files changed, 6 insertions(+), 3 deletions(-)
http://git.horde.org/horde-git/-/commit/dcf481bddc9d95bbed57b0f0575737b89f347fe3
commit fc7c11dd6ff3f6eee379822f1617971ba47c77c7
Author: Jan Schneider <jan@horde.org>
Date: Sat Jul 21 22:07:18 2012 +0200
[mjr] Request SSL connection from map providers if using SSL (
Bug #11193).horde/docs/CHANGES | 1 +
horde/package.xml | 2 ++
2 files changed, 3 insertions(+), 0 deletions(-)
http://git.horde.org/horde-git/-/commit/fc7c11dd6ff3f6eee379822f1617971ba47c77c7
commit 81e63aa0d80182adddd2bc921dd9532f025b6fb2
Author: Michael J Rubinsky <mrubinsk@horde.org>
Date: Fri Jul 20 22:15:41 2012 -0400
Bug: 11193Request SSL connection from map providers if using SSL.Conflicts:
kronolith/lib/Kronolith.php
horde/js/map/map.js | 8 +++++---
kronolith/lib/Kronolith.php | 1 +
2 files changed, 6 insertions(+), 3 deletions(-)
http://git.horde.org/horde-git/-/commit/81e63aa0d80182adddd2bc921dd9532f025b6fb2
commit dcf481bddc9d95bbed57b0f0575737b89f347fe3
Author: Michael J Rubinsky <mrubinsk@horde.org>
Date: Fri Jul 20 22:15:41 2012 -0400
Bug: 11193Request SSL connection from map providers if using SSL.horde/js/map/map.js | 8 +++++---
kronolith/lib/Kronolith.php | 1 +
2 files changed, 6 insertions(+), 3 deletions(-)
http://git.horde.org/horde-git/-/commit/dcf481bddc9d95bbed57b0f0575737b89f347fe3
Assigned to Michael Rubinsky
Priority ⇒ 1. Low
Type ⇒ Enhancement
Summary ⇒ Maps-Driver loaded over insecure http protokol
Queue ⇒ Kronolith
Milestone ⇒
Patch ⇒ No
State ⇒ New
Browser complains about unencrypted contents.
I found out, that this is due to the google-maps scripts:
/js/map/map.js:
_getProviderUrl: function(p)
{
switch (p) {
case 'Google':
return
'http://maps.google.com/maps/api/js?v=3.5&sensor=false';
case 'Yahoo':
return 'http://api.maps.yahoo.com/ajaxymap?v=3.8&appid='
+ this.conf['apikeys']['yahoo'];
case 'Ve':
return
'http://dev.virtualearth.net/mapcontrol/mapcontrol.ashx?v=6.1';
default:
return '';
}
},
replacing http -> https works for the google-site, the other we don't use.