equal
deleted
inserted
replaced
31 ) |
31 ) |
32 from .hgweb import ( |
32 from .hgweb import ( |
33 webcommands, |
33 webcommands, |
34 ) |
34 ) |
35 |
35 |
36 _exclkeywords = [ |
36 _exclkeywords = set([ |
|
37 "(ADVANCED)", |
37 "(DEPRECATED)", |
38 "(DEPRECATED)", |
38 "(EXPERIMENTAL)", |
39 "(EXPERIMENTAL)", |
|
40 # i18n: "(ADVANCED)" is a keyword, must be translated consistently |
|
41 _("(ADVANCED)"), |
39 # i18n: "(DEPRECATED)" is a keyword, must be translated consistently |
42 # i18n: "(DEPRECATED)" is a keyword, must be translated consistently |
40 _("(DEPRECATED)"), |
43 _("(DEPRECATED)"), |
41 # i18n: "(EXPERIMENTAL)" is a keyword, must be translated consistently |
44 # i18n: "(EXPERIMENTAL)" is a keyword, must be translated consistently |
42 _("(EXPERIMENTAL)"), |
45 _("(EXPERIMENTAL)"), |
43 ] |
46 ]) |
44 |
47 |
45 def listexts(header, exts, indent=1, showdeprecated=False): |
48 def listexts(header, exts, indent=1, showdeprecated=False): |
46 '''return a text listing of the given extensions''' |
49 '''return a text listing of the given extensions''' |
47 rst = [] |
50 rst = [] |
48 if exts: |
51 if exts: |