Merge branch 'master' into openid
This commit is contained in:
commit
7b9e852c9d
100 changed files with 151 additions and 11 deletions
|
@ -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
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue