comparison rhodecode/templates/shortlog/shortlog_data.html @ 631:05528ad948c4 beta

Hacking for git support,and new faster repo scan
author Marcin Kuzminski <marcin@python-works.com>
date Sun, 24 Oct 2010 16:15:40 +0200
parents 1e757ac98988
children fd63782c4426
comparison
equal deleted inserted replaced
630:a9e72f7148c8 631:05528ad948c4
11 <th class="left">${_('links')}</th> 11 <th class="left">${_('links')}</th>
12 12
13 </tr> 13 </tr>
14 %for cnt,cs in enumerate(c.repo_changesets): 14 %for cnt,cs in enumerate(c.repo_changesets):
15 <tr class="parity${cnt%2}"> 15 <tr class="parity${cnt%2}">
16 <td>${h.age(cs._ctx.date())} - ${h.rfc822date_notz(cs._ctx.date())} </td> 16 <td>${h.age(cs.date)} - ${h.rfc822date_notz(cs.date)} </td>
17 <td title="${cs.author}">${h.person(cs.author)}</td> 17 <td title="${cs.author}">${h.person(cs.author)}</td>
18 <td>r${cs.revision}:${cs.short_id}</td> 18 <td>r${cs.revision}:${cs.short_id}</td>
19 <td> 19 <td>
20 ${h.link_to(h.truncate(cs.message,60), 20 ${h.link_to(h.truncate(cs.message,60),
21 h.url('changeset_home',repo_name=c.repo_name,revision=cs.short_id), 21 h.url('changeset_home',repo_name=c.repo_name,revision=cs.short_id),