Skip to content

Commit 6e3667a

Browse files
Merge pull request #3352 from daniellerozenblit/http-to-https
Convert references to https from http
2 parents 728e73e + e2fc933 commit 6e3667a

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

56 files changed

+145
-147
lines changed

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ Zstandard's format is stable and documented in [RFC8878](https://datatracker.iet
88
This repository represents the reference implementation, provided as an open-source dual [BSD](LICENSE) and [GPLv2](COPYING) licensed **C** library,
99
and a command line utility producing and decoding `.zst`, `.gz`, `.xz` and `.lz4` files.
1010
Should your project require another programming language,
11-
a list of known ports and bindings is provided on [Zstandard homepage](http://www.zstd.net/#other-languages).
11+
a list of known ports and bindings is provided on [Zstandard homepage](https://facebook.github.io/zstd/#other-languages).
1212

1313
**Development branch status:**
1414

@@ -39,7 +39,7 @@ compiled with [gcc] 9.3.0,
3939
on the [Silesia compression corpus].
4040

4141
[lzbench]: https://github.com/inikep/lzbench
42-
[Silesia compression corpus]: http://sun.aei.polsl.pl/~sdeor/index.php?page=silesia
42+
[Silesia compression corpus]: https://sun.aei.polsl.pl//~sdeor/index.php?page=silesia
4343
[gcc]: https://gcc.gnu.org/
4444

4545
| Compressor name | Ratio | Compression| Decompress.|
@@ -56,8 +56,8 @@ on the [Silesia compression corpus].
5656
| lzf 3.6 -1 | 2.077 | 410 MB/s | 830 MB/s |
5757
| snappy 1.1.9 | 2.073 | 550 MB/s | 1750 MB/s |
5858

59-
[zlib]: http://www.zlib.net/
60-
[lz4]: http://www.lz4.org/
59+
[zlib]: https://www.zlib.net/
60+
[lz4]: https://lz4.github.io/lz4/
6161

6262
The negative compression levels, specified with `--fast=#`,
6363
offer faster compression and decompression speed

build/cmake/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ else()
4949
)
5050
endif()
5151
message(STATUS "ZSTD VERSION: ${zstd_VERSION}")
52-
set(zstd_HOMEPAGE_URL "http://www.zstd.net")
52+
set(zstd_HOMEPAGE_URL "https://facebook.github.io/zstd")
5353
set(zstd_DESCRIPTION "Zstandard is a real-time compression algorithm, providing high compression ratios.")
5454

5555
# Set a default build type if none was specified

build/cmake/tests/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
# SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
2828
#
2929
# You can contact the author at :
30-
# - zstd homepage : http://www.zstd.net/
30+
# - zstd homepage : https://facebook.github.io/zstd/
3131
# ################################################################
3232

3333
project(tests)

build/meson/lib/meson.build

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -160,7 +160,7 @@ pkgconfig.generate(libzstd,
160160
filebase: 'libzstd',
161161
description: 'fast lossless compression algorithm library',
162162
version: zstd_libversion,
163-
url: 'http://www.zstd.net/')
163+
url: 'https://facebook.github.io/zstd/')
164164

