~loggerhead-team/loggerhead/trunk-rich

« back to all changes in this revision

Viewing changes to loggerhead/templates/annotate.pt

  • Committer: Michael Hudson
  • Date: 2008-06-16 23:40:30 UTC
  • mto: This revision was merged to the branch mainline in revision 164.
  • Revision ID: michael.hudson@canonical.com-20080616234030-3wl34s0q3woo2ywb
be more flexible about where wsgitest.py can be run from

Show diffs side-by-side

added added

removed removed

Lines of Context:
5
5
    <title metal:fill-slot="title"
6
6
           tal:content="string:${branch/friendly_name} : contents of ${path}
7
7
                        at revision ${change/revno}">
 
8
      ${branch.friendly_name} : contents of ${path} at revision ${change.revno}
8
9
    </title>
9
 
    <metal:block fill-slot="header_extras">
10
 
        <link rel="stylesheet" type="text/css" media="all"
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')"/>
14
 
    </metal:block>
15
10
  </head>
16
11
 
17
12
  <body>
18
13
 
19
14
    <h1 metal:fill-slot="heading">
20
 
      <tal:has-link condition="branch/branch_link">
21
 
        <a tal:attributes="href branch/branch_link"
22
 
           tal:content="branch/friendly_name">
23
 
          nice/branch/name
24
 
        </a>
25
 
      </tal:has-link>
26
 
      <tal:no-link condition="not: branch/branch_link">
27
 
        <span metal:use-macro="breadcrumbs/directory"></span>
28
 
      </tal:no-link>
29
 
      <span>: <span metal:use-macro="breadcrumbs/branch" /> (revision <tal:revno content="change/revno"></tal:revno>)</span>
 
15
      <span class="branch-name" tal:content="branch/friendly_name">
 
16
        ${branch.friendly_name}
 
17
      </span>
 
18
      :
 
19
      <span class="annotate-path" tal:content="path">
 
20
        ${path}
 
21
      </span>
 
22
      (revision <tal:revno content="change/revno">${change.revno}</tal:revno>)
30
23
    </h1>
31
24
 
32
25
    <div metal:fill-slot="content">
33
 
      <tal:branch-info replace="structure python:branchinfo(branch)" />
34
 
 
35
 
        <ul id="submenuTabs">
36
 
            <li id="first">
37
 
                <a tal:attributes="href python:url(['/files', change.revno], clear=1)">browse files</a>
38
 
            </li>
39
 
            <li>
40
 
                <a tal:attributes="href python:url(['/revision', change.revno], clear=1)">view revision</a>
41
 
            </li>
42
 
            <li>
43
 
                <a tal:attributes="href python:url(['/changes'], clear=1, filter_file_id=file_id)"
44
 
                >view changes to this file</a>
45
 
            </li>
46
 
            <li id="last">
47
 
                <a tal:attributes="href python:url(['/download',
48
 
                                    revno_url, file_id, filename])"
49
 
                >download file</a>
50
 
            </li>
51
 
        </ul>
 
26
      <div class="links">
 
27
        <div>
 
28
          <b>&#8594;</b>
 
29
          <a tal:attributes="href python:url(['/files', change.revno], clear=1)">
 
30
            browse files
 
31
          </a>
 
32
        </div>
 
33
        <div>
 
34
          <b>&#8594;</b>
 
35
          <a tal:attributes="href python:url(['/revision'], clear=1, start_revid=revid)">
 
36
            view revision
 
37
          </a>
 
38
        </div>
 
39
        <div>
 
40
          <b>&#8594;</b>
 
41
          <a tal:attributes="href python:url(['/changes'], clear=1, start_revid=revid, filter_file_id=file_id)">
 
42
            view changes to this file
 
43
          </a>
 
44
        </div>
 
45
        <div>
 
46
          <b>&#8594;</b>
 
47
          <a tal:attributes="href python:url(['/download', revid, file_id, filename])">
 
48
            download file
 
49
          </a>
 
50
        </div>
 
51
      </div>
52
52
 
53
53
      <div class="annotate">
54
 
        <table id="logentries">
55
 
          <tr class="logheader">
56
 
            <td class="annoLineTit">Line</td>
57
 
            <td class="annoRevTit">Revision</td>
58
 
            <td class="annoContTit">Contents</td>
 
54
        <table>
 
55
          <tr>
 
56
            <th class="lineno"> Line# </th>
 
57
            <th class="revision"> Revision </th>
 
58
            <th class="text"> Contents </th>
59
59
          </tr>
60
60
 
61
 
          <tr tal:repeat="line contents" 
62
 
              tal:attributes="class string:blueRow${line/parity}">
63
 
            <td class="annoLine"><a tal:attributes="id string:L${line/lineno}; href string:#L${line/lineno}" tal:content="line/lineno">1</a></td>
64
 
            <td class="annoRev">
 
61
          <tr tal:repeat="line contents"
 
62
              tal:attributes="class string:parity${line/parity}">
 
63
            <td tal:attributes="class string:lineno ${line/status}">
 
64
              <a tal:attributes="name string:L${line/lineno}"
 
65
                 tal:content="line/lineno">
 
66
                ${line.lineno}
 
67
              </a>
 
68
            </td>
 
69
            <td tal:attributes="class string:revno ${line/status}">
65
70
              <a tal:condition="python:line.status=='changed'"
66
71
                 tal:content="python:util.trunc(line.change.revno)"
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>
69
 
            </td>
70
 
            <td class="annoCont"><pre tal:content="structure line/text"></pre></td>
 
72
                 tal:attributes="href python:url(['/revision'], clear=1, start_revid=line.change.revid, filter_file_id=file_id);
 
73
                                 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))">
 
74
 
 
75
                ${util.trunc(line.change.revno)}
 
76
              </a>
 
77
            </td>
 
78
            <td tal:attributes="class string:text ${line/status}"
 
79
                tal:content="line/text">
 
80
              ${line.text}
 
81
            </td>
71
82
          </tr>
72
83
        </table>
73
84
      </div>