2 def link_to_page(page, page_param)
3 return link_to(page, page_param => page)
6 def printable_name(object, version=false)
7 name = t 'printable_name.with_id', :id => object.id.to_s
9 name = t 'printable_name.with_version', :id => name, :version => object.version.to_s
11 if object.tags.include? "name:#{I18n.locale}"
12 name = t 'printable_name.with_name', :name => object.tags["name:#{I18n.locale}"].to_s, :id => name
13 elsif object.tags.include? 'name'
14 name = t 'printable_name.with_name', :name => object.tags['name'].to_s, :id => name
19 def link_class(type, object)
20 return type + " " + h(icon_tags(object).join(' ')) + (object.visible == false ? ' deleted' : '')
23 def link_title(object)
24 return h(icon_tags(object).map { |k,v| k + '=' + v }.to_sentence)
28 if url = wiki_link("key", key)
29 link_to h(key), url, :title => t('browse.tag_details.wiki_link.key', :key => key)
35 def format_value(key, value)
36 if wp = wikipedia_link(key, value)
37 link_to h(wp[:title]), wp[:url], :title => t('browse.tag_details.wikipedia_link', :page => wp[:title])
38 elsif url = wiki_link("tag", "#{key}=#{value}")
39 link_to h(value), url, :title => t('browse.tag_details.wiki_link.tag', :key => key, :value => value)
45 def note_author(object)
49 link_to h(object.author_name), :controller => "user", :action => "view", :display_name => object.author_name
56 "aeroway", "amenity", "barrier", "building", "highway", "historic", "landuse",
57 "leisure", "man_made", "natural", "railway", "shop", "tourism", "waterway"
61 object.tags.find_all { |k,v| ICON_TAGS.include? k }
64 def wiki_link(type, lookup)
65 locale = I18n.locale.to_s
67 # update-wiki-pages does s/ /_/g on keys before saving them, we
68 # have to replace spaces with underscore so we'll link
69 # e.g. `source=Isle of Man Government aerial imagery (2001)' to
71 lookup_us = lookup.tr(" ", "_")
73 if page = WIKI_PAGES[locale][type][lookup_us] rescue nil
74 url = "http://wiki.openstreetmap.org/wiki/#{page}?uselang=#{locale}"
75 elsif page = WIKI_PAGES["en"][type][lookup_us] rescue nil
76 url = "http://wiki.openstreetmap.org/wiki/#{page}?uselang=#{locale}"
82 def wikipedia_link(key, value)
83 # Some k/v's are wikipedia=http://en.wikipedia.org/wiki/Full%20URL
84 return nil if value =~ /^http:\/\//
87 # This regex should match Wikipedia language codes, everything
88 # from de to zh-classical
89 if value =~ /^([a-z-]{2,12}):(.+)$/
90 # Value is <lang>:<title> so split it up
94 # Value is <title> so default to English Wikipedia
97 elsif key =~ /^wikipedia:(\S+)$/
98 # Language is in the key, so assume value is a simple title
101 # Not a wikipedia key!
106 :url => "http://#{lang}.wikipedia.org/wiki/#{value}?uselang=#{I18n.locale}",