From fc948cacef9c9b8c0a1e84cbc082ca67cd5f68d9 Mon Sep 17 00:00:00 2001 From: James Moger <james.moger@gitblit.com> Date: Thu, 14 Apr 2011 18:29:10 -0400 Subject: [PATCH] Authenticate the webapp against the same realm as the git servlet. --- src/com/gitblit/wicket/pages/TagPage.html | 30 +++++++++++++++--------------- 1 files changed, 15 insertions(+), 15 deletions(-) diff --git a/src/com/gitblit/wicket/pages/TagPage.html b/src/com/gitblit/wicket/pages/TagPage.html index ae2c99c..42a7585 100644 --- a/src/com/gitblit/wicket/pages/TagPage.html +++ b/src/com/gitblit/wicket/pages/TagPage.html @@ -1,28 +1,28 @@ -<?xml version="1.0" encoding="UTF-8"?> -<html xmlns="http://www.w3.org/1999/xhtml" > +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> +<html xmlns="http://www.w3.org/1999/xhtml" + xmlns:wicket="http://wicket.apache.org/dtds.data/wicket-xhtml1.3-strict.dtd" + xml:lang="en" + lang="en"> + <body> - <!-- page header --> - <div wicket:id="pageHeader"></div> +<wicket:extend> <!-- page nav links --> - <div wicket:id="pageLinks"></div> + <div wicket:id="pageLinks">[page links]</div> <!-- summary header --> - <div class="header" wicket:id="commit"></div> + <div style="margin-top: 5px;" class="header" wicket:id="commit">[shortlog header]</div> <!-- commit info --> - <div class="title_text"> - <table class="object_header"> - <tr><td>object</td><td><span wicket:id="tagId">Message goes here</span></td></tr> - <tr><td>author</td><td><span wicket:id="tagAuthor">Message goes here</span></td></tr> - <tr><td></td><td><span wicket:id="tagDate">Message goes here</span></td></tr> + <table class="plain"> + <tr><th><wicket:message key="gb.object">object</wicket:message></th><td><span class="sha1" wicket:id="tagId">[tag id]</span></td></tr> + <tr><th><wicket:message key="gb.author">author</wicket:message></th><td><span wicket:id="tagAuthor">[tag author]</span></td></tr> + <tr><th></th><td><span wicket:id="tagDate">[tag date]</span></td></tr> </table> - </div> <!-- full message --> - <div class="page_body" wicket:id="fullMessage"></div> + <div style="border-bottom:0px;" class="commit_message" wicket:id="fullMessage">[tag full message]</div> - <!-- footer --> - <div wicket:id="pageFooter"></div> +</wicket:extend> </body> </html> \ No newline at end of file -- Gitblit v1.9.1