Skip to content

Commit bf009aa

Browse files
authored
docs: Update edx.rtd.io links to docs.openedx.org (#1217)
1 parent 6a87af7 commit bf009aa

4 files changed

Lines changed: 5 additions & 5 deletions

File tree

docs/faq.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ FAQ
66
What is Tutor?
77
--------------
88

9-
Tutor is an open source distribution of the `Open edX platform <https://open.edx.org>`_. It uses the original code from the various Open edX repositories, such as `edx-platform <https://github.com/openedx/edx-platform/>`_, `cs_comments_service <https://github.com/openedx/cs_comments_service>`_, etc. and packages everything in a way that makes it very easy to install, administer and upgrade an Open edX installation. In particular, all services are run inside Docker containers.
9+
Tutor is an open source distribution of the `Open edX platform <https://open.edx.org>`_. It uses the original code from the various Open edX repositories, such as `edx-platform <https://github.com/openedx/edx-platform/>`_, `frontend-app-learning <https://github.com/openedx/frontend-app-learning>`_, etc. and packages everything in a way that makes it very easy to install, administer and upgrade an Open edX installation. In particular, all services are run inside Docker containers.
1010

1111
Tutor makes it possible to deploy an Open edX instance locally, with `docker-compose <https://docs.docker.com/compose/overview/>`_ or on an existing `Kubernetes cluster <http://kubernetes.io/>`_. Want to learn more? Take a look at the :ref:`getting started concepts <intro>`.
1212

@@ -25,7 +25,7 @@ The `devstack <https://github.com/openedx/devstack>`_ was a tool meant only for
2525
Is Tutor officially supported by the Open edX project?
2626
------------------------------------------------------
2727

28-
As of the Open edX Maple release (December 9th 2021), Tutor is the only community-supported installation method for the Open edX platform: see the `official installation instructions <https://edx.readthedocs.io/projects/edx-installing-configuring-and-running/en/open-release-quince.master/installation/index.html>`__.
28+
As of the Open edX Maple release (December 9th 2021), Tutor is the only community-supported installation method for the Open edX platform: see the `official installation instructions <https://docs.tutor.edly.io/>`__.
2929

3030
What features are missing from Tutor?
3131
-------------------------------------

docs/local.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@ In addition, all LMS and CMS logs are persisted to disk by default in the follow
9393
$(tutor config printroot)/data/lms/logs/all.log
9494
$(tutor config printroot)/data/cms/logs/all.log
9595

96-
Finally, tracking logs that store `user events <https://edx.readthedocs.io/projects/devdata/en/latest/internal_data_formats/tracking_logs/index.html>`_ are persisted in the following files::
96+
Finally, tracking logs that store `user events <https://docs.openedx.org/en/latest/developers/references/internal_data_formats/tracking_logs/index.html>`_ are persisted in the following files::
9797

9898
$(tutor config printroot)/data/lms/logs/tracking.log
9999
$(tutor config printroot)/data/cms/logs/tracking.log

docs/quickstart.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ Yes :) This is what happens when you run ``tutor local launch``:
2222
2. Configuration files are generated from templates.
2323
3. Docker images are downloaded.
2424
4. Docker containers are provisioned.
25-
5. A full, production-ready Open edX platform (`Redwood <https://edx.readthedocs.io/projects/edx-installing-configuring-and-running/en/open-release-redwood.master/platform_releases/redwood.html>`__ release) is run with docker-compose.
25+
5. A full, production-ready Open edX platform (`Latest Release <https://docs.openedx.org/en/latest/community/release_notes/latest.html>`__) is run with docker-compose.
2626

2727
The whole procedure should require less than 10 minutes, on a server with good bandwidth. Note that your host environment will not be affected in any way, since everything runs inside docker containers. Root access is not even necessary.
2828

docs/tutorials/plugin.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ We'll start by modifying some of our Open edX settings files. It's a frequent re
4949

5050
If you have not already read :ref:`how_does_tutor_work` now would be a good time ☺️ Tutor uses templates to generate various files, such as settings, Dockerfiles, etc. These templates include ``{{ patch("patch-name") }}`` statements that allow plugins to insert arbitrary content in there. These patches are located at strategic locations. See :ref:`patches` for more information.
5151

52-
Let's say that we would like to limit access to our brand new Open edX platform. It is not ready for prime-time yet, so we want to prevent users from registering new accounts. There is a feature flag for that in the LMS: `FEATURES['ALLOW_PUBLIC_ACCOUNT_CREATION'] <https://edx.readthedocs.io/projects/edx-platform-technical/en/latest/featuretoggles.html#featuretoggle-FEATURES['ALLOW_PUBLIC_ACCOUNT_CREATION']>`__. By default this flag is set to a true value, enabling anyone to create an account. In the following we'll set it to false.
52+
Let's say that we would like to limit access to our brand new Open edX platform. It is not ready for prime-time yet, so we want to prevent users from registering new accounts. There is a feature flag for that in the LMS: `FEATURES['ALLOW_PUBLIC_ACCOUNT_CREATION'] <https://docs.openedx.org/projects/edx-platform/en/latest/references/featuretoggles.html#featuretoggle-FEATURES['ALLOW_PUBLIC_ACCOUNT_CREATION']>`__. By default this flag is set to a true value, enabling anyone to create an account. In the following we'll set it to false.
5353

5454
Add the following content to the ``myplugin.py`` file that you created earlier::
5555

0 commit comments

Comments
 (0)