~loggerhead-team/loggerhead/trunk-rich

« back to all changes in this revision

Viewing changes to loggerhead/templates/menu.pt

  • Committer: Launchpad Patch Queue Manager
  • Date: 2008-06-10 16:58:38 UTC
  • mfrom: (156.1.7 fix_deprecated_methods)
  • Revision ID: launchpad@pqm.canonical.com-20080610165838-0hdfo2tkh0xxgi25
[r=mwhudson] Changes from Martin Albisetti to remove dependence on
        deprecated-in-1.5-and-gone-in-1.6 bzrlib methods

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
<tal:menu>
2
 
    <ul id="menuTabs">
3
 
        <tal:changes-active tal:condition="not:fileview_active">
4
 
        <li><a tal:attributes="href python:url('/changes', clear=1);
5
 
                               title string:Changes;
6
 
                               id string:on">Changes</a></li>
7
 
        <li><a tal:attributes="href python:url('/files', clear=1);
8
 
                               title string:Files">Files</a></li>
9
 
        </tal:changes-active>
10
 
        <tal:fileview-active tal:condition="fileview_active">
11
 
        <li><a tal:attributes="href python:url('/changes', clear=1);
12
 
                               title string:Changes">Changes</a></li>
13
 
        <li><a tal:attributes="href python:url('/files', clear=1);
14
 
                               title string:Files;
15
 
                               id string:on">Files</a></li>
16
 
        </tal:fileview-active>
17
 
      </ul>
18
 
</tal:menu>
19