Skip to content

Commit

Permalink
Merge pull request python-pillow#1580 from hugovk/linkcheck
Browse files Browse the repository at this point in the history
'make linkcheck' fixes
  • Loading branch information
wiredfool committed Dec 14, 2015
2 parents 3d5e395 + 23309e1 commit 286c5e8
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 8 deletions.
6 changes: 3 additions & 3 deletions PIL/JpegPresets.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
Subsampling is the practice of encoding images by implementing less resolution
for chroma information than for luma information.
(ref.: http://en.wikipedia.org/wiki/Chroma_subsampling)
(ref.: https://en.wikipedia.org/wiki/Chroma_subsampling)
Possible subsampling values are 0, 1 and 2 that correspond to 4:4:4, 4:2:2 and
4:1:1 (or 4:2:0?).
Expand All @@ -41,8 +41,8 @@
They are values use by the DCT (Discrete cosine transform) to remove
*unnecessary* information from the image (the lossy part of the compression).
(ref.: http://en.wikipedia.org/wiki/Quantization_matrix#Quantization_matrices,
http://en.wikipedia.org/wiki/JPEG#Quantization)
(ref.: https://en.wikipedia.org/wiki/Quantization_matrix#Quantization_matrices,
https://en.wikipedia.org/wiki/JPEG#Quantization)
You can get the quantization tables of a JPEG with::
Expand Down
2 changes: 2 additions & 0 deletions PIL/WalImageFile.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
# encoding: utf-8
#
# The Python Imaging Library.
# $Id$
#
Expand Down
8 changes: 4 additions & 4 deletions docs/build.rst
Original file line number Diff line number Diff line change
Expand Up @@ -52,12 +52,12 @@ Compilers
Download and install:

* `Microsoft Windows SDK for Windows 7 and .NET Framework 3.5
SP1 <http://www.microsoft.com/en-us/download/details.aspx?id=3138>`_
SP1 <https://www.microsoft.com/en-us/download/details.aspx?id=3138>`_

* `Microsoft Windows SDK for Windows 7 and .NET Framework
4 <http://www.microsoft.com/en-us/download/details.aspx?id=8279>`_
4 <https://www.microsoft.com/en-us/download/details.aspx?id=8279>`_

* `CMake-2.8.10.2-win32-x86.exe <http://www.cmake.org/cmake/resources/software.html>`_
* `CMake-2.8.10.2-win32-x86.exe <https://cmake.org/download/>`_

The samples and the .NET SDK portions aren't required, just the
compilers and other tools. UNDONE -- check exact wording.
Expand All @@ -83,7 +83,7 @@ Once the dependencies are built, run `python build.py --clean` to
build and install Pillow in virtualenvs for each python
build. `build.py --dist` will build Windows installers instead of
installing into virtualenvs.

UNDONE -- suppressed output, what about failures.

Testing Pillow
Expand Down
2 changes: 1 addition & 1 deletion docs/reference/ImagePath.rst
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ vector data. Path objects can be passed to the methods on the
**distance** is measured as `Manhattan distance`_ and defaults to two
pixels.

.. _Manhattan distance: http://en.wikipedia.org/wiki/Manhattan_distance
.. _Manhattan distance: https://en.wikipedia.org/wiki/Manhattan_distance

.. py:method:: PIL.ImagePath.Path.getbbox()
Expand Down

0 comments on commit 286c5e8

Please sign in to comment.