Mercurial > hg
annotate hgext/interhg.py @ 8866:87c30fb7e8df
help: remove per-extension paragraph on how to enable it
The central place to find this information is the "extensions" help topic.
author | Cédric Duval <cedricduval@free.fr> |
---|---|
date | Sat, 20 Jun 2009 20:57:13 +0200 |
parents | 67ee7587abea |
children | 3df8dbf706b0 |
rev | line source |
---|---|
4817
0ac6b537893f
interhg extension allows you to change changelog text like InterWiki.
OHASHI Hideya <ohachige@gmail.com>
parents:
diff
changeset
|
1 # interhg.py - interhg |
0ac6b537893f
interhg extension allows you to change changelog text like InterWiki.
OHASHI Hideya <ohachige@gmail.com>
parents:
diff
changeset
|
2 # |
0ac6b537893f
interhg extension allows you to change changelog text like InterWiki.
OHASHI Hideya <ohachige@gmail.com>
parents:
diff
changeset
|
3 # Copyright 2007 OHASHI Hideya <ohachige@gmail.com> |
0ac6b537893f
interhg extension allows you to change changelog text like InterWiki.
OHASHI Hideya <ohachige@gmail.com>
parents:
diff
changeset
|
4 # |
5288
18091102a633
interhg: allow more flexible pattern specification (fixes 2/3 of issue699)
Edward Lee <edward.lee@engineering.uiuc.edu>
parents:
4817
diff
changeset
|
5 # Contributor(s): |
18091102a633
interhg: allow more flexible pattern specification (fixes 2/3 of issue699)
Edward Lee <edward.lee@engineering.uiuc.edu>
parents:
4817
diff
changeset
|
6 # Edward Lee <edward.lee@engineering.uiuc.edu> |
18091102a633
interhg: allow more flexible pattern specification (fixes 2/3 of issue699)
Edward Lee <edward.lee@engineering.uiuc.edu>
parents:
4817
diff
changeset
|
7 # |
8225
46293a0c7e9f
updated license to be explicit about GPL version 2
Martin Geisler <mg@lazybytes.net>
parents:
7216
diff
changeset
|
8 # This software may be used and distributed according to the terms of the |
46293a0c7e9f
updated license to be explicit about GPL version 2
Martin Geisler <mg@lazybytes.net>
parents:
7216
diff
changeset
|
9 # GNU General Public License version 2, incorporated herein by reference. |
8824
67ee7587abea
interhg: upgrade comments to online help and improve them
Cédric Duval <cedricduval@free.fr>
parents:
8225
diff
changeset
|
10 |
67ee7587abea
interhg: upgrade comments to online help and improve them
Cédric Duval <cedricduval@free.fr>
parents:
8225
diff
changeset
|
11 '''expand expressions into changelog and summaries |
67ee7587abea
interhg: upgrade comments to online help and improve them
Cédric Duval <cedricduval@free.fr>
parents:
8225
diff
changeset
|
12 |
67ee7587abea
interhg: upgrade comments to online help and improve them
Cédric Duval <cedricduval@free.fr>
parents:
8225
diff
changeset
|
13 This extension allows the use of a special syntax in summaries, |
67ee7587abea
interhg: upgrade comments to online help and improve them
Cédric Duval <cedricduval@free.fr>
parents:
8225
diff
changeset
|
14 which will be automatically expanded into links or any other |
67ee7587abea
interhg: upgrade comments to online help and improve them
Cédric Duval <cedricduval@free.fr>
parents:
8225
diff
changeset
|
15 arbitrary expression, much like InterWiki does. |
67ee7587abea
interhg: upgrade comments to online help and improve them
Cédric Duval <cedricduval@free.fr>
parents:
8225
diff
changeset
|
16 |
8866
87c30fb7e8df
help: remove per-extension paragraph on how to enable it
Cédric Duval <cedricduval@free.fr>
parents:
8824
diff
changeset
|
17 A few example patterns (link to bug tracking, etc.) that may |
87c30fb7e8df
help: remove per-extension paragraph on how to enable it
Cédric Duval <cedricduval@free.fr>
parents:
8824
diff
changeset
|
18 be used in your hgrc: |
8824
67ee7587abea
interhg: upgrade comments to online help and improve them
Cédric Duval <cedricduval@free.fr>
parents:
8225
diff
changeset
|
19 |
67ee7587abea
interhg: upgrade comments to online help and improve them
Cédric Duval <cedricduval@free.fr>
parents:
8225
diff
changeset
|
20 [interhg] |
67ee7587abea
interhg: upgrade comments to online help and improve them
Cédric Duval <cedricduval@free.fr>
parents:
8225
diff
changeset
|
21 issues = s!issue(\d+)!<a href="http://bts/issue\1">issue\1<\/a>! |
67ee7587abea
interhg: upgrade comments to online help and improve them
Cédric Duval <cedricduval@free.fr>
parents:
8225
diff
changeset
|
22 bugzilla = s!((?:bug|b=|(?=#?\d{4,}))(?:\s*#?)(\d+))!<a..=\2">\1</a>!i |
67ee7587abea
interhg: upgrade comments to online help and improve them
Cédric Duval <cedricduval@free.fr>
parents:
8225
diff
changeset
|
23 boldify = s/(^|\s)#(\d+)\b/ <b>#\2<\/b>/ |
67ee7587abea
interhg: upgrade comments to online help and improve them
Cédric Duval <cedricduval@free.fr>
parents:
8225
diff
changeset
|
24 ''' |
4817
0ac6b537893f
interhg extension allows you to change changelog text like InterWiki.
OHASHI Hideya <ohachige@gmail.com>
parents:
diff
changeset
|
25 |
0ac6b537893f
interhg extension allows you to change changelog text like InterWiki.
OHASHI Hideya <ohachige@gmail.com>
parents:
diff
changeset
|
26 import re |
0ac6b537893f
interhg extension allows you to change changelog text like InterWiki.
OHASHI Hideya <ohachige@gmail.com>
parents:
diff
changeset
|
27 from mercurial.hgweb import hgweb_mod |
7216
292fb2ad2846
extensions: use new wrapper functions
Matt Mackall <mpm@selenic.com>
parents:
6962
diff
changeset
|
28 from mercurial import templatefilters, extensions |
6962
2af657eafeba
i18n: mark strings for translation in interhg extension
Martin Geisler <mg@daimi.au.dk>
parents:
5976
diff
changeset
|
29 from mercurial.i18n import _ |
4817
0ac6b537893f
interhg extension allows you to change changelog text like InterWiki.
OHASHI Hideya <ohachige@gmail.com>
parents:
diff
changeset
|
30 |
5976
9f1e6ab76069
templates: move filters to their own module
Matt Mackall <mpm@selenic.com>
parents:
5288
diff
changeset
|
31 orig_escape = templatefilters.filters["escape"] |
4817
0ac6b537893f
interhg extension allows you to change changelog text like InterWiki.
OHASHI Hideya <ohachige@gmail.com>
parents:
diff
changeset
|
32 |
0ac6b537893f
interhg extension allows you to change changelog text like InterWiki.
OHASHI Hideya <ohachige@gmail.com>
parents:
diff
changeset
|
33 interhg_table = [] |
0ac6b537893f
interhg extension allows you to change changelog text like InterWiki.
OHASHI Hideya <ohachige@gmail.com>
parents:
diff
changeset
|
34 |
0ac6b537893f
interhg extension allows you to change changelog text like InterWiki.
OHASHI Hideya <ohachige@gmail.com>
parents:
diff
changeset
|
35 def interhg_escape(x): |
0ac6b537893f
interhg extension allows you to change changelog text like InterWiki.
OHASHI Hideya <ohachige@gmail.com>
parents:
diff
changeset
|
36 escstr = orig_escape(x) |
5288
18091102a633
interhg: allow more flexible pattern specification (fixes 2/3 of issue699)
Edward Lee <edward.lee@engineering.uiuc.edu>
parents:
4817
diff
changeset
|
37 for regexp, format in interhg_table: |
4817
0ac6b537893f
interhg extension allows you to change changelog text like InterWiki.
OHASHI Hideya <ohachige@gmail.com>
parents:
diff
changeset
|
38 escstr = regexp.sub(format, escstr) |
0ac6b537893f
interhg extension allows you to change changelog text like InterWiki.
OHASHI Hideya <ohachige@gmail.com>
parents:
diff
changeset
|
39 return escstr |
0ac6b537893f
interhg extension allows you to change changelog text like InterWiki.
OHASHI Hideya <ohachige@gmail.com>
parents:
diff
changeset
|
40 |
5976
9f1e6ab76069
templates: move filters to their own module
Matt Mackall <mpm@selenic.com>
parents:
5288
diff
changeset
|
41 templatefilters.filters["escape"] = interhg_escape |
4817
0ac6b537893f
interhg extension allows you to change changelog text like InterWiki.
OHASHI Hideya <ohachige@gmail.com>
parents:
diff
changeset
|
42 |
7216
292fb2ad2846
extensions: use new wrapper functions
Matt Mackall <mpm@selenic.com>
parents:
6962
diff
changeset
|
43 def interhg_refresh(orig, self): |
4817
0ac6b537893f
interhg extension allows you to change changelog text like InterWiki.
OHASHI Hideya <ohachige@gmail.com>
parents:
diff
changeset
|
44 interhg_table[:] = [] |
5288
18091102a633
interhg: allow more flexible pattern specification (fixes 2/3 of issue699)
Edward Lee <edward.lee@engineering.uiuc.edu>
parents:
4817
diff
changeset
|
45 for key, pattern in self.repo.ui.configitems('interhg'): |
18091102a633
interhg: allow more flexible pattern specification (fixes 2/3 of issue699)
Edward Lee <edward.lee@engineering.uiuc.edu>
parents:
4817
diff
changeset
|
46 # grab the delimiter from the character after the "s" |
18091102a633
interhg: allow more flexible pattern specification (fixes 2/3 of issue699)
Edward Lee <edward.lee@engineering.uiuc.edu>
parents:
4817
diff
changeset
|
47 unesc = pattern[1] |
18091102a633
interhg: allow more flexible pattern specification (fixes 2/3 of issue699)
Edward Lee <edward.lee@engineering.uiuc.edu>
parents:
4817
diff
changeset
|
48 delim = re.escape(unesc) |
18091102a633
interhg: allow more flexible pattern specification (fixes 2/3 of issue699)
Edward Lee <edward.lee@engineering.uiuc.edu>
parents:
4817
diff
changeset
|
49 |
18091102a633
interhg: allow more flexible pattern specification (fixes 2/3 of issue699)
Edward Lee <edward.lee@engineering.uiuc.edu>
parents:
4817
diff
changeset
|
50 # identify portions of the pattern, taking care to avoid escaped |
18091102a633
interhg: allow more flexible pattern specification (fixes 2/3 of issue699)
Edward Lee <edward.lee@engineering.uiuc.edu>
parents:
4817
diff
changeset
|
51 # delimiters. the replace format and flags are optional, but delimiters |
18091102a633
interhg: allow more flexible pattern specification (fixes 2/3 of issue699)
Edward Lee <edward.lee@engineering.uiuc.edu>
parents:
4817
diff
changeset
|
52 # are required. |
18091102a633
interhg: allow more flexible pattern specification (fixes 2/3 of issue699)
Edward Lee <edward.lee@engineering.uiuc.edu>
parents:
4817
diff
changeset
|
53 match = re.match(r'^s%s(.+)(?:(?<=\\\\)|(?<!\\))%s(.*)%s([ilmsux])*$' |
18091102a633
interhg: allow more flexible pattern specification (fixes 2/3 of issue699)
Edward Lee <edward.lee@engineering.uiuc.edu>
parents:
4817
diff
changeset
|
54 % (delim, delim, delim), pattern) |
18091102a633
interhg: allow more flexible pattern specification (fixes 2/3 of issue699)
Edward Lee <edward.lee@engineering.uiuc.edu>
parents:
4817
diff
changeset
|
55 if not match: |
6962
2af657eafeba
i18n: mark strings for translation in interhg extension
Martin Geisler <mg@daimi.au.dk>
parents:
5976
diff
changeset
|
56 self.repo.ui.warn(_("interhg: invalid pattern for %s: %s\n") |
5288
18091102a633
interhg: allow more flexible pattern specification (fixes 2/3 of issue699)
Edward Lee <edward.lee@engineering.uiuc.edu>
parents:
4817
diff
changeset
|
57 % (key, pattern)) |
18091102a633
interhg: allow more flexible pattern specification (fixes 2/3 of issue699)
Edward Lee <edward.lee@engineering.uiuc.edu>
parents:
4817
diff
changeset
|
58 continue |
18091102a633
interhg: allow more flexible pattern specification (fixes 2/3 of issue699)
Edward Lee <edward.lee@engineering.uiuc.edu>
parents:
4817
diff
changeset
|
59 |
18091102a633
interhg: allow more flexible pattern specification (fixes 2/3 of issue699)
Edward Lee <edward.lee@engineering.uiuc.edu>
parents:
4817
diff
changeset
|
60 # we need to unescape the delimiter for regexp and format |
18091102a633
interhg: allow more flexible pattern specification (fixes 2/3 of issue699)
Edward Lee <edward.lee@engineering.uiuc.edu>
parents:
4817
diff
changeset
|
61 delim_re = re.compile(r'(?<!\\)\\%s' % delim) |
18091102a633
interhg: allow more flexible pattern specification (fixes 2/3 of issue699)
Edward Lee <edward.lee@engineering.uiuc.edu>
parents:
4817
diff
changeset
|
62 regexp = delim_re.sub(unesc, match.group(1)) |
18091102a633
interhg: allow more flexible pattern specification (fixes 2/3 of issue699)
Edward Lee <edward.lee@engineering.uiuc.edu>
parents:
4817
diff
changeset
|
63 format = delim_re.sub(unesc, match.group(2)) |
18091102a633
interhg: allow more flexible pattern specification (fixes 2/3 of issue699)
Edward Lee <edward.lee@engineering.uiuc.edu>
parents:
4817
diff
changeset
|
64 |
18091102a633
interhg: allow more flexible pattern specification (fixes 2/3 of issue699)
Edward Lee <edward.lee@engineering.uiuc.edu>
parents:
4817
diff
changeset
|
65 # the pattern allows for 6 regexp flags, so set them if necessary |
18091102a633
interhg: allow more flexible pattern specification (fixes 2/3 of issue699)
Edward Lee <edward.lee@engineering.uiuc.edu>
parents:
4817
diff
changeset
|
66 flagin = match.group(3) |
18091102a633
interhg: allow more flexible pattern specification (fixes 2/3 of issue699)
Edward Lee <edward.lee@engineering.uiuc.edu>
parents:
4817
diff
changeset
|
67 flags = 0 |
18091102a633
interhg: allow more flexible pattern specification (fixes 2/3 of issue699)
Edward Lee <edward.lee@engineering.uiuc.edu>
parents:
4817
diff
changeset
|
68 if flagin: |
18091102a633
interhg: allow more flexible pattern specification (fixes 2/3 of issue699)
Edward Lee <edward.lee@engineering.uiuc.edu>
parents:
4817
diff
changeset
|
69 for flag in flagin.upper(): |
18091102a633
interhg: allow more flexible pattern specification (fixes 2/3 of issue699)
Edward Lee <edward.lee@engineering.uiuc.edu>
parents:
4817
diff
changeset
|
70 flags |= re.__dict__[flag] |
18091102a633
interhg: allow more flexible pattern specification (fixes 2/3 of issue699)
Edward Lee <edward.lee@engineering.uiuc.edu>
parents:
4817
diff
changeset
|
71 |
18091102a633
interhg: allow more flexible pattern specification (fixes 2/3 of issue699)
Edward Lee <edward.lee@engineering.uiuc.edu>
parents:
4817
diff
changeset
|
72 try: |
18091102a633
interhg: allow more flexible pattern specification (fixes 2/3 of issue699)
Edward Lee <edward.lee@engineering.uiuc.edu>
parents:
4817
diff
changeset
|
73 regexp = re.compile(regexp, flags) |
18091102a633
interhg: allow more flexible pattern specification (fixes 2/3 of issue699)
Edward Lee <edward.lee@engineering.uiuc.edu>
parents:
4817
diff
changeset
|
74 interhg_table.append((regexp, format)) |
18091102a633
interhg: allow more flexible pattern specification (fixes 2/3 of issue699)
Edward Lee <edward.lee@engineering.uiuc.edu>
parents:
4817
diff
changeset
|
75 except re.error: |
6962
2af657eafeba
i18n: mark strings for translation in interhg extension
Martin Geisler <mg@daimi.au.dk>
parents:
5976
diff
changeset
|
76 self.repo.ui.warn(_("interhg: invalid regexp for %s: %s\n") |
5288
18091102a633
interhg: allow more flexible pattern specification (fixes 2/3 of issue699)
Edward Lee <edward.lee@engineering.uiuc.edu>
parents:
4817
diff
changeset
|
77 % (key, regexp)) |
7216
292fb2ad2846
extensions: use new wrapper functions
Matt Mackall <mpm@selenic.com>
parents:
6962
diff
changeset
|
78 return orig(self) |
4817
0ac6b537893f
interhg extension allows you to change changelog text like InterWiki.
OHASHI Hideya <ohachige@gmail.com>
parents:
diff
changeset
|
79 |
7216
292fb2ad2846
extensions: use new wrapper functions
Matt Mackall <mpm@selenic.com>
parents:
6962
diff
changeset
|
80 extensions.wrapfunction(hgweb_mod.hgweb, 'refresh', interhg_refresh) |