Merge remote-tracking branch 'upstream/pull/2921' into master
This commit is contained in:
commit
4347d9d3b0
12 changed files with 30 additions and 17 deletions
|
@ -72,7 +72,7 @@ class BoundingBox
|
|||
def check_size(max_area = Settings.max_request_area)
|
||||
# check the bbox isn't too large
|
||||
if area > max_area
|
||||
raise OSM::APIBadBoundingBox, "The maximum bbox size is " + max_area.to_s +
|
||||
raise OSM::APIBadBoundingBox, "The maximum bbox size is #{max_area}" \
|
||||
", and your request was too large. Either request a smaller area, or use planet.osm"
|
||||
end
|
||||
self
|
||||
|
|
|
@ -497,8 +497,8 @@ module OSM
|
|||
|
||||
# Return the terms and conditions text for a given country
|
||||
def self.legal_text_for_country(country_code)
|
||||
file_name = Rails.root.join("config", "legales", country_code.to_s + ".yml")
|
||||
file_name = Rails.root.join("config", "legales", Settings.default_legale + ".yml") unless File.exist? file_name
|
||||
file_name = Rails.root.join("config", "legales", "#{country_code}.yml")
|
||||
file_name = Rails.root.join("config", "legales", "#{Settings.default_legale}.yml") unless File.exist? file_name
|
||||
YAML.load_file(file_name).transform_values!(&:html_safe)
|
||||
end
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue