~loggerhead-team/loggerhead/trunk-rich

« back to all changes in this revision

Viewing changes to loggerhead/templates/directory.pt

  • Committer: John Arbash Meinel
  • Date: 2011-03-16 11:39:27 UTC
  • mto: This revision was merged to the branch mainline in revision 435.
  • Revision ID: john@arbash-meinel.com-20110316113927-t2e1h8n1tsal9zpi
When logging to stderr, we don't really need the timestamp and branch name.
It is nice in a long-term log file, but to stderr it tends to just cause
the output to wrap, which is ugly.

Show diffs side-by-side

added added

removed removed

Lines of Context:
19
19
            <th class="datecell">Latest Rev</th>
20
20
            <th class="datecell">Last Changed</th>
21
21
          </tr>
22
 
          
 
22
 
23
23
          <tr class="blueRow0" tal:condition="python:name != '/'">
24
24
            <td class="icocell">
25
 
                <a href=".."><img tal:attributes="src python:static_url('/static/images/ico_folder_up.gif')" /></a>
 
25
                <a href="../"><img tal:attributes="src python:static_url('/static/images/ico_folder_up.gif')" /></a>
26
26
            </td>
27
27
            <td class="summcell" colspan="3">
28
 
                <a href="..">..</a>
 
28
                <a href="../">..</a>
29
29
            </td>
30
30
          </tr>
31
31
          <tal:block repeat="dir dirs">
50
50
            <tal:non-branch-row tal:condition="not:dir/branch">
51
51
              <tr tal:attributes="class string:blueRow${dir/parity}">
52
52
                <td class="icocell">
53
 
                    <a tal:attributes="href string:${dir/dirname}">
 
53
                    <a tal:attributes="href string:${dir/dirname}/">
54
54
                        <img tal:attributes="src python:static_url('/static/images/ico_folder.gif')" alt="Folder" />
55
55
                    </a>
56
56
                </td>
57
57
                <td class="autcell">
58
 
                  <a tal:attributes="href string:${dir/dirname}" tal:content="dir/dirname" /></td>
 
58
                  <a tal:attributes="href string:${dir/dirname}/" tal:content="dir/dirname" /></td>
59
59
                <td class="date"></td>
60
60
                <td class="date" tal:content="dir/last_change"></td>
61
61
              </tr>