mirror of
https://codeberg.org/forgejo/forgejo.git
synced 2024-11-13 10:11:04 +00:00
684b7a999f
* Dump: Use mholt/archive/v3 to support tar including many compressions Signed-off-by: Philipp Homann <homann.philipp@googlemail.com> * Dump: Allow dump output to stdout Signed-off-by: Philipp Homann <homann.philipp@googlemail.com> * Dump: Fixed bug present since #6677 where SessionConfig.Provider is never "file" Signed-off-by: Philipp Homann <homann.philipp@googlemail.com> * Dump: never pack RepoRootPath, LFS.ContentPath and LogRootPath when they are below AppDataPath Signed-off-by: Philipp Homann <homann.philipp@googlemail.com> * Dump: also dump LFS (fixes #10058) Signed-off-by: Philipp Homann <homann.philipp@googlemail.com> * Dump: never dump CustomPath if CustomPath is a subdir of or equal to AppDataPath (fixes #10365) Signed-off-by: Philipp Homann <homann.philipp@googlemail.com> * Use log.Info instead of fmt.Fprintf Signed-off-by: Philipp Homann <homann.philipp@googlemail.com> * import ordering * make fmt Co-authored-by: zeripath <art27@cantab.net> Co-authored-by: techknowlogick <techknowlogick@gitea.io> Co-authored-by: Matti R <matti@mdranta.net> |
||
---|---|---|
.. | ||
backward_references.go | ||
backward_references_hq.go | ||
bit_cost.go | ||
bit_reader.go | ||
block_splitter.go | ||
block_splitter_command.go | ||
block_splitter_distance.go | ||
block_splitter_literal.go | ||
brotli_bit_stream.go | ||
cluster.go | ||
cluster_command.go | ||
cluster_distance.go | ||
cluster_literal.go | ||
command.go | ||
compress_fragment.go | ||
compress_fragment_two_pass.go | ||
constants.go | ||
context.go | ||
decode.go | ||
dictionary.go | ||
dictionary_hash.go | ||
encode.go | ||
encoder_dict.go | ||
entropy_encode.go | ||
entropy_encode_static.go | ||
fast_log.go | ||
find_match_length.go | ||
go.mod | ||
go.sum | ||
h5.go | ||
h6.go | ||
h10.go | ||
hash.go | ||
hash_composite.go | ||
hash_forgetful_chain.go | ||
hash_longest_match_quickly.go | ||
hash_rolling.go | ||
histogram.go | ||
huffman.go | ||
LICENSE | ||
literal_cost.go | ||
memory.go | ||
metablock.go | ||
metablock_command.go | ||
metablock_distance.go | ||
metablock_literal.go | ||
params.go | ||
platform.go | ||
prefix.go | ||
prefix_dec.go | ||
quality.go | ||
reader.go | ||
README.md | ||
ringbuffer.go | ||
state.go | ||
static_dict.go | ||
static_dict_lut.go | ||
symbol_list.go | ||
transform.go | ||
utf8_util.go | ||
util.go | ||
write_bits.go | ||
writer.go |
This package is a brotli compressor and decompressor implemented in Go.
It was translated from the reference implementation (https://github.com/google/brotli)
with the c2go
tool at https://github.com/andybalholm/c2go.
I am using it in production with https://github.com/andybalholm/redwood.