##// END OF EJS Templates
pull request: use unionrepo instead of outgoing...
pull request: use unionrepo instead of outgoing This makes it possible to look the 'moving target' symbols up in the right repo. Using a revset with the right revisions also removes the need for pruning changesets that are outside the requested range. It will also not be confused by changesets that for some reason has been pulled to the repo but haven't been merged yet. They are going to be 'merged' by the 'pull' request and should thus be a part of what is reviewed.

File last commit:

r3273:91679a50 beta
r3303:ae5ac36c beta
Show More
patch_changeset.html
17 lines | 423 B | text/html | HtmlLexer
new patch function, and urls schema....
r2996 %if h.is_hg(c.rhodecode_repo):
# ${c.rhodecode_repo.alias.upper()} changeset patch
fix patch view for GIT, don't escape stuff to much
r3273 # User ${c.changeset.author |n}
new patch function, and urls schema....
r2996 # Date ${c.changeset.date}
# Node ID ${c.changeset.raw_id}
${c.parent_tmpl}
don't escape any html in patch view
r3272 ${c.changeset.message |n}
new patch function, and urls schema....
r2996
%elif h.is_git(c.rhodecode_repo):
fix patch view for GIT, don't escape stuff to much
r3273 From ${c.changeset.raw_id} ${c.changeset.date}
From: ${c.changeset.author |n}
new patch function, and urls schema....
r2996 Date: ${c.changeset.date}
fix patch view for GIT, don't escape stuff to much
r3273 Subject: [PATCH] ${c.changeset.message |n}
new patch function, and urls schema....
r2996 ---
%endif
${c.diff|n}