- def wikify(type, key, tag, text, wiki)
- my_locale = I18n.locale
- url = "http://wiki.openstreetmap.org/index.php?title=#{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 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