diff mercurial/templates/gitweb/changelogentry.tmpl @ 18628:52305554fd6e

hgweb: apply the websub filter to revision descriptions In order to use this, add a [websub] section to your configuration and add websub expressions such as: italic = s/\b_(\S+)_\b/<i>\1<\/i>/ bold = s/\*\b(\S+)\b\*/<b>\1<\/b>/ issues = s|issue(\d+)|<a href="http://bts.example.org/issue\1">issue\1</a>|i bugzilla = s!((?:bug|b=|(?=#?\d{4,}))(?:\s*#?)(\d+))!<a href="http://bz.selenic.com/\2">\1</a>!i This also adds documentation (proofed by Kevin!) to the config help section.
author Angel Ezquerra <angel.ezquerra@gmail.com>
date Sat, 09 Feb 2013 16:48:21 +0100
parents 9409aeaafdc1
children c208bc65318a
line wrap: on
line diff
--- a/mercurial/templates/gitweb/changelogentry.tmpl	Fri Feb 08 18:05:32 2013 +0100
+++ b/mercurial/templates/gitweb/changelogentry.tmpl	Sat Feb 09 16:48:21 2013 +0100
@@ -8,7 +8,7 @@
 <i>{author|obfuscate} [{date|rfc822date}] rev {rev}</i><br/>
 </div>
 <div class="log_body">
-{desc|strip|escape|addbreaks|nonempty}
+{desc|strip|escape|websub|addbreaks|nonempty}
 <br/>
 <br/>
 </div>