[TASK] #4471 – borg help should print <command> list in sorted order: Step 1

Added command section markers that will help when moving the sections later.
This commit is contained in:
Thalian 2019-03-29 17:38:45 +01:00
parent f541d6e689
commit 018176771e

View File

@ -2602,6 +2602,7 @@ def define_archive_filters_group(subparser, *, sort_by=True, first_last=True):
mid_common_parser.set_defaults(paths=[], patterns=[])
parser.common_options.add_common_group(mid_common_parser, '_midcommand')
# borg mount
mount_epilog = process_epilog("""
This command mounts an archive as a FUSE filesystem. This can be useful for
browsing an archive or restoring individual files. Unless the ``--foreground``
@ -2671,6 +2672,7 @@ def define_archive_filters_group(subparser, *, sort_by=True, first_last=True):
if parser.prog == 'borgfs':
return parser
# borg serve
serve_epilog = process_epilog("""
This command starts a repository server process. This command is usually not used manually.
""")
@ -2702,6 +2704,7 @@ def define_archive_filters_group(subparser, *, sort_by=True, first_last=True):
'When a new repository is initialized, sets the storage quota on the new '
'repository as well. Default: no quota.')
# borg init
init_epilog = process_epilog("""
This command initializes an empty repository. A repository is a filesystem
directory containing the deduplicated data from zero or more archives.
@ -2827,6 +2830,7 @@ def define_archive_filters_group(subparser, *, sort_by=True, first_last=True):
subparser.add_argument('--make-parent-dirs', dest='make_parent_dirs', action='store_true',
help='create the parent directories of the repository directory, if they are missing.')
# borg check
check_epilog = process_epilog("""
The check command verifies the consistency of a repository and the corresponding archives.
@ -2899,6 +2903,7 @@ def define_archive_filters_group(subparser, *, sort_by=True, first_last=True):
help='do only a partial repo check for max. SECONDS seconds (Default: unlimited)')
define_archive_filters_group(subparser)
# borg key
subparser = subparsers.add_parser('key', parents=[mid_common_parser], add_help=False,
description="Manage a keyfile or repokey of a repository",
epilog="",
@ -3011,6 +3016,7 @@ def define_archive_filters_group(subparser, *, sort_by=True, first_last=True):
subparser.add_argument('location', metavar='REPOSITORY', nargs='?', default='',
type=location_validator(archive=False))
# borg create
create_epilog = process_epilog("""
This command creates a backup archive containing all files found while recursively
traversing all paths specified. Paths are added to the archive as they are given,
@ -3213,6 +3219,7 @@ def define_archive_filters_group(subparser, *, sort_by=True, first_last=True):
subparser.add_argument('paths', metavar='PATH', nargs='*', type=str,
help='paths to archive')
# borg extract
extract_epilog = process_epilog("""
This command extracts the contents of an archive. By default the entire
archive is extracted but a subset of files and directories can be selected
@ -3258,6 +3265,7 @@ def define_archive_filters_group(subparser, *, sort_by=True, first_last=True):
help='paths to extract; patterns are supported')
define_exclusion_group(subparser, strip_components=True)
# borg export-tar
export_tar_epilog = process_epilog("""
This command creates a tarball from an archive.
@ -3312,6 +3320,7 @@ def define_archive_filters_group(subparser, *, sort_by=True, first_last=True):
help='paths to extract; patterns are supported')
define_exclusion_group(subparser, strip_components=True)
# borg diff
diff_epilog = process_epilog("""
This command finds differences (file contents, user/group/mode) between archives.
@ -3352,6 +3361,7 @@ def define_archive_filters_group(subparser, *, sort_by=True, first_last=True):
help='paths of items inside the archives to compare; patterns are supported')
define_exclusion_group(subparser)
# borg rename
rename_epilog = process_epilog("""
This command renames an archive in the repository.
@ -3370,6 +3380,7 @@ def define_archive_filters_group(subparser, *, sort_by=True, first_last=True):
type=archivename_validator(),
help='the new archive name to use')
# borg delete
delete_epilog = process_epilog("""
This command deletes an archive from the repository or the complete repository.
@ -3420,6 +3431,7 @@ def define_archive_filters_group(subparser, *, sort_by=True, first_last=True):
help='archives to delete')
define_archive_filters_group(subparser)
# borg list
list_epilog = process_epilog("""
This command lists the contents of a repository or an archive.
@ -3470,6 +3482,7 @@ def define_archive_filters_group(subparser, *, sort_by=True, first_last=True):
define_archive_filters_group(subparser)
define_exclusion_group(subparser)
# borg umount
umount_epilog = process_epilog("""
This command un-mounts a FUSE filesystem that was mounted with ``borg mount``.
@ -3485,6 +3498,7 @@ def define_archive_filters_group(subparser, *, sort_by=True, first_last=True):
subparser.add_argument('mountpoint', metavar='MOUNTPOINT', type=str,
help='mountpoint of the filesystem to umount')
# borg info
info_epilog = process_epilog("""
This command displays detailed information about the specified archive or repository.
@ -3515,6 +3529,7 @@ def define_archive_filters_group(subparser, *, sort_by=True, first_last=True):
help='format output as JSON')
define_archive_filters_group(subparser)
# borg break-lock
break_lock_epilog = process_epilog("""
This command breaks the repository and cache locks.
Please use carefully and only while no borg process (on any machine) is
@ -3530,6 +3545,7 @@ def define_archive_filters_group(subparser, *, sort_by=True, first_last=True):
type=location_validator(archive=False),
help='repository for which to break the locks')
# borg prune
prune_epilog = process_epilog("""
The prune command prunes a repository by deleting all archives not matching
any of the specified retention options.
@ -3616,6 +3632,7 @@ def define_archive_filters_group(subparser, *, sort_by=True, first_last=True):
type=location_validator(archive=False),
help='repository to prune')
# borg upgrade
upgrade_epilog = process_epilog("""
Upgrade an existing, local Borg repository.
@ -3719,6 +3736,7 @@ def define_archive_filters_group(subparser, *, sort_by=True, first_last=True):
type=location_validator(archive=False),
help='path to the repository to be upgraded')
# borg recreate
recreate_epilog = process_epilog("""
Recreate the contents of existing archives.
@ -3827,6 +3845,7 @@ def define_archive_filters_group(subparser, *, sort_by=True, first_last=True):
subparser.add_argument('paths', metavar='PATH', nargs='*', type=str,
help='paths to recreate; patterns are supported')
# borg with-lock
with_lock_epilog = process_epilog("""
This command runs a user-specified command while the repository lock is held.
@ -3856,6 +3875,7 @@ def define_archive_filters_group(subparser, *, sort_by=True, first_last=True):
subparser.add_argument('args', metavar='ARGS', nargs=argparse.REMAINDER,
help='command arguments')
# borg compact
compact_epilog = process_epilog("""
This command frees repository space by compacting segments.
@ -3881,6 +3901,7 @@ def define_archive_filters_group(subparser, *, sort_by=True, first_last=True):
subparser.add_argument('--cleanup-commits', dest='cleanup_commits', action='store_true',
help='cleanup commit-only 17-byte segment files')
# borg config
config_epilog = process_epilog("""
This command gets and sets options in a local repository or cache config file.
For security reasons, this command only works on local repositories.
@ -3927,6 +3948,7 @@ def define_archive_filters_group(subparser, *, sort_by=True, first_last=True):
subparser.add_argument('topic', metavar='TOPIC', type=str, nargs='?',
help='additional help on TOPIC')
# borg debug
debug_epilog = process_epilog("""
These commands are not intended for normal use and potentially very
dangerous if used incorrectly.
@ -4105,6 +4127,7 @@ def define_archive_filters_group(subparser, *, sort_by=True, first_last=True):
subparser.add_argument('output', metavar='OUTPUT', type=argparse.FileType('wb'),
help='Output file')
# borg benchmark
benchmark_epilog = process_epilog("These commands do various benchmarks.")
subparser = subparsers.add_parser('benchmark', parents=[mid_common_parser], add_help=False,