~loggerhead-team/loggerhead/trunk-rich

« back to all changes in this revision

Viewing changes to loggerhead/templates/revision.pt

  • Committer: Martin Albisetti
  • Date: 2008-06-23 03:45:24 UTC
  • Revision ID: argentina@gmail.com-20080623034524-97s2zy6g5c45kedt
 * Show author instead of committer. Bug #149443

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
 
2
<tal:block define="onload string:load()">
 
3
  <html xmlns="http://www.w3.org/1999/xhtml" metal:use-macro="macros/main">
 
4
    <head>
 
5
      <title metal:fill-slot="title"
 
6
             tal:content="string:${branch/friendly_name} : revision ${change/revno}">
 
7
        ${branch.friendly_name} : revision ${change.revno}
 
8
      </title>
 
9
 
 
10
      <metal:block fill-slot="header_extras">
 
11
        <script type="text/javascript"
 
12
                tal:attributes="src python:branch.static_url('/static/javascript/collapse.js')">
 
13
        </script>
 
14
      </metal:block>
 
15
    </head>
 
16
 
 
17
    <body>
 
18
 
 
19
      <h1 metal:fill-slot="heading">
 
20
        <span class="branch-name" tal:content="branch/friendly_name">
 
21
          ${branch.friendly_name}
 
22
        </span>
 
23
        : revision
 
24
        <tal:revno content="change/revno">
 
25
          ${change.revno}
 
26
        </tal:revno>
 
27
        <tal:compare-to condition="python:compare_revid is not None">
 
28
          (compared to revision <tal:b content="python:history.get_revno(compare_revid)" />)
 
29
        </tal:compare-to>
 
30
      </h1>
 
31
 
 
32
      <div metal:fill-slot="content">
 
33
        <div class="links">
 
34
          <div>
 
35
            <b>&#8594;</b>
 
36
            <a tal:attributes="href python:url(['/files', change.revno])">
 
37
              browse files at revision <tal:b content="change/revno" />
 
38
            </a>
 
39
          </div>
 
40
          <div>
 
41
            <b>&#8594;</b>
 
42
            <a tal:attributes="href python:url(['/changes'], start_revid=change.revno)">
 
43
              view history from revision <tal:b content="change/revno" />
 
44
            </a>
 
45
          </div>
 
46
          <div tal:condition="python:compare_revid is not None" >
 
47
            <b>&#8594;</b>
 
48
            <a tal:attributes="href python:branch.url(['/bundle', change.revno, history.get_revno(compare_revid), 'bundle.txt'])">
 
49
                download bundle from <tal:b content="python:history.get_revno(compare_revid)" /> to <tal:b content="change/revno" />
 
50
            </a>
 
51
          </div>
 
52
          <div tal:condition="python:(remember is not None) and (compare_revid is None) and remember != revid" >
 
53
            <b>&#8594;</b>
 
54
            <a tal:attributes="href python:url(['/revision', change.revno], compare_revid=history.get_revno(remember))">
 
55
              compare with revision <tal:b content="python:history.get_revno(remember)" />
 
56
            </a>
 
57
          </div>
 
58
          <div  tal:condition="python:remember != revid">
 
59
            <b>&#8594;</b>
 
60
            <a tal:attributes="href python:url(['/revision', change.revno], remember=change.revno, compare_revid=None)">
 
61
              compare with another revision
 
62
            </a>
 
63
          </div>
 
64
          <tal:we-are-comparing condition="python:compare_revid is not None">
 
65
            <div>
 
66
              <b>&#8594;</b>
 
67
              <a tal:attributes="href python:url([ '/revision', history.get_revno(compare_revid) ], remember=change.revno, compare_revid=change.revno)">
 
68
                reverse the comparison (<tal:b content="change/revno" /> to <tal:b content="python:history.get_revno(compare_revid)" />)
 
69
              </a>
 
70
            </div>
 
71
            <div>
 
72
              <b>&#8594;</b>
 
73
              <a tal:attributes="href python:url(['/revision', change.revno], remember=None, compare_revid=None)">
 
74
                stop comparing with revision <tal:b content="python:history.get_revno(compare_revid)" />
 
75
              </a>
 
76
            </div>
 
77
          </tal:we-are-comparing>
 
78
        </div>
 
79
 
 
80
        <tal:revision-info replace="structure python:revisioninfo(url, branch, change, modified_file_link_rev)" />
 
