~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 03:51:14 UTC
  • mto: This revision was merged to the branch mainline in revision 1322.
  • Revision ID: matt.giuca@gmail.com-20090519035114-4scjhvg7ai73anq0
doc/man: Renamed filesystem to directory hierarchy.

Show diffs side-by-side

added added

removed removed

Lines of Context:
7
7
    <h1 id="path">
8
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
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
 
          </h2>
24
 
          <div class="svnlogcontent">
25
 
            <pre py:content="log['message']" />
26
 
            <div class="svnlogpathlist">
27
 
              <h3>Changed paths:</h3>
28
 
              <ul>
29
 
                <li py:for="path in log['paths']">
30
 
                  ${path[1]} ${path[0]}
31
 
                </li>
32
 
              </ul>
33
 
            </div>
34
 
          </div>
35
 
        </li>
36
 
      </ul>
 
10
    <div class="svnlogentry" py:for="log in logs">
 
11
      <div class="svnloginfo">
 
12
        Revision <a href="/svnlog/${path}?r=${log['revno']}"
 
13
                    style="font-weight: bold">${log['revno']}</a>
 
14
        by <strong>${log['author']}</strong>
 
15
        on <strong>${log['date']}</strong> 
 
16
        <py:choose test="revno">
 
17
          <span py:when="log['revno']">[selected]</span>
 
18
          <a py:otherwise="" href="${url}?r=${log['revno']}">[select]</a>
 
19
        </py:choose>
 
20
        <a py:if="revno" href="${diffurl}?r=${revno}&amp;r=${log['revno']}">[diff]</a>
 
21
      </div>
 
22
      <pre py:content="log['message']" />
 
23
      <hr size="1" />
 
24
      <h2>Changed paths:</h2>
 
25
      <div class="svnlogpathlist">
 
26
        <ul>
 
27
          <li py:for="path in log['paths']">
 
28
            ${path[1]} <a href="${path[2]}">${path[0]}</a>
 
29
          </li>
 
30
        </ul>
 
31
      </div>
37
32
    </div>
38
33
  </body>
39
34
</html>