- def wikify(type, key, tag, text, wiki)
- my_locale = I18n.locale
- url = "http://wiki.openstreetmap.org/wiki/#{wiki}?uselang=#{my_locale}"
-
- if type == "key"
- return '<a href="' + url + '" title="' + h(t('browse.tag_details.wiki_link.key', :key => key)) + '">' + h(text) + '</a>'
+ def wiki_link(type, lookup)
+ locale = I18n.locale.to_s
+
+ if page = WIKI_PAGES[locale][type][lookup] rescue nil
+ url = "http://wiki.openstreetmap.org/wiki/#{page}?uselang=#{locale}"
+ elsif page = WIKI_PAGES["en"][type][lookup] rescue nil
+ url = "http://wiki.openstreetmap.org/wiki/#{page}?uselang=#{locale}"
+ end
+
+ return url
+ 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
+ if value =~ /^([a-z-]{2,12}):(.+)$/
+ # Value is <lang>:<title> so split it up
+ lang = $1
+ value = $2
+ else
+ # Value is <title> so default to English Wikipedia
+ lang = 'en'
+ end
+ elsif key =~ /^wikipedia:(\S+)$/
+ # Language is in the key, so assume value is a simple title
+ lang = $1