Skip to content

Commit

Permalink
Use https for github and wikipedia links
Browse files Browse the repository at this point in the history
  • Loading branch information
tgwizard committed Mar 20, 2016
1 parent aadb66f commit 3ddf6e6
Show file tree
Hide file tree
Showing 35 changed files with 81 additions and 81 deletions.
26 changes: 13 additions & 13 deletions CONTRIBUTING.rst
Original file line number Diff line number Diff line change
Expand Up @@ -230,10 +230,10 @@ been made on your bug. In the event you've turned this feature off, you
should check back on occasion to ensure you don't miss any questions a
developer trying to fix the bug might ask.

.. _`GitHub`: http://github.com
.. _`strace`: http://en.wikipedia.org/wiki/Strace
.. _`ltrace`: http://en.wikipedia.org/wiki/Ltrace
.. _`lsof`: http://en.wikipedia.org/wiki/Lsof
.. _`GitHub`: https://github.com
.. _`strace`: https://en.wikipedia.org/wiki/Strace
.. _`ltrace`: https://en.wikipedia.org/wiki/Ltrace
.. _`lsof`: https://en.wikipedia.org/wiki/Lsof

.. _issue-trackers:

Expand All @@ -243,12 +243,12 @@ Issue Trackers
Bugs for a package in the Celery ecosystem should be reported to the relevant
issue tracker.

* Celery: http://github.com/celery/celery/issues/
* Kombu: http://github.com/celery/kombu/issues
* pyamqp: http://github.com/celery/py-amqp/issues
* vine: http://github.com/celery/vine/issues
* librabbitmq: http://github.com/celery/librabbitmq/issues
* Django-Celery: http://github.com/celery/django-celery/issues
* Celery: https://github.com/celery/celery/issues/
* Kombu: https://github.com/celery/kombu/issues
* pyamqp: https://github.com/celery/py-amqp/issues
* vine: https://github.com/celery/vine/issues
* librabbitmq: https://github.com/celery/librabbitmq/issues
* Django-Celery: https://github.com/celery/django-celery/issues

If you are unsure of the origin of the bug you can ask the
`mailing-list`_, or just use the Celery issue tracker.
Expand Down Expand Up @@ -281,9 +281,9 @@ Branches

Current active version branches:

