From dab76ced6d664039932b59a1d802c271dff0219b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andr=C3=A9=20Ericson?= Date: Fri, 23 Oct 2015 01:48:01 -0300 Subject: [PATCH] Change to suggest django-storages-redux in docs The original django-storages is a dead project that haven't seen any updates since early 2014, including a lot of unmerged pull requests. Django-storages-redux is a fork well accepted, under active development and python 3 support. We should link to it instead of the old one. More information on the 'Why Fork?' section on the README of https://github.com/jschneier/django-storages --- docs/remote-storages.txt | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/remote-storages.txt b/docs/remote-storages.txt index fe29df8..30d6fb3 100644 --- a/docs/remote-storages.txt +++ b/docs/remote-storages.txt @@ -17,7 +17,7 @@ django-storages ^^^^^^^^^^^^^^^ So assuming your CDN is `Amazon S3`_, you can use the boto_ storage backend -from the 3rd party app `django-storages`_. Some required settings are:: +from the 3rd party app `django-storages-redux`_. Some required settings are:: AWS_ACCESS_KEY_ID = 'XXXXXXXXXXXXXXXXXXXXX' AWS_SECRET_ACCESS_KEY = 'XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX' @@ -51,7 +51,7 @@ apps can be integrated. #. You need to create a subclass of the remote storage backend you want to use; below is an example of the boto S3 storage backend from - django-storages_:: + django-storages-redux_:: from django.core.files.storage import get_storage_class from storages.backends.s3boto import S3BotoStorage @@ -82,7 +82,7 @@ apps can be integrated. .. _CDN: http://en.wikipedia.org/wiki/Content_delivery_network .. _Amazon S3: https://s3.amazonaws.com/ .. _boto: http://boto.cloudhackers.com/ -.. _django-storages: https://django-storages.readthedocs.org +.. _django-storages-redux: http://github.com/jschneier/django-storages .. _staticfiles: http://docs.djangoproject.com/en/dev/howto/static-files/ .. _STATIC_ROOT: http://docs.djangoproject.com/en/dev/ref/settings/#static-root .. _STATIC_URL: http://docs.djangoproject.com/en/dev/ref/settings/#static-url