~loggerhead-team/loggerhead/trunk-rich

« back to all changes in this revision

Viewing changes to loggerhead/templates/master.kid

  • Committer: Robey Pointer
  • Date: 2006-12-12 03:50:13 UTC
  • Revision ID: robey@lag.net-20061212035013-gtyh3npcck6ezy53
figured out what the merge points logic was about, and yes it was important, and yes i was using it in a totally wrong way before, and yes i had incompetently tried to roll my own equivalent without fully understanding it.  so switch to merge points.

Show diffs side-by-side

added added

removed removed

Lines of Context:
12
12
 
13
13
<!-- !define common navbar -->
14
14
<span py:def="navbar()">
15
 
    <!-- !requires: ${revid}, ${buttons}, ${pagesize} -->
 
15
    <!-- !requires: ${revid}, ${buttons}, ${pagesize}, ${history}, ${scan_url} -->
16
16
    <div class="navbar">
17
17
        <div class="bar">
18
18
            <table>
45
45
    </div>
46
46
</span>
47
47
 
48
 
<span py:def="revision_link(revid, revno)">
49
 
    <a title="Show revision info" href="${tg.url([ '/revision', revid ])}">
50
 
        <span class="revno"> ${revno} </span>
51
 
    </a>
52
 
    <a title="Show changelog" href="${tg.url([ '/changes', revid ])}" class="log"> (log) </a>
53
 
    <a title="Show revision info" href="${tg.url([ '/revision', revid ])}">
54
 
        <span class="revid"> ${util.clean_revid(revid)} </span>
55
 
    </a>
 
48
<span py:def="revlink(revid, text)">
 
49
    <a title="Show revision" href="${tg.url([ '/revision', revid ])}" class="revlink"> ${text} </a>
56
50
</span>
57
51
 
58
52
</head>