~azzar1/unity/add-show-desktop-key

« back to all changes in this revision

Viewing changes to ivle/webapp/filesystem/svnlog/template.html

  • Committer: Matt Giuca
  • Date: 2009-05-19 02:54:08 UTC
  • mfrom: (1258 trunk)
  • mto: This revision was merged to the branch mainline in revision 1322.
  • Revision ID: matt.giuca@gmail.com-20090519025408-19c7cjl7w6ot6frm
MergedĀ fromĀ trunk.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
<html xmlns="http://www.w3.org/1999/xhtml"
2
2
      xmlns:py="http://genshi.edgewall.org/">
3
3
  <head>
4
 
    <title>Subversion Log</title>
 
4
    <title>${title} (log)</title>
5
5
  </head>
6
6
  <body>
7
 
    <h1>Subversion Log</h1>
 
7
    <h1 id="path">
 
8
      <py:for each="segment in paths">/<a href="${segment['href_path']}" title="Navigate to ${segment['nav_path']}">${segment['path']}</a></py:for> (Subversion log)
 
9
    </h1>
8
10
    <div class="svnlogentry" py:for="log in logs">
9
11
      <div class="svnloginfo">
10
12
        Revision <a href="/svnlog/${path}?r=${log['revno']}"
15
17
          <span py:when="log['revno']">[selected]</span>
16
18
          <a py:otherwise="" href="${url}?r=${log['revno']}">[select]</a>
17
19
        </py:choose>
18
 
        <a py:if="revno" href="${url}?r=${revno}&amp;r=${log['revno']}">[diff]</a>
 
20
        <a py:if="revno" href="${diffurl}?r=${revno}&amp;r=${log['revno']}">[diff]</a>
19
21
      </div>
20
22
      <pre py:content="log['message']" />
21
23
      <hr size="1" />