1 <%page args="update" />
3 <div class="frontpage-update">
6 <a href="${update.source.link}"><img src="${h.static_uri('spline', "icons/{0}.png".format(update.source.icon))}" alt=""> ${update.source.title}</a>:
8 <div class="date">${update.time}</div>
9 <div class="title">${update.tag}</div>
12 <table class="frontpage-repository striped-rows">
13 <% last_repo = None %>\
14 % for commit in update.log:
15 % if commit.repo != last_repo:
16 <tr class="frontpage-repository-header">
17 <th colspan="4">${commit.repo}</th>
22 <td class="hash"><a href="${update.source.gitweb}?p=${commit.repo}.git;a=commit;h=${commit.hash}">${commit.hash}</a></td>
24 <%! import hashlib %>\
25 <img src="http://www.gravatar.com/avatar/${hashlib.md5(commit.email).hexdigest()}?s=16d=identicon" alt="">
28 <td class="subject">${commit.subject}</td>
29 <td class="time">${commit.time}</td>
31 <% last_repo = commit.repo %>\