##// END OF EJS Templates
help: include section heading if section depth changes...
timeless -
r27614:1d7e824a default
parent child Browse files
Show More
@@ -1,795 +1,816 b''
1 # minirst.py - minimal reStructuredText parser
1 # minirst.py - minimal reStructuredText parser
2 #
2 #
3 # Copyright 2009, 2010 Matt Mackall <mpm@selenic.com> and others
3 # Copyright 2009, 2010 Matt Mackall <mpm@selenic.com> and others
4 #
4 #
5 # This software may be used and distributed according to the terms of the
5 # This software may be used and distributed according to the terms of the
6 # GNU General Public License version 2 or any later version.
6 # GNU General Public License version 2 or any later version.
7
7
8 """simplified reStructuredText parser.
8 """simplified reStructuredText parser.
9
9
10 This parser knows just enough about reStructuredText to parse the
10 This parser knows just enough about reStructuredText to parse the
11 Mercurial docstrings.
11 Mercurial docstrings.
12
12
13 It cheats in a major way: nested blocks are not really nested. They
13 It cheats in a major way: nested blocks are not really nested. They
14 are just indented blocks that look like they are nested. This relies
14 are just indented blocks that look like they are nested. This relies
15 on the user to keep the right indentation for the blocks.
15 on the user to keep the right indentation for the blocks.
16
16
17 Remember to update https://mercurial-scm.org/wiki/HelpStyleGuide
17 Remember to update https://mercurial-scm.org/wiki/HelpStyleGuide
18 when adding support for new constructs.
18 when adding support for new constructs.
19 """
19 """
20
20
21 from __future__ import absolute_import
21 from __future__ import absolute_import
22
22
23 import cgi
23 import cgi
24 import re
24 import re
25
25
26 from .i18n import _
26 from .i18n import _
27 from . import (
27 from . import (
28 encoding,
28 encoding,
29 util,
29 util,
30 )
30 )
31
31
32 def section(s):
32 def section(s):
33 return "%s\n%s\n\n" % (s, "\"" * encoding.colwidth(s))
33 return "%s\n%s\n\n" % (s, "\"" * encoding.colwidth(s))
34
34
35 def subsection(s):
35 def subsection(s):
36 return "%s\n%s\n\n" % (s, '=' * encoding.colwidth(s))
36 return "%s\n%s\n\n" % (s, '=' * encoding.colwidth(s))
37
37
38 def subsubsection(s):
38 def subsubsection(s):
39 return "%s\n%s\n\n" % (s, "-" * encoding.colwidth(s))
39 return "%s\n%s\n\n" % (s, "-" * encoding.colwidth(s))
40
40
41 def subsubsubsection(s):
41 def subsubsubsection(s):
42 return "%s\n%s\n\n" % (s, "." * encoding.colwidth(s))
42 return "%s\n%s\n\n" % (s, "." * encoding.colwidth(s))
43
43
44 def replace(text, substs):
44 def replace(text, substs):
45 '''
45 '''
46 Apply a list of (find, replace) pairs to a text.
46 Apply a list of (find, replace) pairs to a text.
47
47
48 >>> replace("foo bar", [('f', 'F'), ('b', 'B')])
48 >>> replace("foo bar", [('f', 'F'), ('b', 'B')])
49 'Foo Bar'
49 'Foo Bar'
50 >>> encoding.encoding = 'latin1'
50 >>> encoding.encoding = 'latin1'
51 >>> replace('\\x81\\\\', [('\\\\', '/')])
51 >>> replace('\\x81\\\\', [('\\\\', '/')])
52 '\\x81/'
52 '\\x81/'
53 >>> encoding.encoding = 'shiftjis'
53 >>> encoding.encoding = 'shiftjis'
54 >>> replace('\\x81\\\\', [('\\\\', '/')])
54 >>> replace('\\x81\\\\', [('\\\\', '/')])
55 '\\x81\\\\'
55 '\\x81\\\\'
56 '''
56 '''
57
57
58 # some character encodings (cp932 for Japanese, at least) use
58 # some character encodings (cp932 for Japanese, at least) use
59 # ASCII characters other than control/alphabet/digit as a part of
59 # ASCII characters other than control/alphabet/digit as a part of
60 # multi-bytes characters, so direct replacing with such characters
60 # multi-bytes characters, so direct replacing with such characters
61 # on strings in local encoding causes invalid byte sequences.
61 # on strings in local encoding causes invalid byte sequences.
62 utext = text.decode(encoding.encoding)
62 utext = text.decode(encoding.encoding)
63 for f, t in substs:
63 for f, t in substs:
64 utext = utext.replace(f.decode("ascii"), t.decode("ascii"))
64 utext = utext.replace(f.decode("ascii"), t.decode("ascii"))
65 return utext.encode(encoding.encoding)
65 return utext.encode(encoding.encoding)
66
66
67 _blockre = re.compile(r"\n(?:\s*\n)+")
67 _blockre = re.compile(r"\n(?:\s*\n)+")
68
68
69 def findblocks(text):
69 def findblocks(text):
70 """Find continuous blocks of lines in text.
70 """Find continuous blocks of lines in text.
71
71
72 Returns a list of dictionaries representing the blocks. Each block
72 Returns a list of dictionaries representing the blocks. Each block
73 has an 'indent' field and a 'lines' field.
73 has an 'indent' field and a 'lines' field.
74 """
74 """
75 blocks = []
75 blocks = []
76 for b in _blockre.split(text.lstrip('\n').rstrip()):
76 for b in _blockre.split(text.lstrip('\n').rstrip()):
77 lines = b.splitlines()
77 lines = b.splitlines()
78 if lines:
78 if lines:
79 indent = min((len(l) - len(l.lstrip())) for l in lines)
79 indent = min((len(l) - len(l.lstrip())) for l in lines)
80 lines = [l[indent:] for l in lines]
80 lines = [l[indent:] for l in lines]
81 blocks.append({'indent': indent, 'lines': lines})
81 blocks.append({'indent': indent, 'lines': lines})
82 return blocks
82 return blocks
83
83
84 def findliteralblocks(blocks):
84 def findliteralblocks(blocks):
85 """Finds literal blocks and adds a 'type' field to the blocks.
85 """Finds literal blocks and adds a 'type' field to the blocks.
86
86
87 Literal blocks are given the type 'literal', all other blocks are
87 Literal blocks are given the type 'literal', all other blocks are
88 given type the 'paragraph'.
88 given type the 'paragraph'.
89 """
89 """
90 i = 0
90 i = 0
91 while i < len(blocks):
91 while i < len(blocks):
92 # Searching for a block that looks like this:
92 # Searching for a block that looks like this:
93 #
93 #
94 # +------------------------------+
94 # +------------------------------+
95 # | paragraph |
95 # | paragraph |
96 # | (ends with "::") |
96 # | (ends with "::") |
97 # +------------------------------+
97 # +------------------------------+
98 # +---------------------------+
98 # +---------------------------+
99 # | indented literal block |
99 # | indented literal block |
100 # +---------------------------+
100 # +---------------------------+
101 blocks[i]['type'] = 'paragraph'
101 blocks[i]['type'] = 'paragraph'
102 if blocks[i]['lines'][-1].endswith('::') and i + 1 < len(blocks):
102 if blocks[i]['lines'][-1].endswith('::') and i + 1 < len(blocks):
103 indent = blocks[i]['indent']
103 indent = blocks[i]['indent']
104 adjustment = blocks[i + 1]['indent'] - indent
104 adjustment = blocks[i + 1]['indent'] - indent
105
105
106 if blocks[i]['lines'] == ['::']:
106 if blocks[i]['lines'] == ['::']:
107 # Expanded form: remove block
107 # Expanded form: remove block
108 del blocks[i]
108 del blocks[i]
109 i -= 1
109 i -= 1
110 elif blocks[i]['lines'][-1].endswith(' ::'):
110 elif blocks[i]['lines'][-1].endswith(' ::'):
111 # Partially minimized form: remove space and both
111 # Partially minimized form: remove space and both
112 # colons.
112 # colons.
113 blocks[i]['lines'][-1] = blocks[i]['lines'][-1][:-3]
113 blocks[i]['lines'][-1] = blocks[i]['lines'][-1][:-3]
114 elif len(blocks[i]['lines']) == 1 and \
114 elif len(blocks[i]['lines']) == 1 and \
115 blocks[i]['lines'][0].lstrip(' ').startswith('.. ') and \
115 blocks[i]['lines'][0].lstrip(' ').startswith('.. ') and \
116 blocks[i]['lines'][0].find(' ', 3) == -1:
116 blocks[i]['lines'][0].find(' ', 3) == -1:
117 # directive on its own line, not a literal block
117 # directive on its own line, not a literal block
118 i += 1
118 i += 1
119 continue
119 continue
120 else:
120 else:
121 # Fully minimized form: remove just one colon.
121 # Fully minimized form: remove just one colon.
122 blocks[i]['lines'][-1] = blocks[i]['lines'][-1][:-1]
122 blocks[i]['lines'][-1] = blocks[i]['lines'][-1][:-1]
123
123
124 # List items are formatted with a hanging indent. We must
124 # List items are formatted with a hanging indent. We must
125 # correct for this here while we still have the original
125 # correct for this here while we still have the original
126 # information on the indentation of the subsequent literal
126 # information on the indentation of the subsequent literal
127 # blocks available.
127 # blocks available.
128 m = _bulletre.match(blocks[i]['lines'][0])
128 m = _bulletre.match(blocks[i]['lines'][0])
129 if m:
129 if m:
130 indent += m.end()
130 indent += m.end()
131 adjustment -= m.end()
131 adjustment -= m.end()
132
132
133 # Mark the following indented blocks.
133 # Mark the following indented blocks.
134 while i + 1 < len(blocks) and blocks[i + 1]['indent'] > indent:
134 while i + 1 < len(blocks) and blocks[i + 1]['indent'] > indent:
135 blocks[i + 1]['type'] = 'literal'
135 blocks[i + 1]['type'] = 'literal'
136 blocks[i + 1]['indent'] -= adjustment
136 blocks[i + 1]['indent'] -= adjustment
137 i += 1
137 i += 1
138 i += 1
138 i += 1
139 return blocks
139 return blocks
140
140
141 _bulletre = re.compile(r'(-|[0-9A-Za-z]+\.|\(?[0-9A-Za-z]+\)|\|) ')
141 _bulletre = re.compile(r'(-|[0-9A-Za-z]+\.|\(?[0-9A-Za-z]+\)|\|) ')
142 _optionre = re.compile(r'^(-([a-zA-Z0-9]), )?(--[a-z0-9-]+)'
142 _optionre = re.compile(r'^(-([a-zA-Z0-9]), )?(--[a-z0-9-]+)'
143 r'((.*) +)(.*)$')
143 r'((.*) +)(.*)$')
144 _fieldre = re.compile(r':(?![: ])([^:]*)(?<! ):[ ]+(.*)')
144 _fieldre = re.compile(r':(?![: ])([^:]*)(?<! ):[ ]+(.*)')
145 _definitionre = re.compile(r'[^ ]')
145 _definitionre = re.compile(r'[^ ]')
146 _tablere = re.compile(r'(=+\s+)*=+')
146 _tablere = re.compile(r'(=+\s+)*=+')
147
147
148 def splitparagraphs(blocks):
148 def splitparagraphs(blocks):
149 """Split paragraphs into lists."""
149 """Split paragraphs into lists."""
150 # Tuples with (list type, item regexp, single line items?). Order
150 # Tuples with (list type, item regexp, single line items?). Order
151 # matters: definition lists has the least specific regexp and must
151 # matters: definition lists has the least specific regexp and must
152 # come last.
152 # come last.
153 listtypes = [('bullet', _bulletre, True),
153 listtypes = [('bullet', _bulletre, True),
154 ('option', _optionre, True),
154 ('option', _optionre, True),
155 ('field', _fieldre, True),
155 ('field', _fieldre, True),
156 ('definition', _definitionre, False)]
156 ('definition', _definitionre, False)]
157
157
158 def match(lines, i, itemre, singleline):
158 def match(lines, i, itemre, singleline):
159 """Does itemre match an item at line i?
159 """Does itemre match an item at line i?
160
160
161 A list item can be followed by an indented line or another list
161 A list item can be followed by an indented line or another list
162 item (but only if singleline is True).
162 item (but only if singleline is True).
163 """
163 """
164 line1 = lines[i]
164 line1 = lines[i]
165 line2 = i + 1 < len(lines) and lines[i + 1] or ''
165 line2 = i + 1 < len(lines) and lines[i + 1] or ''
166 if not itemre.match(line1):
166 if not itemre.match(line1):
167 return False
167 return False
168 if singleline:
168 if singleline:
169 return line2 == '' or line2[0] == ' ' or itemre.match(line2)
169 return line2 == '' or line2[0] == ' ' or itemre.match(line2)
170 else:
170 else:
171 return line2.startswith(' ')
171 return line2.startswith(' ')
172
172
173 i = 0
173 i = 0
174 while i < len(blocks):
174 while i < len(blocks):
175 if blocks[i]['type'] == 'paragraph':
175 if blocks[i]['type'] == 'paragraph':
176 lines = blocks[i]['lines']
176 lines = blocks[i]['lines']
177 for type, itemre, singleline in listtypes:
177 for type, itemre, singleline in listtypes:
178 if match(lines, 0, itemre, singleline):
178 if match(lines, 0, itemre, singleline):
179 items = []
179 items = []
180 for j, line in enumerate(lines):
180 for j, line in enumerate(lines):
181 if match(lines, j, itemre, singleline):
181 if match(lines, j, itemre, singleline):
182 items.append({'type': type, 'lines': [],
182 items.append({'type': type, 'lines': [],
183 'indent': blocks[i]['indent']})
183 'indent': blocks[i]['indent']})
184 items[-1]['lines'].append(line)
184 items[-1]['lines'].append(line)
185 blocks[i:i + 1] = items
185 blocks[i:i + 1] = items
186 break
186 break
187 i += 1
187 i += 1
188 return blocks
188 return blocks
189
189
190 _fieldwidth = 14
190 _fieldwidth = 14
191
191
192 def updatefieldlists(blocks):
192 def updatefieldlists(blocks):
193 """Find key for field lists."""
193 """Find key for field lists."""
194 i = 0
194 i = 0
195 while i < len(blocks):
195 while i < len(blocks):
196 if blocks[i]['type'] != 'field':
196 if blocks[i]['type'] != 'field':
197 i += 1
197 i += 1
198 continue
198 continue
199
199
200 j = i
200 j = i
201 while j < len(blocks) and blocks[j]['type'] == 'field':
201 while j < len(blocks) and blocks[j]['type'] == 'field':
202 m = _fieldre.match(blocks[j]['lines'][0])
202 m = _fieldre.match(blocks[j]['lines'][0])
203 key, rest = m.groups()
203 key, rest = m.groups()
204 blocks[j]['lines'][0] = rest
204 blocks[j]['lines'][0] = rest
205 blocks[j]['key'] = key
205 blocks[j]['key'] = key
206 j += 1
206 j += 1
207
207
208 i = j + 1
208 i = j + 1
209
209
210 return blocks
210 return blocks
211
211
212 def updateoptionlists(blocks):
212 def updateoptionlists(blocks):
213 i = 0
213 i = 0
214 while i < len(blocks):
214 while i < len(blocks):
215 if blocks[i]['type'] != 'option':
215 if blocks[i]['type'] != 'option':
216 i += 1
216 i += 1
217 continue
217 continue
218
218
219 optstrwidth = 0
219 optstrwidth = 0
220 j = i
220 j = i
221 while j < len(blocks) and blocks[j]['type'] == 'option':
221 while j < len(blocks) and blocks[j]['type'] == 'option':
222 m = _optionre.match(blocks[j]['lines'][0])
222 m = _optionre.match(blocks[j]['lines'][0])
223
223
224 shortoption = m.group(2)
224 shortoption = m.group(2)
225 group3 = m.group(3)
225 group3 = m.group(3)
226 longoption = group3[2:].strip()
226 longoption = group3[2:].strip()
227 desc = m.group(6).strip()
227 desc = m.group(6).strip()
228 longoptionarg = m.group(5).strip()
228 longoptionarg = m.group(5).strip()
229 blocks[j]['lines'][0] = desc
229 blocks[j]['lines'][0] = desc
230
230
231 noshortop = ''
231 noshortop = ''
232 if not shortoption:
232 if not shortoption:
233 noshortop = ' '
233 noshortop = ' '
234
234
235 opt = "%s%s" % (shortoption and "-%s " % shortoption or '',
235 opt = "%s%s" % (shortoption and "-%s " % shortoption or '',
236 ("%s--%s %s") % (noshortop, longoption,
236 ("%s--%s %s") % (noshortop, longoption,
237 longoptionarg))
237 longoptionarg))
238 opt = opt.rstrip()
238 opt = opt.rstrip()
239 blocks[j]['optstr'] = opt
239 blocks[j]['optstr'] = opt
240 optstrwidth = max(optstrwidth, encoding.colwidth(opt))
240 optstrwidth = max(optstrwidth, encoding.colwidth(opt))
241 j += 1
241 j += 1
242
242
243 for block in blocks[i:j]:
243 for block in blocks[i:j]:
244 block['optstrwidth'] = optstrwidth
244 block['optstrwidth'] = optstrwidth
245 i = j + 1
245 i = j + 1
246 return blocks
246 return blocks
247
247
248 def prunecontainers(blocks, keep):
248 def prunecontainers(blocks, keep):
249 """Prune unwanted containers.
249 """Prune unwanted containers.
250
250
251 The blocks must have a 'type' field, i.e., they should have been
251 The blocks must have a 'type' field, i.e., they should have been
252 run through findliteralblocks first.
252 run through findliteralblocks first.
253 """
253 """
254 pruned = []
254 pruned = []
255 i = 0
255 i = 0
256 while i + 1 < len(blocks):
256 while i + 1 < len(blocks):
257 # Searching for a block that looks like this:
257 # Searching for a block that looks like this:
258 #
258 #
259 # +-------+---------------------------+
259 # +-------+---------------------------+
260 # | ".. container ::" type |
260 # | ".. container ::" type |
261 # +---+ |
261 # +---+ |
262 # | blocks |
262 # | blocks |
263 # +-------------------------------+
263 # +-------------------------------+
264 if (blocks[i]['type'] == 'paragraph' and
264 if (blocks[i]['type'] == 'paragraph' and
265 blocks[i]['lines'][0].startswith('.. container::')):
265 blocks[i]['lines'][0].startswith('.. container::')):
266 indent = blocks[i]['indent']
266 indent = blocks[i]['indent']
267 adjustment = blocks[i + 1]['indent'] - indent
267 adjustment = blocks[i + 1]['indent'] - indent
268 containertype = blocks[i]['lines'][0][15:]
268 containertype = blocks[i]['lines'][0][15:]
269 prune = True
269 prune = True
270 for c in keep:
270 for c in keep:
271 if c in containertype.split('.'):
271 if c in containertype.split('.'):
272 prune = False
272 prune = False
273 if prune:
273 if prune:
274 pruned.append(containertype)
274 pruned.append(containertype)
275
275
276 # Always delete "..container:: type" block
276 # Always delete "..container:: type" block
277 del blocks[i]
277 del blocks[i]
278 j = i
278 j = i
279 i -= 1
279 i -= 1
280 while j < len(blocks) and blocks[j]['indent'] > indent:
280 while j < len(blocks) and blocks[j]['indent'] > indent:
281 if prune:
281 if prune:
282 del blocks[j]
282 del blocks[j]
283 else:
283 else:
284 blocks[j]['indent'] -= adjustment
284 blocks[j]['indent'] -= adjustment
285 j += 1
285 j += 1
286 i += 1
286 i += 1
287 return blocks, pruned
287 return blocks, pruned
288
288
289 _sectionre = re.compile(r"""^([-=`:.'"~^_*+#])\1+$""")
289 _sectionre = re.compile(r"""^([-=`:.'"~^_*+#])\1+$""")
290
290
291 def findtables(blocks):
291 def findtables(blocks):
292 '''Find simple tables
292 '''Find simple tables
293
293
294 Only simple one-line table elements are supported
294 Only simple one-line table elements are supported
295 '''
295 '''
296
296
297 for block in blocks:
297 for block in blocks:
298 # Searching for a block that looks like this:
298 # Searching for a block that looks like this:
299 #
299 #
300 # === ==== ===
300 # === ==== ===
301 # A B C
301 # A B C
302 # === ==== === <- optional
302 # === ==== === <- optional
303 # 1 2 3
303 # 1 2 3
304 # x y z
304 # x y z
305 # === ==== ===
305 # === ==== ===
306 if (block['type'] == 'paragraph' and
306 if (block['type'] == 'paragraph' and
307 len(block['lines']) > 2 and
307 len(block['lines']) > 2 and
308 _tablere.match(block['lines'][0]) and
308 _tablere.match(block['lines'][0]) and
309 block['lines'][0] == block['lines'][-1]):
309 block['lines'][0] == block['lines'][-1]):
310 block['type'] = 'table'
310 block['type'] = 'table'
311 block['header'] = False
311 block['header'] = False
312 div = block['lines'][0]
312 div = block['lines'][0]
313
313
314 # column markers are ASCII so we can calculate column
314 # column markers are ASCII so we can calculate column
315 # position in bytes
315 # position in bytes
316 columns = [x for x in xrange(len(div))
316 columns = [x for x in xrange(len(div))
317 if div[x] == '=' and (x == 0 or div[x - 1] == ' ')]
317 if div[x] == '=' and (x == 0 or div[x - 1] == ' ')]
318 rows = []
318 rows = []
319 for l in block['lines'][1:-1]:
319 for l in block['lines'][1:-1]:
320 if l == div:
320 if l == div:
321 block['header'] = True
321 block['header'] = True
322 continue
322 continue
323 row = []
323 row = []
324 # we measure columns not in bytes or characters but in
324 # we measure columns not in bytes or characters but in
325 # colwidth which makes things tricky
325 # colwidth which makes things tricky
326 pos = columns[0] # leading whitespace is bytes
326 pos = columns[0] # leading whitespace is bytes
327 for n, start in enumerate(columns):
327 for n, start in enumerate(columns):
328 if n + 1 < len(columns):
328 if n + 1 < len(columns):
329 width = columns[n + 1] - start
329 width = columns[n + 1] - start
330 v = encoding.getcols(l, pos, width) # gather columns
330 v = encoding.getcols(l, pos, width) # gather columns
331 pos += len(v) # calculate byte position of end
331 pos += len(v) # calculate byte position of end
332 row.append(v.strip())
332 row.append(v.strip())
333 else:
333 else:
334 row.append(l[pos:].strip())
334 row.append(l[pos:].strip())
335 rows.append(row)
335 rows.append(row)
336
336
337 block['table'] = rows
337 block['table'] = rows
338
338
339 return blocks
339 return blocks
340
340
341 def findsections(blocks):
341 def findsections(blocks):
342 """Finds sections.
342 """Finds sections.
343
343
344 The blocks must have a 'type' field, i.e., they should have been
344 The blocks must have a 'type' field, i.e., they should have been
345 run through findliteralblocks first.
345 run through findliteralblocks first.
346 """
346 """
347 for block in blocks:
347 for block in blocks:
348 # Searching for a block that looks like this:
348 # Searching for a block that looks like this:
349 #
349 #
350 # +------------------------------+
350 # +------------------------------+
351 # | Section title |
351 # | Section title |
352 # | ------------- |
352 # | ------------- |
353 # +------------------------------+
353 # +------------------------------+
354 if (block['type'] == 'paragraph' and
354 if (block['type'] == 'paragraph' and
355 len(block['lines']) == 2 and
355 len(block['lines']) == 2 and
356 encoding.colwidth(block['lines'][0]) == len(block['lines'][1]) and
356 encoding.colwidth(block['lines'][0]) == len(block['lines'][1]) and
357 _sectionre.match(block['lines'][1])):
357 _sectionre.match(block['lines'][1])):
358 block['underline'] = block['lines'][1][0]
358 block['underline'] = block['lines'][1][0]
359 block['type'] = 'section'
359 block['type'] = 'section'
360 del block['lines'][1]
360 del block['lines'][1]
361 return blocks
361 return blocks
362
362
363 def inlineliterals(blocks):
363 def inlineliterals(blocks):
364 substs = [('``', '"')]
364 substs = [('``', '"')]
365 for b in blocks:
365 for b in blocks:
366 if b['type'] in ('paragraph', 'section'):
366 if b['type'] in ('paragraph', 'section'):
367 b['lines'] = [replace(l, substs) for l in b['lines']]
367 b['lines'] = [replace(l, substs) for l in b['lines']]
368 return blocks
368 return blocks
369
369
370 def hgrole(blocks):
370 def hgrole(blocks):
371 substs = [(':hg:`', '"hg '), ('`', '"')]
371 substs = [(':hg:`', '"hg '), ('`', '"')]
372 for b in blocks:
372 for b in blocks:
373 if b['type'] in ('paragraph', 'section'):
373 if b['type'] in ('paragraph', 'section'):
374 # Turn :hg:`command` into "hg command". This also works
374 # Turn :hg:`command` into "hg command". This also works
375 # when there is a line break in the command and relies on
375 # when there is a line break in the command and relies on
376 # the fact that we have no stray back-quotes in the input
376 # the fact that we have no stray back-quotes in the input
377 # (run the blocks through inlineliterals first).
377 # (run the blocks through inlineliterals first).
378 b['lines'] = [replace(l, substs) for l in b['lines']]
378 b['lines'] = [replace(l, substs) for l in b['lines']]
379 return blocks
379 return blocks
380
380
381 def addmargins(blocks):
381 def addmargins(blocks):
382 """Adds empty blocks for vertical spacing.
382 """Adds empty blocks for vertical spacing.
383
383
384 This groups bullets, options, and definitions together with no vertical
384 This groups bullets, options, and definitions together with no vertical
385 space between them, and adds an empty block between all other blocks.
385 space between them, and adds an empty block between all other blocks.
386 """
386 """
387 i = 1
387 i = 1
388 while i < len(blocks):
388 while i < len(blocks):
389 if (blocks[i]['type'] == blocks[i - 1]['type'] and
389 if (blocks[i]['type'] == blocks[i - 1]['type'] and
390 blocks[i]['type'] in ('bullet', 'option', 'field')):
390 blocks[i]['type'] in ('bullet', 'option', 'field')):
391 i += 1
391 i += 1
392 elif not blocks[i - 1]['lines']:
392 elif not blocks[i - 1]['lines']:
393 # no lines in previous block, do not separate
393 # no lines in previous block, do not separate
394 i += 1
394 i += 1
395 else:
395 else:
396 blocks.insert(i, {'lines': [''], 'indent': 0, 'type': 'margin'})
396 blocks.insert(i, {'lines': [''], 'indent': 0, 'type': 'margin'})
397 i += 2
397 i += 2
398 return blocks
398 return blocks
399
399
400 def prunecomments(blocks):
400 def prunecomments(blocks):
401 """Remove comments."""
401 """Remove comments."""
402 i = 0
402 i = 0
403 while i < len(blocks):
403 while i < len(blocks):
404 b = blocks[i]
404 b = blocks[i]
405 if b['type'] == 'paragraph' and (b['lines'][0].startswith('.. ') or
405 if b['type'] == 'paragraph' and (b['lines'][0].startswith('.. ') or
406 b['lines'] == ['..']):
406 b['lines'] == ['..']):
407 del blocks[i]
407 del blocks[i]
408 if i < len(blocks) and blocks[i]['type'] == 'margin':
408 if i < len(blocks) and blocks[i]['type'] == 'margin':
409 del blocks[i]
409 del blocks[i]
410 else:
410 else:
411 i += 1
411 i += 1
412 return blocks
412 return blocks
413
413
414 _admonitionre = re.compile(r"\.\. (admonition|attention|caution|danger|"
414 _admonitionre = re.compile(r"\.\. (admonition|attention|caution|danger|"
415 r"error|hint|important|note|tip|warning)::",
415 r"error|hint|important|note|tip|warning)::",
416 flags=re.IGNORECASE)
416 flags=re.IGNORECASE)
417
417
418 def findadmonitions(blocks):
418 def findadmonitions(blocks):
419 """
419 """
420 Makes the type of the block an admonition block if
420 Makes the type of the block an admonition block if
421 the first line is an admonition directive
421 the first line is an admonition directive
422 """
422 """
423 i = 0
423 i = 0
424 while i < len(blocks):
424 while i < len(blocks):
425 m = _admonitionre.match(blocks[i]['lines'][0])
425 m = _admonitionre.match(blocks[i]['lines'][0])
426 if m:
426 if m:
427 blocks[i]['type'] = 'admonition'
427 blocks[i]['type'] = 'admonition'
428 admonitiontitle = blocks[i]['lines'][0][3:m.end() - 2].lower()
428 admonitiontitle = blocks[i]['lines'][0][3:m.end() - 2].lower()
429
429
430 firstline = blocks[i]['lines'][0][m.end() + 1:]
430 firstline = blocks[i]['lines'][0][m.end() + 1:]
431 if firstline:
431 if firstline:
432 blocks[i]['lines'].insert(1, ' ' + firstline)
432 blocks[i]['lines'].insert(1, ' ' + firstline)
433
433
434 blocks[i]['admonitiontitle'] = admonitiontitle
434 blocks[i]['admonitiontitle'] = admonitiontitle
435 del blocks[i]['lines'][0]
435 del blocks[i]['lines'][0]
436 i = i + 1
436 i = i + 1
437 return blocks
437 return blocks
438
438
439 _admonitiontitles = {'attention': _('Attention:'),
439 _admonitiontitles = {'attention': _('Attention:'),
440 'caution': _('Caution:'),
440 'caution': _('Caution:'),
441 'danger': _('!Danger!') ,
441 'danger': _('!Danger!') ,
442 'error': _('Error:'),
442 'error': _('Error:'),
443 'hint': _('Hint:'),
443 'hint': _('Hint:'),
444 'important': _('Important:'),
444 'important': _('Important:'),
445 'note': _('Note:'),
445 'note': _('Note:'),
446 'tip': _('Tip:'),
446 'tip': _('Tip:'),
447 'warning': _('Warning!')}
447 'warning': _('Warning!')}
448
448
449 def formatoption(block, width):
449 def formatoption(block, width):
450 desc = ' '.join(map(str.strip, block['lines']))
450 desc = ' '.join(map(str.strip, block['lines']))
451 colwidth = encoding.colwidth(block['optstr'])
451 colwidth = encoding.colwidth(block['optstr'])
452 usablewidth = width - 1
452 usablewidth = width - 1
453 hanging = block['optstrwidth']
453 hanging = block['optstrwidth']
454 initindent = '%s%s ' % (block['optstr'], ' ' * ((hanging - colwidth)))
454 initindent = '%s%s ' % (block['optstr'], ' ' * ((hanging - colwidth)))
455 hangindent = ' ' * (encoding.colwidth(initindent) + 1)
455 hangindent = ' ' * (encoding.colwidth(initindent) + 1)
456 return ' %s\n' % (util.wrap(desc, usablewidth,
456 return ' %s\n' % (util.wrap(desc, usablewidth,
457 initindent=initindent,
457 initindent=initindent,
458 hangindent=hangindent))
458 hangindent=hangindent))
459
459
460 def formatblock(block, width):
460 def formatblock(block, width):
461 """Format a block according to width."""
461 """Format a block according to width."""
462 if width <= 0:
462 if width <= 0:
463 width = 78
463 width = 78
464 indent = ' ' * block['indent']
464 indent = ' ' * block['indent']
465 if block['type'] == 'admonition':
465 if block['type'] == 'admonition':
466 admonition = _admonitiontitles[block['admonitiontitle']]
466 admonition = _admonitiontitles[block['admonitiontitle']]
467 if not block['lines']:
467 if not block['lines']:
468 return indent + admonition + '\n'
468 return indent + admonition + '\n'
469 hang = len(block['lines'][-1]) - len(block['lines'][-1].lstrip())
469 hang = len(block['lines'][-1]) - len(block['lines'][-1].lstrip())
470
470
471 defindent = indent + hang * ' '
471 defindent = indent + hang * ' '
472 text = ' '.join(map(str.strip, block['lines']))
472 text = ' '.join(map(str.strip, block['lines']))
473 return '%s\n%s\n' % (indent + admonition,
473 return '%s\n%s\n' % (indent + admonition,
474 util.wrap(text, width=width,
474 util.wrap(text, width=width,
475 initindent=defindent,
475 initindent=defindent,
476 hangindent=defindent))
476 hangindent=defindent))
477 if block['type'] == 'margin':
477 if block['type'] == 'margin':
478 return '\n'
478 return '\n'
479 if block['type'] == 'literal':
479 if block['type'] == 'literal':
480 indent += ' '
480 indent += ' '
481 return indent + ('\n' + indent).join(block['lines']) + '\n'
481 return indent + ('\n' + indent).join(block['lines']) + '\n'
482 if block['type'] == 'section':
482 if block['type'] == 'section':
483 underline = encoding.colwidth(block['lines'][0]) * block['underline']
483 underline = encoding.colwidth(block['lines'][0]) * block['underline']
484 return "%s%s\n%s%s\n" % (indent, block['lines'][0],indent, underline)
484 return "%s%s\n%s%s\n" % (indent, block['lines'][0],indent, underline)
485 if block['type'] == 'table':
485 if block['type'] == 'table':
486 table = block['table']
486 table = block['table']
487 # compute column widths
487 # compute column widths
488 widths = [max([encoding.colwidth(e) for e in c]) for c in zip(*table)]
488 widths = [max([encoding.colwidth(e) for e in c]) for c in zip(*table)]
489 text = ''
489 text = ''
490 span = sum(widths) + len(widths) - 1
490 span = sum(widths) + len(widths) - 1
491 indent = ' ' * block['indent']
491 indent = ' ' * block['indent']
492 hang = ' ' * (len(indent) + span - widths[-1])
492 hang = ' ' * (len(indent) + span - widths[-1])
493
493
494 for row in table:
494 for row in table:
495 l = []
495 l = []
496 for w, v in zip(widths, row):
496 for w, v in zip(widths, row):
497 pad = ' ' * (w - encoding.colwidth(v))
497 pad = ' ' * (w - encoding.colwidth(v))
498 l.append(v + pad)
498 l.append(v + pad)
499 l = ' '.join(l)
499 l = ' '.join(l)
500 l = util.wrap(l, width=width, initindent=indent, hangindent=hang)
500 l = util.wrap(l, width=width, initindent=indent, hangindent=hang)
501 if not text and block['header']:
501 if not text and block['header']:
502 text = l + '\n' + indent + '-' * (min(width, span)) + '\n'
502 text = l + '\n' + indent + '-' * (min(width, span)) + '\n'
503 else:
503 else:
504 text += l + "\n"
504 text += l + "\n"
505 return text
505 return text
506 if block['type'] == 'definition':
506 if block['type'] == 'definition':
507 term = indent + block['lines'][0]
507 term = indent + block['lines'][0]
508 hang = len(block['lines'][-1]) - len(block['lines'][-1].lstrip())
508 hang = len(block['lines'][-1]) - len(block['lines'][-1].lstrip())
509 defindent = indent + hang * ' '
509 defindent = indent + hang * ' '
510 text = ' '.join(map(str.strip, block['lines'][1:]))
510 text = ' '.join(map(str.strip, block['lines'][1:]))
511 return '%s\n%s\n' % (term, util.wrap(text, width=width,
511 return '%s\n%s\n' % (term, util.wrap(text, width=width,
512 initindent=defindent,
512 initindent=defindent,
513 hangindent=defindent))
513 hangindent=defindent))
514 subindent = indent
514 subindent = indent
515 if block['type'] == 'bullet':
515 if block['type'] == 'bullet':
516 if block['lines'][0].startswith('| '):
516 if block['lines'][0].startswith('| '):
517 # Remove bullet for line blocks and add no extra
517 # Remove bullet for line blocks and add no extra
518 # indentation.
518 # indentation.
519 block['lines'][0] = block['lines'][0][2:]
519 block['lines'][0] = block['lines'][0][2:]
520 else:
520 else:
521 m = _bulletre.match(block['lines'][0])
521 m = _bulletre.match(block['lines'][0])
522 subindent = indent + m.end() * ' '
522 subindent = indent + m.end() * ' '
523 elif block['type'] == 'field':
523 elif block['type'] == 'field':
524 key = block['key']
524 key = block['key']
525 subindent = indent + _fieldwidth * ' '
525 subindent = indent + _fieldwidth * ' '
526 if len(key) + 2 > _fieldwidth:
526 if len(key) + 2 > _fieldwidth:
527 # key too large, use full line width
527 # key too large, use full line width
528 key = key.ljust(width)
528 key = key.ljust(width)
529 else:
529 else:
530 # key fits within field width
530 # key fits within field width
531 key = key.ljust(_fieldwidth)
531 key = key.ljust(_fieldwidth)
532 block['lines'][0] = key + block['lines'][0]
532 block['lines'][0] = key + block['lines'][0]
533 elif block['type'] == 'option':
533 elif block['type'] == 'option':
534 return formatoption(block, width)
534 return formatoption(block, width)
535
535
536 text = ' '.join(map(str.strip, block['lines']))
536 text = ' '.join(map(str.strip, block['lines']))
537 return util.wrap(text, width=width,
537 return util.wrap(text, width=width,
538 initindent=indent,
538 initindent=indent,
539 hangindent=subindent) + '\n'
539 hangindent=subindent) + '\n'
540
540
541 def formathtml(blocks):
541 def formathtml(blocks):
542 """Format RST blocks as HTML"""
542 """Format RST blocks as HTML"""
543
543
544 out = []
544 out = []
545 headernest = ''
545 headernest = ''
546 listnest = []
546 listnest = []
547
547
548 def escape(s):
548 def escape(s):
549 return cgi.escape(s, True)
549 return cgi.escape(s, True)
550
550
551 def openlist(start, level):
551 def openlist(start, level):
552 if not listnest or listnest[-1][0] != start:
552 if not listnest or listnest[-1][0] != start:
553 listnest.append((start, level))
553 listnest.append((start, level))
554 out.append('<%s>\n' % start)
554 out.append('<%s>\n' % start)
555
555
556 blocks = [b for b in blocks if b['type'] != 'margin']
556 blocks = [b for b in blocks if b['type'] != 'margin']
557
557
558 for pos, b in enumerate(blocks):
558 for pos, b in enumerate(blocks):
559 btype = b['type']
559 btype = b['type']
560 level = b['indent']
560 level = b['indent']
561 lines = b['lines']
561 lines = b['lines']
562
562
563 if btype == 'admonition':
563 if btype == 'admonition':
564 admonition = escape(_admonitiontitles[b['admonitiontitle']])
564 admonition = escape(_admonitiontitles[b['admonitiontitle']])
565 text = escape(' '.join(map(str.strip, lines)))
565 text = escape(' '.join(map(str.strip, lines)))
566 out.append('<p>\n<b>%s</b> %s\n</p>\n' % (admonition, text))
566 out.append('<p>\n<b>%s</b> %s\n</p>\n' % (admonition, text))
567 elif btype == 'paragraph':
567 elif btype == 'paragraph':
568 out.append('<p>\n%s\n</p>\n' % escape('\n'.join(lines)))
568 out.append('<p>\n%s\n</p>\n' % escape('\n'.join(lines)))
569 elif btype == 'margin':
569 elif btype == 'margin':
570 pass
570 pass
571 elif btype == 'literal':
571 elif btype == 'literal':
572 out.append('<pre>\n%s\n</pre>\n' % escape('\n'.join(lines)))
572 out.append('<pre>\n%s\n</pre>\n' % escape('\n'.join(lines)))
573 elif btype == 'section':
573 elif btype == 'section':
574 i = b['underline']
574 i = b['underline']
575 if i not in headernest:
575 if i not in headernest:
576 headernest += i
576 headernest += i
577 level = headernest.index(i) + 1
577 level = headernest.index(i) + 1
578 out.append('<h%d>%s</h%d>\n' % (level, escape(lines[0]), level))
578 out.append('<h%d>%s</h%d>\n' % (level, escape(lines[0]), level))
579 elif btype == 'table':
579 elif btype == 'table':
580 table = b['table']
580 table = b['table']
581 out.append('<table>\n')
581 out.append('<table>\n')
582 for row in table:
582 for row in table:
583 out.append('<tr>')
583 out.append('<tr>')
584 for v in row:
584 for v in row:
585 out.append('<td>')
585 out.append('<td>')
586 out.append(escape(v))
586 out.append(escape(v))
587 out.append('</td>')
587 out.append('</td>')
588 out.append('\n')
588 out.append('\n')
589 out.pop()
589 out.pop()
590 out.append('</tr>\n')
590 out.append('</tr>\n')
591 out.append('</table>\n')
591 out.append('</table>\n')
592 elif btype == 'definition':
592 elif btype == 'definition':
593 openlist('dl', level)
593 openlist('dl', level)
594 term = escape(lines[0])
594 term = escape(lines[0])
595 text = escape(' '.join(map(str.strip, lines[1:])))
595 text = escape(' '.join(map(str.strip, lines[1:])))
596 out.append(' <dt>%s\n <dd>%s\n' % (term, text))
596 out.append(' <dt>%s\n <dd>%s\n' % (term, text))
597 elif btype == 'bullet':
597 elif btype == 'bullet':
598 bullet, head = lines[0].split(' ', 1)
598 bullet, head = lines[0].split(' ', 1)
599 if bullet == '-':
599 if bullet == '-':
600 openlist('ul', level)
600 openlist('ul', level)
601 else:
601 else:
602 openlist('ol', level)
602 openlist('ol', level)
603 out.append(' <li> %s\n' % escape(' '.join([head] + lines[1:])))
603 out.append(' <li> %s\n' % escape(' '.join([head] + lines[1:])))
604 elif btype == 'field':
604 elif btype == 'field':
605 openlist('dl', level)
605 openlist('dl', level)
606 key = escape(b['key'])
606 key = escape(b['key'])
607 text = escape(' '.join(map(str.strip, lines)))
607 text = escape(' '.join(map(str.strip, lines)))
608 out.append(' <dt>%s\n <dd>%s\n' % (key, text))
608 out.append(' <dt>%s\n <dd>%s\n' % (key, text))
609 elif btype == 'option':
609 elif btype == 'option':
610 openlist('dl', level)
610 openlist('dl', level)
611 opt = escape(b['optstr'])
611 opt = escape(b['optstr'])
612 desc = escape(' '.join(map(str.strip, lines)))
612 desc = escape(' '.join(map(str.strip, lines)))
613 out.append(' <dt>%s\n <dd>%s\n' % (opt, desc))
613 out.append(' <dt>%s\n <dd>%s\n' % (opt, desc))
614
614
615 # close lists if indent level of next block is lower
615 # close lists if indent level of next block is lower
616 if listnest:
616 if listnest:
617 start, level = listnest[-1]
617 start, level = listnest[-1]
618 if pos == len(blocks) - 1:
618 if pos == len(blocks) - 1:
619 out.append('</%s>\n' % start)
619 out.append('</%s>\n' % start)
620 listnest.pop()
620 listnest.pop()
621 else:
621 else:
622 nb = blocks[pos + 1]
622 nb = blocks[pos + 1]
623 ni = nb['indent']
623 ni = nb['indent']
624 if (ni < level or
624 if (ni < level or
625 (ni == level and
625 (ni == level and
626 nb['type'] not in 'definition bullet field option')):
626 nb['type'] not in 'definition bullet field option')):
627 out.append('</%s>\n' % start)
627 out.append('</%s>\n' % start)
628 listnest.pop()
628 listnest.pop()
629
629
630 return ''.join(out)
630 return ''.join(out)
631
631
632 def parse(text, indent=0, keep=None):
632 def parse(text, indent=0, keep=None):
633 """Parse text into a list of blocks"""
633 """Parse text into a list of blocks"""
634 pruned = []
634 pruned = []
635 blocks = findblocks(text)
635 blocks = findblocks(text)
636 for b in blocks:
636 for b in blocks:
637 b['indent'] += indent
637 b['indent'] += indent
638 blocks = findliteralblocks(blocks)
638 blocks = findliteralblocks(blocks)
639 blocks = findtables(blocks)
639 blocks = findtables(blocks)
640 blocks, pruned = prunecontainers(blocks, keep or [])
640 blocks, pruned = prunecontainers(blocks, keep or [])
641 blocks = findsections(blocks)
641 blocks = findsections(blocks)
642 blocks = inlineliterals(blocks)
642 blocks = inlineliterals(blocks)
643 blocks = hgrole(blocks)
643 blocks = hgrole(blocks)
644 blocks = splitparagraphs(blocks)
644 blocks = splitparagraphs(blocks)
645 blocks = updatefieldlists(blocks)
645 blocks = updatefieldlists(blocks)
646 blocks = updateoptionlists(blocks)
646 blocks = updateoptionlists(blocks)
647 blocks = findadmonitions(blocks)
647 blocks = findadmonitions(blocks)
648 blocks = addmargins(blocks)
648 blocks = addmargins(blocks)
649 blocks = prunecomments(blocks)
649 blocks = prunecomments(blocks)
650 return blocks, pruned
650 return blocks, pruned
651
651
652 def formatblocks(blocks, width):
652 def formatblocks(blocks, width):
653 text = ''.join(formatblock(b, width) for b in blocks)
653 text = ''.join(formatblock(b, width) for b in blocks)
654 return text
654 return text
655
655
656 def format(text, width=80, indent=0, keep=None, style='plain', section=None):
656 def format(text, width=80, indent=0, keep=None, style='plain', section=None):
657 """Parse and format the text according to width."""
657 """Parse and format the text according to width."""
658 blocks, pruned = parse(text, indent, keep or [])
658 blocks, pruned = parse(text, indent, keep or [])
659 parents = []
659 parents = []
660 if section:
660 if section:
661 sections = getsections(blocks)
661 sections = getsections(blocks)
662 blocks = []
662 blocks = []
663 i = 0
663 i = 0
664 lastparents = []
665 synthetic = []
666 collapse = True
664 while i < len(sections):
667 while i < len(sections):
665 name, nest, b = sections[i]
668 name, nest, b = sections[i]
666 del parents[nest:]
669 del parents[nest:]
667 parents.append(name)
670 parents.append(i)
668 if name == section:
671 if name == section:
669 b[0]['path'] = parents[3:]
672 if lastparents != parents:
673 llen = len(lastparents)
674 plen = len(parents)
675 if llen and llen != plen:
676 collapse = False
677 s = []
678 for j in xrange(3, plen - 1):
679 parent = parents[j]
680 if (j >= llen or
681 lastparents[j] != parent):
682 s.append(len(blocks))
683 sec = sections[parent][2]
684 blocks.append(sec[0])
685 blocks.append(sec[-1])
686 if s:
687 synthetic.append(s)
688
689 lastparents = parents[:]
670 blocks.extend(b)
690 blocks.extend(b)
671
691
672 ## Also show all subnested sections
692 ## Also show all subnested sections
673 while i + 1 < len(sections) and sections[i + 1][1] > nest:
693 while i + 1 < len(sections) and sections[i + 1][1] > nest:
674 i += 1
694 i += 1
675 blocks.extend(sections[i][2])
695 blocks.extend(sections[i][2])
676 i += 1
696 i += 1
697 if collapse:
698 synthetic.reverse()
699 for s in synthetic:
700 path = [blocks[i]['lines'][0] for i in s]
701 real = s[-1] + 2
702 realline = blocks[real]['lines']
703 realline[0] = ('"%s"' %
704 '.'.join(path + [realline[0]]).replace('"', ''))
705 del blocks[s[0]:real]
677
706
678 if style == 'html':
707 if style == 'html':
679 text = formathtml(blocks)
708 text = formathtml(blocks)
680 else:
709 else:
681 if len([b for b in blocks if b['type'] == 'definition']) > 1:
682 i = 0
683 while i < len(blocks):
684 if blocks[i]['type'] == 'definition':
685 if 'path' in blocks[i]:
686 blocks[i]['lines'][0] = '"%s"' % '.'.join(
687 blocks[i]['path'])
688 i += 1
689 text = ''.join(formatblock(b, width) for b in blocks)
710 text = ''.join(formatblock(b, width) for b in blocks)
690 if keep is None:
711 if keep is None:
691 return text
712 return text
692 else:
713 else:
693 return text, pruned
714 return text, pruned
694
715
695 def getsections(blocks):
716 def getsections(blocks):
696 '''return a list of (section name, nesting level, blocks) tuples'''
717 '''return a list of (section name, nesting level, blocks) tuples'''
697 nest = ""
718 nest = ""
698 level = 0
719 level = 0
699 secs = []
720 secs = []
700
721
701 def getname(b):
722 def getname(b):
702 if b['type'] == 'field':
723 if b['type'] == 'field':
703 x = b['key']
724 x = b['key']
704 else:
725 else:
705 x = b['lines'][0]
726 x = b['lines'][0]
706 x = x.lower().strip('"')
727 x = x.lower().strip('"')
707 if '(' in x:
728 if '(' in x:
708 x = x.split('(')[0]
729 x = x.split('(')[0]
709 return x
730 return x
710
731
711 for b in blocks:
732 for b in blocks:
712 if b['type'] == 'section':
733 if b['type'] == 'section':
713 i = b['underline']
734 i = b['underline']
714 if i not in nest:
735 if i not in nest:
715 nest += i
736 nest += i
716 level = nest.index(i) + 1
737 level = nest.index(i) + 1
717 nest = nest[:level]
738 nest = nest[:level]
718 secs.append((getname(b), level, [b]))
739 secs.append((getname(b), level, [b]))
719 elif b['type'] in ('definition', 'field'):
740 elif b['type'] in ('definition', 'field'):
720 i = ' '
741 i = ' '
721 if i not in nest:
742 if i not in nest:
722 nest += i
743 nest += i
723 level = nest.index(i) + 1
744 level = nest.index(i) + 1
724 nest = nest[:level]
745 nest = nest[:level]
725 for i in range(1, len(secs) + 1):
746 for i in range(1, len(secs) + 1):
726 sec = secs[-i]
747 sec = secs[-i]
727 if sec[1] < level:
748 if sec[1] < level:
728 break
749 break
729 siblings = [a for a in sec[2] if a['type'] == 'definition']
750 siblings = [a for a in sec[2] if a['type'] == 'definition']
730 if siblings:
751 if siblings:
731 siblingindent = siblings[-1]['indent']
752 siblingindent = siblings[-1]['indent']
732 indent = b['indent']
753 indent = b['indent']
733 if siblingindent < indent:
754 if siblingindent < indent:
734 level += 1
755 level += 1
735 break
756 break
736 elif siblingindent == indent:
757 elif siblingindent == indent:
737 level = sec[1]
758 level = sec[1]
738 break
759 break
739 secs.append((getname(b), level, [b]))
760 secs.append((getname(b), level, [b]))
740 else:
761 else:
741 if not secs:
762 if not secs:
742 # add an initial empty section
763 # add an initial empty section
743 secs = [('', 0, [])]
764 secs = [('', 0, [])]
744 if b['type'] != 'margin':
765 if b['type'] != 'margin':
745 pointer = 1
766 pointer = 1
746 bindent = b['indent']
767 bindent = b['indent']
747 while pointer < len(secs):
768 while pointer < len(secs):
748 section = secs[-pointer][2][0]
769 section = secs[-pointer][2][0]
749 if section['type'] != 'margin':
770 if section['type'] != 'margin':
750 sindent = section['indent']
771 sindent = section['indent']
751 if len(section['lines']) > 1:
772 if len(section['lines']) > 1:
752 sindent += len(section['lines'][1]) - \
773 sindent += len(section['lines'][1]) - \
753 len(section['lines'][1].lstrip(' '))
774 len(section['lines'][1].lstrip(' '))
754 if bindent >= sindent:
775 if bindent >= sindent:
755 break
776 break
756 pointer += 1
777 pointer += 1
757 if pointer > 1:
778 if pointer > 1:
758 blevel = secs[-pointer][1]
779 blevel = secs[-pointer][1]
759 if section['type'] != b['type']:
780 if section['type'] != b['type']:
760 blevel += 1
781 blevel += 1
761 secs.append(('', blevel, []))
782 secs.append(('', blevel, []))
762 secs[-1][2].append(b)
783 secs[-1][2].append(b)
763 return secs
784 return secs
764
785
765 def decorateblocks(blocks, width):
786 def decorateblocks(blocks, width):
766 '''generate a list of (section name, line text) pairs for search'''
787 '''generate a list of (section name, line text) pairs for search'''
767 lines = []
788 lines = []
768 for s in getsections(blocks):
789 for s in getsections(blocks):
769 section = s[0]
790 section = s[0]
770 text = formatblocks(s[2], width)
791 text = formatblocks(s[2], width)
771 lines.append([(section, l) for l in text.splitlines(True)])
792 lines.append([(section, l) for l in text.splitlines(True)])
772 return lines
793 return lines
773
794
774 def maketable(data, indent=0, header=False):
795 def maketable(data, indent=0, header=False):
775 '''Generate an RST table for the given table data as a list of lines'''
796 '''Generate an RST table for the given table data as a list of lines'''
776
797
777 widths = [max(encoding.colwidth(e) for e in c) for c in zip(*data)]
798 widths = [max(encoding.colwidth(e) for e in c) for c in zip(*data)]
778 indent = ' ' * indent
799 indent = ' ' * indent
779 div = indent + ' '.join('=' * w for w in widths) + '\n'
800 div = indent + ' '.join('=' * w for w in widths) + '\n'
780
801
781 out = [div]
802 out = [div]
782 for row in data:
803 for row in data:
783 l = []
804 l = []
784 for w, v in zip(widths, row):
805 for w, v in zip(widths, row):
785 if '\n' in v:
806 if '\n' in v:
786 # only remove line breaks and indentation, long lines are
807 # only remove line breaks and indentation, long lines are
787 # handled by the next tool
808 # handled by the next tool
788 v = ' '.join(e.lstrip() for e in v.split('\n'))
809 v = ' '.join(e.lstrip() for e in v.split('\n'))
789 pad = ' ' * (w - encoding.colwidth(v))
810 pad = ' ' * (w - encoding.colwidth(v))
790 l.append(v + pad)
811 l.append(v + pad)
791 out.append(indent + ' '.join(l) + "\n")
812 out.append(indent + ' '.join(l) + "\n")
792 if header and len(data) > 1:
813 if header and len(data) > 1:
793 out.insert(2, div)
814 out.insert(2, div)
794 out.append(div)
815 out.append(div)
795 return out
816 return out
@@ -1,2952 +1,2977 b''
1 Short help:
1 Short help:
2
2
3 $ hg
3 $ hg
4 Mercurial Distributed SCM
4 Mercurial Distributed SCM
5
5
6 basic commands:
6 basic commands:
7
7
8 add add the specified files on the next commit
8 add add the specified files on the next commit
9 annotate show changeset information by line for each file
9 annotate show changeset information by line for each file
10 clone make a copy of an existing repository
10 clone make a copy of an existing repository
11 commit commit the specified files or all outstanding changes
11 commit commit the specified files or all outstanding changes
12 diff diff repository (or selected files)
12 diff diff repository (or selected files)
13 export dump the header and diffs for one or more changesets
13 export dump the header and diffs for one or more changesets
14 forget forget the specified files on the next commit
14 forget forget the specified files on the next commit
15 init create a new repository in the given directory
15 init create a new repository in the given directory
16 log show revision history of entire repository or files
16 log show revision history of entire repository or files
17 merge merge another revision into working directory
17 merge merge another revision into working directory
18 pull pull changes from the specified source
18 pull pull changes from the specified source
19 push push changes to the specified destination
19 push push changes to the specified destination
20 remove remove the specified files on the next commit
20 remove remove the specified files on the next commit
21 serve start stand-alone webserver
21 serve start stand-alone webserver
22 status show changed files in the working directory
22 status show changed files in the working directory
23 summary summarize working directory state
23 summary summarize working directory state
24 update update working directory (or switch revisions)
24 update update working directory (or switch revisions)
25
25
26 (use "hg help" for the full list of commands or "hg -v" for details)
26 (use "hg help" for the full list of commands or "hg -v" for details)
27
27
28 $ hg -q
28 $ hg -q
29 add add the specified files on the next commit
29 add add the specified files on the next commit
30 annotate show changeset information by line for each file
30 annotate show changeset information by line for each file
31 clone make a copy of an existing repository
31 clone make a copy of an existing repository
32 commit commit the specified files or all outstanding changes
32 commit commit the specified files or all outstanding changes
33 diff diff repository (or selected files)
33 diff diff repository (or selected files)
34 export dump the header and diffs for one or more changesets
34 export dump the header and diffs for one or more changesets
35 forget forget the specified files on the next commit
35 forget forget the specified files on the next commit
36 init create a new repository in the given directory
36 init create a new repository in the given directory
37 log show revision history of entire repository or files
37 log show revision history of entire repository or files
38 merge merge another revision into working directory
38 merge merge another revision into working directory
39 pull pull changes from the specified source
39 pull pull changes from the specified source
40 push push changes to the specified destination
40 push push changes to the specified destination
41 remove remove the specified files on the next commit
41 remove remove the specified files on the next commit
42 serve start stand-alone webserver
42 serve start stand-alone webserver
43 status show changed files in the working directory
43 status show changed files in the working directory
44 summary summarize working directory state
44 summary summarize working directory state
45 update update working directory (or switch revisions)
45 update update working directory (or switch revisions)
46
46
47 $ hg help
47 $ hg help
48 Mercurial Distributed SCM
48 Mercurial Distributed SCM
49
49
50 list of commands:
50 list of commands:
51
51
52 add add the specified files on the next commit
52 add add the specified files on the next commit
53 addremove add all new files, delete all missing files
53 addremove add all new files, delete all missing files
54 annotate show changeset information by line for each file
54 annotate show changeset information by line for each file
55 archive create an unversioned archive of a repository revision
55 archive create an unversioned archive of a repository revision
56 backout reverse effect of earlier changeset
56 backout reverse effect of earlier changeset
57 bisect subdivision search of changesets
57 bisect subdivision search of changesets
58 bookmarks create a new bookmark or list existing bookmarks
58 bookmarks create a new bookmark or list existing bookmarks
59 branch set or show the current branch name
59 branch set or show the current branch name
60 branches list repository named branches
60 branches list repository named branches
61 bundle create a changegroup file
61 bundle create a changegroup file
62 cat output the current or given revision of files
62 cat output the current or given revision of files
63 clone make a copy of an existing repository
63 clone make a copy of an existing repository
64 commit commit the specified files or all outstanding changes
64 commit commit the specified files or all outstanding changes
65 config show combined config settings from all hgrc files
65 config show combined config settings from all hgrc files
66 copy mark files as copied for the next commit
66 copy mark files as copied for the next commit
67 diff diff repository (or selected files)
67 diff diff repository (or selected files)
68 export dump the header and diffs for one or more changesets
68 export dump the header and diffs for one or more changesets
69 files list tracked files
69 files list tracked files
70 forget forget the specified files on the next commit
70 forget forget the specified files on the next commit
71 graft copy changes from other branches onto the current branch
71 graft copy changes from other branches onto the current branch
72 grep search for a pattern in specified files and revisions
72 grep search for a pattern in specified files and revisions
73 heads show branch heads
73 heads show branch heads
74 help show help for a given topic or a help overview
74 help show help for a given topic or a help overview
75 identify identify the working directory or specified revision
75 identify identify the working directory or specified revision
76 import import an ordered set of patches
76 import import an ordered set of patches
77 incoming show new changesets found in source
77 incoming show new changesets found in source
78 init create a new repository in the given directory
78 init create a new repository in the given directory
79 log show revision history of entire repository or files
79 log show revision history of entire repository or files
80 manifest output the current or given revision of the project manifest
80 manifest output the current or given revision of the project manifest
81 merge merge another revision into working directory
81 merge merge another revision into working directory
82 outgoing show changesets not found in the destination
82 outgoing show changesets not found in the destination
83 paths show aliases for remote repositories
83 paths show aliases for remote repositories
84 phase set or show the current phase name
84 phase set or show the current phase name
85 pull pull changes from the specified source
85 pull pull changes from the specified source
86 push push changes to the specified destination
86 push push changes to the specified destination
87 recover roll back an interrupted transaction
87 recover roll back an interrupted transaction
88 remove remove the specified files on the next commit
88 remove remove the specified files on the next commit
89 rename rename files; equivalent of copy + remove
89 rename rename files; equivalent of copy + remove
90 resolve redo merges or set/view the merge status of files
90 resolve redo merges or set/view the merge status of files
91 revert restore files to their checkout state
91 revert restore files to their checkout state
92 root print the root (top) of the current working directory
92 root print the root (top) of the current working directory
93 serve start stand-alone webserver
93 serve start stand-alone webserver
94 status show changed files in the working directory
94 status show changed files in the working directory
95 summary summarize working directory state
95 summary summarize working directory state
96 tag add one or more tags for the current or given revision
96 tag add one or more tags for the current or given revision
97 tags list repository tags
97 tags list repository tags
98 unbundle apply one or more changegroup files
98 unbundle apply one or more changegroup files
99 update update working directory (or switch revisions)
99 update update working directory (or switch revisions)
100 verify verify the integrity of the repository
100 verify verify the integrity of the repository
101 version output version and copyright information
101 version output version and copyright information
102
102
103 additional help topics:
103 additional help topics:
104
104
105 config Configuration Files
105 config Configuration Files
106 dates Date Formats
106 dates Date Formats
107 diffs Diff Formats
107 diffs Diff Formats
108 environment Environment Variables
108 environment Environment Variables
109 extensions Using Additional Features
109 extensions Using Additional Features
110 filesets Specifying File Sets
110 filesets Specifying File Sets
111 glossary Glossary
111 glossary Glossary
112 hgignore Syntax for Mercurial Ignore Files
112 hgignore Syntax for Mercurial Ignore Files
113 hgweb Configuring hgweb
113 hgweb Configuring hgweb
114 internals Technical implementation topics
114 internals Technical implementation topics
115 merge-tools Merge Tools
115 merge-tools Merge Tools
116 multirevs Specifying Multiple Revisions
116 multirevs Specifying Multiple Revisions
117 patterns File Name Patterns
117 patterns File Name Patterns
118 phases Working with Phases
118 phases Working with Phases
119 revisions Specifying Single Revisions
119 revisions Specifying Single Revisions
120 revsets Specifying Revision Sets
120 revsets Specifying Revision Sets
121 scripting Using Mercurial from scripts and automation
121 scripting Using Mercurial from scripts and automation
122 subrepos Subrepositories
122 subrepos Subrepositories
123 templating Template Usage
123 templating Template Usage
124 urls URL Paths
124 urls URL Paths
125
125
126 (use "hg help -v" to show built-in aliases and global options)
126 (use "hg help -v" to show built-in aliases and global options)
127
127
128 $ hg -q help
128 $ hg -q help
129 add add the specified files on the next commit
129 add add the specified files on the next commit
130 addremove add all new files, delete all missing files
130 addremove add all new files, delete all missing files
131 annotate show changeset information by line for each file
131 annotate show changeset information by line for each file
132 archive create an unversioned archive of a repository revision
132 archive create an unversioned archive of a repository revision
133 backout reverse effect of earlier changeset
133 backout reverse effect of earlier changeset
134 bisect subdivision search of changesets
134 bisect subdivision search of changesets
135 bookmarks create a new bookmark or list existing bookmarks
135 bookmarks create a new bookmark or list existing bookmarks
136 branch set or show the current branch name
136 branch set or show the current branch name
137 branches list repository named branches
137 branches list repository named branches
138 bundle create a changegroup file
138 bundle create a changegroup file
139 cat output the current or given revision of files
139 cat output the current or given revision of files
140 clone make a copy of an existing repository
140 clone make a copy of an existing repository
141 commit commit the specified files or all outstanding changes
141 commit commit the specified files or all outstanding changes
142 config show combined config settings from all hgrc files
142 config show combined config settings from all hgrc files
143 copy mark files as copied for the next commit
143 copy mark files as copied for the next commit
144 diff diff repository (or selected files)
144 diff diff repository (or selected files)
145 export dump the header and diffs for one or more changesets
145 export dump the header and diffs for one or more changesets
146 files list tracked files
146 files list tracked files
147 forget forget the specified files on the next commit
147 forget forget the specified files on the next commit
148 graft copy changes from other branches onto the current branch
148 graft copy changes from other branches onto the current branch
149 grep search for a pattern in specified files and revisions
149 grep search for a pattern in specified files and revisions
150 heads show branch heads
150 heads show branch heads
151 help show help for a given topic or a help overview
151 help show help for a given topic or a help overview
152 identify identify the working directory or specified revision
152 identify identify the working directory or specified revision
153 import import an ordered set of patches
153 import import an ordered set of patches
154 incoming show new changesets found in source
154 incoming show new changesets found in source
155 init create a new repository in the given directory
155 init create a new repository in the given directory
156 log show revision history of entire repository or files
156 log show revision history of entire repository or files
157 manifest output the current or given revision of the project manifest
157 manifest output the current or given revision of the project manifest
158 merge merge another revision into working directory
158 merge merge another revision into working directory
159 outgoing show changesets not found in the destination
159 outgoing show changesets not found in the destination
160 paths show aliases for remote repositories
160 paths show aliases for remote repositories
161 phase set or show the current phase name
161 phase set or show the current phase name
162 pull pull changes from the specified source
162 pull pull changes from the specified source
163 push push changes to the specified destination
163 push push changes to the specified destination
164 recover roll back an interrupted transaction
164 recover roll back an interrupted transaction
165 remove remove the specified files on the next commit
165 remove remove the specified files on the next commit
166 rename rename files; equivalent of copy + remove
166 rename rename files; equivalent of copy + remove
167 resolve redo merges or set/view the merge status of files
167 resolve redo merges or set/view the merge status of files
168 revert restore files to their checkout state
168 revert restore files to their checkout state
169 root print the root (top) of the current working directory
169 root print the root (top) of the current working directory
170 serve start stand-alone webserver
170 serve start stand-alone webserver
171 status show changed files in the working directory
171 status show changed files in the working directory
172 summary summarize working directory state
172 summary summarize working directory state
173 tag add one or more tags for the current or given revision
173 tag add one or more tags for the current or given revision
174 tags list repository tags
174 tags list repository tags
175 unbundle apply one or more changegroup files
175 unbundle apply one or more changegroup files
176 update update working directory (or switch revisions)
176 update update working directory (or switch revisions)
177 verify verify the integrity of the repository
177 verify verify the integrity of the repository
178 version output version and copyright information
178 version output version and copyright information
179
179
180 additional help topics:
180 additional help topics:
181
181
182 config Configuration Files
182 config Configuration Files
183 dates Date Formats
183 dates Date Formats
184 diffs Diff Formats
184 diffs Diff Formats
185 environment Environment Variables
185 environment Environment Variables
186 extensions Using Additional Features
186 extensions Using Additional Features
187 filesets Specifying File Sets
187 filesets Specifying File Sets
188 glossary Glossary
188 glossary Glossary
189 hgignore Syntax for Mercurial Ignore Files
189 hgignore Syntax for Mercurial Ignore Files
190 hgweb Configuring hgweb
190 hgweb Configuring hgweb
191 internals Technical implementation topics
191 internals Technical implementation topics
192 merge-tools Merge Tools
192 merge-tools Merge Tools
193 multirevs Specifying Multiple Revisions
193 multirevs Specifying Multiple Revisions
194 patterns File Name Patterns
194 patterns File Name Patterns
195 phases Working with Phases
195 phases Working with Phases
196 revisions Specifying Single Revisions
196 revisions Specifying Single Revisions
197 revsets Specifying Revision Sets
197 revsets Specifying Revision Sets
198 scripting Using Mercurial from scripts and automation
198 scripting Using Mercurial from scripts and automation
199 subrepos Subrepositories
199 subrepos Subrepositories
200 templating Template Usage
200 templating Template Usage
201 urls URL Paths
201 urls URL Paths
202
202
203 Test extension help:
203 Test extension help:
204 $ hg help extensions --config extensions.rebase= --config extensions.children=
204 $ hg help extensions --config extensions.rebase= --config extensions.children=
205 Using Additional Features
205 Using Additional Features
206 """""""""""""""""""""""""
206 """""""""""""""""""""""""
207
207
208 Mercurial has the ability to add new features through the use of
208 Mercurial has the ability to add new features through the use of
209 extensions. Extensions may add new commands, add options to existing
209 extensions. Extensions may add new commands, add options to existing
210 commands, change the default behavior of commands, or implement hooks.
210 commands, change the default behavior of commands, or implement hooks.
211
211
212 To enable the "foo" extension, either shipped with Mercurial or in the
212 To enable the "foo" extension, either shipped with Mercurial or in the
213 Python search path, create an entry for it in your configuration file,
213 Python search path, create an entry for it in your configuration file,
214 like this:
214 like this:
215
215
216 [extensions]
216 [extensions]
217 foo =
217 foo =
218
218
219 You may also specify the full path to an extension:
219 You may also specify the full path to an extension:
220
220
221 [extensions]
221 [extensions]
222 myfeature = ~/.hgext/myfeature.py
222 myfeature = ~/.hgext/myfeature.py
223
223
224 See "hg help config" for more information on configuration files.
224 See "hg help config" for more information on configuration files.
225
225
226 Extensions are not loaded by default for a variety of reasons: they can
226 Extensions are not loaded by default for a variety of reasons: they can
227 increase startup overhead; they may be meant for advanced usage only; they
227 increase startup overhead; they may be meant for advanced usage only; they
228 may provide potentially dangerous abilities (such as letting you destroy
228 may provide potentially dangerous abilities (such as letting you destroy
229 or modify history); they might not be ready for prime time; or they may
229 or modify history); they might not be ready for prime time; or they may
230 alter some usual behaviors of stock Mercurial. It is thus up to the user
230 alter some usual behaviors of stock Mercurial. It is thus up to the user
231 to activate extensions as needed.
231 to activate extensions as needed.
232
232
233 To explicitly disable an extension enabled in a configuration file of
233 To explicitly disable an extension enabled in a configuration file of
234 broader scope, prepend its path with !:
234 broader scope, prepend its path with !:
235
235
236 [extensions]
236 [extensions]
237 # disabling extension bar residing in /path/to/extension/bar.py
237 # disabling extension bar residing in /path/to/extension/bar.py
238 bar = !/path/to/extension/bar.py
238 bar = !/path/to/extension/bar.py
239 # ditto, but no path was supplied for extension baz
239 # ditto, but no path was supplied for extension baz
240 baz = !
240 baz = !
241
241
242 enabled extensions:
242 enabled extensions:
243
243
244 children command to display child changesets (DEPRECATED)
244 children command to display child changesets (DEPRECATED)
245 rebase command to move sets of revisions to a different ancestor
245 rebase command to move sets of revisions to a different ancestor
246
246
247 disabled extensions:
247 disabled extensions:
248
248
249 acl hooks for controlling repository access
249 acl hooks for controlling repository access
250 blackbox log repository events to a blackbox for debugging
250 blackbox log repository events to a blackbox for debugging
251 bugzilla hooks for integrating with the Bugzilla bug tracker
251 bugzilla hooks for integrating with the Bugzilla bug tracker
252 censor erase file content at a given revision
252 censor erase file content at a given revision
253 churn command to display statistics about repository history
253 churn command to display statistics about repository history
254 clonebundles advertise pre-generated bundles to seed clones
254 clonebundles advertise pre-generated bundles to seed clones
255 (experimental)
255 (experimental)
256 color colorize output from some commands
256 color colorize output from some commands
257 convert import revisions from foreign VCS repositories into
257 convert import revisions from foreign VCS repositories into
258 Mercurial
258 Mercurial
259 eol automatically manage newlines in repository files
259 eol automatically manage newlines in repository files
260 extdiff command to allow external programs to compare revisions
260 extdiff command to allow external programs to compare revisions
261 factotum http authentication with factotum
261 factotum http authentication with factotum
262 gpg commands to sign and verify changesets
262 gpg commands to sign and verify changesets
263 hgcia hooks for integrating with the CIA.vc notification service
263 hgcia hooks for integrating with the CIA.vc notification service
264 hgk browse the repository in a graphical way
264 hgk browse the repository in a graphical way
265 highlight syntax highlighting for hgweb (requires Pygments)
265 highlight syntax highlighting for hgweb (requires Pygments)
266 histedit interactive history editing
266 histedit interactive history editing
267 keyword expand keywords in tracked files
267 keyword expand keywords in tracked files
268 largefiles track large binary files
268 largefiles track large binary files
269 mq manage a stack of patches
269 mq manage a stack of patches
270 notify hooks for sending email push notifications
270 notify hooks for sending email push notifications
271 pager browse command output with an external pager
271 pager browse command output with an external pager
272 patchbomb command to send changesets as (a series of) patch emails
272 patchbomb command to send changesets as (a series of) patch emails
273 purge command to delete untracked files from the working
273 purge command to delete untracked files from the working
274 directory
274 directory
275 record commands to interactively select changes for
275 record commands to interactively select changes for
276 commit/qrefresh
276 commit/qrefresh
277 relink recreates hardlinks between repository clones
277 relink recreates hardlinks between repository clones
278 schemes extend schemes with shortcuts to repository swarms
278 schemes extend schemes with shortcuts to repository swarms
279 share share a common history between several working directories
279 share share a common history between several working directories
280 shelve save and restore changes to the working directory
280 shelve save and restore changes to the working directory
281 strip strip changesets and their descendants from history
281 strip strip changesets and their descendants from history
282 transplant command to transplant changesets from another branch
282 transplant command to transplant changesets from another branch
283 win32mbcs allow the use of MBCS paths with problematic encodings
283 win32mbcs allow the use of MBCS paths with problematic encodings
284 zeroconf discover and advertise repositories on the local network
284 zeroconf discover and advertise repositories on the local network
285
285
286 Verify that extension keywords appear in help templates
286 Verify that extension keywords appear in help templates
287
287
288 $ hg help --config extensions.transplant= templating|grep transplant > /dev/null
288 $ hg help --config extensions.transplant= templating|grep transplant > /dev/null
289
289
290 Test short command list with verbose option
290 Test short command list with verbose option
291
291
292 $ hg -v help shortlist
292 $ hg -v help shortlist
293 Mercurial Distributed SCM
293 Mercurial Distributed SCM
294
294
295 basic commands:
295 basic commands:
296
296
297 add add the specified files on the next commit
297 add add the specified files on the next commit
298 annotate, blame
298 annotate, blame
299 show changeset information by line for each file
299 show changeset information by line for each file
300 clone make a copy of an existing repository
300 clone make a copy of an existing repository
301 commit, ci commit the specified files or all outstanding changes
301 commit, ci commit the specified files or all outstanding changes
302 diff diff repository (or selected files)
302 diff diff repository (or selected files)
303 export dump the header and diffs for one or more changesets
303 export dump the header and diffs for one or more changesets
304 forget forget the specified files on the next commit
304 forget forget the specified files on the next commit
305 init create a new repository in the given directory
305 init create a new repository in the given directory
306 log, history show revision history of entire repository or files
306 log, history show revision history of entire repository or files
307 merge merge another revision into working directory
307 merge merge another revision into working directory
308 pull pull changes from the specified source
308 pull pull changes from the specified source
309 push push changes to the specified destination
309 push push changes to the specified destination
310 remove, rm remove the specified files on the next commit
310 remove, rm remove the specified files on the next commit
311 serve start stand-alone webserver
311 serve start stand-alone webserver
312 status, st show changed files in the working directory
312 status, st show changed files in the working directory
313 summary, sum summarize working directory state
313 summary, sum summarize working directory state
314 update, up, checkout, co
314 update, up, checkout, co
315 update working directory (or switch revisions)
315 update working directory (or switch revisions)
316
316
317 global options ([+] can be repeated):
317 global options ([+] can be repeated):
318
318
319 -R --repository REPO repository root directory or name of overlay bundle
319 -R --repository REPO repository root directory or name of overlay bundle
320 file
320 file
321 --cwd DIR change working directory
321 --cwd DIR change working directory
322 -y --noninteractive do not prompt, automatically pick the first choice for
322 -y --noninteractive do not prompt, automatically pick the first choice for
323 all prompts
323 all prompts
324 -q --quiet suppress output
324 -q --quiet suppress output
325 -v --verbose enable additional output
325 -v --verbose enable additional output
326 --config CONFIG [+] set/override config option (use 'section.name=value')
326 --config CONFIG [+] set/override config option (use 'section.name=value')
327 --debug enable debugging output
327 --debug enable debugging output
328 --debugger start debugger
328 --debugger start debugger
329 --encoding ENCODE set the charset encoding (default: ascii)
329 --encoding ENCODE set the charset encoding (default: ascii)
330 --encodingmode MODE set the charset encoding mode (default: strict)
330 --encodingmode MODE set the charset encoding mode (default: strict)
331 --traceback always print a traceback on exception
331 --traceback always print a traceback on exception
332 --time time how long the command takes
332 --time time how long the command takes
333 --profile print command execution profile
333 --profile print command execution profile
334 --version output version information and exit
334 --version output version information and exit
335 -h --help display help and exit
335 -h --help display help and exit
336 --hidden consider hidden changesets
336 --hidden consider hidden changesets
337
337
338 (use "hg help" for the full list of commands)
338 (use "hg help" for the full list of commands)
339
339
340 $ hg add -h
340 $ hg add -h
341 hg add [OPTION]... [FILE]...
341 hg add [OPTION]... [FILE]...
342
342
343 add the specified files on the next commit
343 add the specified files on the next commit
344
344
345 Schedule files to be version controlled and added to the repository.
345 Schedule files to be version controlled and added to the repository.
346
346
347 The files will be added to the repository at the next commit. To undo an
347 The files will be added to the repository at the next commit. To undo an
348 add before that, see "hg forget".
348 add before that, see "hg forget".
349
349
350 If no names are given, add all files to the repository (except files
350 If no names are given, add all files to the repository (except files
351 matching ".hgignore").
351 matching ".hgignore").
352
352
353 Returns 0 if all files are successfully added.
353 Returns 0 if all files are successfully added.
354
354
355 options ([+] can be repeated):
355 options ([+] can be repeated):
356
356
357 -I --include PATTERN [+] include names matching the given patterns
357 -I --include PATTERN [+] include names matching the given patterns
358 -X --exclude PATTERN [+] exclude names matching the given patterns
358 -X --exclude PATTERN [+] exclude names matching the given patterns
359 -S --subrepos recurse into subrepositories
359 -S --subrepos recurse into subrepositories
360 -n --dry-run do not perform actions, just print output
360 -n --dry-run do not perform actions, just print output
361
361
362 (some details hidden, use --verbose to show complete help)
362 (some details hidden, use --verbose to show complete help)
363
363
364 Verbose help for add
364 Verbose help for add
365
365
366 $ hg add -hv
366 $ hg add -hv
367 hg add [OPTION]... [FILE]...
367 hg add [OPTION]... [FILE]...
368
368
369 add the specified files on the next commit
369 add the specified files on the next commit
370
370
371 Schedule files to be version controlled and added to the repository.
371 Schedule files to be version controlled and added to the repository.
372
372
373 The files will be added to the repository at the next commit. To undo an
373 The files will be added to the repository at the next commit. To undo an
374 add before that, see "hg forget".
374 add before that, see "hg forget".
375
375
376 If no names are given, add all files to the repository (except files
376 If no names are given, add all files to the repository (except files
377 matching ".hgignore").
377 matching ".hgignore").
378
378
379 Examples:
379 Examples:
380
380
381 - New (unknown) files are added automatically by "hg add":
381 - New (unknown) files are added automatically by "hg add":
382
382
383 $ ls
383 $ ls
384 foo.c
384 foo.c
385 $ hg status
385 $ hg status
386 ? foo.c
386 ? foo.c
387 $ hg add
387 $ hg add
388 adding foo.c
388 adding foo.c
389 $ hg status
389 $ hg status
390 A foo.c
390 A foo.c
391
391
392 - Specific files to be added can be specified:
392 - Specific files to be added can be specified:
393
393
394 $ ls
394 $ ls
395 bar.c foo.c
395 bar.c foo.c
396 $ hg status
396 $ hg status
397 ? bar.c
397 ? bar.c
398 ? foo.c
398 ? foo.c
399 $ hg add bar.c
399 $ hg add bar.c
400 $ hg status
400 $ hg status
401 A bar.c
401 A bar.c
402 ? foo.c
402 ? foo.c
403
403
404 Returns 0 if all files are successfully added.
404 Returns 0 if all files are successfully added.
405
405
406 options ([+] can be repeated):
406 options ([+] can be repeated):
407
407
408 -I --include PATTERN [+] include names matching the given patterns
408 -I --include PATTERN [+] include names matching the given patterns
409 -X --exclude PATTERN [+] exclude names matching the given patterns
409 -X --exclude PATTERN [+] exclude names matching the given patterns
410 -S --subrepos recurse into subrepositories
410 -S --subrepos recurse into subrepositories
411 -n --dry-run do not perform actions, just print output
411 -n --dry-run do not perform actions, just print output
412
412
413 global options ([+] can be repeated):
413 global options ([+] can be repeated):
414
414
415 -R --repository REPO repository root directory or name of overlay bundle
415 -R --repository REPO repository root directory or name of overlay bundle
416 file
416 file
417 --cwd DIR change working directory
417 --cwd DIR change working directory
418 -y --noninteractive do not prompt, automatically pick the first choice for
418 -y --noninteractive do not prompt, automatically pick the first choice for
419 all prompts
419 all prompts
420 -q --quiet suppress output
420 -q --quiet suppress output
421 -v --verbose enable additional output
421 -v --verbose enable additional output
422 --config CONFIG [+] set/override config option (use 'section.name=value')
422 --config CONFIG [+] set/override config option (use 'section.name=value')
423 --debug enable debugging output
423 --debug enable debugging output
424 --debugger start debugger
424 --debugger start debugger
425 --encoding ENCODE set the charset encoding (default: ascii)
425 --encoding ENCODE set the charset encoding (default: ascii)
426 --encodingmode MODE set the charset encoding mode (default: strict)
426 --encodingmode MODE set the charset encoding mode (default: strict)
427 --traceback always print a traceback on exception
427 --traceback always print a traceback on exception
428 --time time how long the command takes
428 --time time how long the command takes
429 --profile print command execution profile
429 --profile print command execution profile
430 --version output version information and exit
430 --version output version information and exit
431 -h --help display help and exit
431 -h --help display help and exit
432 --hidden consider hidden changesets
432 --hidden consider hidden changesets
433
433
434 Test help option with version option
434 Test help option with version option
435
435
436 $ hg add -h --version
436 $ hg add -h --version
437 Mercurial Distributed SCM (version *) (glob)
437 Mercurial Distributed SCM (version *) (glob)
438 (see https://mercurial-scm.org for more information)
438 (see https://mercurial-scm.org for more information)
439
439
440 Copyright (C) 2005-2015 Matt Mackall and others
440 Copyright (C) 2005-2015 Matt Mackall and others
441 This is free software; see the source for copying conditions. There is NO
441 This is free software; see the source for copying conditions. There is NO
442 warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
442 warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
443
443
444 $ hg add --skjdfks
444 $ hg add --skjdfks
445 hg add: option --skjdfks not recognized
445 hg add: option --skjdfks not recognized
446 hg add [OPTION]... [FILE]...
446 hg add [OPTION]... [FILE]...
447
447
448 add the specified files on the next commit
448 add the specified files on the next commit
449
449
450 options ([+] can be repeated):
450 options ([+] can be repeated):
451
451
452 -I --include PATTERN [+] include names matching the given patterns
452 -I --include PATTERN [+] include names matching the given patterns
453 -X --exclude PATTERN [+] exclude names matching the given patterns
453 -X --exclude PATTERN [+] exclude names matching the given patterns
454 -S --subrepos recurse into subrepositories
454 -S --subrepos recurse into subrepositories
455 -n --dry-run do not perform actions, just print output
455 -n --dry-run do not perform actions, just print output
456
456
457 (use "hg add -h" to show more help)
457 (use "hg add -h" to show more help)
458 [255]
458 [255]
459
459
460 Test ambiguous command help
460 Test ambiguous command help
461
461
462 $ hg help ad
462 $ hg help ad
463 list of commands:
463 list of commands:
464
464
465 add add the specified files on the next commit
465 add add the specified files on the next commit
466 addremove add all new files, delete all missing files
466 addremove add all new files, delete all missing files
467
467
468 (use "hg help -v ad" to show built-in aliases and global options)
468 (use "hg help -v ad" to show built-in aliases and global options)
469
469
470 Test command without options
470 Test command without options
471
471
472 $ hg help verify
472 $ hg help verify
473 hg verify
473 hg verify
474
474
475 verify the integrity of the repository
475 verify the integrity of the repository
476
476
477 Verify the integrity of the current repository.
477 Verify the integrity of the current repository.
478
478
479 This will perform an extensive check of the repository's integrity,
479 This will perform an extensive check of the repository's integrity,
480 validating the hashes and checksums of each entry in the changelog,
480 validating the hashes and checksums of each entry in the changelog,
481 manifest, and tracked files, as well as the integrity of their crosslinks
481 manifest, and tracked files, as well as the integrity of their crosslinks
482 and indices.
482 and indices.
483
483
484 Please see https://mercurial-scm.org/wiki/RepositoryCorruption for more
484 Please see https://mercurial-scm.org/wiki/RepositoryCorruption for more
485 information about recovery from corruption of the repository.
485 information about recovery from corruption of the repository.
486
486
487 Returns 0 on success, 1 if errors are encountered.
487 Returns 0 on success, 1 if errors are encountered.
488
488
489 (some details hidden, use --verbose to show complete help)
489 (some details hidden, use --verbose to show complete help)
490
490
491 $ hg help diff
491 $ hg help diff
492 hg diff [OPTION]... ([-c REV] | [-r REV1 [-r REV2]]) [FILE]...
492 hg diff [OPTION]... ([-c REV] | [-r REV1 [-r REV2]]) [FILE]...
493
493
494 diff repository (or selected files)
494 diff repository (or selected files)
495
495
496 Show differences between revisions for the specified files.
496 Show differences between revisions for the specified files.
497
497
498 Differences between files are shown using the unified diff format.
498 Differences between files are shown using the unified diff format.
499
499
500 Note:
500 Note:
501 "hg diff" may generate unexpected results for merges, as it will
501 "hg diff" may generate unexpected results for merges, as it will
502 default to comparing against the working directory's first parent
502 default to comparing against the working directory's first parent
503 changeset if no revisions are specified.
503 changeset if no revisions are specified.
504
504
505 When two revision arguments are given, then changes are shown between
505 When two revision arguments are given, then changes are shown between
506 those revisions. If only one revision is specified then that revision is
506 those revisions. If only one revision is specified then that revision is
507 compared to the working directory, and, when no revisions are specified,
507 compared to the working directory, and, when no revisions are specified,
508 the working directory files are compared to its first parent.
508 the working directory files are compared to its first parent.
509
509
510 Alternatively you can specify -c/--change with a revision to see the
510 Alternatively you can specify -c/--change with a revision to see the
511 changes in that changeset relative to its first parent.
511 changes in that changeset relative to its first parent.
512
512
513 Without the -a/--text option, diff will avoid generating diffs of files it
513 Without the -a/--text option, diff will avoid generating diffs of files it
514 detects as binary. With -a, diff will generate a diff anyway, probably
514 detects as binary. With -a, diff will generate a diff anyway, probably
515 with undesirable results.
515 with undesirable results.
516
516
517 Use the -g/--git option to generate diffs in the git extended diff format.
517 Use the -g/--git option to generate diffs in the git extended diff format.
518 For more information, read "hg help diffs".
518 For more information, read "hg help diffs".
519
519
520 Returns 0 on success.
520 Returns 0 on success.
521
521
522 options ([+] can be repeated):
522 options ([+] can be repeated):
523
523
524 -r --rev REV [+] revision
524 -r --rev REV [+] revision
525 -c --change REV change made by revision
525 -c --change REV change made by revision
526 -a --text treat all files as text
526 -a --text treat all files as text
527 -g --git use git extended diff format
527 -g --git use git extended diff format
528 --nodates omit dates from diff headers
528 --nodates omit dates from diff headers
529 --noprefix omit a/ and b/ prefixes from filenames
529 --noprefix omit a/ and b/ prefixes from filenames
530 -p --show-function show which function each change is in
530 -p --show-function show which function each change is in
531 --reverse produce a diff that undoes the changes
531 --reverse produce a diff that undoes the changes
532 -w --ignore-all-space ignore white space when comparing lines
532 -w --ignore-all-space ignore white space when comparing lines
533 -b --ignore-space-change ignore changes in the amount of white space
533 -b --ignore-space-change ignore changes in the amount of white space
534 -B --ignore-blank-lines ignore changes whose lines are all blank
534 -B --ignore-blank-lines ignore changes whose lines are all blank
535 -U --unified NUM number of lines of context to show
535 -U --unified NUM number of lines of context to show
536 --stat output diffstat-style summary of changes
536 --stat output diffstat-style summary of changes
537 --root DIR produce diffs relative to subdirectory
537 --root DIR produce diffs relative to subdirectory
538 -I --include PATTERN [+] include names matching the given patterns
538 -I --include PATTERN [+] include names matching the given patterns
539 -X --exclude PATTERN [+] exclude names matching the given patterns
539 -X --exclude PATTERN [+] exclude names matching the given patterns
540 -S --subrepos recurse into subrepositories
540 -S --subrepos recurse into subrepositories
541
541
542 (some details hidden, use --verbose to show complete help)
542 (some details hidden, use --verbose to show complete help)
543
543
544 $ hg help status
544 $ hg help status
545 hg status [OPTION]... [FILE]...
545 hg status [OPTION]... [FILE]...
546
546
547 aliases: st
547 aliases: st
548
548
549 show changed files in the working directory
549 show changed files in the working directory
550
550
551 Show status of files in the repository. If names are given, only files
551 Show status of files in the repository. If names are given, only files
552 that match are shown. Files that are clean or ignored or the source of a
552 that match are shown. Files that are clean or ignored or the source of a
553 copy/move operation, are not listed unless -c/--clean, -i/--ignored,
553 copy/move operation, are not listed unless -c/--clean, -i/--ignored,
554 -C/--copies or -A/--all are given. Unless options described with "show
554 -C/--copies or -A/--all are given. Unless options described with "show
555 only ..." are given, the options -mardu are used.
555 only ..." are given, the options -mardu are used.
556
556
557 Option -q/--quiet hides untracked (unknown and ignored) files unless
557 Option -q/--quiet hides untracked (unknown and ignored) files unless
558 explicitly requested with -u/--unknown or -i/--ignored.
558 explicitly requested with -u/--unknown or -i/--ignored.
559
559
560 Note:
560 Note:
561 "hg status" may appear to disagree with diff if permissions have
561 "hg status" may appear to disagree with diff if permissions have
562 changed or a merge has occurred. The standard diff format does not
562 changed or a merge has occurred. The standard diff format does not
563 report permission changes and diff only reports changes relative to one
563 report permission changes and diff only reports changes relative to one
564 merge parent.
564 merge parent.
565
565
566 If one revision is given, it is used as the base revision. If two
566 If one revision is given, it is used as the base revision. If two
567 revisions are given, the differences between them are shown. The --change
567 revisions are given, the differences between them are shown. The --change
568 option can also be used as a shortcut to list the changed files of a
568 option can also be used as a shortcut to list the changed files of a
569 revision from its first parent.
569 revision from its first parent.
570
570
571 The codes used to show the status of files are:
571 The codes used to show the status of files are:
572
572
573 M = modified
573 M = modified
574 A = added
574 A = added
575 R = removed
575 R = removed
576 C = clean
576 C = clean
577 ! = missing (deleted by non-hg command, but still tracked)
577 ! = missing (deleted by non-hg command, but still tracked)
578 ? = not tracked
578 ? = not tracked
579 I = ignored
579 I = ignored
580 = origin of the previous file (with --copies)
580 = origin of the previous file (with --copies)
581
581
582 Returns 0 on success.
582 Returns 0 on success.
583
583
584 options ([+] can be repeated):
584 options ([+] can be repeated):
585
585
586 -A --all show status of all files
586 -A --all show status of all files
587 -m --modified show only modified files
587 -m --modified show only modified files
588 -a --added show only added files
588 -a --added show only added files
589 -r --removed show only removed files
589 -r --removed show only removed files
590 -d --deleted show only deleted (but tracked) files
590 -d --deleted show only deleted (but tracked) files
591 -c --clean show only files without changes
591 -c --clean show only files without changes
592 -u --unknown show only unknown (not tracked) files
592 -u --unknown show only unknown (not tracked) files
593 -i --ignored show only ignored files
593 -i --ignored show only ignored files
594 -n --no-status hide status prefix
594 -n --no-status hide status prefix
595 -C --copies show source of copied files
595 -C --copies show source of copied files
596 -0 --print0 end filenames with NUL, for use with xargs
596 -0 --print0 end filenames with NUL, for use with xargs
597 --rev REV [+] show difference from revision
597 --rev REV [+] show difference from revision
598 --change REV list the changed files of a revision
598 --change REV list the changed files of a revision
599 -I --include PATTERN [+] include names matching the given patterns
599 -I --include PATTERN [+] include names matching the given patterns
600 -X --exclude PATTERN [+] exclude names matching the given patterns
600 -X --exclude PATTERN [+] exclude names matching the given patterns
601 -S --subrepos recurse into subrepositories
601 -S --subrepos recurse into subrepositories
602
602
603 (some details hidden, use --verbose to show complete help)
603 (some details hidden, use --verbose to show complete help)
604
604
605 $ hg -q help status
605 $ hg -q help status
606 hg status [OPTION]... [FILE]...
606 hg status [OPTION]... [FILE]...
607
607
608 show changed files in the working directory
608 show changed files in the working directory
609
609
610 $ hg help foo
610 $ hg help foo
611 abort: no such help topic: foo
611 abort: no such help topic: foo
612 (try "hg help --keyword foo")
612 (try "hg help --keyword foo")
613 [255]
613 [255]
614
614
615 $ hg skjdfks
615 $ hg skjdfks
616 hg: unknown command 'skjdfks'
616 hg: unknown command 'skjdfks'
617 Mercurial Distributed SCM
617 Mercurial Distributed SCM
618
618
619 basic commands:
619 basic commands:
620
620
621 add add the specified files on the next commit
621 add add the specified files on the next commit
622 annotate show changeset information by line for each file
622 annotate show changeset information by line for each file
623 clone make a copy of an existing repository
623 clone make a copy of an existing repository
624 commit commit the specified files or all outstanding changes
624 commit commit the specified files or all outstanding changes
625 diff diff repository (or selected files)
625 diff diff repository (or selected files)
626 export dump the header and diffs for one or more changesets
626 export dump the header and diffs for one or more changesets
627 forget forget the specified files on the next commit
627 forget forget the specified files on the next commit
628 init create a new repository in the given directory
628 init create a new repository in the given directory
629 log show revision history of entire repository or files
629 log show revision history of entire repository or files
630 merge merge another revision into working directory
630 merge merge another revision into working directory
631 pull pull changes from the specified source
631 pull pull changes from the specified source
632 push push changes to the specified destination
632 push push changes to the specified destination
633 remove remove the specified files on the next commit
633 remove remove the specified files on the next commit
634 serve start stand-alone webserver
634 serve start stand-alone webserver
635 status show changed files in the working directory
635 status show changed files in the working directory
636 summary summarize working directory state
636 summary summarize working directory state
637 update update working directory (or switch revisions)
637 update update working directory (or switch revisions)
638
638
639 (use "hg help" for the full list of commands or "hg -v" for details)
639 (use "hg help" for the full list of commands or "hg -v" for details)
640 [255]
640 [255]
641
641
642
642
643 Make sure that we don't run afoul of the help system thinking that
643 Make sure that we don't run afoul of the help system thinking that
644 this is a section and erroring out weirdly.
644 this is a section and erroring out weirdly.
645
645
646 $ hg .log
646 $ hg .log
647 hg: unknown command '.log'
647 hg: unknown command '.log'
648 (did you mean one of log?)
648 (did you mean one of log?)
649 [255]
649 [255]
650
650
651 $ hg log.
651 $ hg log.
652 hg: unknown command 'log.'
652 hg: unknown command 'log.'
653 (did you mean one of log?)
653 (did you mean one of log?)
654 [255]
654 [255]
655 $ hg pu.lh
655 $ hg pu.lh
656 hg: unknown command 'pu.lh'
656 hg: unknown command 'pu.lh'
657 (did you mean one of pull, push?)
657 (did you mean one of pull, push?)
658 [255]
658 [255]
659
659
660 $ cat > helpext.py <<EOF
660 $ cat > helpext.py <<EOF
661 > import os
661 > import os
662 > from mercurial import cmdutil, commands
662 > from mercurial import cmdutil, commands
663 >
663 >
664 > cmdtable = {}
664 > cmdtable = {}
665 > command = cmdutil.command(cmdtable)
665 > command = cmdutil.command(cmdtable)
666 >
666 >
667 > @command('nohelp',
667 > @command('nohelp',
668 > [('', 'longdesc', 3, 'x'*90),
668 > [('', 'longdesc', 3, 'x'*90),
669 > ('n', '', None, 'normal desc'),
669 > ('n', '', None, 'normal desc'),
670 > ('', 'newline', '', 'line1\nline2')],
670 > ('', 'newline', '', 'line1\nline2')],
671 > 'hg nohelp',
671 > 'hg nohelp',
672 > norepo=True)
672 > norepo=True)
673 > @command('debugoptDEP', [('', 'dopt', None, 'option is (DEPRECATED)')])
673 > @command('debugoptDEP', [('', 'dopt', None, 'option is (DEPRECATED)')])
674 > @command('debugoptEXP', [('', 'eopt', None, 'option is (EXPERIMENTAL)')])
674 > @command('debugoptEXP', [('', 'eopt', None, 'option is (EXPERIMENTAL)')])
675 > def nohelp(ui, *args, **kwargs):
675 > def nohelp(ui, *args, **kwargs):
676 > pass
676 > pass
677 >
677 >
678 > EOF
678 > EOF
679 $ echo '[extensions]' >> $HGRCPATH
679 $ echo '[extensions]' >> $HGRCPATH
680 $ echo "helpext = `pwd`/helpext.py" >> $HGRCPATH
680 $ echo "helpext = `pwd`/helpext.py" >> $HGRCPATH
681
681
682 Test command with no help text
682 Test command with no help text
683
683
684 $ hg help nohelp
684 $ hg help nohelp
685 hg nohelp
685 hg nohelp
686
686
687 (no help text available)
687 (no help text available)
688
688
689 options:
689 options:
690
690
691 --longdesc VALUE xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
691 --longdesc VALUE xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
692 xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx (default: 3)
692 xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx (default: 3)
693 -n -- normal desc
693 -n -- normal desc
694 --newline VALUE line1 line2
694 --newline VALUE line1 line2
695
695
696 (some details hidden, use --verbose to show complete help)
696 (some details hidden, use --verbose to show complete help)
697
697
698 $ hg help -k nohelp
698 $ hg help -k nohelp
699 Commands:
699 Commands:
700
700
701 nohelp hg nohelp
701 nohelp hg nohelp
702
702
703 Extension Commands:
703 Extension Commands:
704
704
705 nohelp (no help text available)
705 nohelp (no help text available)
706
706
707 Test that default list of commands omits extension commands
707 Test that default list of commands omits extension commands
708
708
709 $ hg help
709 $ hg help
710 Mercurial Distributed SCM
710 Mercurial Distributed SCM
711
711
712 list of commands:
712 list of commands:
713
713
714 add add the specified files on the next commit
714 add add the specified files on the next commit
715 addremove add all new files, delete all missing files
715 addremove add all new files, delete all missing files
716 annotate show changeset information by line for each file
716 annotate show changeset information by line for each file
717 archive create an unversioned archive of a repository revision
717 archive create an unversioned archive of a repository revision
718 backout reverse effect of earlier changeset
718 backout reverse effect of earlier changeset
719 bisect subdivision search of changesets
719 bisect subdivision search of changesets
720 bookmarks create a new bookmark or list existing bookmarks
720 bookmarks create a new bookmark or list existing bookmarks
721 branch set or show the current branch name
721 branch set or show the current branch name
722 branches list repository named branches
722 branches list repository named branches
723 bundle create a changegroup file
723 bundle create a changegroup file
724 cat output the current or given revision of files
724 cat output the current or given revision of files
725 clone make a copy of an existing repository
725 clone make a copy of an existing repository
726 commit commit the specified files or all outstanding changes
726 commit commit the specified files or all outstanding changes
727 config show combined config settings from all hgrc files
727 config show combined config settings from all hgrc files
728 copy mark files as copied for the next commit
728 copy mark files as copied for the next commit
729 diff diff repository (or selected files)
729 diff diff repository (or selected files)
730 export dump the header and diffs for one or more changesets
730 export dump the header and diffs for one or more changesets
731 files list tracked files
731 files list tracked files
732 forget forget the specified files on the next commit
732 forget forget the specified files on the next commit
733 graft copy changes from other branches onto the current branch
733 graft copy changes from other branches onto the current branch
734 grep search for a pattern in specified files and revisions
734 grep search for a pattern in specified files and revisions
735 heads show branch heads
735 heads show branch heads
736 help show help for a given topic or a help overview
736 help show help for a given topic or a help overview
737 identify identify the working directory or specified revision
737 identify identify the working directory or specified revision
738 import import an ordered set of patches
738 import import an ordered set of patches
739 incoming show new changesets found in source
739 incoming show new changesets found in source
740 init create a new repository in the given directory
740 init create a new repository in the given directory
741 log show revision history of entire repository or files
741 log show revision history of entire repository or files
742 manifest output the current or given revision of the project manifest
742 manifest output the current or given revision of the project manifest
743 merge merge another revision into working directory
743 merge merge another revision into working directory
744 outgoing show changesets not found in the destination
744 outgoing show changesets not found in the destination
745 paths show aliases for remote repositories
745 paths show aliases for remote repositories
746 phase set or show the current phase name
746 phase set or show the current phase name
747 pull pull changes from the specified source
747 pull pull changes from the specified source
748 push push changes to the specified destination
748 push push changes to the specified destination
749 recover roll back an interrupted transaction
749 recover roll back an interrupted transaction
750 remove remove the specified files on the next commit
750 remove remove the specified files on the next commit
751 rename rename files; equivalent of copy + remove
751 rename rename files; equivalent of copy + remove
752 resolve redo merges or set/view the merge status of files
752 resolve redo merges or set/view the merge status of files
753 revert restore files to their checkout state
753 revert restore files to their checkout state
754 root print the root (top) of the current working directory
754 root print the root (top) of the current working directory
755 serve start stand-alone webserver
755 serve start stand-alone webserver
756 status show changed files in the working directory
756 status show changed files in the working directory
757 summary summarize working directory state
757 summary summarize working directory state
758 tag add one or more tags for the current or given revision
758 tag add one or more tags for the current or given revision
759 tags list repository tags
759 tags list repository tags
760 unbundle apply one or more changegroup files
760 unbundle apply one or more changegroup files
761 update update working directory (or switch revisions)
761 update update working directory (or switch revisions)
762 verify verify the integrity of the repository
762 verify verify the integrity of the repository
763 version output version and copyright information
763 version output version and copyright information
764
764
765 enabled extensions:
765 enabled extensions:
766
766
767 helpext (no help text available)
767 helpext (no help text available)
768
768
769 additional help topics:
769 additional help topics:
770
770
771 config Configuration Files
771 config Configuration Files
772 dates Date Formats
772 dates Date Formats
773 diffs Diff Formats
773 diffs Diff Formats
774 environment Environment Variables
774 environment Environment Variables
775 extensions Using Additional Features
775 extensions Using Additional Features
776 filesets Specifying File Sets
776 filesets Specifying File Sets
777 glossary Glossary
777 glossary Glossary
778 hgignore Syntax for Mercurial Ignore Files
778 hgignore Syntax for Mercurial Ignore Files
779 hgweb Configuring hgweb
779 hgweb Configuring hgweb
780 internals Technical implementation topics
780 internals Technical implementation topics
781 merge-tools Merge Tools
781 merge-tools Merge Tools
782 multirevs Specifying Multiple Revisions
782 multirevs Specifying Multiple Revisions
783 patterns File Name Patterns
783 patterns File Name Patterns
784 phases Working with Phases
784 phases Working with Phases
785 revisions Specifying Single Revisions
785 revisions Specifying Single Revisions
786 revsets Specifying Revision Sets
786 revsets Specifying Revision Sets
787 scripting Using Mercurial from scripts and automation
787 scripting Using Mercurial from scripts and automation
788 subrepos Subrepositories
788 subrepos Subrepositories
789 templating Template Usage
789 templating Template Usage
790 urls URL Paths
790 urls URL Paths
791
791
792 (use "hg help -v" to show built-in aliases and global options)
792 (use "hg help -v" to show built-in aliases and global options)
793
793
794
794
795 Test list of internal help commands
795 Test list of internal help commands
796
796
797 $ hg help debug
797 $ hg help debug
798 debug commands (internal and unsupported):
798 debug commands (internal and unsupported):
799
799
800 debugancestor
800 debugancestor
801 find the ancestor revision of two revisions in a given index
801 find the ancestor revision of two revisions in a given index
802 debugapplystreamclonebundle
802 debugapplystreamclonebundle
803 apply a stream clone bundle file
803 apply a stream clone bundle file
804 debugbuilddag
804 debugbuilddag
805 builds a repo with a given DAG from scratch in the current
805 builds a repo with a given DAG from scratch in the current
806 empty repo
806 empty repo
807 debugbundle lists the contents of a bundle
807 debugbundle lists the contents of a bundle
808 debugcheckstate
808 debugcheckstate
809 validate the correctness of the current dirstate
809 validate the correctness of the current dirstate
810 debugcommands
810 debugcommands
811 list all available commands and options
811 list all available commands and options
812 debugcomplete
812 debugcomplete
813 returns the completion list associated with the given command
813 returns the completion list associated with the given command
814 debugcreatestreamclonebundle
814 debugcreatestreamclonebundle
815 create a stream clone bundle file
815 create a stream clone bundle file
816 debugdag format the changelog or an index DAG as a concise textual
816 debugdag format the changelog or an index DAG as a concise textual
817 description
817 description
818 debugdata dump the contents of a data file revision
818 debugdata dump the contents of a data file revision
819 debugdate parse and display a date
819 debugdate parse and display a date
820 debugdeltachain
820 debugdeltachain
821 dump information about delta chains in a revlog
821 dump information about delta chains in a revlog
822 debugdirstate
822 debugdirstate
823 show the contents of the current dirstate
823 show the contents of the current dirstate
824 debugdiscovery
824 debugdiscovery
825 runs the changeset discovery protocol in isolation
825 runs the changeset discovery protocol in isolation
826 debugextensions
826 debugextensions
827 show information about active extensions
827 show information about active extensions
828 debugfileset parse and apply a fileset specification
828 debugfileset parse and apply a fileset specification
829 debugfsinfo show information detected about current filesystem
829 debugfsinfo show information detected about current filesystem
830 debuggetbundle
830 debuggetbundle
831 retrieves a bundle from a repo
831 retrieves a bundle from a repo
832 debugignore display the combined ignore pattern
832 debugignore display the combined ignore pattern
833 debugindex dump the contents of an index file
833 debugindex dump the contents of an index file
834 debugindexdot
834 debugindexdot
835 dump an index DAG as a graphviz dot file
835 dump an index DAG as a graphviz dot file
836 debuginstall test Mercurial installation
836 debuginstall test Mercurial installation
837 debugknown test whether node ids are known to a repo
837 debugknown test whether node ids are known to a repo
838 debuglocks show or modify state of locks
838 debuglocks show or modify state of locks
839 debugmergestate
839 debugmergestate
840 print merge state
840 print merge state
841 debugnamecomplete
841 debugnamecomplete
842 complete "names" - tags, open branch names, bookmark names
842 complete "names" - tags, open branch names, bookmark names
843 debugobsolete
843 debugobsolete
844 create arbitrary obsolete marker
844 create arbitrary obsolete marker
845 debugoptDEP (no help text available)
845 debugoptDEP (no help text available)
846 debugoptEXP (no help text available)
846 debugoptEXP (no help text available)
847 debugpathcomplete
847 debugpathcomplete
848 complete part or all of a tracked path
848 complete part or all of a tracked path
849 debugpushkey access the pushkey key/value protocol
849 debugpushkey access the pushkey key/value protocol
850 debugpvec (no help text available)
850 debugpvec (no help text available)
851 debugrebuilddirstate
851 debugrebuilddirstate
852 rebuild the dirstate as it would look like for the given
852 rebuild the dirstate as it would look like for the given
853 revision
853 revision
854 debugrebuildfncache
854 debugrebuildfncache
855 rebuild the fncache file
855 rebuild the fncache file
856 debugrename dump rename information
856 debugrename dump rename information
857 debugrevlog show data and statistics about a revlog
857 debugrevlog show data and statistics about a revlog
858 debugrevspec parse and apply a revision specification
858 debugrevspec parse and apply a revision specification
859 debugsetparents
859 debugsetparents
860 manually set the parents of the current working directory
860 manually set the parents of the current working directory
861 debugsub (no help text available)
861 debugsub (no help text available)
862 debugsuccessorssets
862 debugsuccessorssets
863 show set of successors for revision
863 show set of successors for revision
864 debugwalk show how files match on given patterns
864 debugwalk show how files match on given patterns
865 debugwireargs
865 debugwireargs
866 (no help text available)
866 (no help text available)
867
867
868 (use "hg help -v debug" to show built-in aliases and global options)
868 (use "hg help -v debug" to show built-in aliases and global options)
869
869
870 internals topic renders index of available sub-topics
870 internals topic renders index of available sub-topics
871
871
872 $ hg help internals
872 $ hg help internals
873 Technical implementation topics
873 Technical implementation topics
874 """""""""""""""""""""""""""""""
874 """""""""""""""""""""""""""""""
875
875
876 bundles container for exchange of repository data
876 bundles container for exchange of repository data
877 changegroups representation of revlog data
877 changegroups representation of revlog data
878
878
879 sub-topics can be accessed
879 sub-topics can be accessed
880
880
881 $ hg help internals.changegroups
881 $ hg help internals.changegroups
882 Changegroups
882 Changegroups
883 ============
883 ============
884
884
885 Changegroups are representations of repository revlog data, specifically
885 Changegroups are representations of repository revlog data, specifically
886 the changelog, manifest, and filelogs.
886 the changelog, manifest, and filelogs.
887
887
888 There are 3 versions of changegroups: "1", "2", and "3". From a high-
888 There are 3 versions of changegroups: "1", "2", and "3". From a high-
889 level, versions "1" and "2" are almost exactly the same, with the only
889 level, versions "1" and "2" are almost exactly the same, with the only
890 difference being a header on entries in the changeset segment. Version "3"
890 difference being a header on entries in the changeset segment. Version "3"
891 adds support for exchanging treemanifests and includes revlog flags in the
891 adds support for exchanging treemanifests and includes revlog flags in the
892 delta header.
892 delta header.
893
893
894 Changegroups consists of 3 logical segments:
894 Changegroups consists of 3 logical segments:
895
895
896 +---------------------------------+
896 +---------------------------------+
897 | | | |
897 | | | |
898 | changeset | manifest | filelogs |
898 | changeset | manifest | filelogs |
899 | | | |
899 | | | |
900 +---------------------------------+
900 +---------------------------------+
901
901
902 The principle building block of each segment is a *chunk*. A *chunk* is a
902 The principle building block of each segment is a *chunk*. A *chunk* is a
903 framed piece of data:
903 framed piece of data:
904
904
905 +---------------------------------------+
905 +---------------------------------------+
906 | | |
906 | | |
907 | length | data |
907 | length | data |
908 | (32 bits) | <length> bytes |
908 | (32 bits) | <length> bytes |
909 | | |
909 | | |
910 +---------------------------------------+
910 +---------------------------------------+
911
911
912 Each chunk starts with a 32-bit big-endian signed integer indicating the
912 Each chunk starts with a 32-bit big-endian signed integer indicating the
913 length of the raw data that follows.
913 length of the raw data that follows.
914
914
915 There is a special case chunk that has 0 length ("0x00000000"). We call
915 There is a special case chunk that has 0 length ("0x00000000"). We call
916 this an *empty chunk*.
916 this an *empty chunk*.
917
917
918 Delta Groups
918 Delta Groups
919 ------------
919 ------------
920
920
921 A *delta group* expresses the content of a revlog as a series of deltas,
921 A *delta group* expresses the content of a revlog as a series of deltas,
922 or patches against previous revisions.
922 or patches against previous revisions.
923
923
924 Delta groups consist of 0 or more *chunks* followed by the *empty chunk*
924 Delta groups consist of 0 or more *chunks* followed by the *empty chunk*
925 to signal the end of the delta group:
925 to signal the end of the delta group:
926
926
927 +------------------------------------------------------------------------+
927 +------------------------------------------------------------------------+
928 | | | | | |
928 | | | | | |
929 | chunk0 length | chunk0 data | chunk1 length | chunk1 data | 0x0 |
929 | chunk0 length | chunk0 data | chunk1 length | chunk1 data | 0x0 |
930 | (32 bits) | (various) | (32 bits) | (various) | (32 bits) |
930 | (32 bits) | (various) | (32 bits) | (various) | (32 bits) |
931 | | | | | |
931 | | | | | |
932 +------------------------------------------------------------+-----------+
932 +------------------------------------------------------------+-----------+
933
933
934 Each *chunk*'s data consists of the following:
934 Each *chunk*'s data consists of the following:
935
935
936 +-----------------------------------------+
936 +-----------------------------------------+
937 | | | |
937 | | | |
938 | delta header | mdiff header | delta |
938 | delta header | mdiff header | delta |
939 | (various) | (12 bytes) | (various) |
939 | (various) | (12 bytes) | (various) |
940 | | | |
940 | | | |
941 +-----------------------------------------+
941 +-----------------------------------------+
942
942
943 The *length* field is the byte length of the remaining 3 logical pieces of
943 The *length* field is the byte length of the remaining 3 logical pieces of
944 data. The *delta* is a diff from an existing entry in the changelog.
944 data. The *delta* is a diff from an existing entry in the changelog.
945
945
946 The *delta header* is different between versions "1", "2", and "3" of the
946 The *delta header* is different between versions "1", "2", and "3" of the
947 changegroup format.
947 changegroup format.
948
948
949 Version 1:
949 Version 1:
950
950
951 +------------------------------------------------------+
951 +------------------------------------------------------+
952 | | | | |
952 | | | | |
953 | node | p1 node | p2 node | link node |
953 | node | p1 node | p2 node | link node |
954 | (20 bytes) | (20 bytes) | (20 bytes) | (20 bytes) |
954 | (20 bytes) | (20 bytes) | (20 bytes) | (20 bytes) |
955 | | | | |
955 | | | | |
956 +------------------------------------------------------+
956 +------------------------------------------------------+
957
957
958 Version 2:
958 Version 2:
959
959
960 +------------------------------------------------------------------+
960 +------------------------------------------------------------------+
961 | | | | | |
961 | | | | | |
962 | node | p1 node | p2 node | base node | link node |
962 | node | p1 node | p2 node | base node | link node |
963 | (20 bytes) | (20 bytes) | (20 bytes) | (20 bytes) | (20 bytes) |
963 | (20 bytes) | (20 bytes) | (20 bytes) | (20 bytes) | (20 bytes) |
964 | | | | | |
964 | | | | | |
965 +------------------------------------------------------------------+
965 +------------------------------------------------------------------+
966
966
967 Version 3:
967 Version 3:
968
968
969 +------------------------------------------------------------------------------+
969 +------------------------------------------------------------------------------+
970 | | | | | | |
970 | | | | | | |
971 | node | p1 node | p2 node | base node | link node | flags |
971 | node | p1 node | p2 node | base node | link node | flags |
972 | (20 bytes) | (20 bytes) | (20 bytes) | (20 bytes) | (20 bytes) | (2 bytes) |
972 | (20 bytes) | (20 bytes) | (20 bytes) | (20 bytes) | (20 bytes) | (2 bytes) |
973 | | | | | | |
973 | | | | | | |
974 +------------------------------------------------------------------------------+
974 +------------------------------------------------------------------------------+
975
975
976 The *mdiff header* consists of 3 32-bit big-endian signed integers
976 The *mdiff header* consists of 3 32-bit big-endian signed integers
977 describing offsets at which to apply the following delta content:
977 describing offsets at which to apply the following delta content:
978
978
979 +-------------------------------------+
979 +-------------------------------------+
980 | | | |
980 | | | |
981 | offset | old length | new length |
981 | offset | old length | new length |
982 | (32 bits) | (32 bits) | (32 bits) |
982 | (32 bits) | (32 bits) | (32 bits) |
983 | | | |
983 | | | |
984 +-------------------------------------+
984 +-------------------------------------+
985
985
986 In version 1, the delta is always applied against the previous node from
986 In version 1, the delta is always applied against the previous node from
987 the changegroup or the first parent if this is the first entry in the
987 the changegroup or the first parent if this is the first entry in the
988 changegroup.
988 changegroup.
989
989
990 In version 2, the delta base node is encoded in the entry in the
990 In version 2, the delta base node is encoded in the entry in the
991 changegroup. This allows the delta to be expressed against any parent,
991 changegroup. This allows the delta to be expressed against any parent,
992 which can result in smaller deltas and more efficient encoding of data.
992 which can result in smaller deltas and more efficient encoding of data.
993
993
994 Changeset Segment
994 Changeset Segment
995 -----------------
995 -----------------
996
996
997 The *changeset segment* consists of a single *delta group* holding
997 The *changeset segment* consists of a single *delta group* holding
998 changelog data. It is followed by an *empty chunk* to denote the boundary
998 changelog data. It is followed by an *empty chunk* to denote the boundary
999 to the *manifests segment*.
999 to the *manifests segment*.
1000
1000
1001 Manifest Segment
1001 Manifest Segment
1002 ----------------
1002 ----------------
1003
1003
1004 The *manifest segment* consists of a single *delta group* holding manifest
1004 The *manifest segment* consists of a single *delta group* holding manifest
1005 data. It is followed by an *empty chunk* to denote the boundary to the
1005 data. It is followed by an *empty chunk* to denote the boundary to the
1006 *filelogs segment*.
1006 *filelogs segment*.
1007
1007
1008 Filelogs Segment
1008 Filelogs Segment
1009 ----------------
1009 ----------------
1010
1010
1011 The *filelogs* segment consists of multiple sub-segments, each
1011 The *filelogs* segment consists of multiple sub-segments, each
1012 corresponding to an individual file whose data is being described:
1012 corresponding to an individual file whose data is being described:
1013
1013
1014 +--------------------------------------+
1014 +--------------------------------------+
1015 | | | | |
1015 | | | | |
1016 | filelog0 | filelog1 | filelog2 | ... |
1016 | filelog0 | filelog1 | filelog2 | ... |
1017 | | | | |
1017 | | | | |
1018 +--------------------------------------+
1018 +--------------------------------------+
1019
1019
1020 In version "3" of the changegroup format, filelogs may include directory
1020 In version "3" of the changegroup format, filelogs may include directory
1021 logs when treemanifests are in use. directory logs are identified by
1021 logs when treemanifests are in use. directory logs are identified by
1022 having a trailing '/' on their filename (see below).
1022 having a trailing '/' on their filename (see below).
1023
1023
1024 The final filelog sub-segment is followed by an *empty chunk* to denote
1024 The final filelog sub-segment is followed by an *empty chunk* to denote
1025 the end of the segment and the overall changegroup.
1025 the end of the segment and the overall changegroup.
1026
1026
1027 Each filelog sub-segment consists of the following:
1027 Each filelog sub-segment consists of the following:
1028
1028
1029 +------------------------------------------+
1029 +------------------------------------------+
1030 | | | |
1030 | | | |
1031 | filename size | filename | delta group |
1031 | filename size | filename | delta group |
1032 | (32 bits) | (various) | (various) |
1032 | (32 bits) | (various) | (various) |
1033 | | | |
1033 | | | |
1034 +------------------------------------------+
1034 +------------------------------------------+
1035
1035
1036 That is, a *chunk* consisting of the filename (not terminated or padded)
1036 That is, a *chunk* consisting of the filename (not terminated or padded)
1037 followed by N chunks constituting the *delta group* for this file.
1037 followed by N chunks constituting the *delta group* for this file.
1038
1038
1039 Test list of commands with command with no help text
1039 Test list of commands with command with no help text
1040
1040
1041 $ hg help helpext
1041 $ hg help helpext
1042 helpext extension - no help text available
1042 helpext extension - no help text available
1043
1043
1044 list of commands:
1044 list of commands:
1045
1045
1046 nohelp (no help text available)
1046 nohelp (no help text available)
1047
1047
1048 (use "hg help -v helpext" to show built-in aliases and global options)
1048 (use "hg help -v helpext" to show built-in aliases and global options)
1049
1049
1050
1050
1051 test deprecated and experimental options are hidden in command help
1051 test deprecated and experimental options are hidden in command help
1052 $ hg help debugoptDEP
1052 $ hg help debugoptDEP
1053 hg debugoptDEP
1053 hg debugoptDEP
1054
1054
1055 (no help text available)
1055 (no help text available)
1056
1056
1057 options:
1057 options:
1058
1058
1059 (some details hidden, use --verbose to show complete help)
1059 (some details hidden, use --verbose to show complete help)
1060
1060
1061 $ hg help debugoptEXP
1061 $ hg help debugoptEXP
1062 hg debugoptEXP
1062 hg debugoptEXP
1063
1063
1064 (no help text available)
1064 (no help text available)
1065
1065
1066 options:
1066 options:
1067
1067
1068 (some details hidden, use --verbose to show complete help)
1068 (some details hidden, use --verbose to show complete help)
1069
1069
1070 test deprecated and experimental options is shown with -v
1070 test deprecated and experimental options is shown with -v
1071 $ hg help -v debugoptDEP | grep dopt
1071 $ hg help -v debugoptDEP | grep dopt
1072 --dopt option is (DEPRECATED)
1072 --dopt option is (DEPRECATED)
1073 $ hg help -v debugoptEXP | grep eopt
1073 $ hg help -v debugoptEXP | grep eopt
1074 --eopt option is (EXPERIMENTAL)
1074 --eopt option is (EXPERIMENTAL)
1075
1075
1076 #if gettext
1076 #if gettext
1077 test deprecated option is hidden with translation with untranslated description
1077 test deprecated option is hidden with translation with untranslated description
1078 (use many globy for not failing on changed transaction)
1078 (use many globy for not failing on changed transaction)
1079 $ LANGUAGE=sv hg help debugoptDEP
1079 $ LANGUAGE=sv hg help debugoptDEP
1080 hg debugoptDEP
1080 hg debugoptDEP
1081
1081
1082 (*) (glob)
1082 (*) (glob)
1083
1083
1084 options:
1084 options:
1085
1085
1086 (some details hidden, use --verbose to show complete help)
1086 (some details hidden, use --verbose to show complete help)
1087 #endif
1087 #endif
1088
1088
1089 Test commands that collide with topics (issue4240)
1089 Test commands that collide with topics (issue4240)
1090
1090
1091 $ hg config -hq
1091 $ hg config -hq
1092 hg config [-u] [NAME]...
1092 hg config [-u] [NAME]...
1093
1093
1094 show combined config settings from all hgrc files
1094 show combined config settings from all hgrc files
1095 $ hg showconfig -hq
1095 $ hg showconfig -hq
1096 hg config [-u] [NAME]...
1096 hg config [-u] [NAME]...
1097
1097
1098 show combined config settings from all hgrc files
1098 show combined config settings from all hgrc files
1099
1099
1100 Test a help topic
1100 Test a help topic
1101
1101
1102 $ hg help revs
1102 $ hg help revs
1103 Specifying Single Revisions
1103 Specifying Single Revisions
1104 """""""""""""""""""""""""""
1104 """""""""""""""""""""""""""
1105
1105
1106 Mercurial supports several ways to specify individual revisions.
1106 Mercurial supports several ways to specify individual revisions.
1107
1107
1108 A plain integer is treated as a revision number. Negative integers are
1108 A plain integer is treated as a revision number. Negative integers are
1109 treated as sequential offsets from the tip, with -1 denoting the tip, -2
1109 treated as sequential offsets from the tip, with -1 denoting the tip, -2
1110 denoting the revision prior to the tip, and so forth.
1110 denoting the revision prior to the tip, and so forth.
1111
1111
1112 A 40-digit hexadecimal string is treated as a unique revision identifier.
1112 A 40-digit hexadecimal string is treated as a unique revision identifier.
1113
1113
1114 A hexadecimal string less than 40 characters long is treated as a unique
1114 A hexadecimal string less than 40 characters long is treated as a unique
1115 revision identifier and is referred to as a short-form identifier. A
1115 revision identifier and is referred to as a short-form identifier. A
1116 short-form identifier is only valid if it is the prefix of exactly one
1116 short-form identifier is only valid if it is the prefix of exactly one
1117 full-length identifier.
1117 full-length identifier.
1118
1118
1119 Any other string is treated as a bookmark, tag, or branch name. A bookmark
1119 Any other string is treated as a bookmark, tag, or branch name. A bookmark
1120 is a movable pointer to a revision. A tag is a permanent name associated
1120 is a movable pointer to a revision. A tag is a permanent name associated
1121 with a revision. A branch name denotes the tipmost open branch head of
1121 with a revision. A branch name denotes the tipmost open branch head of
1122 that branch - or if they are all closed, the tipmost closed head of the
1122 that branch - or if they are all closed, the tipmost closed head of the
1123 branch. Bookmark, tag, and branch names must not contain the ":"
1123 branch. Bookmark, tag, and branch names must not contain the ":"
1124 character.
1124 character.
1125
1125
1126 The reserved name "tip" always identifies the most recent revision.
1126 The reserved name "tip" always identifies the most recent revision.
1127
1127
1128 The reserved name "null" indicates the null revision. This is the revision
1128 The reserved name "null" indicates the null revision. This is the revision
1129 of an empty repository, and the parent of revision 0.
1129 of an empty repository, and the parent of revision 0.
1130
1130
1131 The reserved name "." indicates the working directory parent. If no
1131 The reserved name "." indicates the working directory parent. If no
1132 working directory is checked out, it is equivalent to null. If an
1132 working directory is checked out, it is equivalent to null. If an
1133 uncommitted merge is in progress, "." is the revision of the first parent.
1133 uncommitted merge is in progress, "." is the revision of the first parent.
1134
1134
1135 Test repeated config section name
1135 Test repeated config section name
1136
1136
1137 $ hg help config.host
1137 $ hg help config.host
1138 "http_proxy.host"
1138 "http_proxy.host"
1139 Host name and (optional) port of the proxy server, for example
1139 Host name and (optional) port of the proxy server, for example
1140 "myproxy:8000".
1140 "myproxy:8000".
1141
1141
1142 "smtp.host"
1142 "smtp.host"
1143 Host name of mail server, e.g. "mail.example.com".
1143 Host name of mail server, e.g. "mail.example.com".
1144
1144
1145 Unrelated trailing paragraphs shouldn't be included
1145 Unrelated trailing paragraphs shouldn't be included
1146
1146
1147 $ hg help config.extramsg | grep '^$'
1147 $ hg help config.extramsg | grep '^$'
1148
1148
1149
1149
1150 Test capitalized section name
1150 Test capitalized section name
1151
1151
1152 $ hg help scripting.HGPLAIN > /dev/null
1152 $ hg help scripting.HGPLAIN > /dev/null
1153
1153
1154 Help subsection:
1154 Help subsection:
1155
1155
1156 $ hg help config.charsets |grep "Email example:" > /dev/null
1156 $ hg help config.charsets |grep "Email example:" > /dev/null
1157 [1]
1157 [1]
1158
1158
1159 Show nested definitions
1159 Show nested definitions
1160 ("profiling.type"[break]"ls"[break]"stat"[break])
1160 ("profiling.type"[break]"ls"[break]"stat"[break])
1161
1161
1162 $ hg help config.type | egrep '^$'|wc -l
1162 $ hg help config.type | egrep '^$'|wc -l
1163 \s*3 (re)
1163 \s*3 (re)
1164
1164
1165 Separate sections from subsections
1166
1167 $ hg help config.format | egrep '^ ("|-)|^\s*$' | uniq
1168 "format"
1169 --------
1170
1171 "usegeneraldelta"
1172
1173 "dotencode"
1174
1175 "usefncache"
1176
1177 "usestore"
1178
1179 "profiling"
1180 -----------
1181
1182 "format"
1183
1184 "progress"
1185 ----------
1186
1187 "format"
1188
1189
1165 Last item in help config.*:
1190 Last item in help config.*:
1166
1191
1167 $ hg help config.`hg help config|grep '^ "'| \
1192 $ hg help config.`hg help config|grep '^ "'| \
1168 > tail -1|sed 's![ "]*!!g'`| \
1193 > tail -1|sed 's![ "]*!!g'`| \
1169 > grep "hg help -c config" > /dev/null
1194 > grep "hg help -c config" > /dev/null
1170 [1]
1195 [1]
1171
1196
1172 note to use help -c for general hg help config:
1197 note to use help -c for general hg help config:
1173
1198
1174 $ hg help config |grep "hg help -c config" > /dev/null
1199 $ hg help config |grep "hg help -c config" > /dev/null
1175
1200
1176 Test templating help
1201 Test templating help
1177
1202
1178 $ hg help templating | egrep '(desc|diffstat|firstline|nonempty) '
1203 $ hg help templating | egrep '(desc|diffstat|firstline|nonempty) '
1179 desc String. The text of the changeset description.
1204 desc String. The text of the changeset description.
1180 diffstat String. Statistics of changes with the following format:
1205 diffstat String. Statistics of changes with the following format:
1181 firstline Any text. Returns the first line of text.
1206 firstline Any text. Returns the first line of text.
1182 nonempty Any text. Returns '(none)' if the string is empty.
1207 nonempty Any text. Returns '(none)' if the string is empty.
1183
1208
1184 Test deprecated items
1209 Test deprecated items
1185
1210
1186 $ hg help -v templating | grep currentbookmark
1211 $ hg help -v templating | grep currentbookmark
1187 currentbookmark
1212 currentbookmark
1188 $ hg help templating | (grep currentbookmark || true)
1213 $ hg help templating | (grep currentbookmark || true)
1189
1214
1190 Test help hooks
1215 Test help hooks
1191
1216
1192 $ cat > helphook1.py <<EOF
1217 $ cat > helphook1.py <<EOF
1193 > from mercurial import help
1218 > from mercurial import help
1194 >
1219 >
1195 > def rewrite(ui, topic, doc):
1220 > def rewrite(ui, topic, doc):
1196 > return doc + '\nhelphook1\n'
1221 > return doc + '\nhelphook1\n'
1197 >
1222 >
1198 > def extsetup(ui):
1223 > def extsetup(ui):
1199 > help.addtopichook('revsets', rewrite)
1224 > help.addtopichook('revsets', rewrite)
1200 > EOF
1225 > EOF
1201 $ cat > helphook2.py <<EOF
1226 $ cat > helphook2.py <<EOF
1202 > from mercurial import help
1227 > from mercurial import help
1203 >
1228 >
1204 > def rewrite(ui, topic, doc):
1229 > def rewrite(ui, topic, doc):
1205 > return doc + '\nhelphook2\n'
1230 > return doc + '\nhelphook2\n'
1206 >
1231 >
1207 > def extsetup(ui):
1232 > def extsetup(ui):
1208 > help.addtopichook('revsets', rewrite)
1233 > help.addtopichook('revsets', rewrite)
1209 > EOF
1234 > EOF
1210 $ echo '[extensions]' >> $HGRCPATH
1235 $ echo '[extensions]' >> $HGRCPATH
1211 $ echo "helphook1 = `pwd`/helphook1.py" >> $HGRCPATH
1236 $ echo "helphook1 = `pwd`/helphook1.py" >> $HGRCPATH
1212 $ echo "helphook2 = `pwd`/helphook2.py" >> $HGRCPATH
1237 $ echo "helphook2 = `pwd`/helphook2.py" >> $HGRCPATH
1213 $ hg help revsets | grep helphook
1238 $ hg help revsets | grep helphook
1214 helphook1
1239 helphook1
1215 helphook2
1240 helphook2
1216
1241
1217 help -c should only show debug --debug
1242 help -c should only show debug --debug
1218
1243
1219 $ hg help -c --debug|egrep debug|wc -l|egrep '^\s*0\s*$'
1244 $ hg help -c --debug|egrep debug|wc -l|egrep '^\s*0\s*$'
1220 [1]
1245 [1]
1221
1246
1222 help -c should only show deprecated for -v
1247 help -c should only show deprecated for -v
1223
1248
1224 $ hg help -c -v|egrep DEPRECATED|wc -l|egrep '^\s*0\s*$'
1249 $ hg help -c -v|egrep DEPRECATED|wc -l|egrep '^\s*0\s*$'
1225 [1]
1250 [1]
1226
1251
1227 Test -e / -c / -k combinations
1252 Test -e / -c / -k combinations
1228
1253
1229 $ hg help -c|egrep '^[A-Z].*:|^ debug'
1254 $ hg help -c|egrep '^[A-Z].*:|^ debug'
1230 Commands:
1255 Commands:
1231 $ hg help -e|egrep '^[A-Z].*:|^ debug'
1256 $ hg help -e|egrep '^[A-Z].*:|^ debug'
1232 Extensions:
1257 Extensions:
1233 $ hg help -k|egrep '^[A-Z].*:|^ debug'
1258 $ hg help -k|egrep '^[A-Z].*:|^ debug'
1234 Topics:
1259 Topics:
1235 Commands:
1260 Commands:
1236 Extensions:
1261 Extensions:
1237 Extension Commands:
1262 Extension Commands:
1238 $ hg help -c schemes
1263 $ hg help -c schemes
1239 abort: no such help topic: schemes
1264 abort: no such help topic: schemes
1240 (try "hg help --keyword schemes")
1265 (try "hg help --keyword schemes")
1241 [255]
1266 [255]
1242 $ hg help -e schemes |head -1
1267 $ hg help -e schemes |head -1
1243 schemes extension - extend schemes with shortcuts to repository swarms
1268 schemes extension - extend schemes with shortcuts to repository swarms
1244 $ hg help -c -k dates |egrep '^(Topics|Extensions|Commands):'
1269 $ hg help -c -k dates |egrep '^(Topics|Extensions|Commands):'
1245 Commands:
1270 Commands:
1246 $ hg help -e -k a |egrep '^(Topics|Extensions|Commands):'
1271 $ hg help -e -k a |egrep '^(Topics|Extensions|Commands):'
1247 Extensions:
1272 Extensions:
1248 $ hg help -e -c -k date |egrep '^(Topics|Extensions|Commands):'
1273 $ hg help -e -c -k date |egrep '^(Topics|Extensions|Commands):'
1249 Extensions:
1274 Extensions:
1250 Commands:
1275 Commands:
1251 $ hg help -c commit > /dev/null
1276 $ hg help -c commit > /dev/null
1252 $ hg help -e -c commit > /dev/null
1277 $ hg help -e -c commit > /dev/null
1253 $ hg help -e commit > /dev/null
1278 $ hg help -e commit > /dev/null
1254 abort: no such help topic: commit
1279 abort: no such help topic: commit
1255 (try "hg help --keyword commit")
1280 (try "hg help --keyword commit")
1256 [255]
1281 [255]
1257
1282
1258 Test keyword search help
1283 Test keyword search help
1259
1284
1260 $ cat > prefixedname.py <<EOF
1285 $ cat > prefixedname.py <<EOF
1261 > '''matched against word "clone"
1286 > '''matched against word "clone"
1262 > '''
1287 > '''
1263 > EOF
1288 > EOF
1264 $ echo '[extensions]' >> $HGRCPATH
1289 $ echo '[extensions]' >> $HGRCPATH
1265 $ echo "dot.dot.prefixedname = `pwd`/prefixedname.py" >> $HGRCPATH
1290 $ echo "dot.dot.prefixedname = `pwd`/prefixedname.py" >> $HGRCPATH
1266 $ hg help -k clone
1291 $ hg help -k clone
1267 Topics:
1292 Topics:
1268
1293
1269 config Configuration Files
1294 config Configuration Files
1270 extensions Using Additional Features
1295 extensions Using Additional Features
1271 glossary Glossary
1296 glossary Glossary
1272 phases Working with Phases
1297 phases Working with Phases
1273 subrepos Subrepositories
1298 subrepos Subrepositories
1274 urls URL Paths
1299 urls URL Paths
1275
1300
1276 Commands:
1301 Commands:
1277
1302
1278 bookmarks create a new bookmark or list existing bookmarks
1303 bookmarks create a new bookmark or list existing bookmarks
1279 clone make a copy of an existing repository
1304 clone make a copy of an existing repository
1280 paths show aliases for remote repositories
1305 paths show aliases for remote repositories
1281 update update working directory (or switch revisions)
1306 update update working directory (or switch revisions)
1282
1307
1283 Extensions:
1308 Extensions:
1284
1309
1285 clonebundles advertise pre-generated bundles to seed clones (experimental)
1310 clonebundles advertise pre-generated bundles to seed clones (experimental)
1286 prefixedname matched against word "clone"
1311 prefixedname matched against word "clone"
1287 relink recreates hardlinks between repository clones
1312 relink recreates hardlinks between repository clones
1288
1313
1289 Extension Commands:
1314 Extension Commands:
1290
1315
1291 qclone clone main and patch repository at same time
1316 qclone clone main and patch repository at same time
1292
1317
1293 Test unfound topic
1318 Test unfound topic
1294
1319
1295 $ hg help nonexistingtopicthatwillneverexisteverever
1320 $ hg help nonexistingtopicthatwillneverexisteverever
1296 abort: no such help topic: nonexistingtopicthatwillneverexisteverever
1321 abort: no such help topic: nonexistingtopicthatwillneverexisteverever
1297 (try "hg help --keyword nonexistingtopicthatwillneverexisteverever")
1322 (try "hg help --keyword nonexistingtopicthatwillneverexisteverever")
1298 [255]
1323 [255]
1299
1324
1300 Test unfound keyword
1325 Test unfound keyword
1301
1326
1302 $ hg help --keyword nonexistingwordthatwillneverexisteverever
1327 $ hg help --keyword nonexistingwordthatwillneverexisteverever
1303 abort: no matches
1328 abort: no matches
1304 (try "hg help" for a list of topics)
1329 (try "hg help" for a list of topics)
1305 [255]
1330 [255]
1306
1331
1307 Test omit indicating for help
1332 Test omit indicating for help
1308
1333
1309 $ cat > addverboseitems.py <<EOF
1334 $ cat > addverboseitems.py <<EOF
1310 > '''extension to test omit indicating.
1335 > '''extension to test omit indicating.
1311 >
1336 >
1312 > This paragraph is never omitted (for extension)
1337 > This paragraph is never omitted (for extension)
1313 >
1338 >
1314 > .. container:: verbose
1339 > .. container:: verbose
1315 >
1340 >
1316 > This paragraph is omitted,
1341 > This paragraph is omitted,
1317 > if :hg:\`help\` is invoked without \`\`-v\`\` (for extension)
1342 > if :hg:\`help\` is invoked without \`\`-v\`\` (for extension)
1318 >
1343 >
1319 > This paragraph is never omitted, too (for extension)
1344 > This paragraph is never omitted, too (for extension)
1320 > '''
1345 > '''
1321 >
1346 >
1322 > from mercurial import help, commands
1347 > from mercurial import help, commands
1323 > testtopic = """This paragraph is never omitted (for topic).
1348 > testtopic = """This paragraph is never omitted (for topic).
1324 >
1349 >
1325 > .. container:: verbose
1350 > .. container:: verbose
1326 >
1351 >
1327 > This paragraph is omitted,
1352 > This paragraph is omitted,
1328 > if :hg:\`help\` is invoked without \`\`-v\`\` (for topic)
1353 > if :hg:\`help\` is invoked without \`\`-v\`\` (for topic)
1329 >
1354 >
1330 > This paragraph is never omitted, too (for topic)
1355 > This paragraph is never omitted, too (for topic)
1331 > """
1356 > """
1332 > def extsetup(ui):
1357 > def extsetup(ui):
1333 > help.helptable.append((["topic-containing-verbose"],
1358 > help.helptable.append((["topic-containing-verbose"],
1334 > "This is the topic to test omit indicating.",
1359 > "This is the topic to test omit indicating.",
1335 > lambda ui: testtopic))
1360 > lambda ui: testtopic))
1336 > EOF
1361 > EOF
1337 $ echo '[extensions]' >> $HGRCPATH
1362 $ echo '[extensions]' >> $HGRCPATH
1338 $ echo "addverboseitems = `pwd`/addverboseitems.py" >> $HGRCPATH
1363 $ echo "addverboseitems = `pwd`/addverboseitems.py" >> $HGRCPATH
1339 $ hg help addverboseitems
1364 $ hg help addverboseitems
1340 addverboseitems extension - extension to test omit indicating.
1365 addverboseitems extension - extension to test omit indicating.
1341
1366
1342 This paragraph is never omitted (for extension)
1367 This paragraph is never omitted (for extension)
1343
1368
1344 This paragraph is never omitted, too (for extension)
1369 This paragraph is never omitted, too (for extension)
1345
1370
1346 (some details hidden, use --verbose to show complete help)
1371 (some details hidden, use --verbose to show complete help)
1347
1372
1348 no commands defined
1373 no commands defined
1349 $ hg help -v addverboseitems
1374 $ hg help -v addverboseitems
1350 addverboseitems extension - extension to test omit indicating.
1375 addverboseitems extension - extension to test omit indicating.
1351
1376
1352 This paragraph is never omitted (for extension)
1377 This paragraph is never omitted (for extension)
1353
1378
1354 This paragraph is omitted, if "hg help" is invoked without "-v" (for
1379 This paragraph is omitted, if "hg help" is invoked without "-v" (for
1355 extension)
1380 extension)
1356
1381
1357 This paragraph is never omitted, too (for extension)
1382 This paragraph is never omitted, too (for extension)
1358
1383
1359 no commands defined
1384 no commands defined
1360 $ hg help topic-containing-verbose
1385 $ hg help topic-containing-verbose
1361 This is the topic to test omit indicating.
1386 This is the topic to test omit indicating.
1362 """"""""""""""""""""""""""""""""""""""""""
1387 """"""""""""""""""""""""""""""""""""""""""
1363
1388
1364 This paragraph is never omitted (for topic).
1389 This paragraph is never omitted (for topic).
1365
1390
1366 This paragraph is never omitted, too (for topic)
1391 This paragraph is never omitted, too (for topic)
1367
1392
1368 (some details hidden, use --verbose to show complete help)
1393 (some details hidden, use --verbose to show complete help)
1369 $ hg help -v topic-containing-verbose
1394 $ hg help -v topic-containing-verbose
1370 This is the topic to test omit indicating.
1395 This is the topic to test omit indicating.
1371 """"""""""""""""""""""""""""""""""""""""""
1396 """"""""""""""""""""""""""""""""""""""""""
1372
1397
1373 This paragraph is never omitted (for topic).
1398 This paragraph is never omitted (for topic).
1374
1399
1375 This paragraph is omitted, if "hg help" is invoked without "-v" (for
1400 This paragraph is omitted, if "hg help" is invoked without "-v" (for
1376 topic)
1401 topic)
1377
1402
1378 This paragraph is never omitted, too (for topic)
1403 This paragraph is never omitted, too (for topic)
1379
1404
1380 Test section lookup
1405 Test section lookup
1381
1406
1382 $ hg help revset.merge
1407 $ hg help revset.merge
1383 "merge()"
1408 "merge()"
1384 Changeset is a merge changeset.
1409 Changeset is a merge changeset.
1385
1410
1386 $ hg help glossary.dag
1411 $ hg help glossary.dag
1387 DAG
1412 DAG
1388 The repository of changesets of a distributed version control system
1413 The repository of changesets of a distributed version control system
1389 (DVCS) can be described as a directed acyclic graph (DAG), consisting
1414 (DVCS) can be described as a directed acyclic graph (DAG), consisting
1390 of nodes and edges, where nodes correspond to changesets and edges
1415 of nodes and edges, where nodes correspond to changesets and edges
1391 imply a parent -> child relation. This graph can be visualized by
1416 imply a parent -> child relation. This graph can be visualized by
1392 graphical tools such as "hg log --graph". In Mercurial, the DAG is
1417 graphical tools such as "hg log --graph". In Mercurial, the DAG is
1393 limited by the requirement for children to have at most two parents.
1418 limited by the requirement for children to have at most two parents.
1394
1419
1395
1420
1396 $ hg help hgrc.paths
1421 $ hg help hgrc.paths
1397 "paths"
1422 "paths"
1398 -------
1423 -------
1399
1424
1400 Assigns symbolic names and behavior to repositories.
1425 Assigns symbolic names and behavior to repositories.
1401
1426
1402 Options are symbolic names defining the URL or directory that is the
1427 Options are symbolic names defining the URL or directory that is the
1403 location of the repository. Example:
1428 location of the repository. Example:
1404
1429
1405 [paths]
1430 [paths]
1406 my_server = https://example.com/my_repo
1431 my_server = https://example.com/my_repo
1407 local_path = /home/me/repo
1432 local_path = /home/me/repo
1408
1433
1409 These symbolic names can be used from the command line. To pull from
1434 These symbolic names can be used from the command line. To pull from
1410 "my_server": "hg pull my_server". To push to "local_path": "hg push
1435 "my_server": "hg pull my_server". To push to "local_path": "hg push
1411 local_path".
1436 local_path".
1412
1437
1413 Options containing colons (":") denote sub-options that can influence
1438 Options containing colons (":") denote sub-options that can influence
1414 behavior for that specific path. Example:
1439 behavior for that specific path. Example:
1415
1440
1416 [paths]
1441 [paths]
1417 my_server = https://example.com/my_path
1442 my_server = https://example.com/my_path
1418 my_server:pushurl = ssh://example.com/my_path
1443 my_server:pushurl = ssh://example.com/my_path
1419
1444
1420 The following sub-options can be defined:
1445 The following sub-options can be defined:
1421
1446
1422 "pushurl"
1447 "pushurl"
1423 The URL to use for push operations. If not defined, the location
1448 The URL to use for push operations. If not defined, the location
1424 defined by the path's main entry is used.
1449 defined by the path's main entry is used.
1425
1450
1426 The following special named paths exist:
1451 The following special named paths exist:
1427
1452
1428 "default"
1453 "default"
1429 The URL or directory to use when no source or remote is specified.
1454 The URL or directory to use when no source or remote is specified.
1430
1455
1431 "hg clone" will automatically define this path to the location the
1456 "hg clone" will automatically define this path to the location the
1432 repository was cloned from.
1457 repository was cloned from.
1433
1458
1434 "default-push"
1459 "default-push"
1435 (deprecated) The URL or directory for the default "hg push" location.
1460 (deprecated) The URL or directory for the default "hg push" location.
1436 "default:pushurl" should be used instead.
1461 "default:pushurl" should be used instead.
1437
1462
1438 $ hg help glossary.mcguffin
1463 $ hg help glossary.mcguffin
1439 abort: help section not found
1464 abort: help section not found
1440 [255]
1465 [255]
1441
1466
1442 $ hg help glossary.mc.guffin
1467 $ hg help glossary.mc.guffin
1443 abort: help section not found
1468 abort: help section not found
1444 [255]
1469 [255]
1445
1470
1446 $ hg help template.files
1471 $ hg help template.files
1447 files List of strings. All files modified, added, or removed by
1472 files List of strings. All files modified, added, or removed by
1448 this changeset.
1473 this changeset.
1449
1474
1450 Test dynamic list of merge tools only shows up once
1475 Test dynamic list of merge tools only shows up once
1451 $ hg help merge-tools
1476 $ hg help merge-tools
1452 Merge Tools
1477 Merge Tools
1453 """""""""""
1478 """""""""""
1454
1479
1455 To merge files Mercurial uses merge tools.
1480 To merge files Mercurial uses merge tools.
1456
1481
1457 A merge tool combines two different versions of a file into a merged file.
1482 A merge tool combines two different versions of a file into a merged file.
1458 Merge tools are given the two files and the greatest common ancestor of
1483 Merge tools are given the two files and the greatest common ancestor of
1459 the two file versions, so they can determine the changes made on both
1484 the two file versions, so they can determine the changes made on both
1460 branches.
1485 branches.
1461
1486
1462 Merge tools are used both for "hg resolve", "hg merge", "hg update", "hg
1487 Merge tools are used both for "hg resolve", "hg merge", "hg update", "hg
1463 backout" and in several extensions.
1488 backout" and in several extensions.
1464
1489
1465 Usually, the merge tool tries to automatically reconcile the files by
1490 Usually, the merge tool tries to automatically reconcile the files by
1466 combining all non-overlapping changes that occurred separately in the two
1491 combining all non-overlapping changes that occurred separately in the two
1467 different evolutions of the same initial base file. Furthermore, some
1492 different evolutions of the same initial base file. Furthermore, some
1468 interactive merge programs make it easier to manually resolve conflicting
1493 interactive merge programs make it easier to manually resolve conflicting
1469 merges, either in a graphical way, or by inserting some conflict markers.
1494 merges, either in a graphical way, or by inserting some conflict markers.
1470 Mercurial does not include any interactive merge programs but relies on
1495 Mercurial does not include any interactive merge programs but relies on
1471 external tools for that.
1496 external tools for that.
1472
1497
1473 Available merge tools
1498 Available merge tools
1474 =====================
1499 =====================
1475
1500
1476 External merge tools and their properties are configured in the merge-
1501 External merge tools and their properties are configured in the merge-
1477 tools configuration section - see hgrc(5) - but they can often just be
1502 tools configuration section - see hgrc(5) - but they can often just be
1478 named by their executable.
1503 named by their executable.
1479
1504
1480 A merge tool is generally usable if its executable can be found on the
1505 A merge tool is generally usable if its executable can be found on the
1481 system and if it can handle the merge. The executable is found if it is an
1506 system and if it can handle the merge. The executable is found if it is an
1482 absolute or relative executable path or the name of an application in the
1507 absolute or relative executable path or the name of an application in the
1483 executable search path. The tool is assumed to be able to handle the merge
1508 executable search path. The tool is assumed to be able to handle the merge
1484 if it can handle symlinks if the file is a symlink, if it can handle
1509 if it can handle symlinks if the file is a symlink, if it can handle
1485 binary files if the file is binary, and if a GUI is available if the tool
1510 binary files if the file is binary, and if a GUI is available if the tool
1486 requires a GUI.
1511 requires a GUI.
1487
1512
1488 There are some internal merge tools which can be used. The internal merge
1513 There are some internal merge tools which can be used. The internal merge
1489 tools are:
1514 tools are:
1490
1515
1491 ":dump"
1516 ":dump"
1492 Creates three versions of the files to merge, containing the contents of
1517 Creates three versions of the files to merge, containing the contents of
1493 local, other and base. These files can then be used to perform a merge
1518 local, other and base. These files can then be used to perform a merge
1494 manually. If the file to be merged is named "a.txt", these files will
1519 manually. If the file to be merged is named "a.txt", these files will
1495 accordingly be named "a.txt.local", "a.txt.other" and "a.txt.base" and
1520 accordingly be named "a.txt.local", "a.txt.other" and "a.txt.base" and
1496 they will be placed in the same directory as "a.txt".
1521 they will be placed in the same directory as "a.txt".
1497
1522
1498 ":fail"
1523 ":fail"
1499 Rather than attempting to merge files that were modified on both
1524 Rather than attempting to merge files that were modified on both
1500 branches, it marks them as unresolved. The resolve command must be used
1525 branches, it marks them as unresolved. The resolve command must be used
1501 to resolve these conflicts.
1526 to resolve these conflicts.
1502
1527
1503 ":local"
1528 ":local"
1504 Uses the local version of files as the merged version.
1529 Uses the local version of files as the merged version.
1505
1530
1506 ":merge"
1531 ":merge"
1507 Uses the internal non-interactive simple merge algorithm for merging
1532 Uses the internal non-interactive simple merge algorithm for merging
1508 files. It will fail if there are any conflicts and leave markers in the
1533 files. It will fail if there are any conflicts and leave markers in the
1509 partially merged file. Markers will have two sections, one for each side
1534 partially merged file. Markers will have two sections, one for each side
1510 of merge.
1535 of merge.
1511
1536
1512 ":merge-local"
1537 ":merge-local"
1513 Like :merge, but resolve all conflicts non-interactively in favor of the
1538 Like :merge, but resolve all conflicts non-interactively in favor of the
1514 local changes.
1539 local changes.
1515
1540
1516 ":merge-other"
1541 ":merge-other"
1517 Like :merge, but resolve all conflicts non-interactively in favor of the
1542 Like :merge, but resolve all conflicts non-interactively in favor of the
1518 other changes.
1543 other changes.
1519
1544
1520 ":merge3"
1545 ":merge3"
1521 Uses the internal non-interactive simple merge algorithm for merging
1546 Uses the internal non-interactive simple merge algorithm for merging
1522 files. It will fail if there are any conflicts and leave markers in the
1547 files. It will fail if there are any conflicts and leave markers in the
1523 partially merged file. Marker will have three sections, one from each
1548 partially merged file. Marker will have three sections, one from each
1524 side of the merge and one for the base content.
1549 side of the merge and one for the base content.
1525
1550
1526 ":other"
1551 ":other"
1527 Uses the other version of files as the merged version.
1552 Uses the other version of files as the merged version.
1528
1553
1529 ":prompt"
1554 ":prompt"
1530 Asks the user which of the local or the other version to keep as the
1555 Asks the user which of the local or the other version to keep as the
1531 merged version.
1556 merged version.
1532
1557
1533 ":tagmerge"
1558 ":tagmerge"
1534 Uses the internal tag merge algorithm (experimental).
1559 Uses the internal tag merge algorithm (experimental).
1535
1560
1536 ":union"
1561 ":union"
1537 Uses the internal non-interactive simple merge algorithm for merging
1562 Uses the internal non-interactive simple merge algorithm for merging
1538 files. It will use both left and right sides for conflict regions. No
1563 files. It will use both left and right sides for conflict regions. No
1539 markers are inserted.
1564 markers are inserted.
1540
1565
1541 Internal tools are always available and do not require a GUI but will by
1566 Internal tools are always available and do not require a GUI but will by
1542 default not handle symlinks or binary files.
1567 default not handle symlinks or binary files.
1543
1568
1544 Choosing a merge tool
1569 Choosing a merge tool
1545 =====================
1570 =====================
1546
1571
1547 Mercurial uses these rules when deciding which merge tool to use:
1572 Mercurial uses these rules when deciding which merge tool to use:
1548
1573
1549 1. If a tool has been specified with the --tool option to merge or
1574 1. If a tool has been specified with the --tool option to merge or
1550 resolve, it is used. If it is the name of a tool in the merge-tools
1575 resolve, it is used. If it is the name of a tool in the merge-tools
1551 configuration, its configuration is used. Otherwise the specified tool
1576 configuration, its configuration is used. Otherwise the specified tool
1552 must be executable by the shell.
1577 must be executable by the shell.
1553 2. If the "HGMERGE" environment variable is present, its value is used and
1578 2. If the "HGMERGE" environment variable is present, its value is used and
1554 must be executable by the shell.
1579 must be executable by the shell.
1555 3. If the filename of the file to be merged matches any of the patterns in
1580 3. If the filename of the file to be merged matches any of the patterns in
1556 the merge-patterns configuration section, the first usable merge tool
1581 the merge-patterns configuration section, the first usable merge tool
1557 corresponding to a matching pattern is used. Here, binary capabilities
1582 corresponding to a matching pattern is used. Here, binary capabilities
1558 of the merge tool are not considered.
1583 of the merge tool are not considered.
1559 4. If ui.merge is set it will be considered next. If the value is not the
1584 4. If ui.merge is set it will be considered next. If the value is not the
1560 name of a configured tool, the specified value is used and must be
1585 name of a configured tool, the specified value is used and must be
1561 executable by the shell. Otherwise the named tool is used if it is
1586 executable by the shell. Otherwise the named tool is used if it is
1562 usable.
1587 usable.
1563 5. If any usable merge tools are present in the merge-tools configuration
1588 5. If any usable merge tools are present in the merge-tools configuration
1564 section, the one with the highest priority is used.
1589 section, the one with the highest priority is used.
1565 6. If a program named "hgmerge" can be found on the system, it is used -
1590 6. If a program named "hgmerge" can be found on the system, it is used -
1566 but it will by default not be used for symlinks and binary files.
1591 but it will by default not be used for symlinks and binary files.
1567 7. If the file to be merged is not binary and is not a symlink, then
1592 7. If the file to be merged is not binary and is not a symlink, then
1568 internal ":merge" is used.
1593 internal ":merge" is used.
1569 8. The merge of the file fails and must be resolved before commit.
1594 8. The merge of the file fails and must be resolved before commit.
1570
1595
1571 Note:
1596 Note:
1572 After selecting a merge program, Mercurial will by default attempt to
1597 After selecting a merge program, Mercurial will by default attempt to
1573 merge the files using a simple merge algorithm first. Only if it
1598 merge the files using a simple merge algorithm first. Only if it
1574 doesn't succeed because of conflicting changes Mercurial will actually
1599 doesn't succeed because of conflicting changes Mercurial will actually
1575 execute the merge program. Whether to use the simple merge algorithm
1600 execute the merge program. Whether to use the simple merge algorithm
1576 first can be controlled by the premerge setting of the merge tool.
1601 first can be controlled by the premerge setting of the merge tool.
1577 Premerge is enabled by default unless the file is binary or a symlink.
1602 Premerge is enabled by default unless the file is binary or a symlink.
1578
1603
1579 See the merge-tools and ui sections of hgrc(5) for details on the
1604 See the merge-tools and ui sections of hgrc(5) for details on the
1580 configuration of merge tools.
1605 configuration of merge tools.
1581
1606
1582 Test usage of section marks in help documents
1607 Test usage of section marks in help documents
1583
1608
1584 $ cd "$TESTDIR"/../doc
1609 $ cd "$TESTDIR"/../doc
1585 $ python check-seclevel.py
1610 $ python check-seclevel.py
1586 $ cd $TESTTMP
1611 $ cd $TESTTMP
1587
1612
1588 #if serve
1613 #if serve
1589
1614
1590 Test the help pages in hgweb.
1615 Test the help pages in hgweb.
1591
1616
1592 Dish up an empty repo; serve it cold.
1617 Dish up an empty repo; serve it cold.
1593
1618
1594 $ hg init "$TESTTMP/test"
1619 $ hg init "$TESTTMP/test"
1595 $ hg serve -R "$TESTTMP/test" -n test -p $HGPORT -d --pid-file=hg.pid
1620 $ hg serve -R "$TESTTMP/test" -n test -p $HGPORT -d --pid-file=hg.pid
1596 $ cat hg.pid >> $DAEMON_PIDS
1621 $ cat hg.pid >> $DAEMON_PIDS
1597
1622
1598 $ get-with-headers.py 127.0.0.1:$HGPORT "help"
1623 $ get-with-headers.py 127.0.0.1:$HGPORT "help"
1599 200 Script output follows
1624 200 Script output follows
1600
1625
1601 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
1626 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
1602 <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en-US">
1627 <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en-US">
1603 <head>
1628 <head>
1604 <link rel="icon" href="/static/hgicon.png" type="image/png" />
1629 <link rel="icon" href="/static/hgicon.png" type="image/png" />
1605 <meta name="robots" content="index, nofollow" />
1630 <meta name="robots" content="index, nofollow" />
1606 <link rel="stylesheet" href="/static/style-paper.css" type="text/css" />
1631 <link rel="stylesheet" href="/static/style-paper.css" type="text/css" />
1607 <script type="text/javascript" src="/static/mercurial.js"></script>
1632 <script type="text/javascript" src="/static/mercurial.js"></script>
1608
1633
1609 <title>Help: Index</title>
1634 <title>Help: Index</title>
1610 </head>
1635 </head>
1611 <body>
1636 <body>
1612
1637
1613 <div class="container">
1638 <div class="container">
1614 <div class="menu">
1639 <div class="menu">
1615 <div class="logo">
1640 <div class="logo">
1616 <a href="https://mercurial-scm.org/">
1641 <a href="https://mercurial-scm.org/">
1617 <img src="/static/hglogo.png" alt="mercurial" /></a>
1642 <img src="/static/hglogo.png" alt="mercurial" /></a>
1618 </div>
1643 </div>
1619 <ul>
1644 <ul>
1620 <li><a href="/shortlog">log</a></li>
1645 <li><a href="/shortlog">log</a></li>
1621 <li><a href="/graph">graph</a></li>
1646 <li><a href="/graph">graph</a></li>
1622 <li><a href="/tags">tags</a></li>
1647 <li><a href="/tags">tags</a></li>
1623 <li><a href="/bookmarks">bookmarks</a></li>
1648 <li><a href="/bookmarks">bookmarks</a></li>
1624 <li><a href="/branches">branches</a></li>
1649 <li><a href="/branches">branches</a></li>
1625 </ul>
1650 </ul>
1626 <ul>
1651 <ul>
1627 <li class="active">help</li>
1652 <li class="active">help</li>
1628 </ul>
1653 </ul>
1629 </div>
1654 </div>
1630
1655
1631 <div class="main">
1656 <div class="main">
1632 <h2 class="breadcrumb"><a href="/">Mercurial</a> </h2>
1657 <h2 class="breadcrumb"><a href="/">Mercurial</a> </h2>
1633 <form class="search" action="/log">
1658 <form class="search" action="/log">
1634
1659
1635 <p><input name="rev" id="search1" type="text" size="30" /></p>
1660 <p><input name="rev" id="search1" type="text" size="30" /></p>
1636 <div id="hint">Find changesets by keywords (author, files, the commit message), revision
1661 <div id="hint">Find changesets by keywords (author, files, the commit message), revision
1637 number or hash, or <a href="/help/revsets">revset expression</a>.</div>
1662 number or hash, or <a href="/help/revsets">revset expression</a>.</div>
1638 </form>
1663 </form>
1639 <table class="bigtable">
1664 <table class="bigtable">
1640 <tr><td colspan="2"><h2><a name="main" href="#topics">Topics</a></h2></td></tr>
1665 <tr><td colspan="2"><h2><a name="main" href="#topics">Topics</a></h2></td></tr>
1641
1666
1642 <tr><td>
1667 <tr><td>
1643 <a href="/help/config">
1668 <a href="/help/config">
1644 config
1669 config
1645 </a>
1670 </a>
1646 </td><td>
1671 </td><td>
1647 Configuration Files
1672 Configuration Files
1648 </td></tr>
1673 </td></tr>
1649 <tr><td>
1674 <tr><td>
1650 <a href="/help/dates">
1675 <a href="/help/dates">
1651 dates
1676 dates
1652 </a>
1677 </a>
1653 </td><td>
1678 </td><td>
1654 Date Formats
1679 Date Formats
1655 </td></tr>
1680 </td></tr>
1656 <tr><td>
1681 <tr><td>
1657 <a href="/help/diffs">
1682 <a href="/help/diffs">
1658 diffs
1683 diffs
1659 </a>
1684 </a>
1660 </td><td>
1685 </td><td>
1661 Diff Formats
1686 Diff Formats
1662 </td></tr>
1687 </td></tr>
1663 <tr><td>
1688 <tr><td>
1664 <a href="/help/environment">
1689 <a href="/help/environment">
1665 environment
1690 environment
1666 </a>
1691 </a>
1667 </td><td>
1692 </td><td>
1668 Environment Variables
1693 Environment Variables
1669 </td></tr>
1694 </td></tr>
1670 <tr><td>
1695 <tr><td>
1671 <a href="/help/extensions">
1696 <a href="/help/extensions">
1672 extensions
1697 extensions
1673 </a>
1698 </a>
1674 </td><td>
1699 </td><td>
1675 Using Additional Features
1700 Using Additional Features
1676 </td></tr>
1701 </td></tr>
1677 <tr><td>
1702 <tr><td>
1678 <a href="/help/filesets">
1703 <a href="/help/filesets">
1679 filesets
1704 filesets
1680 </a>
1705 </a>
1681 </td><td>
1706 </td><td>
1682 Specifying File Sets
1707 Specifying File Sets
1683 </td></tr>
1708 </td></tr>
1684 <tr><td>
1709 <tr><td>
1685 <a href="/help/glossary">
1710 <a href="/help/glossary">
1686 glossary
1711 glossary
1687 </a>
1712 </a>
1688 </td><td>
1713 </td><td>
1689 Glossary
1714 Glossary
1690 </td></tr>
1715 </td></tr>
1691 <tr><td>
1716 <tr><td>
1692 <a href="/help/hgignore">
1717 <a href="/help/hgignore">
1693 hgignore
1718 hgignore
1694 </a>
1719 </a>
1695 </td><td>
1720 </td><td>
1696 Syntax for Mercurial Ignore Files
1721 Syntax for Mercurial Ignore Files
1697 </td></tr>
1722 </td></tr>
1698 <tr><td>
1723 <tr><td>
1699 <a href="/help/hgweb">
1724 <a href="/help/hgweb">
1700 hgweb
1725 hgweb
1701 </a>
1726 </a>
1702 </td><td>
1727 </td><td>
1703 Configuring hgweb
1728 Configuring hgweb
1704 </td></tr>
1729 </td></tr>
1705 <tr><td>
1730 <tr><td>
1706 <a href="/help/internals">
1731 <a href="/help/internals">
1707 internals
1732 internals
1708 </a>
1733 </a>
1709 </td><td>
1734 </td><td>
1710 Technical implementation topics
1735 Technical implementation topics
1711 </td></tr>
1736 </td></tr>
1712 <tr><td>
1737 <tr><td>
1713 <a href="/help/merge-tools">
1738 <a href="/help/merge-tools">
1714 merge-tools
1739 merge-tools
1715 </a>
1740 </a>
1716 </td><td>
1741 </td><td>
1717 Merge Tools
1742 Merge Tools
1718 </td></tr>
1743 </td></tr>
1719 <tr><td>
1744 <tr><td>
1720 <a href="/help/multirevs">
1745 <a href="/help/multirevs">
1721 multirevs
1746 multirevs
1722 </a>
1747 </a>
1723 </td><td>
1748 </td><td>
1724 Specifying Multiple Revisions
1749 Specifying Multiple Revisions
1725 </td></tr>
1750 </td></tr>
1726 <tr><td>
1751 <tr><td>
1727 <a href="/help/patterns">
1752 <a href="/help/patterns">
1728 patterns
1753 patterns
1729 </a>
1754 </a>
1730 </td><td>
1755 </td><td>
1731 File Name Patterns
1756 File Name Patterns
1732 </td></tr>
1757 </td></tr>
1733 <tr><td>
1758 <tr><td>
1734 <a href="/help/phases">
1759 <a href="/help/phases">
1735 phases
1760 phases
1736 </a>
1761 </a>
1737 </td><td>
1762 </td><td>
1738 Working with Phases
1763 Working with Phases
1739 </td></tr>
1764 </td></tr>
1740 <tr><td>
1765 <tr><td>
1741 <a href="/help/revisions">
1766 <a href="/help/revisions">
1742 revisions
1767 revisions
1743 </a>
1768 </a>
1744 </td><td>
1769 </td><td>
1745 Specifying Single Revisions
1770 Specifying Single Revisions
1746 </td></tr>
1771 </td></tr>
1747 <tr><td>
1772 <tr><td>
1748 <a href="/help/revsets">
1773 <a href="/help/revsets">
1749 revsets
1774 revsets
1750 </a>
1775 </a>
1751 </td><td>
1776 </td><td>
1752 Specifying Revision Sets
1777 Specifying Revision Sets
1753 </td></tr>
1778 </td></tr>
1754 <tr><td>
1779 <tr><td>
1755 <a href="/help/scripting">
1780 <a href="/help/scripting">
1756 scripting
1781 scripting
1757 </a>
1782 </a>
1758 </td><td>
1783 </td><td>
1759 Using Mercurial from scripts and automation
1784 Using Mercurial from scripts and automation
1760 </td></tr>
1785 </td></tr>
1761 <tr><td>
1786 <tr><td>
1762 <a href="/help/subrepos">
1787 <a href="/help/subrepos">
1763 subrepos
1788 subrepos
1764 </a>
1789 </a>
1765 </td><td>
1790 </td><td>
1766 Subrepositories
1791 Subrepositories
1767 </td></tr>
1792 </td></tr>
1768 <tr><td>
1793 <tr><td>
1769 <a href="/help/templating">
1794 <a href="/help/templating">
1770 templating
1795 templating
1771 </a>
1796 </a>
1772 </td><td>
1797 </td><td>
1773 Template Usage
1798 Template Usage
1774 </td></tr>
1799 </td></tr>
1775 <tr><td>
1800 <tr><td>
1776 <a href="/help/urls">
1801 <a href="/help/urls">
1777 urls
1802 urls
1778 </a>
1803 </a>
1779 </td><td>
1804 </td><td>
1780 URL Paths
1805 URL Paths
1781 </td></tr>
1806 </td></tr>
1782 <tr><td>
1807 <tr><td>
1783 <a href="/help/topic-containing-verbose">
1808 <a href="/help/topic-containing-verbose">
1784 topic-containing-verbose
1809 topic-containing-verbose
1785 </a>
1810 </a>
1786 </td><td>
1811 </td><td>
1787 This is the topic to test omit indicating.
1812 This is the topic to test omit indicating.
1788 </td></tr>
1813 </td></tr>
1789
1814
1790
1815
1791 <tr><td colspan="2"><h2><a name="main" href="#main">Main Commands</a></h2></td></tr>
1816 <tr><td colspan="2"><h2><a name="main" href="#main">Main Commands</a></h2></td></tr>
1792
1817
1793 <tr><td>
1818 <tr><td>
1794 <a href="/help/add">
1819 <a href="/help/add">
1795 add
1820 add
1796 </a>
1821 </a>
1797 </td><td>
1822 </td><td>
1798 add the specified files on the next commit
1823 add the specified files on the next commit
1799 </td></tr>
1824 </td></tr>
1800 <tr><td>
1825 <tr><td>
1801 <a href="/help/annotate">
1826 <a href="/help/annotate">
1802 annotate
1827 annotate
1803 </a>
1828 </a>
1804 </td><td>
1829 </td><td>
1805 show changeset information by line for each file
1830 show changeset information by line for each file
1806 </td></tr>
1831 </td></tr>
1807 <tr><td>
1832 <tr><td>
1808 <a href="/help/clone">
1833 <a href="/help/clone">
1809 clone
1834 clone
1810 </a>
1835 </a>
1811 </td><td>
1836 </td><td>
1812 make a copy of an existing repository
1837 make a copy of an existing repository
1813 </td></tr>
1838 </td></tr>
1814 <tr><td>
1839 <tr><td>
1815 <a href="/help/commit">
1840 <a href="/help/commit">
1816 commit
1841 commit
1817 </a>
1842 </a>
1818 </td><td>
1843 </td><td>
1819 commit the specified files or all outstanding changes
1844 commit the specified files or all outstanding changes
1820 </td></tr>
1845 </td></tr>
1821 <tr><td>
1846 <tr><td>
1822 <a href="/help/diff">
1847 <a href="/help/diff">
1823 diff
1848 diff
1824 </a>
1849 </a>
1825 </td><td>
1850 </td><td>
1826 diff repository (or selected files)
1851 diff repository (or selected files)
1827 </td></tr>
1852 </td></tr>
1828 <tr><td>
1853 <tr><td>
1829 <a href="/help/export">
1854 <a href="/help/export">
1830 export
1855 export
1831 </a>
1856 </a>
1832 </td><td>
1857 </td><td>
1833 dump the header and diffs for one or more changesets
1858 dump the header and diffs for one or more changesets
1834 </td></tr>
1859 </td></tr>
1835 <tr><td>
1860 <tr><td>
1836 <a href="/help/forget">
1861 <a href="/help/forget">
1837 forget
1862 forget
1838 </a>
1863 </a>
1839 </td><td>
1864 </td><td>
1840 forget the specified files on the next commit
1865 forget the specified files on the next commit
1841 </td></tr>
1866 </td></tr>
1842 <tr><td>
1867 <tr><td>
1843 <a href="/help/init">
1868 <a href="/help/init">
1844 init
1869 init
1845 </a>
1870 </a>
1846 </td><td>
1871 </td><td>
1847 create a new repository in the given directory
1872 create a new repository in the given directory
1848 </td></tr>
1873 </td></tr>
1849 <tr><td>
1874 <tr><td>
1850 <a href="/help/log">
1875 <a href="/help/log">
1851 log
1876 log
1852 </a>
1877 </a>
1853 </td><td>
1878 </td><td>
1854 show revision history of entire repository or files
1879 show revision history of entire repository or files
1855 </td></tr>
1880 </td></tr>
1856 <tr><td>
1881 <tr><td>
1857 <a href="/help/merge">
1882 <a href="/help/merge">
1858 merge
1883 merge
1859 </a>
1884 </a>
1860 </td><td>
1885 </td><td>
1861 merge another revision into working directory
1886 merge another revision into working directory
1862 </td></tr>
1887 </td></tr>
1863 <tr><td>
1888 <tr><td>
1864 <a href="/help/pull">
1889 <a href="/help/pull">
1865 pull
1890 pull
1866 </a>
1891 </a>
1867 </td><td>
1892 </td><td>
1868 pull changes from the specified source
1893 pull changes from the specified source
1869 </td></tr>
1894 </td></tr>
1870 <tr><td>
1895 <tr><td>
1871 <a href="/help/push">
1896 <a href="/help/push">
1872 push
1897 push
1873 </a>
1898 </a>
1874 </td><td>
1899 </td><td>
1875 push changes to the specified destination
1900 push changes to the specified destination
1876 </td></tr>
1901 </td></tr>
1877 <tr><td>
1902 <tr><td>
1878 <a href="/help/remove">
1903 <a href="/help/remove">
1879 remove
1904 remove
1880 </a>
1905 </a>
1881 </td><td>
1906 </td><td>
1882 remove the specified files on the next commit
1907 remove the specified files on the next commit
1883 </td></tr>
1908 </td></tr>
1884 <tr><td>
1909 <tr><td>
1885 <a href="/help/serve">
1910 <a href="/help/serve">
1886 serve
1911 serve
1887 </a>
1912 </a>
1888 </td><td>
1913 </td><td>
1889 start stand-alone webserver
1914 start stand-alone webserver
1890 </td></tr>
1915 </td></tr>
1891 <tr><td>
1916 <tr><td>
1892 <a href="/help/status">
1917 <a href="/help/status">
1893 status
1918 status
1894 </a>
1919 </a>
1895 </td><td>
1920 </td><td>
1896 show changed files in the working directory
1921 show changed files in the working directory
1897 </td></tr>
1922 </td></tr>
1898 <tr><td>
1923 <tr><td>
1899 <a href="/help/summary">
1924 <a href="/help/summary">
1900 summary
1925 summary
1901 </a>
1926 </a>
1902 </td><td>
1927 </td><td>
1903 summarize working directory state
1928 summarize working directory state
1904 </td></tr>
1929 </td></tr>
1905 <tr><td>
1930 <tr><td>
1906 <a href="/help/update">
1931 <a href="/help/update">
1907 update
1932 update
1908 </a>
1933 </a>
1909 </td><td>
1934 </td><td>
1910 update working directory (or switch revisions)
1935 update working directory (or switch revisions)
1911 </td></tr>
1936 </td></tr>
1912
1937
1913
1938
1914
1939
1915 <tr><td colspan="2"><h2><a name="other" href="#other">Other Commands</a></h2></td></tr>
1940 <tr><td colspan="2"><h2><a name="other" href="#other">Other Commands</a></h2></td></tr>
1916
1941
1917 <tr><td>
1942 <tr><td>
1918 <a href="/help/addremove">
1943 <a href="/help/addremove">
1919 addremove
1944 addremove
1920 </a>
1945 </a>
1921 </td><td>
1946 </td><td>
1922 add all new files, delete all missing files
1947 add all new files, delete all missing files
1923 </td></tr>
1948 </td></tr>
1924 <tr><td>
1949 <tr><td>
1925 <a href="/help/archive">
1950 <a href="/help/archive">
1926 archive
1951 archive
1927 </a>
1952 </a>
1928 </td><td>
1953 </td><td>
1929 create an unversioned archive of a repository revision
1954 create an unversioned archive of a repository revision
1930 </td></tr>
1955 </td></tr>
1931 <tr><td>
1956 <tr><td>
1932 <a href="/help/backout">
1957 <a href="/help/backout">
1933 backout
1958 backout
1934 </a>
1959 </a>
1935 </td><td>
1960 </td><td>
1936 reverse effect of earlier changeset
1961 reverse effect of earlier changeset
1937 </td></tr>
1962 </td></tr>
1938 <tr><td>
1963 <tr><td>
1939 <a href="/help/bisect">
1964 <a href="/help/bisect">
1940 bisect
1965 bisect
1941 </a>
1966 </a>
1942 </td><td>
1967 </td><td>
1943 subdivision search of changesets
1968 subdivision search of changesets
1944 </td></tr>
1969 </td></tr>
1945 <tr><td>
1970 <tr><td>
1946 <a href="/help/bookmarks">
1971 <a href="/help/bookmarks">
1947 bookmarks
1972 bookmarks
1948 </a>
1973 </a>
1949 </td><td>
1974 </td><td>
1950 create a new bookmark or list existing bookmarks
1975 create a new bookmark or list existing bookmarks
1951 </td></tr>
1976 </td></tr>
1952 <tr><td>
1977 <tr><td>
1953 <a href="/help/branch">
1978 <a href="/help/branch">
1954 branch
1979 branch
1955 </a>
1980 </a>
1956 </td><td>
1981 </td><td>
1957 set or show the current branch name
1982 set or show the current branch name
1958 </td></tr>
1983 </td></tr>
1959 <tr><td>
1984 <tr><td>
1960 <a href="/help/branches">
1985 <a href="/help/branches">
1961 branches
1986 branches
1962 </a>
1987 </a>
1963 </td><td>
1988 </td><td>
1964 list repository named branches
1989 list repository named branches
1965 </td></tr>
1990 </td></tr>
1966 <tr><td>
1991 <tr><td>
1967 <a href="/help/bundle">
1992 <a href="/help/bundle">
1968 bundle
1993 bundle
1969 </a>
1994 </a>
1970 </td><td>
1995 </td><td>
1971 create a changegroup file
1996 create a changegroup file
1972 </td></tr>
1997 </td></tr>
1973 <tr><td>
1998 <tr><td>
1974 <a href="/help/cat">
1999 <a href="/help/cat">
1975 cat
2000 cat
1976 </a>
2001 </a>
1977 </td><td>
2002 </td><td>
1978 output the current or given revision of files
2003 output the current or given revision of files
1979 </td></tr>
2004 </td></tr>
1980 <tr><td>
2005 <tr><td>
1981 <a href="/help/config">
2006 <a href="/help/config">
1982 config
2007 config
1983 </a>
2008 </a>
1984 </td><td>
2009 </td><td>
1985 show combined config settings from all hgrc files
2010 show combined config settings from all hgrc files
1986 </td></tr>
2011 </td></tr>
1987 <tr><td>
2012 <tr><td>
1988 <a href="/help/copy">
2013 <a href="/help/copy">
1989 copy
2014 copy
1990 </a>
2015 </a>
1991 </td><td>
2016 </td><td>
1992 mark files as copied for the next commit
2017 mark files as copied for the next commit
1993 </td></tr>
2018 </td></tr>
1994 <tr><td>
2019 <tr><td>
1995 <a href="/help/files">
2020 <a href="/help/files">
1996 files
2021 files
1997 </a>
2022 </a>
1998 </td><td>
2023 </td><td>
1999 list tracked files
2024 list tracked files
2000 </td></tr>
2025 </td></tr>
2001 <tr><td>
2026 <tr><td>
2002 <a href="/help/graft">
2027 <a href="/help/graft">
2003 graft
2028 graft
2004 </a>
2029 </a>
2005 </td><td>
2030 </td><td>
2006 copy changes from other branches onto the current branch
2031 copy changes from other branches onto the current branch
2007 </td></tr>
2032 </td></tr>
2008 <tr><td>
2033 <tr><td>
2009 <a href="/help/grep">
2034 <a href="/help/grep">
2010 grep
2035 grep
2011 </a>
2036 </a>
2012 </td><td>
2037 </td><td>
2013 search for a pattern in specified files and revisions
2038 search for a pattern in specified files and revisions
2014 </td></tr>
2039 </td></tr>
2015 <tr><td>
2040 <tr><td>
2016 <a href="/help/heads">
2041 <a href="/help/heads">
2017 heads
2042 heads
2018 </a>
2043 </a>
2019 </td><td>
2044 </td><td>
2020 show branch heads
2045 show branch heads
2021 </td></tr>
2046 </td></tr>
2022 <tr><td>
2047 <tr><td>
2023 <a href="/help/help">
2048 <a href="/help/help">
2024 help
2049 help
2025 </a>
2050 </a>
2026 </td><td>
2051 </td><td>
2027 show help for a given topic or a help overview
2052 show help for a given topic or a help overview
2028 </td></tr>
2053 </td></tr>
2029 <tr><td>
2054 <tr><td>
2030 <a href="/help/identify">
2055 <a href="/help/identify">
2031 identify
2056 identify
2032 </a>
2057 </a>
2033 </td><td>
2058 </td><td>
2034 identify the working directory or specified revision
2059 identify the working directory or specified revision
2035 </td></tr>
2060 </td></tr>
2036 <tr><td>
2061 <tr><td>
2037 <a href="/help/import">
2062 <a href="/help/import">
2038 import
2063 import
2039 </a>
2064 </a>
2040 </td><td>
2065 </td><td>
2041 import an ordered set of patches
2066 import an ordered set of patches
2042 </td></tr>
2067 </td></tr>
2043 <tr><td>
2068 <tr><td>
2044 <a href="/help/incoming">
2069 <a href="/help/incoming">
2045 incoming
2070 incoming
2046 </a>
2071 </a>
2047 </td><td>
2072 </td><td>
2048 show new changesets found in source
2073 show new changesets found in source
2049 </td></tr>
2074 </td></tr>
2050 <tr><td>
2075 <tr><td>
2051 <a href="/help/manifest">
2076 <a href="/help/manifest">
2052 manifest
2077 manifest
2053 </a>
2078 </a>
2054 </td><td>
2079 </td><td>
2055 output the current or given revision of the project manifest
2080 output the current or given revision of the project manifest
2056 </td></tr>
2081 </td></tr>
2057 <tr><td>
2082 <tr><td>
2058 <a href="/help/nohelp">
2083 <a href="/help/nohelp">
2059 nohelp
2084 nohelp
2060 </a>
2085 </a>
2061 </td><td>
2086 </td><td>
2062 (no help text available)
2087 (no help text available)
2063 </td></tr>
2088 </td></tr>
2064 <tr><td>
2089 <tr><td>
2065 <a href="/help/outgoing">
2090 <a href="/help/outgoing">
2066 outgoing
2091 outgoing
2067 </a>
2092 </a>
2068 </td><td>
2093 </td><td>
2069 show changesets not found in the destination
2094 show changesets not found in the destination
2070 </td></tr>
2095 </td></tr>
2071 <tr><td>
2096 <tr><td>
2072 <a href="/help/paths">
2097 <a href="/help/paths">
2073 paths
2098 paths
2074 </a>
2099 </a>
2075 </td><td>
2100 </td><td>
2076 show aliases for remote repositories
2101 show aliases for remote repositories
2077 </td></tr>
2102 </td></tr>
2078 <tr><td>
2103 <tr><td>
2079 <a href="/help/phase">
2104 <a href="/help/phase">
2080 phase
2105 phase
2081 </a>
2106 </a>
2082 </td><td>
2107 </td><td>
2083 set or show the current phase name
2108 set or show the current phase name
2084 </td></tr>
2109 </td></tr>
2085 <tr><td>
2110 <tr><td>
2086 <a href="/help/recover">
2111 <a href="/help/recover">
2087 recover
2112 recover
2088 </a>
2113 </a>
2089 </td><td>
2114 </td><td>
2090 roll back an interrupted transaction
2115 roll back an interrupted transaction
2091 </td></tr>
2116 </td></tr>
2092 <tr><td>
2117 <tr><td>
2093 <a href="/help/rename">
2118 <a href="/help/rename">
2094 rename
2119 rename
2095 </a>
2120 </a>
2096 </td><td>
2121 </td><td>
2097 rename files; equivalent of copy + remove
2122 rename files; equivalent of copy + remove
2098 </td></tr>
2123 </td></tr>
2099 <tr><td>
2124 <tr><td>
2100 <a href="/help/resolve">
2125 <a href="/help/resolve">
2101 resolve
2126 resolve
2102 </a>
2127 </a>
2103 </td><td>
2128 </td><td>
2104 redo merges or set/view the merge status of files
2129 redo merges or set/view the merge status of files
2105 </td></tr>
2130 </td></tr>
2106 <tr><td>
2131 <tr><td>
2107 <a href="/help/revert">
2132 <a href="/help/revert">
2108 revert
2133 revert
2109 </a>
2134 </a>
2110 </td><td>
2135 </td><td>
2111 restore files to their checkout state
2136 restore files to their checkout state
2112 </td></tr>
2137 </td></tr>
2113 <tr><td>
2138 <tr><td>
2114 <a href="/help/root">
2139 <a href="/help/root">
2115 root
2140 root
2116 </a>
2141 </a>
2117 </td><td>
2142 </td><td>
2118 print the root (top) of the current working directory
2143 print the root (top) of the current working directory
2119 </td></tr>
2144 </td></tr>
2120 <tr><td>
2145 <tr><td>
2121 <a href="/help/tag">
2146 <a href="/help/tag">
2122 tag
2147 tag
2123 </a>
2148 </a>
2124 </td><td>
2149 </td><td>
2125 add one or more tags for the current or given revision
2150 add one or more tags for the current or given revision
2126 </td></tr>
2151 </td></tr>
2127 <tr><td>
2152 <tr><td>
2128 <a href="/help/tags">
2153 <a href="/help/tags">
2129 tags
2154 tags
2130 </a>
2155 </a>
2131 </td><td>
2156 </td><td>
2132 list repository tags
2157 list repository tags
2133 </td></tr>
2158 </td></tr>
2134 <tr><td>
2159 <tr><td>
2135 <a href="/help/unbundle">
2160 <a href="/help/unbundle">
2136 unbundle
2161 unbundle
2137 </a>
2162 </a>
2138 </td><td>
2163 </td><td>
2139 apply one or more changegroup files
2164 apply one or more changegroup files
2140 </td></tr>
2165 </td></tr>
2141 <tr><td>
2166 <tr><td>
2142 <a href="/help/verify">
2167 <a href="/help/verify">
2143 verify
2168 verify
2144 </a>
2169 </a>
2145 </td><td>
2170 </td><td>
2146 verify the integrity of the repository
2171 verify the integrity of the repository
2147 </td></tr>
2172 </td></tr>
2148 <tr><td>
2173 <tr><td>
2149 <a href="/help/version">
2174 <a href="/help/version">
2150 version
2175 version
2151 </a>
2176 </a>
2152 </td><td>
2177 </td><td>
2153 output version and copyright information
2178 output version and copyright information
2154 </td></tr>
2179 </td></tr>
2155
2180
2156
2181
2157 </table>
2182 </table>
2158 </div>
2183 </div>
2159 </div>
2184 </div>
2160
2185
2161 <script type="text/javascript">process_dates()</script>
2186 <script type="text/javascript">process_dates()</script>
2162
2187
2163
2188
2164 </body>
2189 </body>
2165 </html>
2190 </html>
2166
2191
2167
2192
2168 $ get-with-headers.py 127.0.0.1:$HGPORT "help/add"
2193 $ get-with-headers.py 127.0.0.1:$HGPORT "help/add"
2169 200 Script output follows
2194 200 Script output follows
2170
2195
2171 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
2196 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
2172 <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en-US">
2197 <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en-US">
2173 <head>
2198 <head>
2174 <link rel="icon" href="/static/hgicon.png" type="image/png" />
2199 <link rel="icon" href="/static/hgicon.png" type="image/png" />
2175 <meta name="robots" content="index, nofollow" />
2200 <meta name="robots" content="index, nofollow" />
2176 <link rel="stylesheet" href="/static/style-paper.css" type="text/css" />
2201 <link rel="stylesheet" href="/static/style-paper.css" type="text/css" />
2177 <script type="text/javascript" src="/static/mercurial.js"></script>
2202 <script type="text/javascript" src="/static/mercurial.js"></script>
2178
2203
2179 <title>Help: add</title>
2204 <title>Help: add</title>
2180 </head>
2205 </head>
2181 <body>
2206 <body>
2182
2207
2183 <div class="container">
2208 <div class="container">
2184 <div class="menu">
2209 <div class="menu">
2185 <div class="logo">
2210 <div class="logo">
2186 <a href="https://mercurial-scm.org/">
2211 <a href="https://mercurial-scm.org/">
2187 <img src="/static/hglogo.png" alt="mercurial" /></a>
2212 <img src="/static/hglogo.png" alt="mercurial" /></a>
2188 </div>
2213 </div>
2189 <ul>
2214 <ul>
2190 <li><a href="/shortlog">log</a></li>
2215 <li><a href="/shortlog">log</a></li>
2191 <li><a href="/graph">graph</a></li>
2216 <li><a href="/graph">graph</a></li>
2192 <li><a href="/tags">tags</a></li>
2217 <li><a href="/tags">tags</a></li>
2193 <li><a href="/bookmarks">bookmarks</a></li>
2218 <li><a href="/bookmarks">bookmarks</a></li>
2194 <li><a href="/branches">branches</a></li>
2219 <li><a href="/branches">branches</a></li>
2195 </ul>
2220 </ul>
2196 <ul>
2221 <ul>
2197 <li class="active"><a href="/help">help</a></li>
2222 <li class="active"><a href="/help">help</a></li>
2198 </ul>
2223 </ul>
2199 </div>
2224 </div>
2200
2225
2201 <div class="main">
2226 <div class="main">
2202 <h2 class="breadcrumb"><a href="/">Mercurial</a> </h2>
2227 <h2 class="breadcrumb"><a href="/">Mercurial</a> </h2>
2203 <h3>Help: add</h3>
2228 <h3>Help: add</h3>
2204
2229
2205 <form class="search" action="/log">
2230 <form class="search" action="/log">
2206
2231
2207 <p><input name="rev" id="search1" type="text" size="30" /></p>
2232 <p><input name="rev" id="search1" type="text" size="30" /></p>
2208 <div id="hint">Find changesets by keywords (author, files, the commit message), revision
2233 <div id="hint">Find changesets by keywords (author, files, the commit message), revision
2209 number or hash, or <a href="/help/revsets">revset expression</a>.</div>
2234 number or hash, or <a href="/help/revsets">revset expression</a>.</div>
2210 </form>
2235 </form>
2211 <div id="doc">
2236 <div id="doc">
2212 <p>
2237 <p>
2213 hg add [OPTION]... [FILE]...
2238 hg add [OPTION]... [FILE]...
2214 </p>
2239 </p>
2215 <p>
2240 <p>
2216 add the specified files on the next commit
2241 add the specified files on the next commit
2217 </p>
2242 </p>
2218 <p>
2243 <p>
2219 Schedule files to be version controlled and added to the
2244 Schedule files to be version controlled and added to the
2220 repository.
2245 repository.
2221 </p>
2246 </p>
2222 <p>
2247 <p>
2223 The files will be added to the repository at the next commit. To
2248 The files will be added to the repository at the next commit. To
2224 undo an add before that, see &quot;hg forget&quot;.
2249 undo an add before that, see &quot;hg forget&quot;.
2225 </p>
2250 </p>
2226 <p>
2251 <p>
2227 If no names are given, add all files to the repository (except
2252 If no names are given, add all files to the repository (except
2228 files matching &quot;.hgignore&quot;).
2253 files matching &quot;.hgignore&quot;).
2229 </p>
2254 </p>
2230 <p>
2255 <p>
2231 Examples:
2256 Examples:
2232 </p>
2257 </p>
2233 <ul>
2258 <ul>
2234 <li> New (unknown) files are added automatically by &quot;hg add&quot;:
2259 <li> New (unknown) files are added automatically by &quot;hg add&quot;:
2235 <pre>
2260 <pre>
2236 \$ ls (re)
2261 \$ ls (re)
2237 foo.c
2262 foo.c
2238 \$ hg status (re)
2263 \$ hg status (re)
2239 ? foo.c
2264 ? foo.c
2240 \$ hg add (re)
2265 \$ hg add (re)
2241 adding foo.c
2266 adding foo.c
2242 \$ hg status (re)
2267 \$ hg status (re)
2243 A foo.c
2268 A foo.c
2244 </pre>
2269 </pre>
2245 <li> Specific files to be added can be specified:
2270 <li> Specific files to be added can be specified:
2246 <pre>
2271 <pre>
2247 \$ ls (re)
2272 \$ ls (re)
2248 bar.c foo.c
2273 bar.c foo.c
2249 \$ hg status (re)
2274 \$ hg status (re)
2250 ? bar.c
2275 ? bar.c
2251 ? foo.c
2276 ? foo.c
2252 \$ hg add bar.c (re)
2277 \$ hg add bar.c (re)
2253 \$ hg status (re)
2278 \$ hg status (re)
2254 A bar.c
2279 A bar.c
2255 ? foo.c
2280 ? foo.c
2256 </pre>
2281 </pre>
2257 </ul>
2282 </ul>
2258 <p>
2283 <p>
2259 Returns 0 if all files are successfully added.
2284 Returns 0 if all files are successfully added.
2260 </p>
2285 </p>
2261 <p>
2286 <p>
2262 options ([+] can be repeated):
2287 options ([+] can be repeated):
2263 </p>
2288 </p>
2264 <table>
2289 <table>
2265 <tr><td>-I</td>
2290 <tr><td>-I</td>
2266 <td>--include PATTERN [+]</td>
2291 <td>--include PATTERN [+]</td>
2267 <td>include names matching the given patterns</td></tr>
2292 <td>include names matching the given patterns</td></tr>
2268 <tr><td>-X</td>
2293 <tr><td>-X</td>
2269 <td>--exclude PATTERN [+]</td>
2294 <td>--exclude PATTERN [+]</td>
2270 <td>exclude names matching the given patterns</td></tr>
2295 <td>exclude names matching the given patterns</td></tr>
2271 <tr><td>-S</td>
2296 <tr><td>-S</td>
2272 <td>--subrepos</td>
2297 <td>--subrepos</td>
2273 <td>recurse into subrepositories</td></tr>
2298 <td>recurse into subrepositories</td></tr>
2274 <tr><td>-n</td>
2299 <tr><td>-n</td>
2275 <td>--dry-run</td>
2300 <td>--dry-run</td>
2276 <td>do not perform actions, just print output</td></tr>
2301 <td>do not perform actions, just print output</td></tr>
2277 </table>
2302 </table>
2278 <p>
2303 <p>
2279 global options ([+] can be repeated):
2304 global options ([+] can be repeated):
2280 </p>
2305 </p>
2281 <table>
2306 <table>
2282 <tr><td>-R</td>
2307 <tr><td>-R</td>
2283 <td>--repository REPO</td>
2308 <td>--repository REPO</td>
2284 <td>repository root directory or name of overlay bundle file</td></tr>
2309 <td>repository root directory or name of overlay bundle file</td></tr>
2285 <tr><td></td>
2310 <tr><td></td>
2286 <td>--cwd DIR</td>
2311 <td>--cwd DIR</td>
2287 <td>change working directory</td></tr>
2312 <td>change working directory</td></tr>
2288 <tr><td>-y</td>
2313 <tr><td>-y</td>
2289 <td>--noninteractive</td>
2314 <td>--noninteractive</td>
2290 <td>do not prompt, automatically pick the first choice for all prompts</td></tr>
2315 <td>do not prompt, automatically pick the first choice for all prompts</td></tr>
2291 <tr><td>-q</td>
2316 <tr><td>-q</td>
2292 <td>--quiet</td>
2317 <td>--quiet</td>
2293 <td>suppress output</td></tr>
2318 <td>suppress output</td></tr>
2294 <tr><td>-v</td>
2319 <tr><td>-v</td>
2295 <td>--verbose</td>
2320 <td>--verbose</td>
2296 <td>enable additional output</td></tr>
2321 <td>enable additional output</td></tr>
2297 <tr><td></td>
2322 <tr><td></td>
2298 <td>--config CONFIG [+]</td>
2323 <td>--config CONFIG [+]</td>
2299 <td>set/override config option (use 'section.name=value')</td></tr>
2324 <td>set/override config option (use 'section.name=value')</td></tr>
2300 <tr><td></td>
2325 <tr><td></td>
2301 <td>--debug</td>
2326 <td>--debug</td>
2302 <td>enable debugging output</td></tr>
2327 <td>enable debugging output</td></tr>
2303 <tr><td></td>
2328 <tr><td></td>
2304 <td>--debugger</td>
2329 <td>--debugger</td>
2305 <td>start debugger</td></tr>
2330 <td>start debugger</td></tr>
2306 <tr><td></td>
2331 <tr><td></td>
2307 <td>--encoding ENCODE</td>
2332 <td>--encoding ENCODE</td>
2308 <td>set the charset encoding (default: ascii)</td></tr>
2333 <td>set the charset encoding (default: ascii)</td></tr>
2309 <tr><td></td>
2334 <tr><td></td>
2310 <td>--encodingmode MODE</td>
2335 <td>--encodingmode MODE</td>
2311 <td>set the charset encoding mode (default: strict)</td></tr>
2336 <td>set the charset encoding mode (default: strict)</td></tr>
2312 <tr><td></td>
2337 <tr><td></td>
2313 <td>--traceback</td>
2338 <td>--traceback</td>
2314 <td>always print a traceback on exception</td></tr>
2339 <td>always print a traceback on exception</td></tr>
2315 <tr><td></td>
2340 <tr><td></td>
2316 <td>--time</td>
2341 <td>--time</td>
2317 <td>time how long the command takes</td></tr>
2342 <td>time how long the command takes</td></tr>
2318 <tr><td></td>
2343 <tr><td></td>
2319 <td>--profile</td>
2344 <td>--profile</td>
2320 <td>print command execution profile</td></tr>
2345 <td>print command execution profile</td></tr>
2321 <tr><td></td>
2346 <tr><td></td>
2322 <td>--version</td>
2347 <td>--version</td>
2323 <td>output version information and exit</td></tr>
2348 <td>output version information and exit</td></tr>
2324 <tr><td>-h</td>
2349 <tr><td>-h</td>
2325 <td>--help</td>
2350 <td>--help</td>
2326 <td>display help and exit</td></tr>
2351 <td>display help and exit</td></tr>
2327 <tr><td></td>
2352 <tr><td></td>
2328 <td>--hidden</td>
2353 <td>--hidden</td>
2329 <td>consider hidden changesets</td></tr>
2354 <td>consider hidden changesets</td></tr>
2330 </table>
2355 </table>
2331
2356
2332 </div>
2357 </div>
2333 </div>
2358 </div>
2334 </div>
2359 </div>
2335
2360
2336 <script type="text/javascript">process_dates()</script>
2361 <script type="text/javascript">process_dates()</script>
2337
2362
2338
2363
2339 </body>
2364 </body>
2340 </html>
2365 </html>
2341
2366
2342
2367
2343 $ get-with-headers.py 127.0.0.1:$HGPORT "help/remove"
2368 $ get-with-headers.py 127.0.0.1:$HGPORT "help/remove"
2344 200 Script output follows
2369 200 Script output follows
2345
2370
2346 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
2371 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
2347 <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en-US">
2372 <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en-US">
2348 <head>
2373 <head>
2349 <link rel="icon" href="/static/hgicon.png" type="image/png" />
2374 <link rel="icon" href="/static/hgicon.png" type="image/png" />
2350 <meta name="robots" content="index, nofollow" />
2375 <meta name="robots" content="index, nofollow" />
2351 <link rel="stylesheet" href="/static/style-paper.css" type="text/css" />
2376 <link rel="stylesheet" href="/static/style-paper.css" type="text/css" />
2352 <script type="text/javascript" src="/static/mercurial.js"></script>
2377 <script type="text/javascript" src="/static/mercurial.js"></script>
2353
2378
2354 <title>Help: remove</title>
2379 <title>Help: remove</title>
2355 </head>
2380 </head>
2356 <body>
2381 <body>
2357
2382
2358 <div class="container">
2383 <div class="container">
2359 <div class="menu">
2384 <div class="menu">
2360 <div class="logo">
2385 <div class="logo">
2361 <a href="https://mercurial-scm.org/">
2386 <a href="https://mercurial-scm.org/">
2362 <img src="/static/hglogo.png" alt="mercurial" /></a>
2387 <img src="/static/hglogo.png" alt="mercurial" /></a>
2363 </div>
2388 </div>
2364 <ul>
2389 <ul>
2365 <li><a href="/shortlog">log</a></li>
2390 <li><a href="/shortlog">log</a></li>
2366 <li><a href="/graph">graph</a></li>
2391 <li><a href="/graph">graph</a></li>
2367 <li><a href="/tags">tags</a></li>
2392 <li><a href="/tags">tags</a></li>
2368 <li><a href="/bookmarks">bookmarks</a></li>
2393 <li><a href="/bookmarks">bookmarks</a></li>
2369 <li><a href="/branches">branches</a></li>
2394 <li><a href="/branches">branches</a></li>
2370 </ul>
2395 </ul>
2371 <ul>
2396 <ul>
2372 <li class="active"><a href="/help">help</a></li>
2397 <li class="active"><a href="/help">help</a></li>
2373 </ul>
2398 </ul>
2374 </div>
2399 </div>
2375
2400
2376 <div class="main">
2401 <div class="main">
2377 <h2 class="breadcrumb"><a href="/">Mercurial</a> </h2>
2402 <h2 class="breadcrumb"><a href="/">Mercurial</a> </h2>
2378 <h3>Help: remove</h3>
2403 <h3>Help: remove</h3>
2379
2404
2380 <form class="search" action="/log">
2405 <form class="search" action="/log">
2381
2406
2382 <p><input name="rev" id="search1" type="text" size="30" /></p>
2407 <p><input name="rev" id="search1" type="text" size="30" /></p>
2383 <div id="hint">Find changesets by keywords (author, files, the commit message), revision
2408 <div id="hint">Find changesets by keywords (author, files, the commit message), revision
2384 number or hash, or <a href="/help/revsets">revset expression</a>.</div>
2409 number or hash, or <a href="/help/revsets">revset expression</a>.</div>
2385 </form>
2410 </form>
2386 <div id="doc">
2411 <div id="doc">
2387 <p>
2412 <p>
2388 hg remove [OPTION]... FILE...
2413 hg remove [OPTION]... FILE...
2389 </p>
2414 </p>
2390 <p>
2415 <p>
2391 aliases: rm
2416 aliases: rm
2392 </p>
2417 </p>
2393 <p>
2418 <p>
2394 remove the specified files on the next commit
2419 remove the specified files on the next commit
2395 </p>
2420 </p>
2396 <p>
2421 <p>
2397 Schedule the indicated files for removal from the current branch.
2422 Schedule the indicated files for removal from the current branch.
2398 </p>
2423 </p>
2399 <p>
2424 <p>
2400 This command schedules the files to be removed at the next commit.
2425 This command schedules the files to be removed at the next commit.
2401 To undo a remove before that, see &quot;hg revert&quot;. To undo added
2426 To undo a remove before that, see &quot;hg revert&quot;. To undo added
2402 files, see &quot;hg forget&quot;.
2427 files, see &quot;hg forget&quot;.
2403 </p>
2428 </p>
2404 <p>
2429 <p>
2405 -A/--after can be used to remove only files that have already
2430 -A/--after can be used to remove only files that have already
2406 been deleted, -f/--force can be used to force deletion, and -Af
2431 been deleted, -f/--force can be used to force deletion, and -Af
2407 can be used to remove files from the next revision without
2432 can be used to remove files from the next revision without
2408 deleting them from the working directory.
2433 deleting them from the working directory.
2409 </p>
2434 </p>
2410 <p>
2435 <p>
2411 The following table details the behavior of remove for different
2436 The following table details the behavior of remove for different
2412 file states (columns) and option combinations (rows). The file
2437 file states (columns) and option combinations (rows). The file
2413 states are Added [A], Clean [C], Modified [M] and Missing [!]
2438 states are Added [A], Clean [C], Modified [M] and Missing [!]
2414 (as reported by &quot;hg status&quot;). The actions are Warn, Remove
2439 (as reported by &quot;hg status&quot;). The actions are Warn, Remove
2415 (from branch) and Delete (from disk):
2440 (from branch) and Delete (from disk):
2416 </p>
2441 </p>
2417 <table>
2442 <table>
2418 <tr><td>opt/state</td>
2443 <tr><td>opt/state</td>
2419 <td>A</td>
2444 <td>A</td>
2420 <td>C</td>
2445 <td>C</td>
2421 <td>M</td>
2446 <td>M</td>
2422 <td>!</td></tr>
2447 <td>!</td></tr>
2423 <tr><td>none</td>
2448 <tr><td>none</td>
2424 <td>W</td>
2449 <td>W</td>
2425 <td>RD</td>
2450 <td>RD</td>
2426 <td>W</td>
2451 <td>W</td>
2427 <td>R</td></tr>
2452 <td>R</td></tr>
2428 <tr><td>-f</td>
2453 <tr><td>-f</td>
2429 <td>R</td>
2454 <td>R</td>
2430 <td>RD</td>
2455 <td>RD</td>
2431 <td>RD</td>
2456 <td>RD</td>
2432 <td>R</td></tr>
2457 <td>R</td></tr>
2433 <tr><td>-A</td>
2458 <tr><td>-A</td>
2434 <td>W</td>
2459 <td>W</td>
2435 <td>W</td>
2460 <td>W</td>
2436 <td>W</td>
2461 <td>W</td>
2437 <td>R</td></tr>
2462 <td>R</td></tr>
2438 <tr><td>-Af</td>
2463 <tr><td>-Af</td>
2439 <td>R</td>
2464 <td>R</td>
2440 <td>R</td>
2465 <td>R</td>
2441 <td>R</td>
2466 <td>R</td>
2442 <td>R</td></tr>
2467 <td>R</td></tr>
2443 </table>
2468 </table>
2444 <p>
2469 <p>
2445 <b>Note:</b>
2470 <b>Note:</b>
2446 </p>
2471 </p>
2447 <p>
2472 <p>
2448 &quot;hg remove&quot; never deletes files in Added [A] state from the
2473 &quot;hg remove&quot; never deletes files in Added [A] state from the
2449 working directory, not even if &quot;--force&quot; is specified.
2474 working directory, not even if &quot;--force&quot; is specified.
2450 </p>
2475 </p>
2451 <p>
2476 <p>
2452 Returns 0 on success, 1 if any warnings encountered.
2477 Returns 0 on success, 1 if any warnings encountered.
2453 </p>
2478 </p>
2454 <p>
2479 <p>
2455 options ([+] can be repeated):
2480 options ([+] can be repeated):
2456 </p>
2481 </p>
2457 <table>
2482 <table>
2458 <tr><td>-A</td>
2483 <tr><td>-A</td>
2459 <td>--after</td>
2484 <td>--after</td>
2460 <td>record delete for missing files</td></tr>
2485 <td>record delete for missing files</td></tr>
2461 <tr><td>-f</td>
2486 <tr><td>-f</td>
2462 <td>--force</td>
2487 <td>--force</td>
2463 <td>remove (and delete) file even if added or modified</td></tr>
2488 <td>remove (and delete) file even if added or modified</td></tr>
2464 <tr><td>-S</td>
2489 <tr><td>-S</td>
2465 <td>--subrepos</td>
2490 <td>--subrepos</td>
2466 <td>recurse into subrepositories</td></tr>
2491 <td>recurse into subrepositories</td></tr>
2467 <tr><td>-I</td>
2492 <tr><td>-I</td>
2468 <td>--include PATTERN [+]</td>
2493 <td>--include PATTERN [+]</td>
2469 <td>include names matching the given patterns</td></tr>
2494 <td>include names matching the given patterns</td></tr>
2470 <tr><td>-X</td>
2495 <tr><td>-X</td>
2471 <td>--exclude PATTERN [+]</td>
2496 <td>--exclude PATTERN [+]</td>
2472 <td>exclude names matching the given patterns</td></tr>
2497 <td>exclude names matching the given patterns</td></tr>
2473 </table>
2498 </table>
2474 <p>
2499 <p>
2475 global options ([+] can be repeated):
2500 global options ([+] can be repeated):
2476 </p>
2501 </p>
2477 <table>
2502 <table>
2478 <tr><td>-R</td>
2503 <tr><td>-R</td>
2479 <td>--repository REPO</td>
2504 <td>--repository REPO</td>
2480 <td>repository root directory or name of overlay bundle file</td></tr>
2505 <td>repository root directory or name of overlay bundle file</td></tr>
2481 <tr><td></td>
2506 <tr><td></td>
2482 <td>--cwd DIR</td>
2507 <td>--cwd DIR</td>
2483 <td>change working directory</td></tr>
2508 <td>change working directory</td></tr>
2484 <tr><td>-y</td>
2509 <tr><td>-y</td>
2485 <td>--noninteractive</td>
2510 <td>--noninteractive</td>
2486 <td>do not prompt, automatically pick the first choice for all prompts</td></tr>
2511 <td>do not prompt, automatically pick the first choice for all prompts</td></tr>
2487 <tr><td>-q</td>
2512 <tr><td>-q</td>
2488 <td>--quiet</td>
2513 <td>--quiet</td>
2489 <td>suppress output</td></tr>
2514 <td>suppress output</td></tr>
2490 <tr><td>-v</td>
2515 <tr><td>-v</td>
2491 <td>--verbose</td>
2516 <td>--verbose</td>
2492 <td>enable additional output</td></tr>
2517 <td>enable additional output</td></tr>
2493 <tr><td></td>
2518 <tr><td></td>
2494 <td>--config CONFIG [+]</td>
2519 <td>--config CONFIG [+]</td>
2495 <td>set/override config option (use 'section.name=value')</td></tr>
2520 <td>set/override config option (use 'section.name=value')</td></tr>
2496 <tr><td></td>
2521 <tr><td></td>
2497 <td>--debug</td>
2522 <td>--debug</td>
2498 <td>enable debugging output</td></tr>
2523 <td>enable debugging output</td></tr>
2499 <tr><td></td>
2524 <tr><td></td>
2500 <td>--debugger</td>
2525 <td>--debugger</td>
2501 <td>start debugger</td></tr>
2526 <td>start debugger</td></tr>
2502 <tr><td></td>
2527 <tr><td></td>
2503 <td>--encoding ENCODE</td>
2528 <td>--encoding ENCODE</td>
2504 <td>set the charset encoding (default: ascii)</td></tr>
2529 <td>set the charset encoding (default: ascii)</td></tr>
2505 <tr><td></td>
2530 <tr><td></td>
2506 <td>--encodingmode MODE</td>
2531 <td>--encodingmode MODE</td>
2507 <td>set the charset encoding mode (default: strict)</td></tr>
2532 <td>set the charset encoding mode (default: strict)</td></tr>
2508 <tr><td></td>
2533 <tr><td></td>
2509 <td>--traceback</td>
2534 <td>--traceback</td>
2510 <td>always print a traceback on exception</td></tr>
2535 <td>always print a traceback on exception</td></tr>
2511 <tr><td></td>
2536 <tr><td></td>
2512 <td>--time</td>
2537 <td>--time</td>
2513 <td>time how long the command takes</td></tr>
2538 <td>time how long the command takes</td></tr>
2514 <tr><td></td>
2539 <tr><td></td>
2515 <td>--profile</td>
2540 <td>--profile</td>
2516 <td>print command execution profile</td></tr>
2541 <td>print command execution profile</td></tr>
2517 <tr><td></td>
2542 <tr><td></td>
2518 <td>--version</td>
2543 <td>--version</td>
2519 <td>output version information and exit</td></tr>
2544 <td>output version information and exit</td></tr>
2520 <tr><td>-h</td>
2545 <tr><td>-h</td>
2521 <td>--help</td>
2546 <td>--help</td>
2522 <td>display help and exit</td></tr>
2547 <td>display help and exit</td></tr>
2523 <tr><td></td>
2548 <tr><td></td>
2524 <td>--hidden</td>
2549 <td>--hidden</td>
2525 <td>consider hidden changesets</td></tr>
2550 <td>consider hidden changesets</td></tr>
2526 </table>
2551 </table>
2527
2552
2528 </div>
2553 </div>
2529 </div>
2554 </div>
2530 </div>
2555 </div>
2531
2556
2532 <script type="text/javascript">process_dates()</script>
2557 <script type="text/javascript">process_dates()</script>
2533
2558
2534
2559
2535 </body>
2560 </body>
2536 </html>
2561 </html>
2537
2562
2538
2563
2539 $ get-with-headers.py 127.0.0.1:$HGPORT "help/revisions"
2564 $ get-with-headers.py 127.0.0.1:$HGPORT "help/revisions"
2540 200 Script output follows
2565 200 Script output follows
2541
2566
2542 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
2567 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
2543 <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en-US">
2568 <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en-US">
2544 <head>
2569 <head>
2545 <link rel="icon" href="/static/hgicon.png" type="image/png" />
2570 <link rel="icon" href="/static/hgicon.png" type="image/png" />
2546 <meta name="robots" content="index, nofollow" />
2571 <meta name="robots" content="index, nofollow" />
2547 <link rel="stylesheet" href="/static/style-paper.css" type="text/css" />
2572 <link rel="stylesheet" href="/static/style-paper.css" type="text/css" />
2548 <script type="text/javascript" src="/static/mercurial.js"></script>
2573 <script type="text/javascript" src="/static/mercurial.js"></script>
2549
2574
2550 <title>Help: revisions</title>
2575 <title>Help: revisions</title>
2551 </head>
2576 </head>
2552 <body>
2577 <body>
2553
2578
2554 <div class="container">
2579 <div class="container">
2555 <div class="menu">
2580 <div class="menu">
2556 <div class="logo">
2581 <div class="logo">
2557 <a href="https://mercurial-scm.org/">
2582 <a href="https://mercurial-scm.org/">
2558 <img src="/static/hglogo.png" alt="mercurial" /></a>
2583 <img src="/static/hglogo.png" alt="mercurial" /></a>
2559 </div>
2584 </div>
2560 <ul>
2585 <ul>
2561 <li><a href="/shortlog">log</a></li>
2586 <li><a href="/shortlog">log</a></li>
2562 <li><a href="/graph">graph</a></li>
2587 <li><a href="/graph">graph</a></li>
2563 <li><a href="/tags">tags</a></li>
2588 <li><a href="/tags">tags</a></li>
2564 <li><a href="/bookmarks">bookmarks</a></li>
2589 <li><a href="/bookmarks">bookmarks</a></li>
2565 <li><a href="/branches">branches</a></li>
2590 <li><a href="/branches">branches</a></li>
2566 </ul>
2591 </ul>
2567 <ul>
2592 <ul>
2568 <li class="active"><a href="/help">help</a></li>
2593 <li class="active"><a href="/help">help</a></li>
2569 </ul>
2594 </ul>
2570 </div>
2595 </div>
2571
2596
2572 <div class="main">
2597 <div class="main">
2573 <h2 class="breadcrumb"><a href="/">Mercurial</a> </h2>
2598 <h2 class="breadcrumb"><a href="/">Mercurial</a> </h2>
2574 <h3>Help: revisions</h3>
2599 <h3>Help: revisions</h3>
2575
2600
2576 <form class="search" action="/log">
2601 <form class="search" action="/log">
2577
2602
2578 <p><input name="rev" id="search1" type="text" size="30" /></p>
2603 <p><input name="rev" id="search1" type="text" size="30" /></p>
2579 <div id="hint">Find changesets by keywords (author, files, the commit message), revision
2604 <div id="hint">Find changesets by keywords (author, files, the commit message), revision
2580 number or hash, or <a href="/help/revsets">revset expression</a>.</div>
2605 number or hash, or <a href="/help/revsets">revset expression</a>.</div>
2581 </form>
2606 </form>
2582 <div id="doc">
2607 <div id="doc">
2583 <h1>Specifying Single Revisions</h1>
2608 <h1>Specifying Single Revisions</h1>
2584 <p>
2609 <p>
2585 Mercurial supports several ways to specify individual revisions.
2610 Mercurial supports several ways to specify individual revisions.
2586 </p>
2611 </p>
2587 <p>
2612 <p>
2588 A plain integer is treated as a revision number. Negative integers are
2613 A plain integer is treated as a revision number. Negative integers are
2589 treated as sequential offsets from the tip, with -1 denoting the tip,
2614 treated as sequential offsets from the tip, with -1 denoting the tip,
2590 -2 denoting the revision prior to the tip, and so forth.
2615 -2 denoting the revision prior to the tip, and so forth.
2591 </p>
2616 </p>
2592 <p>
2617 <p>
2593 A 40-digit hexadecimal string is treated as a unique revision
2618 A 40-digit hexadecimal string is treated as a unique revision
2594 identifier.
2619 identifier.
2595 </p>
2620 </p>
2596 <p>
2621 <p>
2597 A hexadecimal string less than 40 characters long is treated as a
2622 A hexadecimal string less than 40 characters long is treated as a
2598 unique revision identifier and is referred to as a short-form
2623 unique revision identifier and is referred to as a short-form
2599 identifier. A short-form identifier is only valid if it is the prefix
2624 identifier. A short-form identifier is only valid if it is the prefix
2600 of exactly one full-length identifier.
2625 of exactly one full-length identifier.
2601 </p>
2626 </p>
2602 <p>
2627 <p>
2603 Any other string is treated as a bookmark, tag, or branch name. A
2628 Any other string is treated as a bookmark, tag, or branch name. A
2604 bookmark is a movable pointer to a revision. A tag is a permanent name
2629 bookmark is a movable pointer to a revision. A tag is a permanent name
2605 associated with a revision. A branch name denotes the tipmost open branch head
2630 associated with a revision. A branch name denotes the tipmost open branch head
2606 of that branch - or if they are all closed, the tipmost closed head of the
2631 of that branch - or if they are all closed, the tipmost closed head of the
2607 branch. Bookmark, tag, and branch names must not contain the &quot;:&quot; character.
2632 branch. Bookmark, tag, and branch names must not contain the &quot;:&quot; character.
2608 </p>
2633 </p>
2609 <p>
2634 <p>
2610 The reserved name &quot;tip&quot; always identifies the most recent revision.
2635 The reserved name &quot;tip&quot; always identifies the most recent revision.
2611 </p>
2636 </p>
2612 <p>
2637 <p>
2613 The reserved name &quot;null&quot; indicates the null revision. This is the
2638 The reserved name &quot;null&quot; indicates the null revision. This is the
2614 revision of an empty repository, and the parent of revision 0.
2639 revision of an empty repository, and the parent of revision 0.
2615 </p>
2640 </p>
2616 <p>
2641 <p>
2617 The reserved name &quot;.&quot; indicates the working directory parent. If no
2642 The reserved name &quot;.&quot; indicates the working directory parent. If no
2618 working directory is checked out, it is equivalent to null. If an
2643 working directory is checked out, it is equivalent to null. If an
2619 uncommitted merge is in progress, &quot;.&quot; is the revision of the first
2644 uncommitted merge is in progress, &quot;.&quot; is the revision of the first
2620 parent.
2645 parent.
2621 </p>
2646 </p>
2622
2647
2623 </div>
2648 </div>
2624 </div>
2649 </div>
2625 </div>
2650 </div>
2626
2651
2627 <script type="text/javascript">process_dates()</script>
2652 <script type="text/javascript">process_dates()</script>
2628
2653
2629
2654
2630 </body>
2655 </body>
2631 </html>
2656 </html>
2632
2657
2633
2658
2634 Sub-topic indexes rendered properly
2659 Sub-topic indexes rendered properly
2635
2660
2636 $ get-with-headers.py 127.0.0.1:$HGPORT "help/internals"
2661 $ get-with-headers.py 127.0.0.1:$HGPORT "help/internals"
2637 200 Script output follows
2662 200 Script output follows
2638
2663
2639 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
2664 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
2640 <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en-US">
2665 <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en-US">
2641 <head>
2666 <head>
2642 <link rel="icon" href="/static/hgicon.png" type="image/png" />
2667 <link rel="icon" href="/static/hgicon.png" type="image/png" />
2643 <meta name="robots" content="index, nofollow" />
2668 <meta name="robots" content="index, nofollow" />
2644 <link rel="stylesheet" href="/static/style-paper.css" type="text/css" />
2669 <link rel="stylesheet" href="/static/style-paper.css" type="text/css" />
2645 <script type="text/javascript" src="/static/mercurial.js"></script>
2670 <script type="text/javascript" src="/static/mercurial.js"></script>
2646
2671
2647 <title>Help: internals</title>
2672 <title>Help: internals</title>
2648 </head>
2673 </head>
2649 <body>
2674 <body>
2650
2675
2651 <div class="container">
2676 <div class="container">
2652 <div class="menu">
2677 <div class="menu">
2653 <div class="logo">
2678 <div class="logo">
2654 <a href="https://mercurial-scm.org/">
2679 <a href="https://mercurial-scm.org/">
2655 <img src="/static/hglogo.png" alt="mercurial" /></a>
2680 <img src="/static/hglogo.png" alt="mercurial" /></a>
2656 </div>
2681 </div>
2657 <ul>
2682 <ul>
2658 <li><a href="/shortlog">log</a></li>
2683 <li><a href="/shortlog">log</a></li>
2659 <li><a href="/graph">graph</a></li>
2684 <li><a href="/graph">graph</a></li>
2660 <li><a href="/tags">tags</a></li>
2685 <li><a href="/tags">tags</a></li>
2661 <li><a href="/bookmarks">bookmarks</a></li>
2686 <li><a href="/bookmarks">bookmarks</a></li>
2662 <li><a href="/branches">branches</a></li>
2687 <li><a href="/branches">branches</a></li>
2663 </ul>
2688 </ul>
2664 <ul>
2689 <ul>
2665 <li><a href="/help">help</a></li>
2690 <li><a href="/help">help</a></li>
2666 </ul>
2691 </ul>
2667 </div>
2692 </div>
2668
2693
2669 <div class="main">
2694 <div class="main">
2670 <h2 class="breadcrumb"><a href="/">Mercurial</a> </h2>
2695 <h2 class="breadcrumb"><a href="/">Mercurial</a> </h2>
2671 <form class="search" action="/log">
2696 <form class="search" action="/log">
2672
2697
2673 <p><input name="rev" id="search1" type="text" size="30" /></p>
2698 <p><input name="rev" id="search1" type="text" size="30" /></p>
2674 <div id="hint">Find changesets by keywords (author, files, the commit message), revision
2699 <div id="hint">Find changesets by keywords (author, files, the commit message), revision
2675 number or hash, or <a href="/help/revsets">revset expression</a>.</div>
2700 number or hash, or <a href="/help/revsets">revset expression</a>.</div>
2676 </form>
2701 </form>
2677 <table class="bigtable">
2702 <table class="bigtable">
2678 <tr><td colspan="2"><h2><a name="main" href="#topics">Topics</a></h2></td></tr>
2703 <tr><td colspan="2"><h2><a name="main" href="#topics">Topics</a></h2></td></tr>
2679
2704
2680 <tr><td>
2705 <tr><td>
2681 <a href="/help/internals.bundles">
2706 <a href="/help/internals.bundles">
2682 bundles
2707 bundles
2683 </a>
2708 </a>
2684 </td><td>
2709 </td><td>
2685 container for exchange of repository data
2710 container for exchange of repository data
2686 </td></tr>
2711 </td></tr>
2687 <tr><td>
2712 <tr><td>
2688 <a href="/help/internals.changegroups">
2713 <a href="/help/internals.changegroups">
2689 changegroups
2714 changegroups
2690 </a>
2715 </a>
2691 </td><td>
2716 </td><td>
2692 representation of revlog data
2717 representation of revlog data
2693 </td></tr>
2718 </td></tr>
2694
2719
2695
2720
2696
2721
2697
2722
2698
2723
2699 </table>
2724 </table>
2700 </div>
2725 </div>
2701 </div>
2726 </div>
2702
2727
2703 <script type="text/javascript">process_dates()</script>
2728 <script type="text/javascript">process_dates()</script>
2704
2729
2705
2730
2706 </body>
2731 </body>
2707 </html>
2732 </html>
2708
2733
2709
2734
2710 Sub-topic topics rendered properly
2735 Sub-topic topics rendered properly
2711
2736
2712 $ get-with-headers.py 127.0.0.1:$HGPORT "help/internals.changegroups"
2737 $ get-with-headers.py 127.0.0.1:$HGPORT "help/internals.changegroups"
2713 200 Script output follows
2738 200 Script output follows
2714
2739
2715 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
2740 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
2716 <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en-US">
2741 <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en-US">
2717 <head>
2742 <head>
2718 <link rel="icon" href="/static/hgicon.png" type="image/png" />
2743 <link rel="icon" href="/static/hgicon.png" type="image/png" />
2719 <meta name="robots" content="index, nofollow" />
2744 <meta name="robots" content="index, nofollow" />
2720 <link rel="stylesheet" href="/static/style-paper.css" type="text/css" />
2745 <link rel="stylesheet" href="/static/style-paper.css" type="text/css" />
2721 <script type="text/javascript" src="/static/mercurial.js"></script>
2746 <script type="text/javascript" src="/static/mercurial.js"></script>
2722
2747
2723 <title>Help: internals.changegroups</title>
2748 <title>Help: internals.changegroups</title>
2724 </head>
2749 </head>
2725 <body>
2750 <body>
2726
2751
2727 <div class="container">
2752 <div class="container">
2728 <div class="menu">
2753 <div class="menu">
2729 <div class="logo">
2754 <div class="logo">
2730 <a href="https://mercurial-scm.org/">
2755 <a href="https://mercurial-scm.org/">
2731 <img src="/static/hglogo.png" alt="mercurial" /></a>
2756 <img src="/static/hglogo.png" alt="mercurial" /></a>
2732 </div>
2757 </div>
2733 <ul>
2758 <ul>
2734 <li><a href="/shortlog">log</a></li>
2759 <li><a href="/shortlog">log</a></li>
2735 <li><a href="/graph">graph</a></li>
2760 <li><a href="/graph">graph</a></li>
2736 <li><a href="/tags">tags</a></li>
2761 <li><a href="/tags">tags</a></li>
2737 <li><a href="/bookmarks">bookmarks</a></li>
2762 <li><a href="/bookmarks">bookmarks</a></li>
2738 <li><a href="/branches">branches</a></li>
2763 <li><a href="/branches">branches</a></li>
2739 </ul>
2764 </ul>
2740 <ul>
2765 <ul>
2741 <li class="active"><a href="/help">help</a></li>
2766 <li class="active"><a href="/help">help</a></li>
2742 </ul>
2767 </ul>
2743 </div>
2768 </div>
2744
2769
2745 <div class="main">
2770 <div class="main">
2746 <h2 class="breadcrumb"><a href="/">Mercurial</a> </h2>
2771 <h2 class="breadcrumb"><a href="/">Mercurial</a> </h2>
2747 <h3>Help: internals.changegroups</h3>
2772 <h3>Help: internals.changegroups</h3>
2748
2773
2749 <form class="search" action="/log">
2774 <form class="search" action="/log">
2750
2775
2751 <p><input name="rev" id="search1" type="text" size="30" /></p>
2776 <p><input name="rev" id="search1" type="text" size="30" /></p>
2752 <div id="hint">Find changesets by keywords (author, files, the commit message), revision
2777 <div id="hint">Find changesets by keywords (author, files, the commit message), revision
2753 number or hash, or <a href="/help/revsets">revset expression</a>.</div>
2778 number or hash, or <a href="/help/revsets">revset expression</a>.</div>
2754 </form>
2779 </form>
2755 <div id="doc">
2780 <div id="doc">
2756 <h1>representation of revlog data</h1>
2781 <h1>representation of revlog data</h1>
2757 <h2>Changegroups</h2>
2782 <h2>Changegroups</h2>
2758 <p>
2783 <p>
2759 Changegroups are representations of repository revlog data, specifically
2784 Changegroups are representations of repository revlog data, specifically
2760 the changelog, manifest, and filelogs.
2785 the changelog, manifest, and filelogs.
2761 </p>
2786 </p>
2762 <p>
2787 <p>
2763 There are 3 versions of changegroups: &quot;1&quot;, &quot;2&quot;, and &quot;3&quot;. From a
2788 There are 3 versions of changegroups: &quot;1&quot;, &quot;2&quot;, and &quot;3&quot;. From a
2764 high-level, versions &quot;1&quot; and &quot;2&quot; are almost exactly the same, with
2789 high-level, versions &quot;1&quot; and &quot;2&quot; are almost exactly the same, with
2765 the only difference being a header on entries in the changeset
2790 the only difference being a header on entries in the changeset
2766 segment. Version &quot;3&quot; adds support for exchanging treemanifests and
2791 segment. Version &quot;3&quot; adds support for exchanging treemanifests and
2767 includes revlog flags in the delta header.
2792 includes revlog flags in the delta header.
2768 </p>
2793 </p>
2769 <p>
2794 <p>
2770 Changegroups consists of 3 logical segments:
2795 Changegroups consists of 3 logical segments:
2771 </p>
2796 </p>
2772 <pre>
2797 <pre>
2773 +---------------------------------+
2798 +---------------------------------+
2774 | | | |
2799 | | | |
2775 | changeset | manifest | filelogs |
2800 | changeset | manifest | filelogs |
2776 | | | |
2801 | | | |
2777 +---------------------------------+
2802 +---------------------------------+
2778 </pre>
2803 </pre>
2779 <p>
2804 <p>
2780 The principle building block of each segment is a *chunk*. A *chunk*
2805 The principle building block of each segment is a *chunk*. A *chunk*
2781 is a framed piece of data:
2806 is a framed piece of data:
2782 </p>
2807 </p>
2783 <pre>
2808 <pre>
2784 +---------------------------------------+
2809 +---------------------------------------+
2785 | | |
2810 | | |
2786 | length | data |
2811 | length | data |
2787 | (32 bits) | &lt;length&gt; bytes |
2812 | (32 bits) | &lt;length&gt; bytes |
2788 | | |
2813 | | |
2789 +---------------------------------------+
2814 +---------------------------------------+
2790 </pre>
2815 </pre>
2791 <p>
2816 <p>
2792 Each chunk starts with a 32-bit big-endian signed integer indicating
2817 Each chunk starts with a 32-bit big-endian signed integer indicating
2793 the length of the raw data that follows.
2818 the length of the raw data that follows.
2794 </p>
2819 </p>
2795 <p>
2820 <p>
2796 There is a special case chunk that has 0 length (&quot;0x00000000&quot;). We
2821 There is a special case chunk that has 0 length (&quot;0x00000000&quot;). We
2797 call this an *empty chunk*.
2822 call this an *empty chunk*.
2798 </p>
2823 </p>
2799 <h3>Delta Groups</h3>
2824 <h3>Delta Groups</h3>
2800 <p>
2825 <p>
2801 A *delta group* expresses the content of a revlog as a series of deltas,
2826 A *delta group* expresses the content of a revlog as a series of deltas,
2802 or patches against previous revisions.
2827 or patches against previous revisions.
2803 </p>
2828 </p>
2804 <p>
2829 <p>
2805 Delta groups consist of 0 or more *chunks* followed by the *empty chunk*
2830 Delta groups consist of 0 or more *chunks* followed by the *empty chunk*
2806 to signal the end of the delta group:
2831 to signal the end of the delta group:
2807 </p>
2832 </p>
2808 <pre>
2833 <pre>
2809 +------------------------------------------------------------------------+
2834 +------------------------------------------------------------------------+
2810 | | | | | |
2835 | | | | | |
2811 | chunk0 length | chunk0 data | chunk1 length | chunk1 data | 0x0 |
2836 | chunk0 length | chunk0 data | chunk1 length | chunk1 data | 0x0 |
2812 | (32 bits) | (various) | (32 bits) | (various) | (32 bits) |
2837 | (32 bits) | (various) | (32 bits) | (various) | (32 bits) |
2813 | | | | | |
2838 | | | | | |
2814 +------------------------------------------------------------+-----------+
2839 +------------------------------------------------------------+-----------+
2815 </pre>
2840 </pre>
2816 <p>
2841 <p>
2817 Each *chunk*'s data consists of the following:
2842 Each *chunk*'s data consists of the following:
2818 </p>
2843 </p>
2819 <pre>
2844 <pre>
2820 +-----------------------------------------+
2845 +-----------------------------------------+
2821 | | | |
2846 | | | |
2822 | delta header | mdiff header | delta |
2847 | delta header | mdiff header | delta |
2823 | (various) | (12 bytes) | (various) |
2848 | (various) | (12 bytes) | (various) |
2824 | | | |
2849 | | | |
2825 +-----------------------------------------+
2850 +-----------------------------------------+
2826 </pre>
2851 </pre>
2827 <p>
2852 <p>
2828 The *length* field is the byte length of the remaining 3 logical pieces
2853 The *length* field is the byte length of the remaining 3 logical pieces
2829 of data. The *delta* is a diff from an existing entry in the changelog.
2854 of data. The *delta* is a diff from an existing entry in the changelog.
2830 </p>
2855 </p>
2831 <p>
2856 <p>
2832 The *delta header* is different between versions &quot;1&quot;, &quot;2&quot;, and
2857 The *delta header* is different between versions &quot;1&quot;, &quot;2&quot;, and
2833 &quot;3&quot; of the changegroup format.
2858 &quot;3&quot; of the changegroup format.
2834 </p>
2859 </p>
2835 <p>
2860 <p>
2836 Version 1:
2861 Version 1:
2837 </p>
2862 </p>
2838 <pre>
2863 <pre>
2839 +------------------------------------------------------+
2864 +------------------------------------------------------+
2840 | | | | |
2865 | | | | |
2841 | node | p1 node | p2 node | link node |
2866 | node | p1 node | p2 node | link node |
2842 | (20 bytes) | (20 bytes) | (20 bytes) | (20 bytes) |
2867 | (20 bytes) | (20 bytes) | (20 bytes) | (20 bytes) |
2843 | | | | |
2868 | | | | |
2844 +------------------------------------------------------+
2869 +------------------------------------------------------+
2845 </pre>
2870 </pre>
2846 <p>
2871 <p>
2847 Version 2:
2872 Version 2:
2848 </p>
2873 </p>
2849 <pre>
2874 <pre>
2850 +------------------------------------------------------------------+
2875 +------------------------------------------------------------------+
2851 | | | | | |
2876 | | | | | |
2852 | node | p1 node | p2 node | base node | link node |
2877 | node | p1 node | p2 node | base node | link node |
2853 | (20 bytes) | (20 bytes) | (20 bytes) | (20 bytes) | (20 bytes) |
2878 | (20 bytes) | (20 bytes) | (20 bytes) | (20 bytes) | (20 bytes) |
2854 | | | | | |
2879 | | | | | |
2855 +------------------------------------------------------------------+
2880 +------------------------------------------------------------------+
2856 </pre>
2881 </pre>
2857 <p>
2882 <p>
2858 Version 3:
2883 Version 3:
2859 </p>
2884 </p>
2860 <pre>
2885 <pre>
2861 +------------------------------------------------------------------------------+
2886 +------------------------------------------------------------------------------+
2862 | | | | | | |
2887 | | | | | | |
2863 | node | p1 node | p2 node | base node | link node | flags |
2888 | node | p1 node | p2 node | base node | link node | flags |
2864 | (20 bytes) | (20 bytes) | (20 bytes) | (20 bytes) | (20 bytes) | (2 bytes) |
2889 | (20 bytes) | (20 bytes) | (20 bytes) | (20 bytes) | (20 bytes) | (2 bytes) |
2865 | | | | | | |
2890 | | | | | | |
2866 +------------------------------------------------------------------------------+
2891 +------------------------------------------------------------------------------+
2867 </pre>
2892 </pre>
2868 <p>
2893 <p>
2869 The *mdiff header* consists of 3 32-bit big-endian signed integers
2894 The *mdiff header* consists of 3 32-bit big-endian signed integers
2870 describing offsets at which to apply the following delta content:
2895 describing offsets at which to apply the following delta content:
2871 </p>
2896 </p>
2872 <pre>
2897 <pre>
2873 +-------------------------------------+
2898 +-------------------------------------+
2874 | | | |
2899 | | | |
2875 | offset | old length | new length |
2900 | offset | old length | new length |
2876 | (32 bits) | (32 bits) | (32 bits) |
2901 | (32 bits) | (32 bits) | (32 bits) |
2877 | | | |
2902 | | | |
2878 +-------------------------------------+
2903 +-------------------------------------+
2879 </pre>
2904 </pre>
2880 <p>
2905 <p>
2881 In version 1, the delta is always applied against the previous node from
2906 In version 1, the delta is always applied against the previous node from
2882 the changegroup or the first parent if this is the first entry in the
2907 the changegroup or the first parent if this is the first entry in the
2883 changegroup.
2908 changegroup.
2884 </p>
2909 </p>
2885 <p>
2910 <p>
2886 In version 2, the delta base node is encoded in the entry in the
2911 In version 2, the delta base node is encoded in the entry in the
2887 changegroup. This allows the delta to be expressed against any parent,
2912 changegroup. This allows the delta to be expressed against any parent,
2888 which can result in smaller deltas and more efficient encoding of data.
2913 which can result in smaller deltas and more efficient encoding of data.
2889 </p>
2914 </p>
2890 <h3>Changeset Segment</h3>
2915 <h3>Changeset Segment</h3>
2891 <p>
2916 <p>
2892 The *changeset segment* consists of a single *delta group* holding
2917 The *changeset segment* consists of a single *delta group* holding
2893 changelog data. It is followed by an *empty chunk* to denote the
2918 changelog data. It is followed by an *empty chunk* to denote the
2894 boundary to the *manifests segment*.
2919 boundary to the *manifests segment*.
2895 </p>
2920 </p>
2896 <h3>Manifest Segment</h3>
2921 <h3>Manifest Segment</h3>
2897 <p>
2922 <p>
2898 The *manifest segment* consists of a single *delta group* holding
2923 The *manifest segment* consists of a single *delta group* holding
2899 manifest data. It is followed by an *empty chunk* to denote the boundary
2924 manifest data. It is followed by an *empty chunk* to denote the boundary
2900 to the *filelogs segment*.
2925 to the *filelogs segment*.
2901 </p>
2926 </p>
2902 <h3>Filelogs Segment</h3>
2927 <h3>Filelogs Segment</h3>
2903 <p>
2928 <p>
2904 The *filelogs* segment consists of multiple sub-segments, each
2929 The *filelogs* segment consists of multiple sub-segments, each
2905 corresponding to an individual file whose data is being described:
2930 corresponding to an individual file whose data is being described:
2906 </p>
2931 </p>
2907 <pre>
2932 <pre>
2908 +--------------------------------------+
2933 +--------------------------------------+
2909 | | | | |
2934 | | | | |
2910 | filelog0 | filelog1 | filelog2 | ... |
2935 | filelog0 | filelog1 | filelog2 | ... |
2911 | | | | |
2936 | | | | |
2912 +--------------------------------------+
2937 +--------------------------------------+
2913 </pre>
2938 </pre>
2914 <p>
2939 <p>
2915 In version &quot;3&quot; of the changegroup format, filelogs may include
2940 In version &quot;3&quot; of the changegroup format, filelogs may include
2916 directory logs when treemanifests are in use. directory logs are
2941 directory logs when treemanifests are in use. directory logs are
2917 identified by having a trailing '/' on their filename (see below).
2942 identified by having a trailing '/' on their filename (see below).
2918 </p>
2943 </p>
2919 <p>
2944 <p>
2920 The final filelog sub-segment is followed by an *empty chunk* to denote
2945 The final filelog sub-segment is followed by an *empty chunk* to denote
2921 the end of the segment and the overall changegroup.
2946 the end of the segment and the overall changegroup.
2922 </p>
2947 </p>
2923 <p>
2948 <p>
2924 Each filelog sub-segment consists of the following:
2949 Each filelog sub-segment consists of the following:
2925 </p>
2950 </p>
2926 <pre>
2951 <pre>
2927 +------------------------------------------+
2952 +------------------------------------------+
2928 | | | |
2953 | | | |
2929 | filename size | filename | delta group |
2954 | filename size | filename | delta group |
2930 | (32 bits) | (various) | (various) |
2955 | (32 bits) | (various) | (various) |
2931 | | | |
2956 | | | |
2932 +------------------------------------------+
2957 +------------------------------------------+
2933 </pre>
2958 </pre>
2934 <p>
2959 <p>
2935 That is, a *chunk* consisting of the filename (not terminated or padded)
2960 That is, a *chunk* consisting of the filename (not terminated or padded)
2936 followed by N chunks constituting the *delta group* for this file.
2961 followed by N chunks constituting the *delta group* for this file.
2937 </p>
2962 </p>
2938
2963
2939 </div>
2964 </div>
2940 </div>
2965 </div>
2941 </div>
2966 </div>
2942
2967
2943 <script type="text/javascript">process_dates()</script>
2968 <script type="text/javascript">process_dates()</script>
2944
2969
2945
2970
2946 </body>
2971 </body>
2947 </html>
2972 </html>
2948
2973
2949
2974
2950 $ killdaemons.py
2975 $ killdaemons.py
2951
2976
2952 #endif
2977 #endif
General Comments 0
You need to be logged in to leave comments. Login now