]> git.openstreetmap.org Git - rails.git/blobdiff - app/helpers/application_helper.rb
Merge branch 'master' into notes
[rails.git] / app / helpers / application_helper.rb
index 000677646f58c0ab587b2a6c1b9647fc03fb80c8..18f233e506092d05d9e89ac302b8376ff2d021cb 100644 (file)
@@ -95,4 +95,16 @@ module ApplicationHelper
       I18n.t("html.dir")
     end
   end
+
+  def friendly_date(date)
+    content_tag(:span, time_ago_in_words(date), :title => l(date, :format => :friendly))
+  end
+
+  def note_author(object, link_options = {})
+    if object.author.nil?
+      h(object.author_name)
+    else
+      link_to h(object.author_name), link_options.merge({:controller => "user", :action => "view", :display_name => object.author_name})
+    end
+  end
 end