81
 
 
82
        <table class="diff-option-buttons">
 
83
          <tr>
 
84
            <td>
 
85
              <tal:b content="structure python:collapse_all_button('file', branch, normal='table-row')" />
 
86
            </td>
 
87
 
 
88
            <td class="spacey">
 
89
              <a href="javascript:show_sbs()"
 
90
                 class="hide-all collapse-style-sbs-show"
 
91
                 title="collapse">
 
92
                <img tal:attributes="src python:branch.static_url('/static/images/nav-small-out.gif')"
 
93
                     width="22" height="10" class="collapse-triangle" />
 
94
                show side by side
 
95
              </a>
 
96
              <a href="javascript:show_unified()"
 
97
                 class="hide-all collapse-style-unified-show"
 
98
                 title="expand">
 
99
                <img tal:attributes="src python:branch.static_url('/static/images/nav-small-in.gif')"
 
100
                     width="22" height="10" class="collapse-triangle" />
 
101
                show unified diff
 
102
              </a>
 
103
            </td>
 
104
 
 
105
            <td class="diff-key-block diff-insert">
 
106
            </td>
 
107
            <td class="label">
 
108
              added
 
109
            </td>
 
110
            <td class="diff-key-block diff-delete">
 
111
            </td>
 
112
            <td class="label">
 
113
              removed
 
114
            </td>
 
115
          </tr>
 
116
        </table>
 
117
 
 
118
        <div class="diff"
 
119
             tal:condition="change/changes/modified"
 
120
             tal:define="uniqs python:{}">
 
121
          <!-- ! side-by-side diff -->
 
122
          <table class="diff-block collapse-style-sbs-content">
 
123
            <tal:block repeat="item change/changes/modified">
 
124
              <tal:u define="u python:util.uniq(uniqs, item.file_id)">
 
125
                <tr>
 
126
                  <th class="filename" colspan="4">
 
127
                    <tal:b content="structure python:collapse_button('file', u, branch, normal='table-row')" />
 
128
                    <a tal:attributes="href  python:url(['/annotate', change.revno], file_id=item.file_id);
 
129
                                       name  string:${item/filename}-s;
 
130
                                       title string:Annotate ${item/filename}"
 
131
                       tal:content="item/filename">
 
132
                      ${item.filename}
 
133
                    </a>
 
134
                  </th>
 
135
                </tr>
 
136
 
 
137
                <tal:block repeat="chunk item/sbs_chunks">
 
138
                  <tr tal:attributes="class string:diff-chunk collapse-file-${u}-content">
 
139
                    <th class="lineno">
 
140
                      old
 
141
                    </th>
 
142
                    <th>
 
143
                    </th>
 
144
                    <th class="lineno">
 
145
                      new
 
146
                    </th>
 
147
                    <th>
 
148
                    </th>
 
149
                  </tr>
 
150
                  <tr tal:repeat="line chunk/diff"
 
151
                      tal:attributes="class string:diff-chunk collapse-file-${u}-content">
 
152
                    <tal:block condition="line/old_lineno">
 
153
                      <td class="lineno"
 
154
                          tal:content="line/old_lineno">
 
155
                        ${line.old_lineno}
 
156
                      </td>
 
157
                      <td tal:attributes="class string:diff-${line/old_type}"
 
158
                          tal:content="line/old_line">
 
159
                        ${line.old_line}
 
160
                      </td>
 
161
                    </tal:block>
 
162
                    <tal:block condition="not:line/old_lineno">
 
163
                      <td class="lineno-skip"
 
164
                          tal:content="line/old_lineno">
 
165
                        ${line.old_lineno}
 
166
                      </td>
 
167
                      <td tal:attributes="class string:diff-${line/old_type}-skip"
 
168
                          tal:content="line/old_line">
 
169
                        ${line.old_line}
 
170
                      </td>
 
171
                    </tal:block>
 
172
                    <tal:block condition="line/new_lineno">
 
173
                      <td class="lineno"
 
174
                          tal:content="line/new_lineno">
 
175
                        ${line.new_lineno}
 
176
                      </td>
 
177
                      <td tal:attributes="class string:diff-${line/new_type}"
 
178
                          tal:content="line/new_line">
 
179
                        ${line.new_line}
 
180
                      </td>
 
181
                    </tal:block>
 
182
                    <tal:block condition="not:line/new_lineno">
 
183
                      <td class="lineno-skip"
 
184
                          tal:content="line/new_lineno">
 
