X-Git-Url: https://git.openstreetmap.org/rails.git/blobdiff_plain/c8d3257fa5c40ea90fed44f8343fb6d33d400ad1..2ba4bf374454cb693d7562679031d49f278e5521:/app/helpers/browse_helper.rb diff --git a/app/helpers/browse_helper.rb b/app/helpers/browse_helper.rb index 0b72040a3..c4e4d425a 100644 --- a/app/helpers/browse_helper.rb +++ b/app/helpers/browse_helper.rb @@ -13,14 +13,17 @@ module BrowseHelper if version name = t 'printable_name.with_version', :id => name, :version => object.version.to_s end - # stop here if redacted to avoid giving away redacted version tags. - return name if object.redacted? - if object.tags.include? "name:#{I18n.locale}" - name = t 'printable_name.with_name', :name => object.tags["name:#{I18n.locale}"].to_s, :id => name - elsif object.tags.include? 'name' - name = t 'printable_name.with_name', :name => object.tags['name'].to_s, :id => name + # don't look at object tags if redacted, so as to avoid giving + # away redacted version tag information. + unless object.redacted? + if object.tags.include? "name:#{I18n.locale}" + name = t 'printable_name.with_name', :name => object.tags["name:#{I18n.locale}"].to_s, :id => name + elsif object.tags.include? 'name' + name = t 'printable_name.with_name', :name => object.tags['name'].to_s, :id => name + end end + return name end @@ -60,7 +63,7 @@ module BrowseHelper private - ICON_TAGS = [ + ICON_TAGS = [ "aeroway", "amenity", "barrier", "building", "highway", "historic", "landuse", "leisure", "man_made", "natural", "railway", "shop", "tourism", "waterway" ] @@ -94,10 +97,10 @@ private if key == "wikipedia" # This regex should match Wikipedia language codes, everything # from de to zh-classical - if value =~ /^([a-z-]{2,12}):(.+)$/ + if value =~ /^([a-z-]{2,12}):(.+)$/i # Value is : so split it up + # Note that value is always left as-is, see: https://trac.openstreetmap.org/ticket/4315 lang = $1 - value = $2 else # Value is <title> so default to English Wikipedia lang = 'en'