James Moger
2011-04-07 cebf455f3fd54b72e530942f308097ec54b408cd
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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
<?xml version="1.0" encoding="UTF-8"?>
<html xmlns="http://www.w3.org/1999/xhtml" >
<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>description</th><td><span wicket:id="repositoryDescription">[repository description]</span></td></tr>
                <tr><th>owner</th><td><span wicket:id="repositoryOwner">[repository owner]</span></td></tr>
                <tr><th>last change</th><td><span wicket:id="repositoryLastChange">[repository last change]</span></td></tr>
                <tr><th>URL</th><td><span wicket:id="repositoryCloneUrl">[repository clone url]</span></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>
 
    <!-- 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>
 
    <!-- 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>
    
</wicket:extend>    
</body>
</html>