##// END OF EJS Templates
issue-trackers: implemented more sophisticated ticket data extraction based on advanced regex module, and special...
issue-trackers: implemented more sophisticated ticket data extraction based on advanced regex module, and special look-behind regex. This is a recommended ticket extraction from Atlassian itself (for Jira) and we also implemented it for Redmine, or tickets - bonus: report errors on patterns in preview window

File last commit:

r4120:7cd93c2b default
r4498:2fce90e4 stable
Show More
pull_request_update.mako
26 lines | 707 B | application/x-mako | MakoHtmlLexer
project: added all source files and assets
r1 ## -*- coding: utf-8 -*-
pull-requests: expose version browsing of pull requests....
r1255 Pull request updated. Auto status change to |under_review|
project: added all source files and assets
r1
.. role:: added
.. role:: removed
.. parsed-literal::
Changed commits:
* :added:`${len(added_commits)} added`
* :removed:`${len(removed_commits)} removed`
%if not changed_files:
No file changes found
%else:
Changed files:
%for file_name in added_files:
pull-requests: added update pull-requests email+notifications...
r4120 * `A ${file_name} <#${'a_' + h.FID(ancestor_commit_id, file_name)}>`_
project: added all source files and assets
r1 %endfor
%for file_name in modified_files:
pull-requests: added update pull-requests email+notifications...
r4120 * `M ${file_name} <#${'a_' + h.FID(ancestor_commit_id, file_name)}>`_
project: added all source files and assets
r1 %endfor
%for file_name in removed_files:
pull-requests: added update pull-requests email+notifications...
r4120 * `R ${file_name}`
project: added all source files and assets
r1 %endfor
%endif
.. |under_review| replace:: *"${under_review_label}"*