diff --git a/CONTRIBUTING.rst b/CONTRIBUTING.rst index 0e89ab837b9..8c57a087d5c 100644 --- a/CONTRIBUTING.rst +++ b/CONTRIBUTING.rst @@ -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: @@ -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. @@ -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: diff --git a/README.rst b/README.rst index 0a82f53caa6..0592940306d 100644 --- a/README.rst +++ b/README.rst @@ -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 @@ -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: @@ -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: @@ -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 diff --git a/TODO b/TODO index 0bd13b2992f..34b4b598090 100644 --- a/TODO +++ b/TODO @@ -1,2 +1,2 @@ Please see our Issue Tracker at GitHub: - http://github.com/celery/celery/issues + https://github.com/celery/celery/issues diff --git a/celery/apps/worker.py b/celery/apps/worker.py index 873ac0b8ad6..07e96cb16c0 100644 --- a/celery/apps/worker.py +++ b/celery/apps/worker.py @@ -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) @@ -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): diff --git a/celery/datastructures.py b/celery/datastructures.py index d9ebcf29ba2..bf5a94e3c0a 100644 --- a/celery/datastructures.py +++ b/celery/datastructures.py @@ -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) diff --git a/docs/THANKS b/docs/THANKS index 7150333afc6..bee7f7c0858 100644 --- a/docs/THANKS +++ b/docs/THANKS @@ -2,5 +2,5 @@ Thanks to Rune Halvorsen for the name. Thanks to Anton Tsigularov 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'. diff --git a/docs/conf.py b/docs/conf.py index 05352f36e61..131a9bdb178 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -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' diff --git a/docs/configuration.rst b/docs/configuration.rst index 56a22ba1671..df70e82bcc8 100644 --- a/docs/configuration.rst +++ b/docs/configuration.rst @@ -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 diff --git a/docs/contributing.rst b/docs/contributing.rst index e703a5ac9e7..9d3568067c9 100644 --- a/docs/contributing.rst +++ b/docs/contributing.rst @@ -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: @@ -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. @@ -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: diff --git a/docs/getting-started/brokers/ironmq.rst b/docs/getting-started/brokers/ironmq.rst index 4816bebbabc..aea072e9994 100644 --- a/docs/getting-started/brokers/ironmq.rst +++ b/docs/getting-started/brokers/ironmq.rst @@ -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 @@ -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). diff --git a/docs/getting-started/brokers/rabbitmq.rst b/docs/getting-started/brokers/rabbitmq.rst index cf2902885cd..93707823e47 100644 --- a/docs/getting-started/brokers/rabbitmq.rst +++ b/docs/getting-started/brokers/rabbitmq.rst @@ -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: diff --git a/docs/getting-started/introduction.rst b/docs/getting-started/introduction.rst index ad84724977a..633ace9d0a0 100644 --- a/docs/getting-started/introduction.rst +++ b/docs/getting-started/introduction.rst @@ -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 ========= diff --git a/docs/glossary.rst b/docs/glossary.rst index c66daf2ae2a..6f828449e78 100644 --- a/docs/glossary.rst +++ b/docs/glossary.rst @@ -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 diff --git a/docs/history/changelog-1.0.rst b/docs/history/changelog-1.0.rst index cf0fdf14339..e68fecd70b4 100644 --- a/docs/history/changelog-1.0.rst +++ b/docs/history/changelog-1.0.rst @@ -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], diff --git a/docs/history/changelog-2.1.rst b/docs/history/changelog-2.1.rst index 5d4856c00c8..82ed49b66ea 100644 --- a/docs/history/changelog-2.1.rst +++ b/docs/history/changelog-2.1.rst @@ -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: @@ -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: diff --git a/docs/history/changelog-2.2.rst b/docs/history/changelog-2.2.rst index a93613bf727..1c719bbd5c5 100644 --- a/docs/history/changelog-2.2.rst +++ b/docs/history/changelog-2.2.rst @@ -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: diff --git a/docs/history/changelog-2.3.rst b/docs/history/changelog-2.3.rst index d38dd51c97a..cb9cf6aed2a 100644 --- a/docs/history/changelog-2.3.rst +++ b/docs/history/changelog-2.3.rst @@ -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 ----- diff --git a/docs/history/changelog-2.4.rst b/docs/history/changelog-2.4.rst index 1cfbd7f4e38..e637b437815 100644 --- a/docs/history/changelog-2.4.rst +++ b/docs/history/changelog-2.4.rst @@ -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: diff --git a/docs/history/changelog-3.0.rst b/docs/history/changelog-3.0.rst index 0dee20c7876..4d9ff158bfb 100644 --- a/docs/history/changelog-3.0.rst +++ b/docs/history/changelog-3.0.rst @@ -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 diff --git a/docs/history/changelog-3.1.rst b/docs/history/changelog-3.1.rst index d9263f2b342..425f2bb756a 100644 --- a/docs/history/changelog-3.1.rst +++ b/docs/history/changelog-3.1.rst @@ -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 ---- diff --git a/docs/includes/introduction.txt b/docs/includes/introduction.txt index 7eee191b517..c7c5c1db5b3 100644 --- a/docs/includes/introduction.txt +++ b/docs/includes/introduction.txt @@ -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 @@ -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: diff --git a/docs/includes/resources.txt b/docs/includes/resources.txt index e263e2ef0e6..ed4a4b5ec72 100644 --- a/docs/includes/resources.txt +++ b/docs/includes/resources.txt @@ -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: @@ -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 diff --git a/docs/tutorials/daemonizing.rst b/docs/tutorials/daemonizing.rst index 9895338e0bc..d63721b6612 100644 --- a/docs/tutorials/daemonizing.rst +++ b/docs/tutorials/daemonizing.rst @@ -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: @@ -415,7 +415,7 @@ you should :ref:`report it `). * `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: @@ -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: diff --git a/docs/userguide/concurrency/eventlet.rst b/docs/userguide/concurrency/eventlet.rst index 01f98bfb368..058852cfdb0 100644 --- a/docs/userguide/concurrency/eventlet.rst +++ b/docs/userguide/concurrency/eventlet.rst @@ -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 diff --git a/docs/userguide/extending.rst b/docs/userguide/extending.rst index 0713a93c158..1e7ad39af4e 100644 --- a/docs/userguide/extending.rst +++ b/docs/userguide/extending.rst @@ -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: diff --git a/docs/userguide/monitoring.rst b/docs/userguide/monitoring.rst index 0009f194698..628f10c6c86 100644 --- a/docs/userguide/monitoring.rst +++ b/docs/userguide/monitoring.rst @@ -324,7 +324,7 @@ For a complete list of options use ``--help``: $ celery events --help -.. _`celerymon`: http://github.com/celery/celerymon/ +.. _`celerymon`: https://github.com/celery/celerymon/ .. _monitoring-rabbitmq: @@ -435,7 +435,7 @@ maintaining a Celery cluster. * rabbitmq-munin: Munin plug-ins for RabbitMQ. - http://github.com/ask/rabbitmq-munin + https://github.com/ask/rabbitmq-munin * celery_tasks: Monitors the number of times each task type has been executed (requires `celerymon`). diff --git a/docs/userguide/remote-tasks.rst b/docs/userguide/remote-tasks.rst index d36867e43b8..7389adc59d4 100644 --- a/docs/userguide/remote-tasks.rst +++ b/docs/userguide/remote-tasks.rst @@ -134,4 +134,4 @@ Since calling tasks can be done via HTTP using the :func:`djcelery.views.apply` view, calling tasks from other languages is easy. For an example service exposing tasks via HTTP you should have a look at `examples/celery_http_gateway` in the Celery distribution: -http://github.com/celery/celery/tree/master/examples/celery_http_gateway/ +https://github.com/celery/celery/tree/master/examples/celery_http_gateway/ diff --git a/docs/userguide/routing.rst b/docs/userguide/routing.rst index 5c485b5eaf4..99b986bedca 100644 --- a/docs/userguide/routing.rst +++ b/docs/userguide/routing.rst @@ -301,7 +301,7 @@ as plug-ins to RabbitMQ, like the `last-value-cache plug-in`_ by Michael Bridgen. .. _`last-value-cache plug-in`: - http://github.com/squaremo/rabbitmq-lvc-plugin + https://github.com/squaremo/rabbitmq-lvc-plugin .. _amqp-exchange-type-direct: diff --git a/docs/userguide/security.rst b/docs/userguide/security.rst index f1ebe3e181c..ca9cbc9e469 100644 --- a/docs/userguide/security.rst +++ b/docs/userguide/security.rst @@ -17,7 +17,7 @@ Depending on your `Security Policy`_, there are various steps you can take to make your Celery installation more secure. -.. _`Security Policy`: http://en.wikipedia.org/wiki/Security_policy +.. _`Security Policy`: https://en.wikipedia.org/wiki/Security_policy Areas of Concern @@ -85,10 +85,10 @@ same network access as the machine on which it's running. If the worker is located on an internal network it's recommended to add firewall rules for outbound traffic. -.. _`chroot`: http://en.wikipedia.org/wiki/Chroot -.. _`jail`: http://en.wikipedia.org/wiki/FreeBSD_jail +.. _`chroot`: https://en.wikipedia.org/wiki/Chroot +.. _`jail`: https://en.wikipedia.org/wiki/FreeBSD_jail .. _`sandboxing`: - http://en.wikipedia.org/wiki/Sandbox_(computer_security) + https://en.wikipedia.org/wiki/Sandbox_(computer_security) Serializers =========== @@ -136,7 +136,7 @@ for more information. .. _`pickle`: http://docs.python.org/library/pickle.html .. _`Public-key cryptography`: - http://en.wikipedia.org/wiki/Public-key_cryptography + https://en.wikipedia.org/wiki/Public-key_cryptography .. _message-signing: @@ -185,9 +185,9 @@ with the private key and certificate files located in `/etc/ssl`. a message, so if needed this will have to be enabled separately. .. _`pyOpenSSL`: http://pypi.python.org/pypi/pyOpenSSL -.. _`X.509`: http://en.wikipedia.org/wiki/X.509 +.. _`X.509`: https://en.wikipedia.org/wiki/X.509 .. _`Certificate Authority`: - http://en.wikipedia.org/wiki/Certificate_authority + https://en.wikipedia.org/wiki/Certificate_authority Intrusion Detection =================== @@ -213,7 +213,7 @@ support for using syslog. A tip for the paranoid is to send logs using UDP and cut the transmit part of the logging server's network cable :-) -.. _`syslog-ng`: http://en.wikipedia.org/wiki/Syslog-ng +.. _`syslog-ng`: https://en.wikipedia.org/wiki/Syslog-ng .. _`rsyslog`: http://www.rsyslog.com/ Tripwire @@ -242,4 +242,4 @@ that can be used. .. _`Samhain`: http://la-samhna.de/samhain/index.html .. _`AIDE`: http://aide.sourceforge.net/ .. _`Open Source Tripwire`: http://sourceforge.net/projects/tripwire/ -.. _`ZFS`: http://en.wikipedia.org/wiki/ZFS +.. _`ZFS`: https://en.wikipedia.org/wiki/ZFS diff --git a/docs/whatsnew-3.0.rst b/docs/whatsnew-3.0.rst index 165bb54aba4..b9bf94fb202 100644 --- a/docs/whatsnew-3.0.rst +++ b/docs/whatsnew-3.0.rst @@ -74,7 +74,7 @@ Highlights .. _`website`: http://celeryproject.org/ .. _`django-celery changelog`: - http://github.com/celery/django-celery/tree/master/Changelog + https://github.com/celery/django-celery/tree/master/Changelog .. _`django-celery 3.0`: http://pypi.python.org/pypi/django-celery/ .. contents:: @@ -156,8 +156,8 @@ for the no-execv patch to work. - Issue #625 - Issue #627 - Issue #640 -- `django-celery #122