* master (http://github.com/celery/celery/tree/master)
* 3.1 (http://github.com/celery/celery/tree/3.1)
* 3.0 (http://github.com/celery/celery/tree/3.0)
* master (https://github.com/celery/celery/tree/master)
* 3.1 (https://github.com/celery/celery/tree/3.1)
* 3.0 (https://github.com/celery/celery/tree/3.0)

You can see the state of any branch by looking at the Changelog:

Expand Down
8 changes: 4 additions & 4 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
:Version: 4.0.0rc1 (0today8)
:Web: http://celeryproject.org/
:Download: http://pypi.python.org/pypi/celery/
:Source: http://github.com/celery/celery/
:Source: https://github.com/celery/celery/
:Keywords: task queue, job queue, asynchronous, async, rabbitmq, amqp, redis,
python, webhooks, queue, distributed

Expand Down Expand Up @@ -193,7 +193,7 @@ database connections at ``fork``.
.. _`celery-pylons`: http://pypi.python.org/pypi/celery-pylons
.. _`web2py-celery`: http://code.google.com/p/web2py-celery/
.. _`Tornado`: http://www.tornadoweb.org/
.. _`tornado-celery`: http://github.com/mher/tornado-celery/
.. _`tornado-celery`: https://github.com/mher/tornado-celery/

.. _celery-documentation:

Expand Down Expand Up @@ -387,7 +387,7 @@ Bug tracker
===========

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

.. _wiki:

Expand All @@ -401,7 +401,7 @@ http://wiki.github.com/celery/celery/
Contributing
============

Development of `celery` happens at Github: http://github.com/celery/celery
Development of `celery` happens at Github: https://github.com/celery/celery

You are highly encouraged to participate in the development
of `celery`. If you don't like Github (for some reason) you're welcome
Expand Down
2 changes: 1 addition & 1 deletion TODO
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
Please see our Issue Tracker at GitHub:
http://github.com/celery/celery/issues
https://github.com/celery/celery/issues
4 changes: 2 additions & 2 deletions celery/apps/worker.py
Original file line number Diff line number Diff line change
Expand Up @@ -232,7 +232,7 @@ def install_platform_tweaks(self, worker):
# into the background.
if self.app.IS_OSX:
# OS X can't exec from a process using threads.
# See http://github.com/celery/celery/issues#issue/152
# See https://github.com/celery/celery/issues#issue/152
install_HUP_not_supported_handler(worker)
else:
install_worker_restart_handler(worker)
Expand All @@ -243,7 +243,7 @@ def install_platform_tweaks(self, worker):
install_rdb_handler()

def osx_proxy_detection_workaround(self):
"""See http://github.com/celery/celery/issues#issue/161"""
"""See https://github.com/celery/celery/issues#issue/161"""
os.environ.setdefault('celery_dummy_proxy', 'set_by_celeryd')

def set_process_status(self, info):
Expand Down
2 changes: 1 addition & 1 deletion celery/datastructures.py
Original file line number Diff line number Diff line change
Expand Up @@ -232,7 +232,7 @@ def edges(self):
def _khan62(self):
"""Khans simple topological sort algorithm from '62
See http://en.wikipedia.org/wiki/Topological_sorting
See https://en.wikipedia.org/wiki/Topological_sorting
"""
count = defaultdict(lambda: 0)
Expand Down
2 changes: 1 addition & 1 deletion docs/THANKS
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,5 @@ Thanks to Rune Halvorsen <[email protected]> for the name.
Thanks to Anton Tsigularov <[email protected]> for the previous name (crunchy)
which we had to abandon because of an existing project with that name.
Thanks to Armin Ronacher for the Sphinx theme.
Thanks to Brian K. Jones for bunny.py (http://github.com/bkjones/bunny), the
Thanks to Brian K. Jones for bunny.py (https://github.com/bkjones/bunny), the
tool that inspired 'celery amqp'.
2 changes: 1 addition & 1 deletion docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
'celerydocs']


LINKCODE_URL = 'http://github.com/{proj}/tree/{branch}/{filename}.py'
LINKCODE_URL = 'https://github.com/{proj}/tree/{branch}/{filename}.py'
GITHUB_PROJECT = 'celery/celery'
GITHUB_BRANCH = 'master'

Expand Down
2 changes: 1 addition & 1 deletion docs/configuration.rst
Original file line number Diff line number Diff line change
Expand Up @@ -856,7 +856,7 @@ MongoDB backend settings
.. note::

The MongoDB backend requires the :mod:`pymongo` library:
http://github.com/mongodb/mongo-python-driver/tree/master
https://github.com/mongodb/mongo-python-driver/tree/master

.. setting:: mongodb_backend_settings

Expand Down
26 changes: 13 additions & 13 deletions docs/contributing.rst
Original file line number Diff line number Diff line change
Expand Up @@ -231,10 +231,10 @@ been made on your bug. In the event you've turned this feature off, you
should check back on occasion to ensure you don't miss any questions a
developer trying to fix the bug might ask.

.. _`GitHub`: http://github.com
.. _`strace`: http://en.wikipedia.org/wiki/Strace
.. _`ltrace`: http://en.wikipedia.org/wiki/Ltrace
.. _`lsof`: http://en.wikipedia.org/wiki/Lsof
.. _`GitHub`: https://github.com
.. _`strace`: https://en.wikipedia.org/wiki/Strace
.. _`ltrace`: https://en.wikipedia.org/wiki/Ltrace
.. _`lsof`: https://en.wikipedia.org/wiki/Lsof

.. _issue-trackers:

Expand All @@ -244,12 +244,12 @@ Issue Trackers
Bugs for a package in the Celery ecosystem should be reported to the relevant
issue tracker.

* Celery: http://github.com/celery/celery/issues/
* Kombu: http://github.com/celery/kombu/issues
* pyamqp: http://github.com/celery/py-amqp/issues
* vine: http://github.com/celery/vine/issues
* librabbitmq: http://github.com/celery/librabbitmq/issues
* Django-Celery: http://github.com/celery/django-celery/issues
* Celery: https://github.com/celery/celery/issues/
* Kombu: https://github.com/celery/kombu/issues
* pyamqp: https://github.com/celery/py-amqp/issues
* vine: https://github.com/celery/vine/issues
* librabbitmq: https://github.com/celery/librabbitmq/issues
* Django-Celery: https://github.com/celery/django-celery/issues

If you are unsure of the origin of the bug you can ask the
:ref:`mailing-list`, or just use the Celery issue tracker.
Expand Down Expand Up @@ -282,9 +282,9 @@ Branches

Current active version branches:

* master (http://github.com/celery/celery/tree/master)
* 3.1 (http://github.com/celery/celery/tree/3.1)
* 3.0 (http://github.com/celery/celery/tree/3.0)
* master (https://github.com/celery/celery/tree/master)
* 3.1 (https://github.com/celery/celery/tree/3.1)
* 3.0 (https://github.com/celery/celery/tree/3.0)

You can see the state of any branch by looking at the Changelog:

Expand Down
4 changes: 2 additions & 2 deletions docs/getting-started/brokers/ironmq.rst
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
Installation
============

For IronMQ support, you'll need the [iron_celery](http://github.com/iron-io/iron_celery) library:
For IronMQ support, you'll need the [iron_celery](https://github.com/iron-io/iron_celery) library:

.. code-block:: console
Expand Down Expand Up @@ -67,4 +67,4 @@ This will default to a cache named "Celery", if you want to change that::
More Information
================

You can find more information in the [iron_celery README](http://github.com/iron-io/iron_celery).
You can find more information in the [iron_celery README](https://github.com/iron-io/iron_celery).
2 changes: 1 addition & 1 deletion docs/getting-started/brokers/rabbitmq.rst
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ Finally, we can install rabbitmq using :program:`brew`:
$ brew install rabbitmq
.. _`Homebrew`: http://github.com/mxcl/homebrew/
.. _`Homebrew`: https://github.com/mxcl/homebrew/
.. _`Homebrew documentation`: https://github.com/Homebrew/homebrew/wiki/Installation

.. _rabbitmq-osx-system-hostname:
Expand Down
2 changes: 1 addition & 1 deletion docs/getting-started/introduction.rst
Original file line number Diff line number Diff line change
Expand Up @@ -254,7 +254,7 @@ database connections at :manpage:`fork(2)`.
.. _`celery-pylons`: http://pypi.python.org/pypi/celery-pylons
.. _`web2py-celery`: http://code.google.com/p/web2py-celery/
.. _`Tornado`: http://www.tornadoweb.org/
.. _`tornado-celery`: http://github.com/mher/tornado-celery/
.. _`tornado-celery`: https://github.com/mher/tornado-celery/

Quickjump
=========
Expand Down
2 changes: 1 addition & 1 deletion docs/glossary.rst
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ Glossary
unintended effects, but not necessarily side-effect free in the pure
sense (compare to :term:`nullipotent`).

Further reading: http://en.wikipedia.org/wiki/Idempotent
Further reading: https://en.wikipedia.org/wiki/Idempotent

nullipotent
describes a function that will have the same effect, and give the same
Expand Down
2 changes: 1 addition & 1 deletion docs/history/changelog-1.0.rst
Original file line number Diff line number Diff line change
Expand Up @@ -819,7 +819,7 @@ News
* worker: now sends events if enabled with the `-E` argument.

Excellent for monitoring tools, one is already in the making
(http://github.com/celery/celerymon).
(https://github.com/celery/celerymon).

Current events include: :event:`worker-heartbeat`,
task-[received/succeeded/failed/retried],
Expand Down
4 changes: 2 additions & 2 deletions docs/history/changelog-2.1.rst
Original file line number Diff line number Diff line change
Expand Up @@ -251,7 +251,7 @@ News

* README/introduction/homepage: Added link to `Flask-Celery`_.

.. _`Flask-Celery`: http://github.com/ask/flask-celery
.. _`Flask-Celery`: https://github.com/ask/flask-celery

.. _version-2.1.0:

Expand Down Expand Up @@ -740,7 +740,7 @@ Experimental

* Added generic init.d script using `celeryd-multi`

http://github.com/celery/celery/tree/master/extra/generic-init.d/celeryd
https://github.com/celery/celery/tree/master/extra/generic-init.d/celeryd

.. _v210-documentation:

Expand Down
2 changes: 1 addition & 1 deletion docs/history/changelog-2.2.rst
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ Security Fixes


.. _`CELERYSA-0001`:
http://github.com/celery/celery/tree/master/docs/sec/CELERYSA-0001.txt
https://github.com/celery/celery/tree/master/docs/sec/CELERYSA-0001.txt

.. _version-2.2.7:

Expand Down
2 changes: 1 addition & 1 deletion docs/history/changelog-2.3.rst
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ Security Fixes


.. _`CELERYSA-0001`:
http://github.com/celery/celery/tree/master/docs/sec/CELERYSA-0001.txt
https://github.com/celery/celery/tree/master/docs/sec/CELERYSA-0001.txt

Fixes
-----
Expand Down
2 changes: 1 addition & 1 deletion docs/history/changelog-2.4.rst
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ Security Fixes


.. _`CELERYSA-0001`:
http://github.com/celery/celery/tree/master/docs/sec/CELERYSA-0001.txt
https://github.com/celery/celery/tree/master/docs/sec/CELERYSA-0001.txt

.. _v244-fixes:

Expand Down
2 changes: 1 addition & 1 deletion docs/history/changelog-3.0.rst
Original file line number Diff line number Diff line change
Expand Up @@ -901,7 +901,7 @@ If you're looking for versions prior to 3.0.x you should go to :ref:`history`.
the files from source control and update them manually.
You can find the init scripts for version 3.0.x at:

http://github.com/celery/celery/tree/3.0/extra/generic-init.d
https://github.com/celery/celery/tree/3.0/extra/generic-init.d

- Now depends on billiard 2.7.3.17

Expand Down
2 changes: 1 addition & 1 deletion docs/history/changelog-3.1.rst
Original file line number Diff line number Diff line change
Expand Up @@ -523,7 +523,7 @@ Security Fixes
the umask of the parent process will be used.

.. _`CELERYSA-0002`:
http://github.com/celery/celery/tree/master/docs/sec/CELERYSA-0002.txt
https://github.com/celery/celery/tree/master/docs/sec/CELERYSA-0002.txt

News
----
Expand Down
4 changes: 2 additions & 2 deletions docs/includes/introduction.txt
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
:Version: 4.0.0rc2 (0today8)
:Web: http://celeryproject.org/
:Download: http://pypi.python.org/pypi/celery/
:Source: http://github.com/celery/celery/
:Source: https://github.com/celery/celery/
:Keywords: task queue, job queue, asynchronous, async, rabbitmq, amqp, redis,
python, webhooks, queue, distributed

Expand Down Expand Up @@ -187,7 +187,7 @@ database connections at ``fork``.
.. _`celery-pylons`: http://pypi.python.org/pypi/celery-pylons
.. _`web2py-celery`: http://code.google.com/p/web2py-celery/
.. _`Tornado`: http://www.tornadoweb.org/
.. _`tornado-celery`: http://github.com/mher/tornado-celery/
.. _`tornado-celery`: https://github.com/mher/tornado-celery/

.. _celery-documentation:

Expand Down
4 changes: 2 additions & 2 deletions docs/includes/resources.txt
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ Bug tracker
===========

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

.. _wiki:

Expand All @@ -43,7 +43,7 @@ http://wiki.github.com/celery/celery/
Contributing
============

Development of `celery` happens at Github: http://github.com/celery/celery
Development of `celery` happens at Github: https://github.com/celery/celery

You are highly encouraged to participate in the development
of `celery`. If you don't like Github (for some reason) you're welcome
Expand Down
6 changes: 3 additions & 3 deletions docs/tutorials/daemonizing.rst
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ This directory contains generic bash init scripts for the
these should run on Linux, FreeBSD, OpenBSD, and other Unix-like platforms.

.. _`extra/generic-init.d/`:
http://github.com/celery/celery/tree/3.1/extra/generic-init.d/
https://github.com/celery/celery/tree/3.1/extra/generic-init.d/

.. _generic-initd-celeryd:

Expand Down Expand Up @@ -415,7 +415,7 @@ you should :ref:`report it <reporting-bugs>`).
* `extra/supervisord/`_

.. _`extra/supervisord/`:
http://github.com/celery/celery/tree/3.1/extra/supervisord/
https://github.com/celery/celery/tree/3.1/extra/supervisord/
.. _`supervisord`: http://supervisord.org/

.. _daemon-launchd:
Expand All @@ -426,7 +426,7 @@ launchd (OS X)
* `extra/osx`_

.. _`extra/osx`:
http://github.com/celery/celery/tree/3.1/extra/osx/
https://github.com/celery/celery/tree/3.1/extra/osx/


.. _daemon-windows:
Expand Down
4 changes: 2 additions & 2 deletions docs/userguide/concurrency/eventlet.rst
Original file line number Diff line number Diff line change
Expand Up @@ -58,8 +58,8 @@ some examples taking use of Eventlet support.
.. _`epoll(4)`: http://linux.die.net/man/4/epoll
.. _`libevent`: http://monkey.org/~provos/libevent/
.. _`highly scalable non-blocking I/O`:
http://en.wikipedia.org/wiki/Asynchronous_I/O#Select.28.2Fpoll.29_loops
.. _`Coroutines`: http://en.wikipedia.org/wiki/Coroutine
https://en.wikipedia.org/wiki/Asynchronous_I/O#Select.28.2Fpoll.29_loops
.. _`Coroutines`: https://en.wikipedia.org/wiki/Coroutine
.. _`Eventlet examples`:
https://github.com/celery/celery/tree/master/examples/eventlet

2 changes: 1 addition & 1 deletion docs/userguide/extending.rst
Original file line number Diff line number Diff line change
Expand Up @@ -526,7 +526,7 @@ Attributes
may be used as long as it conforms to the same interface and defines the
two methods above.

.. _`token bucket algorithm`: http://en.wikipedia.org/wiki/Token_bucket
.. _`token bucket algorithm`: https://en.wikipedia.org/wiki/Token_bucket

.. _extending_consumer-qos:

Expand Down
Loading

0 comments on commit 3ddf6e6

Please sign in to comment.