Skip to content

Commit

Permalink
Merge remote-tracking branch 'upstream/pull/5375'
Browse files Browse the repository at this point in the history
  • Loading branch information
tomhughes committed Dec 8, 2024
2 parents bf4d8fc + 821ebdd commit 7b05c1c
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 17 deletions.
18 changes: 4 additions & 14 deletions app/assets/javascripts/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -255,20 +255,10 @@ $(document).ready(function () {
});

function sendRemoteEditCommand(url, callback) {
var iframe = $("<iframe>");
var timeoutId = setTimeout(function () {
alert(I18n.t("site.index.remote_failed"));
iframe.remove();
}, 5000);

iframe
.hide()
.appendTo("body")
.attr("src", url)
.on("load", function () {
clearTimeout(timeoutId);
iframe.remove();
if (callback) callback();
fetch(url, { mode: "no-cors", signal: AbortSignal.timeout(5000) })
.then(callback)
.catch(function () {
alert(I18n.t("site.index.remote_failed"));
});
}

Expand Down
4 changes: 1 addition & 3 deletions app/controllers/application_controller.rb
Original file line number Diff line number Diff line change
Expand Up @@ -253,9 +253,7 @@ def fetch_body
def map_layout
policy = request.content_security_policy.clone

policy.child_src(*policy.child_src, "http://127.0.0.1:8111", "https://127.0.0.1:8112")
policy.frame_src(*policy.frame_src, "http://127.0.0.1:8111", "https://127.0.0.1:8112")
policy.connect_src(*policy.connect_src, Settings.nominatim_url, Settings.overpass_url, Settings.fossgis_osrm_url, Settings.graphhopper_url, Settings.fossgis_valhalla_url)
policy.connect_src(*policy.connect_src, "http://127.0.0.1:8111", Settings.nominatim_url, Settings.overpass_url, Settings.fossgis_osrm_url, Settings.graphhopper_url, Settings.fossgis_valhalla_url)
policy.form_action(*policy.form_action, "render.openstreetmap.org")
policy.style_src(*policy.style_src, :unsafe_inline)

Expand Down

0 comments on commit 7b05c1c

Please sign in to comment.