From df162cdbdfeb5fbf5500546c9783e1685be6980f Mon Sep 17 00:00:00 2001
From: James Moger <james.moger@gitblit.com>
Date: Wed, 04 Jan 2012 08:42:54 -0500
Subject: [PATCH] Federation pull_scripts request. Documentation.
---
src/com/gitblit/wicket/pages/SummaryPage.html | 77 ++++++++++----------------------------
1 files changed, 20 insertions(+), 57 deletions(-)
diff --git a/src/com/gitblit/wicket/pages/SummaryPage.html b/src/com/gitblit/wicket/pages/SummaryPage.html
index cba149e..132b891 100644
--- a/src/com/gitblit/wicket/pages/SummaryPage.html
+++ b/src/com/gitblit/wicket/pages/SummaryPage.html
@@ -4,79 +4,42 @@
xml:lang="en"
lang="en">
+<wicket:head>
+ <link href="markdown.css" type="text/css" rel="stylesheet" />
+</wicket:head>
+
<body>
<wicket:extend>
-
- <!-- page nav links -->
- <div wicket:id="pageLinks">[page links]</div>
- <div>
+ <div style="clear:both;">
<!-- Repository Activity Chart -->
- <div style="width:400px;float:right;">
+ <div style="float:right;">
<img class="activityGraph" wicket:id="commitsChart" />
</div>
<!-- Repository info -->
- <div style="margin-right:410px;">
+ <div>
<table class="plain">
- <tr><th><wicket:message key="gb.description">description</wicket:message></th><td><span wicket:id="repositoryDescription">[repository description]</span></td></tr>
- <tr><th><wicket:message key="gb.owner">owner</wicket:message></th><td><span wicket:id="repositoryOwner">[repository owner]</span></td></tr>
- <tr><th><wicket:message key="gb.lastChange">last change</wicket:message></th><td><span wicket:id="repositoryLastChange">[repository last change]</span></td></tr>
- <tr><th><wicket:message key="gb.url">URL</wicket:message></th><td><span wicket:id="repositoryCloneUrl">[repository clone url]</span></td></tr>
+ <tr><th><wicket:message key="gb.description">[description]</wicket:message></th><td><span wicket:id="repositoryDescription">[repository description]</span></td></tr>
+ <tr><th><wicket:message key="gb.owner">[owner]</wicket:message></th><td><span wicket:id="repositoryOwner">[repository owner]</span></td></tr>
+ <tr><th><wicket:message key="gb.lastChange">[last change]</wicket:message></th><td><span wicket:id="repositoryLastChange">[repository last change]</span></td></tr>
+ <tr><th><wicket:message key="gb.stats">[stats]</wicket:message></th><td><span wicket:id="branchStats">[branch stats]</span> <span class="link"><a wicket:id="metrics"><wicket:message key="gb.metrics">[metrics]</wicket:message></a></span></td></tr>
+ <tr><th valign="middle"><wicket:message key="gb.repositoryUrl">[URL]</wicket:message></th><td><img style="vertical-align: middle;" wicket:id="accessRestrictionIcon" /><span wicket:id="repositoryCloneUrl">[repository clone url]</span><div wicket:id="otherUrls" style="margin-left:20px;"></div></td></tr>
</table>
</div>
</div>
- <!-- shortlog -->
- <div class="header" wicket:id="shortlog">[shortlog header]</div>
- <table style="width:100%" class="pretty">
- <tbody>
- <tr wicket:id="commit">
- <td class="date"><span wicket:id="commitDate">[commit date]</span></td>
- <td class="author"><span wicket:id="commitAuthor">[commit author]</span></td>
- <td><div wicket:id="commitShortMessage">[commit short message]</div></td>
- <td class="rightAlign"><div wicket:id="commitRefs">[commit refs]</div></td>
- <td class="rightAlign"><span wicket:id="commitLinks">[commit links]</span></td>
- </tr>
- </tbody>
- </table>
- <div class="pager" wicket:id="shortlogMore">[more shortlogs]</div>
+ <!-- commits -->
+ <div style="padding-bottom:10px;" wicket:id="commitsPanel">[commits panel]</div>
- <!-- Open Branches Body -->
- <div style="width:400px; float:left;">
- <!-- heads -->
- <div class="header" wicket:id="branches">[branches header]</div>
- <table style="width:100%" class="pretty">
- <tbody>
- <tr wicket:id="branch">
- <td class="date"><span wicket:id="branchDate">[branch date]</span></td>
- <td><div wicket:id="branchName">[branch name]</div></td>
- <td class="rightAlign"><span wicket:id="branchLinks">[branch links]</span></td>
- </tr>
- </tbody>
- </table>
- <div class="pager" wicket:id="allBranches">[all branches]</div>
- <!-- Close Branches Body -->
- </div>
+ <!-- tags -->
+ <div style="padding-bottom:10px;" wicket:id="tagsPanel">[tags panel]</div>
- <!-- Open Tags body -->
- <div style="margin-left:405px;">
- <!-- tags -->
- <div class="header" wicket:id="tags">[tags header]</div>
- <table style="width:100%" class="pretty">
- <tbody>
- <tr wicket:id="tag">
- <td class="date"><span wicket:id="tagDate">[tag date]</span></td>
- <td><b><div wicket:id="tagName">[tag name]</div></b></td>
- <td><div wicket:id="tagDescription">[tag description]</div></td>
- <td class="rightAlign"><span wicket:id="tagLinks">[tag links]</span></td>
- </tr>
- </tbody>
- </table>
- <div class="pager" wicket:id="allTags">[all tags]</div>
- <!-- Close Tags Body -->
- </div>
+ <!-- branches -->
+ <div style="padding-bottom:10px;" wicket:id="branchesPanel">[branches panel]</div>
+ <!-- markdown readme -->
+ <div wicket:id="readme" class="markdown" style="clear:both;padding-bottom:5px;"></div>
</wicket:extend>
</body>
</html>
\ No newline at end of file
--
Gitblit v1.9.1