Skip to content

Commit 239dbf5

Browse files
authored
docs: Remove outdated link to djangocms-installer from docs (#7697)
* Remove outdated link to djangocms-installer from docs * More mentions
1 parent f7121be commit 239dbf5

File tree

4 files changed

+16
-9
lines changed

4 files changed

+16
-9
lines changed

docs/how_to/install.rst

Lines changed: 11 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,9 @@
44
How to install django CMS by hand
55
#################################
66

7-
The easiest way to install django CMS is by using the automated `django CMS installer
8-
<https://github.com/nephila/djangocms-installer>`_. This is the recommended way to start with new projects, and it's
7+
The easiest way to install django CMS is by using the automated `django CMS quckstart
8+
<https://github.com/django-cms/django-cms-quickstart>`_ project. This is the
9+
recommended way to start with (docker-based) new projects, and it's
910
what we use in the :ref:`tutorial section of this documentation <tutorials>`.
1011

1112
If you prefer to do things manually, this how-to guide will take you through the process.
@@ -211,7 +212,7 @@ Sekizai
211212
=======
212213

213214
`Django Sekizai <https://github.com/ojii/django-sekizai>`_ is required by the CMS for static files management. You need
214-
to have ``'sekizai'`` listed in ``INSTALLED_APPS``,
215+
to have ``'sekizai'`` listed in ``INSTALLED_APPS``,
215216

216217
.. code-block:: python
217218
@@ -232,12 +233,18 @@ and ``'sekizai.context_processors.sekizai'`` in the ``TEMPLATES['OPTIONS']['cont
232233
'OPTIONS': {
233234
'context_processors': [
234235
...
236+
'django.template.context_processors.i18n',
235237
'sekizai.context_processors.sekizai',
236238
],
237239
},
238240
},
239241
]
240242
243+
.. note::
244+
245+
``django.template.context_processors.i18n`` is needed for the
246+
wizards to work properly.
247+
241248

242249
Middleware
243250
==========
@@ -543,7 +550,7 @@ Next steps
543550
**********
544551

545552
The :ref:`tutorials for developers <tutorials>` will help you understand how to approach django CMS as a developer.
546-
Note that the tutorials assume you have installed the CMS using the django CMS Installer, but with a little
553+
Note that the tutorials assume you have installed the CMS using the django CMS Quistart project, but with a little
547554
adaptation you'll be able to use it as a basis.
548555

549556
To deploy your django CMS project on a production web server, please refer to the :doc:`Django deployment documentation

docs/how_to/languages.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
How to serve multiple languages
55
###############################
66

7-
If you used the `django CMS installer <https://github.com/nephila/djangocms-installer>`_ to start your project, you'll find
7+
If you used `django CMS quickstart <https://github.com/django-cms/django-cms-quickstart>`_ to start your project, you'll find
88
that it's already set up for serving multilingual content. Our :ref:`installation` guide also does the same.
99

1010
This guide specifically describes the steps required to enable multilingual support, in case you need to it manually.

docs/introduction/index.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ in the order presented here.
3838
09-third_party
3939

4040
If you want to install django CMS into an existing project, or prefer to configure django CMS by
41-
hand, rather than using the automated installer, see :doc:`/how_to/install` and then follow the
41+
hand, rather than using the quickstart project, see :doc:`/how_to/install` and then follow the
4242
rest of the tutorials.
4343

4444
Either way, you'll be able to find support and help from the numerous friendly members of the

docs/topics/commonly_used_plugins.rst

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -25,12 +25,12 @@ that has been created.
2525
django CMS Core Addons
2626
**********************
2727

28-
We maintain a set of *Core Addons* for django CMS.
28+
We maintain a set of *Core Addons* for django CMS.
2929

3030
You don't need to use them, and for many of them alternatives exist, but they represent a good way
3131
to get started with a reliable project set-up. We recommend them for new users of django CMS in
3232
particular. For example, if you start a project on `Divio Cloud <https://divio.com/>`_ or using the
33-
`django CMS installer <https://github.com/nephila/djangocms-installer>`_, this is the set of addons
33+
`django CMS quickstart <https://github.com/django-cms/django-cms-quickstart>`_, this is the set of addons
3434
you'll have installed by default.
3535

3636
The django CMS Core Addons are:
@@ -82,7 +82,7 @@ Deprecated addons
8282
Some older plugins that you may have encountered are now deprecated and we advise against
8383
incorporating them into new projects.
8484

85-
These are:
85+
These are:
8686

8787
* `cmsplugin-filer <https://github.com/divio/cmsplugin-filer>`_
8888
* `Aldryn Style <https://github.com/aldryn/aldryn-style>`_

0 commit comments

Comments
 (0)