185
                        ${line.new_lineno}
 
186
                      </td>
 
187
                      <td tal:attributes="class string:diff-${line/new_type}-skip"
 
188
                          tal:content="line/new_line">
 
189
                        ${line.new_line}
 
190
                      </td>
 
191
                    </tal:block>
 
192
                  </tr>
 
193
                  <tr tal:attributes="class string:diff-chunk-spacing collapse-file-${u}-content">
 
194
                    <td colspan="4">
 
195
                      &nbsp;
 
196
                    </td>
 
197
                  </tr>
 
198
                </tal:block>
 
199
                <tr class="diff-spacing">
 
200
                  <td colspan="4">
 
201
                    &nbsp;
 
202
                  </td>
 
203
                </tr>
 
204
              </tal:u>
 
205
            </tal:block>
 
206
          </table>
 
207
 
 
208
          <!-- ! unified diff -->
 
209
          <table class="diff-block collapse-style-unified-content">
 
210
            <tal:block repeat="item change/changes/modified">
 
211
              <tal:u define="u python:util.uniq(uniqs, item.file_id)">
 
212
                <tr>
 
213
                  <th class="filename" colspan="4">
 
214
                    <tal:b content="structure python:collapse_button('file', u, branch, normal='table-row')" />
 
215
                    <a tal:attributes="href  python:url(['/annotate', change.revno], file_id=item.file_id);
 
216
                                       name  string:${item/filename}-u;
 
217
                                       title string:Annotate ${item/filename}"
 
218
                       tal:content="item/filename">
 
219
                      ${item.filename}
 
220
                    </a>
 
221
                  </th>
 
222
                </tr>
 
223
 
 
224
                <tal:block repeat="chunk item/chunks">
 
225
                  <tr tal:attributes="class string:diff-chunk collapse-file-${u}-content">
 
226
                    <th class="lineno">
 
227
                      old
 
228
                    </th>
 
229
                    <th class="lineno">
 
230
                      new
 
231
                    </th>
 
232
                    <th>
 
233
                    </th>
 
234
                    <th>
 
235
                    </th>
 
236
                  </tr>
 
237
                  <tr tal:repeat="line chunk/diff"
 
238
                      tal:attributes="class string:diff-chunk collapse-file-${u}-content">
 
239
                    <td class="lineno"
 
240
                        tal:content="line/old_lineno">
 
241
                      ${line.old_lineno}
 
242
                    </td>
 
243
                    <td class="lineno"
 
244
                        tal:content="line/new_lineno">
 
245
                      ${line.new_lineno}
 
246
                    </td>
 
247
                    <td tal:attributes="class string:diff-${line/type} text"
 
248
                        tal:content="line/line">
 
249
                      ${line.line}
 
250
                    </td>
 
251
                    <td>
 
252
                    </td>
 
253
                  </tr>
 
254
                  <tr tal:attributes="class string:diff-chunk-spacing collapse-file-${u}-content">
 
255
                    <td colspan="4">
 
256
                      &nbsp;
 
257
                    </td>
 
258
                  </tr>
 
259
                </tal:block>
 
260
                <tr class="diff-spacing">
 
261
                  <td colspan="4">
 
262
                    &nbsp;
 
263
                  </td>
 
264
                </tr>
 
265
              </tal:u>
 
266
            </tal:block>
 
267
          </table>
 
268
        </div>
 
269
 
 
270
        <div tal:condition="python:navigation.prev_page_revid or navigation.next_page_revid"
 
271
             class="bar">
 
272
          <table>
 
273
            <tr>
 
274
              <td class="buttons">
 
275
                <a tal:condition="navigation/prev_page_revid"
 
276
                   tal:attributes="href navigation/prev_page_url">
 
277
                  &lt; revision
 
278
                  <tal:r content="python:history.get_revno(navigation.prev_page_revid)" />
 
279
                </a>
 
280
              </td>
 
281
              <td class="rbuttons" align="right">
 
282
                <a tal:condition="navigation/next_page_revid"
 
283
                   tal:attributes="href navigation/next_page_url">
 
284
                  revision
 
285
                  <tal:r content="python:history.get_revno(navigation.next_page_revid)" />
 
286
                  &gt;
 
287
                </a>
 
288
              </td>
 
289
            </tr>
 
290
          </table>
 
291
        </div>
 
292
      </div>
 
293
    </body>
 
294
  </html>
 
295
</tal:block>