summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlex Grönholm <alex.gronholm@nextday.fi>2021-08-29 17:34:00 +0300
committerAlex Grönholm <alex.gronholm@nextday.fi>2021-08-29 17:34:00 +0300
commit5eee36af6ba87706ea9b19a2ea640e1de8f5b8d6 (patch)
treecb6b79dd2a18a9642055d0b1ed4e33bd26ac7d04
parente77e9339c675fcc30a9f6ae85dbd0b1a7b13427f (diff)
downloadapscheduler-5eee36af6ba87706ea9b19a2ea640e1de8f5b8d6.tar.gz
Fixed Github links to point to the 3.x branch
-rw-r--r--docs/faq.rst4
-rw-r--r--docs/modules/jobstores/memory.rst2
-rw-r--r--docs/modules/jobstores/mongodb.rst2
-rw-r--r--docs/modules/jobstores/redis.rst2
-rw-r--r--docs/modules/jobstores/rethinkdb.rst2
-rw-r--r--docs/modules/jobstores/sqlalchemy.rst2
-rw-r--r--docs/modules/jobstores/zookeeper.rst2
-rw-r--r--docs/modules/schedulers/asyncio.rst2
-rw-r--r--docs/modules/schedulers/background.rst2
-rw-r--r--docs/modules/schedulers/blocking.rst2
-rw-r--r--docs/modules/schedulers/gevent.rst2
-rw-r--r--docs/modules/schedulers/qt.rst2
-rw-r--r--docs/modules/schedulers/tornado.rst2
-rw-r--r--docs/modules/schedulers/twisted.rst2
-rw-r--r--docs/userguide.rst2
15 files changed, 16 insertions, 16 deletions
diff --git a/docs/faq.rst b/docs/faq.rst
index 7b6a319..7b3b83a 100644
--- a/docs/faq.rst
+++ b/docs/faq.rst
@@ -88,7 +88,7 @@ a RPyC based service that is accessed by a client.
.. _RPyC: https://rpyc.readthedocs.io/en/latest/
.. _gRPC: https://www.google.com/url?sa=t&rct=j&q=&esrc=s&source=web&cd=1&cad=rja&uact=8&ved=2ahUKEwj-wMe-1eLcAhXSbZoKHdzGDZsQFjAAegQICRAB&url=https%3A%2F%2Fgrpc.io%2F&usg=AOvVaw0Jt5Y0OKbHd8MdFt9Kc2FO
-.. _example: https://github.com/agronholm/apscheduler/tree/master/examples/rpc
+.. _example: https://github.com/agronholm/apscheduler/tree/3.x/examples/rpc
How do I use APScheduler in a web application?
==============================================
@@ -124,4 +124,4 @@ incomplete list:
.. _pyramid_scheduler: https://github.com/cadithealth/pyramid_scheduler
.. _aiohttp: https://pypi.org/project/aiohttp/
.. _apschedulerweb: https://github.com/marwinxxii/apschedulerweb
-.. _Nextdoor scheduler: https://github.com/Nextdoor/ndscheduler \ No newline at end of file
+.. _Nextdoor scheduler: https://github.com/Nextdoor/ndscheduler
diff --git a/docs/modules/jobstores/memory.rst b/docs/modules/jobstores/memory.rst
index c91935c..b7f1855 100644
--- a/docs/modules/jobstores/memory.rst
+++ b/docs/modules/jobstores/memory.rst
@@ -23,7 +23,7 @@ unreachable globally and use job non-serializable job arguments.
- none
* - Example
- ``examples/schedulers/blocking.py``
- (`view online <https://github.com/agronholm/apscheduler/tree/master/examples/schedulers/blocking.py>`_).
+ (`view online <https://github.com/agronholm/apscheduler/tree/3.x/examples/schedulers/blocking.py>`_).
.. caution:: Unlike with other job stores, changes made to any mutable job arguments persist across job invocations.
You can use this to your advantage, however.
diff --git a/docs/modules/jobstores/mongodb.rst b/docs/modules/jobstores/mongodb.rst
index ffc1375..01e958e 100644
--- a/docs/modules/jobstores/mongodb.rst
+++ b/docs/modules/jobstores/mongodb.rst
@@ -22,4 +22,4 @@ MongoDBJobStore stores jobs in a `MongoDB <http://www.mongodb.com/>`_ database.
- `pymongo <https://pypi.python.org/pypi/pymongo/>`_
* - Example
- ``examples/jobstores/mongodb.py``
- (`view online <https://github.com/agronholm/apscheduler/tree/master/examples/jobstores/mongodb.py>`_).
+ (`view online <https://github.com/agronholm/apscheduler/tree/3.x/examples/jobstores/mongodb.py>`_).
diff --git a/docs/modules/jobstores/redis.rst b/docs/modules/jobstores/redis.rst
index 8d7f833..c64ca74 100644
--- a/docs/modules/jobstores/redis.rst
+++ b/docs/modules/jobstores/redis.rst
@@ -22,4 +22,4 @@ RedisJobStore stores jobs in a `redis <http://redis.io/>`_ database.
- `redis <https://pypi.python.org/pypi/redis/>`_
* - Example
- ``examples/jobstores/redis_.py``
- (`view online <https://github.com/agronholm/apscheduler/tree/master/examples/jobstores/redis_.py>`_).
+ (`view online <https://github.com/agronholm/apscheduler/tree/3.x/examples/jobstores/redis_.py>`_).
diff --git a/docs/modules/jobstores/rethinkdb.rst b/docs/modules/jobstores/rethinkdb.rst
index e43ebf4..3ec154c 100644
--- a/docs/modules/jobstores/rethinkdb.rst
+++ b/docs/modules/jobstores/rethinkdb.rst
@@ -22,4 +22,4 @@ RethinkDBJobStore stores jobs in a `RethinkDB <https://www.rethinkdb.com/>`_ dat
- `rethinkdb <https://pypi.python.org/pypi/rethinkdb>`_
* - Example
- ``examples/jobstores/rethinkdb_.py``
- (`view online <https://github.com/agronholm/apscheduler/tree/master/examples/jobstores/rethinkdb_.py>`_).
+ (`view online <https://github.com/agronholm/apscheduler/tree/3.x/examples/jobstores/rethinkdb_.py>`_).
diff --git a/docs/modules/jobstores/sqlalchemy.rst b/docs/modules/jobstores/sqlalchemy.rst
index bde80c1..9b3e8f4 100644
--- a/docs/modules/jobstores/sqlalchemy.rst
+++ b/docs/modules/jobstores/sqlalchemy.rst
@@ -25,4 +25,4 @@ connection URL.
- `SQLAlchemy <https://pypi.python.org/pypi/SQLAlchemy/>`_ (+ the backend specific driver package)
* - Example
- ``examples/jobstores/sqlalchemy_.py``
- (`view online <https://github.com/agronholm/apscheduler/tree/master/examples/jobstores/sqlalchemy_.py>`_).
+ (`view online <https://github.com/agronholm/apscheduler/tree/3.x/examples/jobstores/sqlalchemy_.py>`_).
diff --git a/docs/modules/jobstores/zookeeper.rst b/docs/modules/jobstores/zookeeper.rst
index 9dfa389..f3d57ab 100644
--- a/docs/modules/jobstores/zookeeper.rst
+++ b/docs/modules/jobstores/zookeeper.rst
@@ -22,4 +22,4 @@ ZooKeeperJobStore stores jobs in an `Apache ZooKeeper <https://zookeeper.apache.
- `kazoo <https://pypi.python.org/pypi/kazoo>`_
* - Example
- ``examples/jobstores/zookeeper.py``
- (`view online <https://github.com/agronholm/apscheduler/tree/master/examples/jobstores/zookeeper.py>`_).
+ (`view online <https://github.com/agronholm/apscheduler/tree/3.x/examples/jobstores/zookeeper.py>`_).
diff --git a/docs/modules/schedulers/asyncio.rst b/docs/modules/schedulers/asyncio.rst
index db8a07d..ff233d8 100644
--- a/docs/modules/schedulers/asyncio.rst
+++ b/docs/modules/schedulers/asyncio.rst
@@ -29,4 +29,4 @@ If you have an application that runs on an AsyncIO event loop, you will want to
* Python <= 3.2: `trollius <https://pypi.python.org/pypi/trollius/>`_
* - Example
- ``examples/schedulers/asyncio_.py``
- (`view online <https://github.com/agronholm/apscheduler/tree/master/examples/schedulers/asyncio_.py>`_).
+ (`view online <https://github.com/agronholm/apscheduler/tree/3.x/examples/schedulers/asyncio_.py>`_).
diff --git a/docs/modules/schedulers/background.rst b/docs/modules/schedulers/background.rst
index b12cd20..e0f182f 100644
--- a/docs/modules/schedulers/background.rst
+++ b/docs/modules/schedulers/background.rst
@@ -26,4 +26,4 @@ after the call returns.
- none
* - Example
- ``examples/schedulers/background.py``
- (`view online <https://github.com/agronholm/apscheduler/tree/master/examples/schedulers/background.py>`_).
+ (`view online <https://github.com/agronholm/apscheduler/tree/3.x/examples/schedulers/background.py>`_).
diff --git a/docs/modules/schedulers/blocking.rst b/docs/modules/schedulers/blocking.rst
index d923471..bc6e1c7 100644
--- a/docs/modules/schedulers/blocking.rst
+++ b/docs/modules/schedulers/blocking.rst
@@ -27,4 +27,4 @@ BlockingScheduler can be useful if you want to use APScheduler as a standalone s
- none
* - Example
- ``examples/schedulers/blocking.py``
- (`view online <https://github.com/agronholm/apscheduler/tree/master/examples/schedulers/blocking.py>`_).
+ (`view online <https://github.com/agronholm/apscheduler/tree/3.x/examples/schedulers/blocking.py>`_).
diff --git a/docs/modules/schedulers/gevent.rst b/docs/modules/schedulers/gevent.rst
index c71cedb..c413681 100644
--- a/docs/modules/schedulers/gevent.rst
+++ b/docs/modules/schedulers/gevent.rst
@@ -25,4 +25,4 @@ GeventScheduler uses gevent natively, so it doesn't require monkey patching. By
- `gevent <https://pypi.python.org/pypi/gevent/>`_
* - Example
- ``examples/schedulers/gevent_.py``
- (`view online <https://github.com/agronholm/apscheduler/tree/master/examples/schedulers/gevent_.py>`_).
+ (`view online <https://github.com/agronholm/apscheduler/tree/3.x/examples/schedulers/gevent_.py>`_).
diff --git a/docs/modules/schedulers/qt.rst b/docs/modules/schedulers/qt.rst
index ce76948..228b895 100644
--- a/docs/modules/schedulers/qt.rst
+++ b/docs/modules/schedulers/qt.rst
@@ -25,4 +25,4 @@ QtScheduler lets you integrate APScheduler with your `PySide2 <https://wiki.qt.i
- PySide or PyQt
* - Example
- ``examples/schedulers/qt.py``
- (`view online <https://github.com/agronholm/apscheduler/tree/master/examples/schedulers/qt.py>`_).
+ (`view online <https://github.com/agronholm/apscheduler/tree/3.x/examples/schedulers/qt.py>`_).
diff --git a/docs/modules/schedulers/tornado.rst b/docs/modules/schedulers/tornado.rst
index 90c5a54..722617d 100644
--- a/docs/modules/schedulers/tornado.rst
+++ b/docs/modules/schedulers/tornado.rst
@@ -24,4 +24,4 @@ TornadoScheduler was meant to be used in `Tornado <http://www.tornadoweb.org/en/
- `tornado <https://pypi.python.org/pypi/tornado/>`_
* - Example
- ``examples/schedulers/tornado_.py``
- (`view online <https://github.com/agronholm/apscheduler/tree/master/examples/schedulers/tornado_.py>`_)
+ (`view online <https://github.com/agronholm/apscheduler/tree/3.x/examples/schedulers/tornado_.py>`_)
diff --git a/docs/modules/schedulers/twisted.rst b/docs/modules/schedulers/twisted.rst
index 21c0b3c..5edb29f 100644
--- a/docs/modules/schedulers/twisted.rst
+++ b/docs/modules/schedulers/twisted.rst
@@ -25,4 +25,4 @@ By default it uses the reactor's thread pool to execute jobs.
- `twisted <https://pypi.python.org/pypi/Twisted/>`_
* - Example
- ``examples/schedulers/twisted_.py``
- (`view online <https://github.com/agronholm/apscheduler/tree/master/examples/schedulers/twisted_.py>`_).
+ (`view online <https://github.com/agronholm/apscheduler/tree/3.x/examples/schedulers/twisted_.py>`_).
diff --git a/docs/userguide.rst b/docs/userguide.rst
index a1c147d..63eb35e 100644
--- a/docs/userguide.rst
+++ b/docs/userguide.rst
@@ -24,7 +24,7 @@ Code examples
The source distribution contains the :file:`examples` directory where you can find many working
examples for using APScheduler in different ways. The examples can also be
-`browsed online <https://github.com/agronholm/apscheduler/tree/master/examples/?at=master>`_.
+`browsed online <https://github.com/agronholm/apscheduler/tree/3.x/examples/?at=master>`_.
Basic concepts