mirror of
https://github.com/cookiecutter/cookiecutter-django.git
synced 2024-11-22 09:36:52 +03:00
replace occurrences of readthedocs.org to readthedocs.io
This commit is contained in:
parent
8c3996439a
commit
2b878fcf36
|
@ -5,6 +5,7 @@ This project adheres to [Semantic Versioning](http://semver.org/).
|
||||||
## [2016-05-09]
|
## [2016-05-09]
|
||||||
### Changed
|
### Changed
|
||||||
- Improved mailhog usage documentation on `developing-locally.rst` (@shireenrao)
|
- Improved mailhog usage documentation on `developing-locally.rst` (@shireenrao)
|
||||||
|
- Replaced all `readthedocs.org` referencies to point to the new domain `readthedocs.io` (@luzfcb)
|
||||||
|
|
||||||
## [2016-05-08]
|
## [2016-05-08]
|
||||||
### Changed
|
### Changed
|
||||||
|
@ -537,7 +538,7 @@ This project adheres to [Semantic Versioning](http://semver.org/).
|
||||||
- Styles that already exist in Bootstrap 4 (or 3) (@audreyr)
|
- Styles that already exist in Bootstrap 4 (or 3) (@audreyr)
|
||||||
|
|
||||||
### Changed
|
### Changed
|
||||||
- Fix issue #296 - change login.html to use [get_providers](https://github.com/pennersr/django-allauth/blob/master/allauth/socialaccount/templatetags/socialaccount.py#L84-L93) templatetag because ``allauth.socialaccount`` context processor now is [deprecated](http://django-allauth.readthedocs.org/en/latest/changelog.html#from-0-21-0) (@luzfcb)
|
- Fix issue #296 - change login.html to use [get_providers](https://github.com/pennersr/django-allauth/blob/master/allauth/socialaccount/templatetags/socialaccount.py#L84-L93) templatetag because ``allauth.socialaccount`` context processor now is [deprecated](http://django-allauth.readthedocs.io/en/latest/changelog.html#from-0-21-0) (@luzfcb)
|
||||||
|
|
||||||
## [2015-09-09]
|
## [2015-09-09]
|
||||||
### Added
|
### Added
|
||||||
|
|
|
@ -49,7 +49,7 @@ To run a particular test with tox for against your current Python version::
|
||||||
$ tox -e py -- -k test_default_configuration
|
$ tox -e py -- -k test_default_configuration
|
||||||
|
|
||||||
.. _`pytest usage docs`: https://pytest.org/latest/usage.html#specifying-tests-selecting-tests
|
.. _`pytest usage docs`: https://pytest.org/latest/usage.html#specifying-tests-selecting-tests
|
||||||
.. _`tox`: https://tox.readthedocs.org/en/latest/
|
.. _`tox`: https://tox.readthedocs.io/en/latest/
|
||||||
.. _`pip`: https://pypi.python.org/pypi/pip/
|
.. _`pip`: https://pypi.python.org/pypi/pip/
|
||||||
.. _`pytest-cookies`: https://pypi.python.org/pypi/pytest-cookies/
|
.. _`pytest-cookies`: https://pypi.python.org/pypi/pytest-cookies/
|
||||||
.. _`flake8`: https://pypi.python.org/pypi/flake8/
|
.. _`flake8`: https://pypi.python.org/pypi/flake8/
|
||||||
|
|
|
@ -58,7 +58,7 @@ Optional Integrations
|
||||||
.. _django-avatar: https://github.com/jezdez/django-avatar/
|
.. _django-avatar: https://github.com/jezdez/django-avatar/
|
||||||
.. _Procfile: https://devcenter.heroku.com/articles/procfile
|
.. _Procfile: https://devcenter.heroku.com/articles/procfile
|
||||||
.. _Mailgun: https://mailgun.com/
|
.. _Mailgun: https://mailgun.com/
|
||||||
.. _Whitenoise: https://whitenoise.readthedocs.org/
|
.. _Whitenoise: https://whitenoise.readthedocs.io/
|
||||||
.. _Celery: http://www.celeryproject.org/
|
.. _Celery: http://www.celeryproject.org/
|
||||||
.. _MailHog: https://github.com/mailhog/MailHog
|
.. _MailHog: https://github.com/mailhog/MailHog
|
||||||
.. _Sentry: https://getsentry.com
|
.. _Sentry: https://getsentry.com
|
||||||
|
@ -153,9 +153,9 @@ For development, see the following for local development:
|
||||||
* `Developing locally`_
|
* `Developing locally`_
|
||||||
* `Developing locally using docker`_
|
* `Developing locally using docker`_
|
||||||
|
|
||||||
.. _options: http://cookiecutter-django.readthedocs.org/en/latest/project-generation-options.html
|
.. _options: http://cookiecutter-django.readthedocs.io/en/latest/project-generation-options.html
|
||||||
.. _`Developing locally`: http://cookiecutter-django.readthedocs.org/en/latest/developing-locally.html
|
.. _`Developing locally`: http://cookiecutter-django.readthedocs.io/en/latest/developing-locally.html
|
||||||
.. _`Developing locally using docker`: http://cookiecutter-django.readthedocs.org/en/latest/developing-locally-docker.html
|
.. _`Developing locally using docker`: http://cookiecutter-django.readthedocs.io/en/latest/developing-locally-docker.html
|
||||||
|
|
||||||
Community
|
Community
|
||||||
-----------
|
-----------
|
||||||
|
|
|
@ -29,7 +29,7 @@ Then, create a PostgreSQL database with the following command, where `[project_s
|
||||||
|
|
||||||
$ export DATABASE_URL="postgres://*<pg_user_name>*:*<pg_user_password>*\ @127.0.0.1:\ *<pg_port>*/*<pg_database_name>*"
|
$ export DATABASE_URL="postgres://*<pg_user_name>*:*<pg_user_password>*\ @127.0.0.1:\ *<pg_port>*/*<pg_database_name>*"
|
||||||
|
|
||||||
.. _django-environ: http://django-environ.readthedocs.org
|
.. _django-environ: http://django-environ.readthedocs.io
|
||||||
|
|
||||||
You can now run the usual Django ``migrate`` and ``runserver`` commands::
|
You can now run the usual Django ``migrate`` and ``runserver`` commands::
|
||||||
|
|
||||||
|
|
|
@ -16,7 +16,7 @@ Settings
|
||||||
|
|
||||||
Moved to settings_.
|
Moved to settings_.
|
||||||
|
|
||||||
.. _settings: http://cookiecutter-django.readthedocs.org/en/latest/settings.html
|
.. _settings: http://cookiecutter-django.readthedocs.io/en/latest/settings.html
|
||||||
|
|
||||||
Basic Commands
|
Basic Commands
|
||||||
--------------
|
--------------
|
||||||
|
@ -53,7 +53,7 @@ Live reloading and Sass CSS compilation
|
||||||
|
|
||||||
Moved to `Live reloading and SASS compilation`_.
|
Moved to `Live reloading and SASS compilation`_.
|
||||||
|
|
||||||
.. _`Live reloading and SASS compilation`: http://cookiecutter-django.readthedocs.org/en/latest/live-reloading-and-sass-compilation.html
|
.. _`Live reloading and SASS compilation`: http://cookiecutter-django.readthedocs.io/en/latest/live-reloading-and-sass-compilation.html
|
||||||
|
|
||||||
{% if cookiecutter.use_celery == "y" %}
|
{% if cookiecutter.use_celery == "y" %}
|
||||||
|
|
||||||
|
@ -121,7 +121,7 @@ Heroku
|
||||||
|
|
||||||
See detailed `cookiecutter-django Heroku documentation`_.
|
See detailed `cookiecutter-django Heroku documentation`_.
|
||||||
|
|
||||||
.. _`cookiecutter-django Heroku documentation`: http://cookiecutter-django.readthedocs.org/en/latest/deployment-on-heroku.html
|
.. _`cookiecutter-django Heroku documentation`: http://cookiecutter-django.readthedocs.io/en/latest/deployment-on-heroku.html
|
||||||
|
|
||||||
{% endif %}
|
{% endif %}
|
||||||
|
|
||||||
|
@ -132,6 +132,6 @@ Docker
|
||||||
|
|
||||||
See detailed `cookiecutter-django Docker documentation`_.
|
See detailed `cookiecutter-django Docker documentation`_.
|
||||||
|
|
||||||
.. _`cookiecutter-django Docker documentation`: http://cookiecutter-django.readthedocs.org/en/latest/deployment-with-docker.html
|
.. _`cookiecutter-django Docker documentation`: http://cookiecutter-django.readthedocs.io/en/latest/deployment-with-docker.html
|
||||||
|
|
||||||
{% endif %}
|
{% endif %}
|
||||||
|
|
|
@ -163,7 +163,7 @@ TEMPLATES = [
|
||||||
},
|
},
|
||||||
]
|
]
|
||||||
|
|
||||||
# See: http://django-crispy-forms.readthedocs.org/en/latest/install.html#template-packs
|
# See: http://django-crispy-forms.readthedocs.io/en/latest/install.html#template-packs
|
||||||
CRISPY_TEMPLATE_PACK = 'bootstrap3'
|
CRISPY_TEMPLATE_PACK = 'bootstrap3'
|
||||||
|
|
||||||
# STATIC FILE CONFIGURATION
|
# STATIC FILE CONFIGURATION
|
||||||
|
|
|
@ -46,7 +46,7 @@ SECURITY_MIDDLEWARE = (
|
||||||
)
|
)
|
||||||
{% if cookiecutter.use_whitenoise == 'y' -%}
|
{% if cookiecutter.use_whitenoise == 'y' -%}
|
||||||
# Use Whitenoise to serve static files
|
# Use Whitenoise to serve static files
|
||||||
# See: https://whitenoise.readthedocs.org/
|
# See: https://whitenoise.readthedocs.io/
|
||||||
WHITENOISE_MIDDLEWARE = (
|
WHITENOISE_MIDDLEWARE = (
|
||||||
'whitenoise.middleware.WhiteNoiseMiddleware',
|
'whitenoise.middleware.WhiteNoiseMiddleware',
|
||||||
)
|
)
|
||||||
|
@ -98,7 +98,7 @@ INSTALLED_APPS += ('gunicorn', )
|
||||||
# ------------------------------------------------------------------------------
|
# ------------------------------------------------------------------------------
|
||||||
# Uploaded Media Files
|
# Uploaded Media Files
|
||||||
# ------------------------
|
# ------------------------
|
||||||
# See: http://django-storages.readthedocs.org/en/latest/index.html
|
# See: http://django-storages.readthedocs.io/en/latest/index.html
|
||||||
INSTALLED_APPS += (
|
INSTALLED_APPS += (
|
||||||
'storages',
|
'storages',
|
||||||
)
|
)
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
"""
|
"""
|
||||||
To understand why this file is here, please read:
|
To understand why this file is here, please read:
|
||||||
|
|
||||||
http://cookiecutter-django.readthedocs.org/en/latest/faq.html#why-is-there-a-django-contrib-sites-directory-in-cookiecutter-django
|
http://cookiecutter-django.readthedocs.io/en/latest/faq.html#why-is-there-a-django-contrib-sites-directory-in-cookiecutter-django
|
||||||
"""
|
"""
|
||||||
# -*- coding: utf-8 -*-
|
# -*- coding: utf-8 -*-
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
"""
|
"""
|
||||||
To understand why this file is here, please read:
|
To understand why this file is here, please read:
|
||||||
|
|
||||||
http://cookiecutter-django.readthedocs.org/en/latest/faq.html#why-is-there-a-django-contrib-sites-directory-in-cookiecutter-django
|
http://cookiecutter-django.readthedocs.io/en/latest/faq.html#why-is-there-a-django-contrib-sites-directory-in-cookiecutter-django
|
||||||
"""
|
"""
|
||||||
# -*- coding: utf-8 -*-
|
# -*- coding: utf-8 -*-
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
"""
|
"""
|
||||||
To understand why this file is here, please read:
|
To understand why this file is here, please read:
|
||||||
|
|
||||||
http://cookiecutter-django.readthedocs.org/en/latest/faq.html#why-is-there-a-django-contrib-sites-directory-in-cookiecutter-django
|
http://cookiecutter-django.readthedocs.io/en/latest/faq.html#why-is-there-a-django-contrib-sites-directory-in-cookiecutter-django
|
||||||
"""
|
"""
|
||||||
# -*- coding: utf-8 -*-
|
# -*- coding: utf-8 -*-
|
||||||
|
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
"""
|
"""
|
||||||
To understand why this file is here, please read:
|
To understand why this file is here, please read:
|
||||||
|
|
||||||
http://cookiecutter-django.readthedocs.org/en/latest/faq.html#why-is-there-a-django-contrib-sites-directory-in-cookiecutter-django
|
http://cookiecutter-django.readthedocs.io/en/latest/faq.html#why-is-there-a-django-contrib-sites-directory-in-cookiecutter-django
|
||||||
"""
|
"""
|
||||||
# -*- coding: utf-8 -*-
|
# -*- coding: utf-8 -*-
|
||||||
|
|
Loading…
Reference in New Issue
Block a user