Move all the templates back into the 'root' directory, otherwise make install will...
[catagits/Gitalist.git] / root / _shortlog.tt2
diff --git a/root/_shortlog.tt2 b/root/_shortlog.tt2
new file mode 100644 (file)
index 0000000..d862829
--- /dev/null
@@ -0,0 +1,48 @@
+<table>
+ <thead>
+  <tr>
+   <td>sha1</td>
+   <td>time</td>
+   <td>author</td>
+   <td>message</td>
+   <td>actions</td>
+  </tr>
+ </thead>
+
+ <tbody>
+ [% FOREACH line IN log_lines %]
+  <tr>
+   <td>[% line.sha1.substr(0, 6) %]</td>
+   <td>[% time_since(line.authored_time) %]</td>
+   <td>[% line.author.name | html %]</td>
+   <td>
+    [% # XXX This needs to be moved into a Template::Plugin or some such.
+       cmt = line.comment.split("\n").0;
+       (cmt.length > 80 ? cmt.substr(0, 80) _ '...' : cmt) | html %]
+    <span class='refs'>
+     [% FOREACH ref IN refs.${line.sha1} %]
+     <span class='[% ref.search('^remotes/') ? 'remote' : 'head' %]'>
+      <a href='[% c.uri_for("shortlog", {h='refs/' _ ref}) %]'>[% ref.replace('^(remote|head)s/', '') %]</a>
+     </span>
+     [% END %]
+    </span>
+   </td>
+   <td class='action-list'>
+     <a href="[% c.uri_for("commit", {h=line.sha1}) %]">commit</a>
+     <a href="[% c.uri_for("commitdiff", {h=line.sha1}) %]">commitdiff</a>
+     <a href="[% c.uri_for("tree", {h=line.sha1, hb=line.tree_sha1}) %]">tree</a>
+   </td>
+  </tr>
+ [% END %]
+ </tbody>
+
+ <tfoot>
+  <tr>
+   <td>sha1</td>
+   <td>time</td>
+   <td>author</td>
+   <td>message</td>
+   <td>actions</td>
+  </tr>
+ </tfoot>
+</table>