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

« back to all changes in this revision

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

  • Committer: William Grant
  • Date: 2008-07-07 04:55:07 UTC
  • mfrom: (unknown (missing))
  • Revision ID: wgrant@ugrad.unimelb.edu.au-20080707045507-wca484wpjxppy7ln
Merge jails-redux branch. We now use aufs rather than hardlinking tens
of thousands of jail files hundreds of times.

Reconfiguration and reconstruction of all jails will be required.
Probably a good idea to start jails from scratch if possible.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
<html xmlns="http://www.w3.org/1999/xhtml"
2
 
      xmlns:py="http://genshi.edgewall.org/">
3
 
  <head>
4
 
    <title>${title} (log)</title>
5
 
  </head>
6
 
  <body>
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>
10
 
    <div id="ivle_padding">
11
 
      <ul id="svnlog">
12
 
        <li py:for="log in logs">
13
 
          <h2>
14
 
            Revision <a href="/svnlog/${path}?r=${log['revno']}"
15
 
                        style="font-weight: bold">${log['revno']}</a>
16
 
            by <strong>${log['author']}</strong>,
17
 
            <span title="${format_datetime(log['date'])}">${format_datetime_short(log['date'])}</span>
18
 
            <py:choose test="revno">
19
 
              <span py:when="log['revno']">[selected]</span>
20
 
              <a py:otherwise="" href="${url}?r=${log['revno']}">[select]</a>
21
 
            </py:choose>
22
 
            <a py:if="revno" href="${diffurl}?r=${revno}&amp;r=${log['revno']}">[diff]</a>
23
 
            <input type="button" value="Update to Revision ${log['revno']}"
24
 
                onclick="update_revision(this, ${log['revno']})" />
25
 
          </h2>
26
 
          <div class="svnlogcontent">
27
 
            <pre py:content="log['message']" />
28
 
            <div class="svnlogpathlist">
29
 
              <h3>Changed paths:</h3>
30
 
              <ul>
31
 
                <li py:for="path in log['paths']">
32
 
                  ${path[1]} ${path[0]}
33
 
                </li>
34
 
              </ul>
35
 
            </div>
36
 
          </div>
37
 
        </li>
38
 
      </ul>
39
 
    </div>
40
 
  </body>
41
 
</html>