From 880dc307b018f2f741aad3d728caa2c0ee99d8d5 Mon Sep 17 00:00:00 2001 From: Colin Hutchinson Date: Tue, 1 Sep 2015 10:07:03 -0400 Subject: [PATCH 1/2] Remove the sample SHA256 putting a full sha256 made the width of the table in the generated docs not fit on some screens --- network/basics/get_url.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/network/basics/get_url.py b/network/basics/get_url.py index db3c73b2cd7..0212e41a7db 100644 --- a/network/basics/get_url.py +++ b/network/basics/get_url.py @@ -81,7 +81,7 @@ options: - 'If a checksum is passed to this parameter, the digest of the destination file will be calculated after it is downloaded to ensure its integrity and verify that the transfer completed successfully. - Format: :, e.g.: checksum="sha256:d98291acbedd510e3dbd36dbfdd83cbca8415220af43b327c0a0c574b6dc7b97" + Format: :, e.g.: checksum="sha256:shagoeshere" If you worry about portability, only the sha1 algorithm is available on all platforms and python versions. The third party hashlib library can be installed for access to additional algorithms.' From ab509438874ca89f044c78fb53c7f6ebcb6c292c Mon Sep 17 00:00:00 2001 From: Colin Hutchinson Date: Tue, 8 Sep 2015 12:00:21 -0400 Subject: [PATCH 2/2] Update get_url.py use an abbreviated sha --- network/basics/get_url.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/network/basics/get_url.py b/network/basics/get_url.py index 0212e41a7db..0c100dd0187 100644 --- a/network/basics/get_url.py +++ b/network/basics/get_url.py @@ -81,7 +81,7 @@ options: - 'If a checksum is passed to this parameter, the digest of the destination file will be calculated after it is downloaded to ensure its integrity and verify that the transfer completed successfully. - Format: :, e.g.: checksum="sha256:shagoeshere" + Format: :, e.g.: checksum="sha256:D98291AC[...]B6DC7B97" If you worry about portability, only the sha1 algorithm is available on all platforms and python versions. The third party hashlib library can be installed for access to additional algorithms.'