##// END OF EJS Templates
do not use vcs_full_cache flag for tests, this should be controlled by test env somehow
do not use vcs_full_cache flag for tests, this should be controlled by test env somehow

File last commit:

r3273:91679a50 beta
r3393:f2425f42 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}