~loggerhead-team/loggerhead/trunk-rich

« back to all changes in this revision

Viewing changes to loggerhead/templates/collapse-all-button.pt

  • Committer: Robey Pointer
  • Date: 2006-12-14 03:00:10 UTC
  • Revision ID: robey@lag.net-20061214030010-amia4mec3ydygjgk
add a timed event to fill in the revision cache, so that after running for
a little while, most page loads should be fast.  fix up some of the mechanism
around the history cache, so that it notices when the branch has been
updated, and reloads (and recomputes) the graph cache.

add branch nicks to the merged-in, merged-from listings.

add next/prev navbar to the bottom of the revision page.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
<tal:block>
2
 
  <a tal:attributes="class string:hide-all collapse-${group}-hideall;
3
 
                     href string:javascript:collapseAllDisplay('${group}','none')">
4
 
    <img tal:attributes="src python:branch.static_url('/static/images/nav-small-down.gif')"
5
 
         width="10" height="10" alt="collapse"
6
 
         class="collapse-triangle" />
7
 
    collapse all
8
 
  </a>
9
 
  <a tal:attributes="class string:hide-all collapse-${group}-showall;
10
 
                     href string:javascript:collapseAllDisplay('${group}','${normal}')">
11
 
    <img tal:attributes="src python:branch.static_url('/static/images/nav-small-right.gif')"
12
 
         width="10" height="10" alt="expand"
13
 
         class="collapse-triangle" />
14
 
    expand all
15
 
  </a>
16
 
</tal:block>