forked from TrueCloudLab/restic
doc: apply review comments and improve link formatting
This commit is contained in:
parent
e2df73b0ac
commit
a67d3781a3
1 changed files with 7 additions and 7 deletions
|
@ -300,8 +300,8 @@ example, the Pack ``73d04e61`` contains two data Blobs and one Tree
|
||||||
blob, the plaintext hashes are listed afterwards. The ``length`` field
|
blob, the plaintext hashes are listed afterwards. The ``length`` field
|
||||||
corresponds to ``Length(encrypted_blob)`` in the pack file header.
|
corresponds to ``Length(encrypted_blob)`` in the pack file header.
|
||||||
Field ``uncompressed_length`` is only present for compressed blobs and
|
Field ``uncompressed_length`` is only present for compressed blobs and
|
||||||
therefore is never present in the Repository format version 1. It is set
|
therefore is never present in version 1 of the repository format. It is
|
||||||
to the value of ``Length(blob)``.
|
set to the value of ``Length(blob)``.
|
||||||
|
|
||||||
The field ``supersedes`` lists the storage IDs of index files that have
|
The field ``supersedes`` lists the storage IDs of index files that have
|
||||||
been replaced with the current index file. This happens when index files
|
been replaced with the current index file. This happens when index files
|
||||||
|
@ -504,12 +504,12 @@ A tree contains a list of entries (in the field ``nodes``) which contain
|
||||||
meta data like a name and timestamps. Note that there are some specialities of how
|
meta data like a name and timestamps. Note that there are some specialities of how
|
||||||
this metadata is generated:
|
this metadata is generated:
|
||||||
|
|
||||||
- The name is quoted using <https://pkg.go.dev/strconv#Quote> before being saved.
|
- The name is quoted using `strconv.Quote <https://pkg.go.dev/strconv#Quote>`__
|
||||||
This handles non-unicode names, but also changes the representation of names
|
before being saved. This handles non-unicode names, but also changes the
|
||||||
containing `"` or `\\`.
|
representation of names containing ``"`` or ``\``.
|
||||||
|
|
||||||
- The filemode saved is the mode defined by <https://pkg.go.dev/io/fs#FileMode> masked
|
- The filemode saved is the mode defined by `fs.FileMode <https://pkg.go.dev/io/fs#FileMode>`__
|
||||||
by ``os.ModePerm | os.ModeType | os.ModeSetuid | os.ModeSetgid | os.ModeSticky``
|
masked by ``os.ModePerm | os.ModeType | os.ModeSetuid | os.ModeSetgid | os.ModeSticky``
|
||||||
|
|
||||||
When the entry references a directory, the field ``subtree`` contains the plain text
|
When the entry references a directory, the field ``subtree`` contains the plain text
|
||||||
ID of another tree object.
|
ID of another tree object.
|
||||||
|
|
Loading…
Reference in a new issue