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

1099.1.54 by William Grant
ivle.webapp.filesystem.svnlog: Port www/apps/svnlog to new framework. As with
1
<html xmlns="http://www.w3.org/1999/xhtml"
2
      xmlns:py="http://genshi.edgewall.org/">
3
  <head>
1253 by William Grant
Replace SubversionLogView's "Subversion Log" titles with more BrowserView-esque ones.
4
    <title>${title} (log)</title>
1099.1.54 by William Grant
ivle.webapp.filesystem.svnlog: Port www/apps/svnlog to new framework. As with
5
  </head>
6
  <body>
1261 by William Grant
Prettify SubversionLogView to look a bit like OfferingProjectsView.
7
    <div id="ivle_padding">
8
      <ul id="svnlog">
9
        <li py:for="log in logs">
10
          <h2>
11
            Revision <a href="/svnlog/${path}?r=${log['revno']}"
12
                        style="font-weight: bold">${log['revno']}</a>
1262 by William Grant
Pretty dates in SubversionLogView.
13
            by <strong>${log['author']}</strong>,
14
            <span title="${format_datetime(log['date'])}">${format_datetime_short(log['date'])}</span>
1261 by William Grant
Prettify SubversionLogView to look a bit like OfferingProjectsView.
15
            <py:choose test="revno">
16
              <span py:when="log['revno']">[selected]</span>
17
              <a py:otherwise="" href="${url}?r=${log['revno']}">[select]</a>
18
            </py:choose>
19
            <a py:if="revno" href="${diffurl}?r=${revno}&amp;r=${log['revno']}">[diff]</a>
1326.1.3 by David Coles
Add UI to allow updating to a particulalr revision from svnlog.
20
            <input type="button" value="Update to Revision ${log['revno']}"
1326.1.4 by David Coles
Disable the 'Update to Revision x' button when sending request.
21
                onclick="update_revision(this, ${log['revno']})" />
1261 by William Grant
Prettify SubversionLogView to look a bit like OfferingProjectsView.
22
          </h2>
23
          <div class="svnlogcontent">
24
            <pre py:content="log['message']" />
25
            <div class="svnlogpathlist">
26
              <h3>Changed paths:</h3>
27
              <ul>
28
                <li py:for="path in log['paths']">
29
                  ${path[1]} ${path[0]}
30
                </li>
31
              </ul>
32
            </div>
33
          </div>
34
        </li>
35
      </ul>
1099.1.54 by William Grant
ivle.webapp.filesystem.svnlog: Port www/apps/svnlog to new framework. As with
36
    </div>
37
  </body>
38
</html>