From 9c25eb20cf3bdcad619dc5d986b427322107bb96 Mon Sep 17 00:00:00 2001 From: Daniel Kimsey Date: Tue, 13 Nov 2012 15:34:16 -0500 Subject: [PATCH] Add a title attr to show full date on history log --- lib/gollum/templates/history.mustache | 2 +- lib/gollum/views/history.rb | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/lib/gollum/templates/history.mustache b/lib/gollum/templates/history.mustache index 15502d29..17c2357e 100644 --- a/lib/gollum/templates/history.mustache +++ b/lib/gollum/templates/history.mustache @@ -33,7 +33,7 @@ {{>author_template}} - {{date}}:  + {{date}}:  {{message}} [{{id7}}] diff --git a/lib/gollum/views/history.rb b/lib/gollum/views/history.rb index 65a8c8b2..eaf671f1 100644 --- a/lib/gollum/views/history.rb +++ b/lib/gollum/views/history.rb @@ -22,6 +22,7 @@ module Precious :date => v.authored_date.strftime("%B %d, %Y"), :gravatar => Digest::MD5.hexdigest(v.author.email), :identicon => self._identicon_code(v.author.email), + :date_full=> v.authored_date, } end end