From 9dcd534f3e1edb72944fcfb98076cccb36a71df4 Mon Sep 17 00:00:00 2001 From: James Moger <james.moger@gitblit.com> Date: Mon, 14 Nov 2011 17:24:16 -0500 Subject: [PATCH] Added optional Gravatar support --- src/com/gitblit/wicket/pages/CommitPage.html | 5 +++++ 1 files changed, 5 insertions(+), 0 deletions(-) diff --git a/src/com/gitblit/wicket/pages/CommitPage.html b/src/com/gitblit/wicket/pages/CommitPage.html index f2d328e..2af05e1 100644 --- a/src/com/gitblit/wicket/pages/CommitPage.html +++ b/src/com/gitblit/wicket/pages/CommitPage.html @@ -15,6 +15,9 @@ <!-- commit header --> <div wicket:id="commitHeader">[commit header]</div> + <!-- Author Gravatar --> + <img style="float:right;vertical-align: top;" wicket:id="authorAvatar" /> + <!-- commit info --> <table class="plain"> <tr><th><wicket:message key="gb.refs">refs</wicket:message></th><td><div wicket:id="refsPanel">[references]</div></td></tr> @@ -53,6 +56,8 @@ <tr><td><span class="sha1" wicket:id="authorName"></span></td></tr> <tr><td><span class="sha1" wicket:id="authorDate"></span></td></tr> </table> + <!-- Note Author Gravatar --> + <img style="vertical-align: top;" wicket:id="noteAuthorAvatar" /> </td> <td class="message"><span class="sha1" wicket:id="noteContent"></span></td> </tr> -- Gitblit v1.9.1