Generate man page for borgfs (fixes #3216)

This commit is contained in:
Milkey Mouse 2017-11-05 14:46:25 -08:00
parent 6f2bc44588
commit 17d5c794d3
No known key found for this signature in database
GPG Key ID: C6EF5A02F5647987
2 changed files with 19 additions and 6 deletions

1
docs/usage/borgfs.rst Normal file
View File

@ -0,0 +1 @@
.. include:: borgfs.rst.inc

View File

@ -242,10 +242,11 @@ class build_usage(Command):
# allows us to build docs without the C modules fully loaded during help generation # allows us to build docs without the C modules fully loaded during help generation
from borg.archiver import Archiver from borg.archiver import Archiver
parser = Archiver(prog='borg').build_parser() parser = Archiver(prog='borg').build_parser()
borgfs_parser = Archiver(prog='borgfs').build_parser()
self.generate_level("", parser, Archiver) self.generate_level("", parser, Archiver, {'borgfs': borgfs_parser})
def generate_level(self, prefix, parser, Archiver): def generate_level(self, prefix, parser, Archiver, extra_choices=None):
is_subcommand = False is_subcommand = False
choices = {} choices = {}
for action in parser._actions: for action in parser._actions:
@ -253,6 +254,8 @@ class build_usage(Command):
is_subcommand = True is_subcommand = True
for cmd, parser in action.choices.items(): for cmd, parser in action.choices.items():
choices[prefix + cmd] = parser choices[prefix + cmd] = parser
if extra_choices is not None:
choices.update(extra_choices)
if prefix and not choices: if prefix and not choices:
return return
print('found commands: %s' % list(choices.keys())) print('found commands: %s' % list(choices.keys()))
@ -505,12 +508,13 @@ class build_man(Command):
# allows us to build docs without the C modules fully loaded during help generation # allows us to build docs without the C modules fully loaded during help generation
from borg.archiver import Archiver from borg.archiver import Archiver
parser = Archiver(prog='borg').build_parser() parser = Archiver(prog='borg').build_parser()
borgfs_parser = Archiver(prog='borgfs').build_parser()
self.generate_level('', parser, Archiver) self.generate_level('', parser, Archiver, {'borgfs': borgfs_parser})
self.build_topic_pages(Archiver) self.build_topic_pages(Archiver)
self.build_intro_page() self.build_intro_page()
def generate_level(self, prefix, parser, Archiver): def generate_level(self, prefix, parser, Archiver, extra_choices=None):
is_subcommand = False is_subcommand = False
choices = {} choices = {}
for action in parser._actions: for action in parser._actions:
@ -518,6 +522,8 @@ class build_man(Command):
is_subcommand = True is_subcommand = True
for cmd, parser in action.choices.items(): for cmd, parser in action.choices.items():
choices[prefix + cmd] = parser choices[prefix + cmd] = parser
if extra_choices is not None:
choices.update(extra_choices)
if prefix and not choices: if prefix and not choices:
return return
@ -525,6 +531,9 @@ class build_man(Command):
if command.startswith('debug') or command == 'help': if command.startswith('debug') or command == 'help':
continue continue
if command == "borgfs":
man_title = command
else:
man_title = 'borg-' + command.replace(' ', '-') man_title = 'borg-' + command.replace(' ', '-')
print('building man page', man_title + '(1)', file=sys.stderr) print('building man page', man_title + '(1)', file=sys.stderr)
@ -539,6 +548,9 @@ class build_man(Command):
for subcommand in subparsers.choices: for subcommand in subparsers.choices:
write('| borg', '[common options]', command, subcommand, '...') write('| borg', '[common options]', command, subcommand, '...')
self.see_also.setdefault(command, []).append('%s-%s' % (command, subcommand)) self.see_also.setdefault(command, []).append('%s-%s' % (command, subcommand))
else:
if command == "borgfs":
write(command, end='')
else: else:
write('borg', '[common options]', command, end='') write('borg', '[common options]', command, end='')
self.write_usage(write, parser) self.write_usage(write, parser)