]> git.openstreetmap.org Git - rails.git/blobdiff - app/helpers/application_helper.rb
Drop with_format and user the new :formats render option instead
[rails.git] / app / helpers / application_helper.rb
index ce0c5d67bb68d37945d0d42213e92d3ef1f08373..f4b900017d4c8408d8a5e5f633bba9e96da15613 100644 (file)
@@ -125,6 +125,18 @@ module ApplicationHelper
     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
+
 private
 
   def javascript_strings_for_key(key)