From 0adceb4b64dfe0dd509da33c6d733a47fbf803a2 Mon Sep 17 00:00:00 2001 From: James Moger <james.moger@gitblit.com> Date: Wed, 01 Aug 2012 21:21:32 -0400 Subject: [PATCH] Regex exclusions for repository search (issue 103) --- src/com/gitblit/wicket/pages/BlamePage.html | 8 ++++---- 1 files changed, 4 insertions(+), 4 deletions(-) diff --git a/src/com/gitblit/wicket/pages/BlamePage.html b/src/com/gitblit/wicket/pages/BlamePage.html index 2e20c18..9391eaf 100644 --- a/src/com/gitblit/wicket/pages/BlamePage.html +++ b/src/com/gitblit/wicket/pages/BlamePage.html @@ -19,12 +19,12 @@ <div wicket:id="breadcrumbs">[breadcrumbs]</div> <!-- blame content --> - <table class="annotated" style="border-top: 0px; margin-bottom:5px;"> + <table class="annotated" style="margin-bottom:5px;"> <tbody> <tr> - <th>Commit</th> - <th>Line</th> - <th>Data</th> + <th><wicket:message key="gb.commit">[commit]</wicket:message></th> + <th><wicket:message key="gb.line">[line]</wicket:message></th> + <th><wicket:message key="gb.content">[content]</wicket:message></th> </tr> <tr wicket:id="annotation"> <td><span class="sha1" wicket:id="commit"></span></td> -- Gitblit v1.9.1