~ubuntu-branches/ubuntu/lucid/loggerhead/lucid-security

« back to all changes in this revision

Viewing changes to loggerhead/templates/annotate.pt

  • Committer: Bazaar Package Importer
  • Author(s): James Westby, Roland Mas, Jelmer Vernooij, James Westby
  • Date: 2009-08-26 13:18:03 UTC
  • mfrom: (1.1.3 upstream)
  • Revision ID: james.westby@ubuntu.com-20090826131803-0ce1fhaetci8b0c5
Tags: 1.17-0ubuntu1
[ Roland Mas ]
* Use the YUI library provided by libjs-yui. (Closes: #511286)

[ Jelmer Vernooij ]
* Use my debian.org address in Uploaders field.
* Add ${misc:Depends} to please lintian.
* Suggest recent version of paste, which doesn't expose internal port
  numbers in links. (Closes: #507000)
* Bump standards version to 3.8.1.

[ James Westby ]
* New upstream release.
* Drop get-orig-source rule in favour of debian/watch.
* Add python-pkg-resources and python-paste to Build-Depends,
  python-pkg-resources to Depends and python-simplejson to
  Recommends due to dependency changes.

Show diffs side-by-side

added added

removed removed

Lines of Context:
9
9
    <metal:block fill-slot="header_extras">
10
10
        <link rel="stylesheet" type="text/css" media="all"
11
11
              tal:attributes="href python:branch.static_url('/static/css/annotate.css')"/>
 
12
        <link rel="stylesheet" type="text/css" media="all"
 
13
              tal:attributes="href python:branch.static_url('/static/css/highlight.css')"/>
12
14
    </metal:block>
13
15
  </head>
14
16
 
28
30
    </h1>
29
31
 
30
32
    <div metal:fill-slot="content">
 
33
      <tal:branch-info replace="structure python:branchinfo(branch)" />
 
34
 
31
35
        <ul id="submenuTabs">
32
36
            <li id="first">
33
37
                <a tal:attributes="href python:url(['/files', change.revno], clear=1)">browse files</a>
34
38
            </li>
35
39
            <li>
36
 
                <a tal:attributes="href python:url(['/revision'], clear=1, start_revid=change.revno)">view revision</a>
 
40
                <a tal:attributes="href python:url(['/revision', change.revno], clear=1)">view revision</a>
37
41
            </li>
38
42
            <li>
39
 
                <a tal:attributes="href python:url(['/changes'], clear=1, 
40
 
                                    start_revid=change.revno, filter_file_id=file_id)"
 
43
                <a tal:attributes="href python:url(['/changes'], clear=1, filter_file_id=file_id)"
41
44
                >view changes to this file</a>
42
45
            </li>
43
46
            <li id="last">
57
60
 
58
61
          <tr tal:repeat="line contents" 
59
62
              tal:attributes="class string:blueRow${line/parity}">
60
 
            <td class="annoLine" tal:content="line/lineno">1</td>
 
63
            <td class="annoLine"><a tal:attributes="id string:L${line/lineno}; href string:#L${line/lineno}" tal:content="line/lineno">1</a></td>
61
64
            <td class="annoRev">
62
65
              <a tal:condition="python:line.status=='changed'"
63
66
                 tal:content="python:util.trunc(line.change.revno)"
64
 
                 tal:attributes="href python:url(['/revision'], clear=1, start_revid=line.change.revno, filter_file_id=file_id);
65
 
                                 title python:'%s by %s, on %s (%s)'%(line.change.revno, util.hide_email(line.change.author), line.change.date.strftime('%d %b %Y %H:%M'), util.date_time(line.change.date))"></a>
 
67
                 tal:attributes="href python:url(['/revision', line.change.revno], clear=1);
 
68
                                 title python:'%s by %s, on %s (%s)'%(line.change.revno, ', '.join(util.hide_emails(line.change.authors)), line.change.date.strftime('%d %b %Y %H:%M'), util.date_time(line.change.date))"></a>
66
69
            </td>
67
 
            <td class="annoCont" tal:content="line/text"></td>
 
70
            <td class="annoCont"><pre tal:content="structure line/text"></pre></td>
68
71
          </tr>
69
72
        </table>
70
73
      </div>