165165
install_headers(join_paths(zstd_rootdir, 'lib/zstd.h'),
166166
join_paths(zstd_rootdir, 'lib/zdict.h'),

contrib/linux-kernel/test/include/linux/xxhash.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
* xxHash - Extremely Fast Hash algorithm
33
* Copyright (C) 2012-2016, Yann Collet.
44
*
5-
* BSD 2-Clause License (http://www.opensource.org/licenses/bsd-license.php)
5+
* BSD 2-Clause License (https://opensource.org/licenses/bsd-license.php)
66
*
77
* Redistribution and use in source and binary forms, with or without
88
* modification, are permitted provided that the following conditions are
@@ -260,7 +260,7 @@ XXH_API void xxh64_copy_state(struct xxh64_state *dst, const struct xxh64_state
260260
* xxHash - Extremely Fast Hash algorithm
261261
* Copyright (C) 2012-2016, Yann Collet.
262262
*
263-
* BSD 2-Clause License (http://www.opensource.org/licenses/bsd-license.php)
263+
* BSD 2-Clause License (https://opensource.org/licenses/bsd-license.php)
264264
*
265265
* Redistribution and use in source and binary forms, with or without
266266
* modification, are permitted provided that the following conditions are

contrib/pzstd/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ If this number is not suitable, during compilation you can define `PZSTD_NUM_THR
3131

3232
## Benchmarks
3333

34-
As a reference, PZstandard and Pigz were compared on an Intel Core i7 @ 3.1 GHz, each using 4 threads, with the [Silesia compression corpus](http://sun.aei.polsl.pl/~sdeor/index.php?page=silesia).
34+
As a reference, PZstandard and Pigz were compared on an Intel Core i7 @ 3.1 GHz, each using 4 threads, with the [Silesia compression corpus](https://sun.aei.polsl.pl//~sdeor/index.php?page=silesia).
3535

3636
Compression Speed vs Ratio with 4 Threads | Decompression Speed with 4 Threads
3737
------------------------------------------|-----------------------------------

contrib/pzstd/utils/FileSystem.h

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717

1818
// A small subset of `std::filesystem`.
1919
// `std::filesystem` should be a drop in replacement.
20-
// See http://en.cppreference.com/w/cpp/filesystem for documentation.
20+
// See https://en.cppreference.com/w/cpp/filesystem for documentation.
2121

2222
namespace pzstd {
2323

@@ -28,7 +28,7 @@ typedef struct ::_stat64 file_status;
2828
typedef struct ::stat file_status;
2929
#endif
3030

31-
/// http://en.cppreference.com/w/cpp/filesystem/status
31+
/// https://en.cppreference.com/w/cpp/filesystem/status
3232
inline file_status status(StringPiece path, std::error_code& ec) noexcept {
3333
file_status status;
3434
#if defined(_MSC_VER)
@@ -44,7 +44,7 @@ inline file_status status(StringPiece path, std::error_code& ec) noexcept {
4444
return status;
4545
}
4646

47-
/// http://en.cppreference.com/w/cpp/filesystem/is_regular_file
47+
/// https://en.cppreference.com/w/cpp/filesystem/is_regular_file
4848
inline bool is_regular_file(file_status status) noexcept {
4949
#if defined(S_ISREG)
5050
return S_ISREG(status.st_mode);
@@ -55,12 +55,12 @@ inline bool is_regular_file(file_status status) noexcept {
5555
#endif
5656
}
5757

58-
/// http://en.cppreference.com/w/cpp/filesystem/is_regular_file
58+
/// https://en.cppreference.com/w/cpp/filesystem/is_regular_file
5959
inline bool is_regular_file(StringPiece path, std::error_code& ec) noexcept {
6060
return is_regular_file(status(path, ec));
6161
}
6262

63-
/// http://en.cppreference.com/w/cpp/filesystem/is_directory
63+
/// https://en.cppreference.com/w/cpp/filesystem/is_directory
6464
inline bool is_directory(file_status status) noexcept {
6565
#if defined(S_ISDIR)
6666
return S_ISDIR(status.st_mode);
@@ -71,12 +71,12 @@ inline bool is_directory(file_status status) noexcept {
7171
#endif
7272
}
7373

74-
/// http://en.cppreference.com/w/cpp/filesystem/is_directory
74+
/// https://en.cppreference.com/w/cpp/filesystem/is_directory
7575
inline bool is_directory(StringPiece path, std::error_code& ec) noexcept {
7676
return is_directory(status(path, ec));
7777
}
7878

79-
/// http://en.cppreference.com/w/cpp/filesystem/file_size
79+
/// https://en.cppreference.com/w/cpp/filesystem/file_size
8080
inline std::uintmax_t file_size(
8181
StringPiece path,
8282
std::error_code& ec) noexcept {

contrib/seekable_format/zstdseek_decompress.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@
3838
* note: it's better to use unistd.h's _POSIX_VERSION whenever possible */
3939
# define PLATFORM_POSIX_VERSION 200112L
4040

41-
/* try to determine posix version through official unistd.h's _POSIX_VERSION (http://pubs.opengroup.org/onlinepubs/7908799/xsh/unistd.h.html).
41+
/* try to determine posix version through official unistd.h's _POSIX_VERSION (https://pubs.opengroup.org/onlinepubs/7908799/xsh/unistd.h.html).
4242
* note : there is no simple way to know in advance if <unistd.h> is present or not on target system,
4343
* Posix specification mandates its presence and its content, but target system must respect this spec.
4444
* It's necessary to _not_ #include <unistd.h> whenever target OS is not unix-like

doc/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ This directory contains material defining the Zstandard format,
55
as well as detailed instructions to use `zstd` library.
66

77
__`zstd_manual.html`__ : Documentation of `zstd.h` API, in html format.
8-
Click on this link: [http://zstd.net/zstd_manual.html](http://zstd.net/zstd_manual.html)
8+
Click on this link: [https://facebook.github.io/zstd/zstd_manual.html](https://facebook.github.io/zstd/zstd_manual.html)
99
to display documentation of latest release in readable format within a browser.
1010

1111
__`zstd_compression_format.md`__ : This document defines the Zstandard compression format.

doc/educational_decoder/zstd_decompress.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1890,7 +1890,7 @@ static size_t HUF_decompress_4stream(const HUF_dtable *const dtable,
18901890

18911891
/// Initializes a Huffman table using canonical Huffman codes
18921892
/// For more explanation on canonical Huffman codes see
1893-
/// http://www.cs.uofs.edu/~mccloske/courses/cmps340/huff_canonical_dec2015.html
1893+
/// https://www.cs.scranton.edu/~mccloske/courses/cmps340/huff_canonical_dec2015.html
18941894
/// Codes within a level are allocated in symbol order (i.e. smaller symbols get
18951895
/// earlier codes)
18961896
static void HUF_init_dtable(HUF_dtable *const table, const u8 *const bits,

0 commit comments

Comments
 (0)