X-Git-Url: https://git.openstreetmap.org/rails.git/blobdiff_plain/67292724441a7a447a9ea579a36dee64825dedaf..6e145a2f3803344f9d5412b7e75f5b093304225e:/app/helpers/browse_helper.rb diff --git a/app/helpers/browse_helper.rb b/app/helpers/browse_helper.rb index d2c2b5807..f121f2f0b 100644 --- a/app/helpers/browse_helper.rb +++ b/app/helpers/browse_helper.rb @@ -2,7 +2,7 @@ module BrowseHelper def link_to_page(page, page_param) return link_to(page, page_param => page) end - + def printable_name(object, version=false) name = t 'printable_name.with_id', :id => object.id.to_s if version @@ -16,6 +16,14 @@ module BrowseHelper return name end + def link_class(type, object) + return type + " " + h(icon_tags(object).join(' ')) + end + + def link_title(object) + return h(icon_tags(object).map { |k,v| k + '=' + v }.to_sentence) + end + def format_key(key) if url = wiki_link("key", key) link_to h(key), url, :title => t('browse.tag_details.wiki_link.key', :key => key) @@ -36,6 +44,15 @@ module BrowseHelper private + ICON_TAGS = [ + "aeroway", "amenity", "barrier", "building", "highway", "landuse", + "leisure", "man_made", "natural", "railway", "shop", "tourism", "waterway" + ] + + def icon_tags(object) + object.tags.find_all { |k,v| ICON_TAGS.include? k } + end + def wiki_link(type, lookup) locale = I18n.locale.to_s @@ -49,6 +66,9 @@ private end def wikipedia_link(key, value) + # Some k/v's are wikipedia=http://en.wikipedia.org/wiki/Full%20URL + return nil if value =~ /^http:\/\// + if key == "wikipedia" # This regex should match Wikipedia language codes, everything # from de to zh-classical @@ -68,9 +88,6 @@ private return nil end - # Some k/v's are wikipedia=http://en.wikipedia.org/wiki/Full%20URL - return nil if value =~ /^http:\/\// - return { :url => "http://#{lang}.wikipedia.org/wiki/#{value}?uselang=#{I18n.locale}", :title => value