James Moger
2011-04-04 fc84260e4238fda10842c1bd3b9fb0cb74b95426
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
79
80
81
82
<?xml version="1.0" encoding="UTF-8"?>
<html xmlns="http://www.w3.org/1999/xhtml" >
<body>
    <!-- page header -->
    <div wicket:id="pageHeader"></div>
    
    <!-- page nav links -->    
    <div wicket:id="pageLinks"></div>
    
    <div>
        <!-- Repository Activity Chart -->    
        <div style="width:50%;float:right;">
            <img style="padding-top:8px;" wicket:id="commitsChart" />
        </div>    
    
        <!-- Repository info -->
        <div style="width:50%;"> 
            <table class="plain">
                <tr><th>description</th><td><span wicket:id="repositoryDescription">Message goes here</span></td></tr>
                <tr><th>owner</th><td><span wicket:id="repositoryOwner">Message goes here</span></td></tr>
                <tr><th>last change</th><td><span wicket:id="repositoryLastChange">Message goes here</span></td></tr>
                <tr><th>URL</th><td><span wicket:id="repositoryCloneUrl">Message goes here</span></td></tr>
            </table>
        </div>
    </div>
 
    <!-- shortlog -->
    <div class="header" wicket:id="shortlog"></div>    
    <table style="width:100%" class="pretty">
        <tbody>
               <tr wicket:id="commit">
                 <td class="date"><span wicket:id="commitDate"></span></td>
                 <td class="author"><span wicket:id="commitAuthor"></span></td>
                 <td><div wicket:id="commitShortMessage"></div></td>
                 <td><div wicket:id="commitRefs"></div></td>
                 <td><span wicket:id="commitLinks"></span></td>
               </tr>
        </tbody>
    </table>    
    <div class="pager" wicket:id="shortlogMore"></div>
 
    <!-- Open additional graphs body -->
    <div style="width:25%;float:right;">
    </div>
    
    <!-- Open Tags and Heads body -->
    <div style="width:65%">
    
    <!-- tags -->
    <div class="header" wicket:id="tags"></div>    
        <table style="width:100%" class="pretty">
            <tbody>
                   <tr wicket:id="tag">
                     <td class="date"><span wicket:id="tagDate"></span></td>
                     <td><b><div wicket:id="tagName"></div></b></td>
                     <td><div wicket:id="tagDescription"></div></td>
                     <td><span wicket:id="tagLinks"></span></td>
                   </tr>
            </tbody>
        </table>
    <div class="pager" wicket:id="tagsMore"></div>
 
 
    <!-- heads -->
    <div class="header" wicket:id="heads"></div>    
    <table style="width:100%" class="pretty">
        <tbody>
               <tr wicket:id="head">
                   <td class="date"><span wicket:id="headDate"></span></td>
                   <td><div wicket:id="headName"></div></td>
                   <td><span wicket:id="headLinks"></span></td>
               </tr>
           </tbody>
    </table>
    
    <!-- Close Tags and Heads Body -->
    </div>
    
    <!-- footer -->
    <div style="clear:both;" wicket:id="pageFooter"></div>
</body>
</html>