Splash screen middleware for Django apps
Project description
Splash screen middleware for Django apps
Overview
Checks incoming requests, to redirect users to a configured splash screen URL if they don’t have the proper cookie set. This can be used to display a small marketing landing page, protect an alpha website from the public eye, make an announcement, etc.
Meant to be used with https://github.com/openedx/edx-platform/ – or you will need to import the config_models application to your Django application: https://github.com/openedx/django-config-models
Installation
Add the application to the INSTALLED_APPS:
python INSTALLED_APPS = ( ... # Splash screen 'splash', )
Add the middleware to the configuration:
python MIDDLEWARE_CLASSES = ( ... 'splash.middleware.SplashMiddleware', )
Run the migrations:
$ ./manage.py migrate splash
Then go to your Django admin, in http://yourserver/admin/splash/splashconfig/add/ and configure the following variables:
enabled: To activate the feature
cookie_name: The name of the cookie
cookie_allowed_values: The user cookie value must match one of the values to not be redirected to the splash screen URL
unaffected_users: Users which should never be redirected (usernames)
redirect_url: The URL the users should be redirected to when they don’t have the right cookie
License
The code in this repository is licensed under the Apache Software License 2.0 unless otherwise noted.
Please see LICENSE.txt for details.
How To Contribute
Contributions are very welcome.
Please read How To Contribute for details.
Reporting Security Issues
Please do not report security issues in public. Please email security@edx.org.
Getting Help
Have a question about this repository, or about Open edX in general? Please refer to this list of resources if you need any assistance.
Change Log
Unreleased
[1.3.0] - 2023-06-09
Added
Added Support for Django42.
[1.2.0] - 2022-01-26
Removed
Removed Support for Django22, 30, 31
Added
Added Support for Django40
[1.1.0] - 2021-07-09
Added
Support for django3.2
[0.2.2] - 2018-02-09
Added
Automatic upload to PyPI on tags.
[0.2.1] - 2018-02-07
Added
First release on PyPI.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file django-splash-1.3.0.tar.gz
.
File metadata
- Download URL: django-splash-1.3.0.tar.gz
- Upload date:
- Size: 11.5 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.9.17
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 00de6f7115970f3446fe789574afdae4880a19bb5519215b06a71eb7acb1b102 |
|
MD5 | 0e62d3107b3268c09803e64ef3ab977e |
|
BLAKE2b-256 | f5c518b670abf12670bb4189dc202368dbef67ba5c20c5cee87c622f4fc514c5 |
File details
Details for the file django_splash-1.3.0-py2.py3-none-any.whl
.
File metadata
- Download URL: django_splash-1.3.0-py2.py3-none-any.whl
- Upload date:
- Size: 10.3 kB
- Tags: Python 2, Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.9.17
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 8008579f65525ea17c73580ce4288773e3b72148d5ddc573fc06893b53991042 |
|
MD5 | b28572c1906addab61746614b3003ba8 |
|
BLAKE2b-256 | 2be5b5bd6a042d75d0cf7c916ad84c0782bc3c0c08f50dc7a063a611ac9b3287 |