Skip to content

Commit a600ab8

Browse files
atombrellaauvipy
authored andcommittedMay 30, 2017
Prefer https over http and updated links to new locations. (celery#745)
1 parent bc060c7 commit a600ab8

File tree

11 files changed

+38
-38
lines changed

11 files changed

+38
-38
lines changed
 

‎README.rst

+18-18
Original file line numberDiff line numberDiff line change
@@ -62,20 +62,20 @@ Features
6262
For an introduction to AMQP you should read the article `Rabbits and warrens`_,
6363
and the `Wikipedia article about AMQP`_.
6464

65-
.. _`RabbitMQ`: http://www.rabbitmq.com/
66-
.. _`AMQP`: http://amqp.org
67-
.. _`py-amqp`: http://pypi.python.org/pypi/amqp/
68-
.. _`qpid-python`: http://pypi.python.org/pypi/qpid-python/
69-
.. _`Redis`: http://code.google.com/p/redis/
70-
.. _`Amazon SQS`: http://aws.amazon.com/sqs/
65+
.. _`RabbitMQ`: https://www.rabbitmq.com/
66+
.. _`AMQP`: https://amqp.org
67+
.. _`py-amqp`: https://pypi.python.org/pypi/amqp/
68+
.. _`qpid-python`: https://pypi.python.org/pypi/qpid-python/
69+
.. _`Redis`: https://redis.io
70+
.. _`Amazon SQS`: https://aws.amazon.com/sqs/
7171
.. _`Zookeeper`: https://zookeeper.apache.org/
7272
.. _`Rabbits and warrens`: http://blogs.digitar.com/jjww/2009/01/rabbits-and-warrens/
73-
.. _`amqplib`: http://barryp.org/software/py-amqplib/
74-
.. _`Wikipedia article about AMQP`: http://en.wikipedia.org/wiki/AMQP
75-
.. _`carrot`: http://pypi.python.org/pypi/carrot/
76-
.. _`librabbitmq`: http://pypi.python.org/pypi/librabbitmq
77-
.. _`Pyro`: http://pythonhosting.org/Pyro
78-
.. _`SoftLayer MQ`: http://www.softlayer.com/services/additional/message-queue
73+
.. _`amqplib`: https://barryp.org/software/py-amqplib/
74+
.. _`Wikipedia article about AMQP`: https://en.wikipedia.org/wiki/AMQP
75+
.. _`carrot`: https://pypi.python.org/pypi/carrot/
76+
.. _`librabbitmq`: https://pypi.python.org/pypi/librabbitmq
77+
.. _`Pyro`: https://pythonhosting.org/Pyro4
78+
.. _`SoftLayer MQ`: https://sldn.softlayer.com/reference/messagequeueapi
7979

8080
.. _transport-comparison:
8181

@@ -310,18 +310,18 @@ Mailing list
310310

311311
Join the `carrot-users`_ mailing list.
312312

313-
.. _`carrot-users`: http://groups.google.com/group/carrot-users/
313+
.. _`carrot-users`: https://groups.google.com/group/carrot-users/
314314

315315
Bug tracker
316316
===========
317317

318318
If you have any suggestions, bug reports or annoyances please report them
319-
to our issue tracker at http://github.com/celery/kombu/issues/
319+
to our issue tracker at https://github.com/celery/kombu/issues/
320320

321321
Contributing
322322
============
323323

324-
Development of `Kombu` happens at Github: http://github.com/celery/kombu
324+
Development of `Kombu` happens at Github: https://github.com/celery/kombu
325325

326326
You are highly encouraged to participate in the development. If you don't
327327
like Github (for some reason) you're welcome to send regular patches.
@@ -346,14 +346,14 @@ file in the top distribution directory for the full license text.
346346

347347
.. |wheel| image:: https://img.shields.io/pypi/wheel/kombu.svg
348348
:alt: Kombu can be installed via wheel
349-
:target: http://pypi.python.org/pypi/kombu/
349+
:target: https://pypi.python.org/pypi/kombu/
350350

351351
.. |pyversion| image:: https://img.shields.io/pypi/pyversions/kombu.svg
352352
:alt: Supported Python versions.
353-
:target: http://pypi.python.org/pypi/kombu/
353+
:target: https://pypi.python.org/pypi/kombu/
354354

355355
.. |pyimp| image:: https://img.shields.io/pypi/implementation/kombu.svg
356356
:alt: Support Python implementations.
357-
:target: http://pypi.python.org/pypi/kombu/
357+
:target: https://pypi.python.org/pypi/kombu/
358358
--
359359

‎docs/includes/introduction.txt

+6-6
Original file line numberDiff line numberDiff line change
@@ -56,12 +56,12 @@ Features
5656
For an introduction to AMQP you should read the article `Rabbits and warrens`_,
5757
and the `Wikipedia article about AMQP`_.
5858

59-
.. _`RabbitMQ`: http://www.rabbitmq.com/
60-
.. _`AMQP`: http://amqp.org
61-
.. _`py-amqp`: http://pypi.python.org/pypi/amqp/
62-
.. _`qpid-python`: http://pypi.python.org/pypi/qpid-python/
63-
.. _`Redis`: http://code.google.com/p/redis/
64-
.. _`Amazon SQS`: http://aws.amazon.com/sqs/
59+
.. _`RabbitMQ`: https://www.rabbitmq.com/
60+
.. _`AMQP`: https://amqp.org
61+
.. _`py-amqp`: https://pypi.python.org/pypi/amqp/
62+
.. _`qpid-python`: https://pypi.python.org/pypi/qpid-python/
63+
.. _`Redis`: https://redis.io/
64+
.. _`Amazon SQS`: https://aws.amazon.com/sqs/
6565
.. _`Zookeeper`: https://zookeeper.apache.org/
6666
.. _`Rabbits and warrens`: http://blogs.digitar.com/jjww/2009/01/rabbits-and-warrens/
6767
.. _`amqplib`: http://barryp.org/software/py-amqplib/

‎kombu/clocks.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -90,8 +90,8 @@ class LamportClock(object):
9090
9191
* `Lamports distributed mutex`_
9292
93-
.. _`Lamport Timestamps`: http://en.wikipedia.org/wiki/Lamport_timestamps
94-
.. _`Lamports distributed mutex`: http://bit.ly/p99ybE
93+
.. _`Lamport Timestamps`: https://en.wikipedia.org/wiki/Lamport_timestamps
94+
.. _`Lamports distributed mutex`: https://bit.ly/p99ybE
9595
9696
*Usage*
9797

‎kombu/compat.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
"""Carrot compatibility interface.
22
3-
See http://packages.python.org/pypi/carrot for documentation.
3+
See https://pypi.python.org/pypi/carrot for documentation.
44
"""
55
from __future__ import absolute_import, unicode_literals
66

‎kombu/serialization.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -358,7 +358,7 @@ def register_msgpack():
358358
"""Register msgpack serializer.
359359
360360
See Also:
361-
http://msgpack.sourceforge.net/.
361+
https://msgpack.org/.
362362
"""
363363
pack = unpack = None
364364
try:

‎kombu/transport/SQS.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -9,15 +9,15 @@
99
1010
SQS Features supported by this transport:
1111
Long Polling:
12-
http://docs.aws.amazon.com/AWSSimpleQueueService/latest/SQSDeveloperGuide/
12+
https://docs.aws.amazon.com/AWSSimpleQueueService/latest/SQSDeveloperGuide/
1313
sqs-long-polling.html
1414
1515
Long polling is enabled by setting the `wait_time_seconds` transport
1616
option to a number > 1. Amazon supports up to 20 seconds. This is
1717
enabled with 10 seconds by default.
1818
1919
Batch API Actions:
20-
http://docs.aws.amazon.com/AWSSimpleQueueService/latest/SQSDeveloperGuide/
20+
https://docs.aws.amazon.com/AWSSimpleQueueService/latest/SQSDeveloperGuide/
2121
sqs-batch-api.html
2222
2323
The default behavior of the SQS Channel.drain_events() method is to

‎kombu/transport/librabbitmq.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
"""`librabbitmq`_ transport.
22
3-
.. _`librabbitmq`: http://pypi.python.org/librabbitmq/
3+
.. _`librabbitmq`: https://pypi.python.org/librabbitmq/
44
"""
55
from __future__ import absolute_import, unicode_literals
66

‎kombu/transport/mongodb.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -239,7 +239,7 @@ def queue_delete(self, queue, **kwargs):
239239

240240
def _parse_uri(self, scheme='mongodb://'):
241241
# See mongodb uri documentation:
242-
# http://docs.mongodb.org/manual/reference/connection-string/
242+
# https://docs.mongodb.org/manual/reference/connection-string/
243243
client = self.connection.client
244244
hostname = client.hostname
245245

‎kombu/transport/qpid.py

+3-3
Original file line numberDiff line numberDiff line change
@@ -23,9 +23,9 @@
2323
to underlying dependencies not being compatible. This version is
2424
tested and works with with Python 2.7.
2525
26-
.. _`Qpid`: http://qpid.apache.org/
27-
.. _`qpid-python`: http://pypi.python.org/pypi/qpid-python/
28-
.. _`qpid-tools`: http://pypi.python.org/pypi/qpid-tools/
26+
.. _`Qpid`: https://qpid.apache.org/
27+
.. _`qpid-python`: https://pypi.python.org/pypi/qpid-python/
28+
.. _`qpid-tools`: https://pypi.python.org/pypi/qpid-tools/
2929
3030
Authentication
3131
==============

‎kombu/utils/limits.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -12,10 +12,10 @@ class TokenBucket(object):
1212
"""Token Bucket Algorithm.
1313
1414
See Also:
15-
http://en.wikipedia.org/wiki/Token_Bucket
15+
https://en.wikipedia.org/wiki/Token_Bucket
1616
1717
Most of this code was stolen from an entry in the ASPN Python Cookbook:
18-
http://code.activestate.com/recipes/511490/
18+
https://code.activestate.com/recipes/511490/
1919
2020
Warning:
2121
Thread Safety: This implementation is not thread safe.

‎setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ def fullsplit(path, result=None):
8282
if os.path.exists('README.rst'):
8383
long_description = codecs.open('README.rst', 'r', 'utf-8').read()
8484
else:
85-
long_description = 'See http://pypi.python.org/pypi/kombu'
85+
long_description = 'See https://pypi.python.org/pypi/kombu'
8686

8787
# -*- Installation Requires -*-
8888
py_version = sys.version_info

0 commit comments

Comments
 (0)
Please sign in to comment.