blob: 4151640ae087f926ad12f92bec41aec978cceac2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
|
<!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>
<wicket:extend>
<!-- page nav links -->
<div wicket:id="pageLinks">[page links]</div>
<div>
<!-- Repository Activity Chart -->
<div style="width:400px;float:right;">
<img class="activityGraph" wicket:id="commitsChart" />
</div>
<!-- Repository info -->
<div style="margin-right:410px;">
<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>
</table>
</div>
</div>
<!-- commits -->
<div wicket:id="commitsPanel">[commits panel]</div>
<!-- branches -->
<div style="width:400px; float:left;">
<div wicket:id="branchesPanel">[branches panel]</div>
</div>
<!-- tags -->
<div style="margin-left:405px;">
<div wicket:id="tagsPanel">[tags panel]</div>
</div>
</wicket:extend>
</body>
</html>
|