##// END OF EJS Templates
lazy load pygments lib so we can use VCS without it installed
lazy load pygments lib so we can use VCS without it installed

File last commit:

r3273:91679a50 beta
r3876:c5dd289c 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}