Show More
@@ -1,82 +1,84 b'' | |||
|
1 | 1 | # interhg.py - interhg |
|
2 | 2 | # |
|
3 | 3 | # Copyright 2007 OHASHI Hideya <ohachige@gmail.com> |
|
4 | 4 | # |
|
5 | 5 | # Contributor(s): |
|
6 | 6 | # Edward Lee <edward.lee@engineering.uiuc.edu> |
|
7 | 7 | # |
|
8 | 8 | # This software may be used and distributed according to the terms of the |
|
9 | 9 | # GNU General Public License version 2, incorporated herein by reference. |
|
10 | # | |
|
11 | # The `interhg' Mercurial extension allows you to change changelog and | |
|
12 | # summary text just like InterWiki way. | |
|
13 | # | |
|
14 | # To enable this extension: | |
|
15 | # | |
|
16 | # [extensions] | |
|
17 | # interhg = | |
|
18 | # | |
|
19 | # These are some example patterns (link to bug tracking, etc.) | |
|
20 | # | |
|
21 | # [interhg] | |
|
22 | # issues = s!issue(\d+)!<a href="http://bts/issue\1">issue\1<\/a>! | |
|
23 | # bugzilla = s!((?:bug|b=|(?=#?\d{4,}))(?:\s*#?)(\d+))!<a..=\2">\1</a>!i | |
|
24 | # boldify = s/(^|\s)#(\d+)\b/ <b>#\2<\/b>/ | |
|
25 | # | |
|
26 | # Add any number of names and patterns to match | |
|
10 | ||
|
11 | '''expand expressions into changelog and summaries | |
|
12 | ||
|
13 | This extension allows the use of a special syntax in summaries, | |
|
14 | which will be automatically expanded into links or any other | |
|
15 | arbitrary expression, much like InterWiki does. | |
|
16 | ||
|
17 | To enable this extension, add the following lines to your hgrc: | |
|
18 | ||
|
19 | [extensions] | |
|
20 | interhg = | |
|
21 | ||
|
22 | A few example patterns (link to bug tracking, etc.): | |
|
23 | ||
|
24 | [interhg] | |
|
25 | issues = s!issue(\d+)!<a href="http://bts/issue\1">issue\1<\/a>! | |
|
26 | bugzilla = s!((?:bug|b=|(?=#?\d{4,}))(?:\s*#?)(\d+))!<a..=\2">\1</a>!i | |
|
27 | boldify = s/(^|\s)#(\d+)\b/ <b>#\2<\/b>/ | |
|
28 | ''' | |
|
27 | 29 | |
|
28 | 30 | import re |
|
29 | 31 | from mercurial.hgweb import hgweb_mod |
|
30 | 32 | from mercurial import templatefilters, extensions |
|
31 | 33 | from mercurial.i18n import _ |
|
32 | 34 | |
|
33 | 35 | orig_escape = templatefilters.filters["escape"] |
|
34 | 36 | |
|
35 | 37 | interhg_table = [] |
|
36 | 38 | |
|
37 | 39 | def interhg_escape(x): |
|
38 | 40 | escstr = orig_escape(x) |
|
39 | 41 | for regexp, format in interhg_table: |
|
40 | 42 | escstr = regexp.sub(format, escstr) |
|
41 | 43 | return escstr |
|
42 | 44 | |
|
43 | 45 | templatefilters.filters["escape"] = interhg_escape |
|
44 | 46 | |
|
45 | 47 | def interhg_refresh(orig, self): |
|
46 | 48 | interhg_table[:] = [] |
|
47 | 49 | for key, pattern in self.repo.ui.configitems('interhg'): |
|
48 | 50 | # grab the delimiter from the character after the "s" |
|
49 | 51 | unesc = pattern[1] |
|
50 | 52 | delim = re.escape(unesc) |
|
51 | 53 | |
|
52 | 54 | # identify portions of the pattern, taking care to avoid escaped |
|
53 | 55 | # delimiters. the replace format and flags are optional, but delimiters |
|
54 | 56 | # are required. |
|
55 | 57 | match = re.match(r'^s%s(.+)(?:(?<=\\\\)|(?<!\\))%s(.*)%s([ilmsux])*$' |
|
56 | 58 | % (delim, delim, delim), pattern) |
|
57 | 59 | if not match: |
|
58 | 60 | self.repo.ui.warn(_("interhg: invalid pattern for %s: %s\n") |
|
59 | 61 | % (key, pattern)) |
|
60 | 62 | continue |
|
61 | 63 | |
|
62 | 64 | # we need to unescape the delimiter for regexp and format |
|
63 | 65 | delim_re = re.compile(r'(?<!\\)\\%s' % delim) |
|
64 | 66 | regexp = delim_re.sub(unesc, match.group(1)) |
|
65 | 67 | format = delim_re.sub(unesc, match.group(2)) |
|
66 | 68 | |
|
67 | 69 | # the pattern allows for 6 regexp flags, so set them if necessary |
|
68 | 70 | flagin = match.group(3) |
|
69 | 71 | flags = 0 |
|
70 | 72 | if flagin: |
|
71 | 73 | for flag in flagin.upper(): |
|
72 | 74 | flags |= re.__dict__[flag] |
|
73 | 75 | |
|
74 | 76 | try: |
|
75 | 77 | regexp = re.compile(regexp, flags) |
|
76 | 78 | interhg_table.append((regexp, format)) |
|
77 | 79 | except re.error: |
|
78 | 80 | self.repo.ui.warn(_("interhg: invalid regexp for %s: %s\n") |
|
79 | 81 | % (key, regexp)) |
|
80 | 82 | return orig(self) |
|
81 | 83 | |
|
82 | 84 | extensions.wrapfunction(hgweb_mod.hgweb, 'refresh', interhg_refresh) |
General Comments 0
You need to be logged in to leave comments.
Login now