Added first cut of /shortlog action and simplified the parse_rev_list() method.
[catagits/Gitalist.git] / templates / commit.tt2
index 7cefc5c..82db3d7 100644 (file)
@@ -1,6 +1,6 @@
-[% INCLUDE 'commit-nav.tt2' %]
+[% INCLUDE 'commit-nav.tt2' object = commit %]
 <div class='commit-message'>
-[% commit.comment.substr(0, 50) %] ...
+[% commit.comment.substr(0, 85) %] ...
 [% FOREACH ref IN c.model('Git').refs_for(commit.sha1) %]
  <span class='refs'><a href='/shortlog?h=[% commit.sha1 %];hb=[% ref %]'>[% ref %]</a></span>
 [% END %]
  [% END %]
 </dl>
 
-<pre class='commit-message'>
-[% commit.comment %]
-</pre>
+<pre class='commit-message'>[% commit.comment %]</pre>
 
 <table class='diff-tree'>
  <thead>
-  <td>file</td>
-  <td>actions</td>
+  <tr>
+   <td>file</td>
+   <td>actions</td>
+  </tr>
  </thead>
  <tbody>
   [% FOREACH line IN c.model('Git').diff_tree(commit) %]
   <tr>
    <td class='filename'>[% line.src %]</td>
    <td class='action-list'>
-     [% IF !line.is_new %]<a href="/blobdiff?f=[% line.file %];h=[% line.sha1dst %];hp=[% sha1src %]">diff</a>[% END %]
-     <a href="/blob?f=[% line.file %];h=[% line.sha1 %];hb=[% commit.sha1 %]">blob</a>
-     [% IF !line.is_new %]<a href="/log?f=[% line.file %];hb[% commit.sha1 %]=">history</a>[% END %]
+     [% IF !line.is_new %]<a href="/blobdiff?p=[% project %];f=[% line.file %];h=[% line.sha1dst %];hp=[% sha1src %]">diff</a>[% END %]
+     <a href="/blob?p=[% project %];f=[% line.file %];h=[% line.sha1 %];hb=[% commit.sha1 %]">blob</a>
+     [% IF !line.is_new %]<a href="/log?p=[% project %];f=[% line.file %];hb[% commit.sha1 %]=">history</a>[% END %]
    </td>
   </tr>
   [% END %]
  </tbody>
  <tfoot>
-  <td>file</td>
-  <td>actions</td>
+  <tr>
+   <td>file</td>
+   <td>actions</td>
+  </tr>
  </tfoot>
 </table>