comparison mercurial/help.py @ 31793:69d8fcf20014

help: document bundle specifications I softly formalized the concept of a "bundle specification" a while ago when I was working on clone bundles and stream clone bundles and wanted a more robust way to define what exactly is in a bundle file. The concept has existed for a while. Since it is part of the clone bundles feature and exposed to the user via the "-t" argument to `hg bundle`, it is something we need to support for the long haul. After the 4.1 release, I heard a few people comment that they didn't realize you could generate zstd bundles with `hg bundle`. I'm partially to blame for not documenting it in bundle's docstring. Additionally, I added a hacky, experimental feature for controlling the compression level of bundles in 76104a4899ad. As the commit message says, I went with a quick and dirty solution out of time constraints. Furthermore, I wanted to eventually store this configuration in the "bundlespec" so it could be made more flexible. Given: a) bundlespecs are here to stay b) we don't have great documentation over what they are, despite being a user-facing feature c) the list of available compression engines and their behavior isn't exposed d) we need an extensible place to modify behavior of compression engines I want to move forward with formalizing bundlespecs as a user-facing feature. This commit does that by introducing a "bundlespec" help page. Leaning on the just-added compression engine documentation and API, the topic also conveniently lists available compression engines and details about them. This makes features like zstd bundle compression more discoverable. e.g. you can now `hg help -k zstd` and it lists the "bundlespec" topic.
author Gregory Szorc <gregory.szorc@gmail.com>
date Sat, 01 Apr 2017 13:42:06 -0700
parents 2cdb1239ff8c
children d7b698ae153b
comparison
equal deleted inserted replaced
31792:55c0c91f55e6 31793:69d8fcf20014
208 lines.append(' :%s: %s\n' % (names[0], header)) 208 lines.append(' :%s: %s\n' % (names[0], header))
209 209
210 return ''.join(lines) 210 return ''.join(lines)
211 211
212 helptable = sorted([ 212 helptable = sorted([
213 (['bundlespec'], _("Bundle File Formats"), loaddoc('bundlespec')),
213 (['color'], _("Colorizing Outputs"), loaddoc('color')), 214 (['color'], _("Colorizing Outputs"), loaddoc('color')),
214 (["config", "hgrc"], _("Configuration Files"), loaddoc('config')), 215 (["config", "hgrc"], _("Configuration Files"), loaddoc('config')),
215 (["dates"], _("Date Formats"), loaddoc('dates')), 216 (["dates"], _("Date Formats"), loaddoc('dates')),
216 (["patterns"], _("File Name Patterns"), loaddoc('patterns')), 217 (["patterns"], _("File Name Patterns"), loaddoc('patterns')),
217 (['environment', 'env'], _('Environment Variables'), 218 (['environment', 'env'], _('Environment Variables'),
281 def addtopicsymbols(topic, marker, symbols, dedent=False): 282 def addtopicsymbols(topic, marker, symbols, dedent=False):
282 def add(ui, topic, doc): 283 def add(ui, topic, doc):
283 return makeitemsdoc(ui, topic, doc, marker, symbols, dedent=dedent) 284 return makeitemsdoc(ui, topic, doc, marker, symbols, dedent=dedent)
284 addtopichook(topic, add) 285 addtopichook(topic, add)
285 286
287 addtopicsymbols('bundlespec', '.. bundlecompressionmarker',
288 util.bundlecompressiontopics())
286 addtopicsymbols('filesets', '.. predicatesmarker', fileset.symbols) 289 addtopicsymbols('filesets', '.. predicatesmarker', fileset.symbols)
287 addtopicsymbols('merge-tools', '.. internaltoolsmarker', 290 addtopicsymbols('merge-tools', '.. internaltoolsmarker',
288 filemerge.internalsdoc) 291 filemerge.internalsdoc)
289 addtopicsymbols('revisions', '.. predicatesmarker', revset.symbols) 292 addtopicsymbols('revisions', '.. predicatesmarker', revset.symbols)
290 addtopicsymbols('templates', '.. keywordsmarker', templatekw.keywords) 293 addtopicsymbols('templates', '.. keywordsmarker', templatekw.keywords)