~buaabyl/trac-bzr/BzrTagListMacro

« back to all changes in this revision

Viewing changes to bzrtagstmpl.xhtml

  • Committer: swordfish
  • Date: 2010-12-22 05:55:35 UTC
  • Revision ID: buaa.byl@windows.com-20101222055535-njtyfxab90gwdi2e
Using genshi to generate output

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
<table xmlns:py="http://genshi.edgewall.org/" class="wiki">
 
2
    <tr><td>Changeset</td><td>Tag name</td></tr>
 
3
    <tr py:for="item in dict.taglist">
 
4
        <td>
 
5
            <a href="${dict.changeset_url}${item.revno}" title="${item.timestamp}, Changeset[${item.revno}] by ${item.committer}">[${item.revno}]</a>
 
6
        </td>
 
7
        <td>
 
8
            <a href="${dict.browser_url}?rev=${item.revno}" title="Browser Source">${item.tagname}</a>
 
9
        </td>
 
10
    </tr>
 
11
</table>
 
12