remove support for bcomment placeholder

not needed any more as the comment is now validated pure text.
This commit is contained in:
Thomas Waldmann 2022-12-12 18:55:14 +01:00
parent 4b54b5565e
commit 1517db07ec
No known key found for this signature in database
GPG Key ID: 243ACFA951F78E01
1 changed files with 2 additions and 4 deletions

View File

@ -629,8 +629,7 @@ class ArchiveFormatter(BaseFormatter):
"archive": "archive name interpreted as text (might be missing non-text characters, see barchive)", "archive": "archive name interpreted as text (might be missing non-text characters, see barchive)",
"name": 'alias of "archive"', "name": 'alias of "archive"',
"barchive": "verbatim archive name, can contain any character except NUL", "barchive": "verbatim archive name, can contain any character except NUL",
"comment": "archive comment interpreted as text (might be missing non-text characters, see bcomment)", "comment": "archive comment",
"bcomment": "verbatim archive comment, can contain any character except NUL",
# *start* is the key used by borg-info for this timestamp, this makes the formats more compatible # *start* is the key used by borg-info for this timestamp, this makes the formats more compatible
"start": "time (start) of creation of the archive", "start": "time (start) of creation of the archive",
"time": 'alias of "start"', "time": 'alias of "start"',
@ -641,7 +640,7 @@ class ArchiveFormatter(BaseFormatter):
"username": "username of user who created this archive", "username": "username of user who created this archive",
} }
KEY_GROUPS = ( KEY_GROUPS = (
("archive", "name", "barchive", "comment", "bcomment", "id"), ("archive", "name", "barchive", "comment", "id"),
("start", "time", "end", "command_line"), ("start", "time", "end", "command_line"),
("hostname", "username"), ("hostname", "username"),
) )
@ -692,7 +691,6 @@ class ArchiveFormatter(BaseFormatter):
"hostname": partial(self.get_meta, "hostname", rs=True), "hostname": partial(self.get_meta, "hostname", rs=True),
"username": partial(self.get_meta, "username", rs=True), "username": partial(self.get_meta, "username", rs=True),
"comment": partial(self.get_meta, "comment", rs=True), "comment": partial(self.get_meta, "comment", rs=True),
"bcomment": partial(self.get_meta, "comment", rs=False),
"end": self.get_ts_end, "end": self.get_ts_end,
"command_line": self.get_cmdline, "command_line": self.get_cmdline,
} }