# interhg.py - interhg # # Copyright 2007 OHASHI Hideya # # Contributor(s): # Edward Lee # # This software may be used and distributed according to the terms of the # GNU General Public License version 2, incorporated herein by reference. '''expand expressions into changelog and summaries This extension allows the use of a special syntax in summaries, which will be automatically expanded into links or any other arbitrary expression, much like InterWiki does. To enable this extension, add the following lines to your hgrc: [extensions] interhg = A few example patterns (link to bug tracking, etc.): [interhg] issues = s!issue(\d+)!issue\1<\/a>! bugzilla = s!((?:bug|b=|(?=#?\d{4,}))(?:\s*#?)(\d+))!\1!i boldify = s/(^|\s)#(\d+)\b/ #\2<\/b>/ ''' import re from mercurial.hgweb import hgweb_mod from mercurial import templatefilters, extensions from mercurial.i18n import _ orig_escape = templatefilters.filters["escape"] interhg_table = [] def interhg_escape(x): escstr = orig_escape(x) for regexp, format in interhg_table: escstr = regexp.sub(format, escstr) return escstr templatefilters.filters["escape"] = interhg_escape def interhg_refresh(orig, self): interhg_table[:] = [] for key, pattern in self.repo.ui.configitems('interhg'): # grab the delimiter from the character after the "s" unesc = pattern[1] delim = re.escape(unesc) # identify portions of the pattern, taking care to avoid escaped # delimiters. the replace format and flags are optional, but delimiters # are required. match = re.match(r'^s%s(.+)(?:(?<=\\\\)|(?