## -*- coding: utf-8 -*-
${_('%(user)s commited on %(date)s UTC') % {
'user': h.person(commit.author),
'date': h.format_date(commit.date)
}}
% if commit.branch:
branch: ${commit.branch}
% endif
% for bookmark in getattr(commit, 'bookmarks', []):
bookmark: ${bookmark}
% endfor
% for tag in commit.tags:
tag: ${tag}
% endfor
commit: ${h.show_id(commit)}
${h.urlify_commit_message(commit.message)} % for change in parsed_diff: % if limited_diff: ${_('Commit was too big and was cut off...')} % endif ${change['operation']} ${change['filename']} ${'(%(added)s lines added, %(removed)s lines removed)' % {'added': change['stats']['added'], 'removed': change['stats']['deleted']}} % endfor % if feed_include_diff: ${diff_processor.as_raw()} % endif