From a71c5a27e3768cb68b979eac6ec8c7d7612dec8f Mon Sep 17 00:00:00 2001 From: James Moger <james.moger@gitblit.com> Date: Thu, 02 Feb 2012 17:14:43 -0500 Subject: [PATCH] Adjustments to init scripts --- src/com/gitblit/wicket/pages/RepositoriesPage.html | 38 +++++++++++++------------------------- 1 files changed, 13 insertions(+), 25 deletions(-) diff --git a/src/com/gitblit/wicket/pages/RepositoriesPage.html b/src/com/gitblit/wicket/pages/RepositoriesPage.html index 6a3054f..c883099 100644 --- a/src/com/gitblit/wicket/pages/RepositoriesPage.html +++ b/src/com/gitblit/wicket/pages/RepositoriesPage.html @@ -1,29 +1,17 @@ -<?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"> +<wicket:head> + <link href="markdown.css" type="text/css" rel="stylesheet" /> +</wicket:head> + <body> - <div wicket:id="pageHeader"></div> - <div class="index_include" wicket:id="indexInclude"></div> +<wicket:extend> + <div class="markdown" style="margin-top:-1em;padding-bottom:5px;" wicket:id="repositoriesMessage">[repositories message]</div> - <table class="project_list"> - <tr> - <th wicket:id="orderByRepository">Repository</th> - <th wicket:id="orderByDescription">Description</th> - <th wicket:id="orderByOwner">Owner</th> - <th wicket:id="orderByDate">Last Change</th> - <th></th> - </tr> - <tbody> - <tr wicket:id="repository"> - <td><div class="list" wicket:id="repositoryName"></div></td> - <td><div class="list" wicket:id="repositoryDescription"></div></td> - <td><i><span wicket:id="repositoryOwner"></span></i></td> - <td><span wicket:id="repositoryLastChange"></span></td> - <td></td> - </tr> - </tbody> - </table> - - <!-- footer --> - <div wicket:id="pageFooter"></div> + <div wicket:id="repositoriesPanel">[repositories panel]</div> +</wicket:extend> </body> </html> \ No newline at end of file -- Gitblit v1.9.1