${_('Time')} |
${_('Author')} |
${_('Commit')} |
|
${_('Description')} |
## to speed up lookups cache some functions before the loop
<%
active_patterns = h.get_active_pattern_entries(c.repo_name)
urlify_commit_message = h.partial(h.urlify_commit_message, active_pattern_entries=active_patterns)
%>
%for commit in c.commit_ranges:
${h.age_component(commit.date)}
|
${base.gravatar_with_user(commit.author, 16)}
|
r${commit.revision}:${h.short_id(commit.raw_id)}
${h.hidden('revisions',commit.raw_id)}
|
|
${urlify_commit_message(commit.message, c.repo_name)}
|
%endfor
${_ungettext('%s commit hidden','%s commits hidden', len(c.commit_ranges)) % len(c.commit_ranges)},
${_ungettext('show it','show them', len(c.commit_ranges))}
|
% if not c.commit_ranges:
${_('No commits in this compare')}
|
% endif