-
Notifications
You must be signed in to change notification settings - Fork 2.7k
http:// → https:// #979
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Open
DimitriPapadopoulos
wants to merge
1
commit into
madler:develop
Choose a base branch
from
DimitriPapadopoulos:http
base: develop
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
http:// → https:// #979
Changes from all commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -3,8 +3,8 @@ ZLIB DATA COMPRESSION LIBRARY | |
| zlib 1.3.1.1 is a general purpose data compression library. All the code is | ||
| thread safe. The data format used by the zlib library is described by RFCs | ||
| (Request for Comments) 1950 to 1952 in the files | ||
| http://tools.ietf.org/html/rfc1950 (zlib format), rfc1951 (deflate format) and | ||
| rfc1952 (gzip format). | ||
| https://datatracker.ietf.org/doc/html/rfc1950 (zlib format), | ||
| rfc1951 (deflate format) and rfc1952 (gzip format). | ||
|
|
||
| All functions of the compression library are documented in the file zlib.h | ||
| (volunteer to write man pages welcome, contact [email protected]). A usage example | ||
|
|
@@ -21,11 +21,11 @@ make_vms.com. | |
|
|
||
| Questions about zlib should be sent to <[email protected]>, or to Gilles Vollant | ||
| <[email protected]> for the Windows DLL version. The zlib home page is | ||
| http://zlib.net/ . Before reporting a problem, please check this site to | ||
| https://zlib.net/ . Before reporting a problem, please check this site to | ||
| verify that you have the latest version of zlib; otherwise get the latest | ||
| version and check whether the problem still exists or not. | ||
|
|
||
| PLEASE read the zlib FAQ http://zlib.net/zlib_faq.html before asking for help. | ||
| PLEASE read the zlib FAQ https://zlib.net/zlib_faq.html before asking for help. | ||
|
|
||
| Mark Nelson <[email protected]> wrote an article about zlib for the Jan. 1997 | ||
| issue of Dr. Dobb's Journal; a copy of the article is available at | ||
|
|
@@ -43,9 +43,9 @@ can be found at https://github.com/pmqs/IO-Compress . | |
|
|
||
| A Python interface to zlib written by A.M. Kuchling <[email protected]> is | ||
| available in Python 1.5 and later versions, see | ||
| http://docs.python.org/library/zlib.html . | ||
| https://docs.python.org/library/zlib.html . | ||
|
|
||
| zlib is built into tcl: http://wiki.tcl.tk/4610 . | ||
| zlib is built into tcl: https://wiki.tcl-lang.org/page/zlib . | ||
|
|
||
| An experimental package to read and write files in .zip format, written on top | ||
| of zlib by Gilles Vollant <[email protected]>, is available in the | ||
|
|
@@ -69,7 +69,7 @@ Notes for some targets: | |
| - zlib doesn't work on HP-UX 9.05 with some versions of /bin/cc. It works with | ||
| other compilers. Use "make test" to check your compiler. | ||
|
|
||
| - For PalmOs, see http://palmzlib.sourceforge.net/ | ||
| - For PalmOs, see https://palmzlib.sourceforge.net/ | ||
|
|
||
|
|
||
| Acknowledgments: | ||
|
|
||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -6,7 +6,7 @@ for help about these, not the zlib authors. Thanks. | |
|
|
||
| ada/ by Dmitriy Anisimkov <[email protected]> | ||
| Support for Ada | ||
| See http://zlib-ada.sourceforge.net/ | ||
| See https://zlib-ada.sourceforge.net/ | ||
|
|
||
| blast/ by Mark Adler <[email protected]> | ||
| Decompressor for output of PKWare Data Compression Library (DCL) | ||
|
|
@@ -37,7 +37,7 @@ iostream3/ by Ludwig Schwardt <[email protected]> | |
| minizip/ by Gilles Vollant <[email protected]> | ||
| Mini zip and unzip based on zlib | ||
| Includes Zip64 support by Mathias Svensson <[email protected]> | ||
| See http://www.winimage.com/zLibDll/minizip.html | ||
| See https://www.winimage.com/zLibDll/minizip.html | ||
|
|
||
| pascal/ by Bob Dellaca <[email protected]> et al. | ||
| Support for Pascal | ||
|
|
||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -59,7 +59,7 @@ the main functionality of ZLib.Ada. | |
| The routines from the package specifications are commented. | ||
|
|
||
|
|
||
| Homepage: http://zlib-ada.sourceforge.net/ | ||
| Homepage: https://zlib-ada.sourceforge.net/ | ||
| Author: Dmitriy Anisimkov <[email protected]> | ||
|
|
||
| Contributors: Pascal Obry <[email protected]>, Steve Sangwine <[email protected]> | ||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.