Show More
@@ -1,173 +1,176 | |||
|
1 | 1 | #!/usr/bin/env python |
|
2 | 2 | # |
|
3 | 3 | # checkseclevel - checking section title levels in each online help document |
|
4 | 4 | |
|
5 | 5 | from __future__ import absolute_import |
|
6 | 6 | |
|
7 | 7 | import optparse |
|
8 | 8 | import os |
|
9 | 9 | import sys |
|
10 | 10 | |
|
11 | 11 | # import from the live mercurial repo |
|
12 | 12 | os.environ['HGMODULEPOLICY'] = 'py' |
|
13 | 13 | sys.path.insert(0, "..") |
|
14 | 14 | from mercurial import demandimport; demandimport.enable() |
|
15 | 15 | from mercurial import ( |
|
16 | 16 | commands, |
|
17 | 17 | extensions, |
|
18 | 18 | help, |
|
19 | 19 | minirst, |
|
20 | 20 | ui as uimod, |
|
21 | 21 | ) |
|
22 | 22 | |
|
23 | 23 | table = commands.table |
|
24 | 24 | helptable = help.helptable |
|
25 | 25 | |
|
26 | level2mark = ['"', '=', '-', '.', '#'] | |
|
27 | reservedmarks = ['"'] | |
|
26 | level2mark = [b'"', b'=', b'-', b'.', b'#'] | |
|
27 | reservedmarks = [b'"'] | |
|
28 | 28 | |
|
29 | 29 | mark2level = {} |
|
30 |
for m, l in zip(level2mark, |
|
|
30 | for m, l in zip(level2mark, range(len(level2mark))): | |
|
31 | 31 | if m not in reservedmarks: |
|
32 | 32 | mark2level[m] = l |
|
33 | 33 | |
|
34 | 34 | initlevel_topic = 0 |
|
35 | 35 | initlevel_cmd = 1 |
|
36 | 36 | initlevel_ext = 1 |
|
37 | 37 | initlevel_ext_cmd = 3 |
|
38 | 38 | |
|
39 | 39 | def showavailables(ui, initlevel): |
|
40 |
|
|
|
41 |
|
|
|
40 | avail = (' available marks and order of them in this help: %s\n') % ( | |
|
41 | ', '.join(['%r' % (m * 4) for m in level2mark[initlevel + 1:]])) | |
|
42 | ui.warn(avail.encode('utf-8')) | |
|
42 | 43 | |
|
43 | 44 | def checkseclevel(ui, doc, name, initlevel): |
|
44 | 45 | ui.note(('checking "%s"\n') % name) |
|
46 | if not isinstance(doc, bytes): | |
|
47 | doc = doc.encode('utf-8') | |
|
45 | 48 | blocks, pruned = minirst.parse(doc, 0, ['verbose']) |
|
46 | 49 | errorcnt = 0 |
|
47 | 50 | curlevel = initlevel |
|
48 | 51 | for block in blocks: |
|
49 | if block['type'] != 'section': | |
|
52 | if block[b'type'] != b'section': | |
|
50 | 53 | continue |
|
51 | mark = block['underline'] | |
|
52 | title = block['lines'][0] | |
|
54 | mark = block[b'underline'] | |
|
55 | title = block[b'lines'][0] | |
|
53 | 56 | if (mark not in mark2level) or (mark2level[mark] <= initlevel): |
|
54 | ui.warn(('invalid section mark %r for "%s" of %s\n') % | |
|
55 | (mark * 4, title, name)) | |
|
57 | ui.warn((('invalid section mark %r for "%s" of %s\n') % | |
|
58 | (mark * 4, title, name)).encode('utf-8')) | |
|
56 | 59 | showavailables(ui, initlevel) |
|
57 | 60 | errorcnt += 1 |
|
58 | 61 | continue |
|
59 | 62 | nextlevel = mark2level[mark] |
|
60 | 63 | if curlevel < nextlevel and curlevel + 1 != nextlevel: |
|
61 | 64 | ui.warn(('gap of section level at "%s" of %s\n') % |
|
62 | 65 | (title, name)) |
|
63 | 66 | showavailables(ui, initlevel) |
|
64 | 67 | errorcnt += 1 |
|
65 | 68 | continue |
|
66 | 69 | ui.note(('appropriate section level for "%s %s"\n') % |
|
67 | 70 | (mark * (nextlevel * 2), title)) |
|
68 | 71 | curlevel = nextlevel |
|
69 | 72 | |
|
70 | 73 | return errorcnt |
|
71 | 74 | |
|
72 | 75 | def checkcmdtable(ui, cmdtable, namefmt, initlevel): |
|
73 | 76 | errorcnt = 0 |
|
74 | 77 | for k, entry in cmdtable.items(): |
|
75 | name = k.split("|")[0].lstrip("^") | |
|
78 | name = k.split(b"|")[0].lstrip(b"^") | |
|
76 | 79 | if not entry[0].__doc__: |
|
77 | 80 | ui.note(('skip checking %s: no help document\n') % |
|
78 | 81 | (namefmt % name)) |
|
79 | 82 | continue |
|
80 | 83 | errorcnt += checkseclevel(ui, entry[0].__doc__, |
|
81 | 84 | namefmt % name, |
|
82 | 85 | initlevel) |
|
83 | 86 | return errorcnt |
|
84 | 87 | |
|
85 | 88 | def checkhghelps(ui): |
|
86 | 89 | errorcnt = 0 |
|
87 | 90 | for names, sec, doc in helptable: |
|
88 | 91 | if callable(doc): |
|
89 | 92 | doc = doc(ui) |
|
90 | 93 | errorcnt += checkseclevel(ui, doc, |
|
91 | 94 | '%s help topic' % names[0], |
|
92 | 95 | initlevel_topic) |
|
93 | 96 | |
|
94 | 97 | errorcnt += checkcmdtable(ui, table, '%s command', initlevel_cmd) |
|
95 | 98 | |
|
96 |
for name in sorted(extensions.enabled() |
|
|
97 |
extensions.disabled() |
|
|
99 | for name in sorted(list(extensions.enabled()) + | |
|
100 | list(extensions.disabled())): | |
|
98 | 101 | mod = extensions.load(ui, name, None) |
|
99 | 102 | if not mod.__doc__: |
|
100 | 103 | ui.note(('skip checking %s extension: no help document\n') % name) |
|
101 | 104 | continue |
|
102 | 105 | errorcnt += checkseclevel(ui, mod.__doc__, |
|
103 | 106 | '%s extension' % name, |
|
104 | 107 | initlevel_ext) |
|
105 | 108 | |
|
106 | 109 | cmdtable = getattr(mod, 'cmdtable', None) |
|
107 | 110 | if cmdtable: |
|
108 | 111 | errorcnt += checkcmdtable(ui, cmdtable, |
|
109 |
'%s |
|
|
112 | '%%s command of %s extension' % name, | |
|
110 | 113 | initlevel_ext_cmd) |
|
111 | 114 | return errorcnt |
|
112 | 115 | |
|
113 | 116 | def checkfile(ui, filename, initlevel): |
|
114 | 117 | if filename == '-': |
|
115 | 118 | filename = 'stdin' |
|
116 | 119 | doc = sys.stdin.read() |
|
117 | 120 | else: |
|
118 | 121 | with open(filename) as fp: |
|
119 | 122 | doc = fp.read() |
|
120 | 123 | |
|
121 | 124 | ui.note(('checking input from %s with initlevel %d\n') % |
|
122 | 125 | (filename, initlevel)) |
|
123 | 126 | return checkseclevel(ui, doc, 'input from %s' % filename, initlevel) |
|
124 | 127 | |
|
125 | 128 | def main(): |
|
126 | 129 | optparser = optparse.OptionParser("""%prog [options] |
|
127 | 130 | |
|
128 | 131 | This checks all help documents of Mercurial (topics, commands, |
|
129 | 132 | extensions and commands of them), if no file is specified by --file |
|
130 | 133 | option. |
|
131 | 134 | """) |
|
132 | 135 | optparser.add_option("-v", "--verbose", |
|
133 | 136 | help="enable additional output", |
|
134 | 137 | action="store_true") |
|
135 | 138 | optparser.add_option("-d", "--debug", |
|
136 | 139 | help="debug mode", |
|
137 | 140 | action="store_true") |
|
138 | 141 | optparser.add_option("-f", "--file", |
|
139 | 142 | help="filename to read in (or '-' for stdin)", |
|
140 | 143 | action="store", default="") |
|
141 | 144 | |
|
142 | 145 | optparser.add_option("-t", "--topic", |
|
143 | 146 | help="parse file as help topic", |
|
144 | 147 | action="store_const", dest="initlevel", const=0) |
|
145 | 148 | optparser.add_option("-c", "--command", |
|
146 | 149 | help="parse file as help of core command", |
|
147 | 150 | action="store_const", dest="initlevel", const=1) |
|
148 | 151 | optparser.add_option("-e", "--extension", |
|
149 | 152 | help="parse file as help of extension", |
|
150 | 153 | action="store_const", dest="initlevel", const=1) |
|
151 | 154 | optparser.add_option("-C", "--extension-command", |
|
152 | 155 | help="parse file as help of extension command", |
|
153 | 156 | action="store_const", dest="initlevel", const=3) |
|
154 | 157 | |
|
155 | 158 | optparser.add_option("-l", "--initlevel", |
|
156 | 159 | help="set initial section level manually", |
|
157 | 160 | action="store", type="int", default=0) |
|
158 | 161 | |
|
159 | 162 | (options, args) = optparser.parse_args() |
|
160 | 163 | |
|
161 | 164 | ui = uimod.ui.load() |
|
162 | 165 | ui.setconfig('ui', 'verbose', options.verbose, '--verbose') |
|
163 | 166 | ui.setconfig('ui', 'debug', options.debug, '--debug') |
|
164 | 167 | |
|
165 | 168 | if options.file: |
|
166 | 169 | if checkfile(ui, options.file, options.initlevel): |
|
167 | 170 | sys.exit(1) |
|
168 | 171 | else: |
|
169 | 172 | if checkhghelps(ui): |
|
170 | 173 | sys.exit(1) |
|
171 | 174 | |
|
172 | 175 | if __name__ == "__main__": |
|
173 | 176 | main() |
General Comments 0
You need to be logged in to leave comments.
Login now