├── .gitignore ├── .travis.yml ├── CHANGELOG.rst ├── CONTRIBUTORS.rst ├── LICENSE ├── MANIFEST.in ├── README.md ├── demo ├── demo │ ├── __init__.py │ ├── settings.py │ ├── urls.py │ └── wsgi.py ├── manage.py ├── requirements.txt └── templates │ ├── downtime │ └── downtime.html │ └── hello.html ├── docs ├── Makefile └── source │ ├── changelog.rst │ ├── conf.py │ ├── contributors.rst │ ├── index.rst │ ├── installation.rst │ ├── license.rst │ └── usage.rst ├── downtime ├── __init__.py ├── admin.py ├── management │ ├── __init__.py │ └── commands │ │ ├── __init__.py │ │ ├── downtime_end.py │ │ └── downtime_start.py ├── managers.py ├── middleware.py ├── migrations │ ├── 0001_initial.py │ └── __init__.py ├── models.py ├── south_migrations │ ├── 0001_initial.py │ └── __init__.py ├── templates │ └── downtime │ │ └── downtime.html └── tests │ ├── __init__.py │ ├── factories.py │ ├── test_commands.py │ ├── test_middleware.py │ ├── test_models.py │ └── test_smoke.py ├── runtests.py ├── setup.cfg ├── setup.py └── test-requirements.txt /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psu-oit/django-downtime/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psu-oit/django-downtime/HEAD/.travis.yml -------------------------------------------------------------------------------- /CHANGELOG.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psu-oit/django-downtime/HEAD/CHANGELOG.rst -------------------------------------------------------------------------------- /CONTRIBUTORS.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psu-oit/django-downtime/HEAD/CONTRIBUTORS.rst -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psu-oit/django-downtime/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psu-oit/django-downtime/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psu-oit/django-downtime/HEAD/README.md -------------------------------------------------------------------------------- /demo/demo/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /demo/demo/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psu-oit/django-downtime/HEAD/demo/demo/settings.py -------------------------------------------------------------------------------- /demo/demo/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psu-oit/django-downtime/HEAD/demo/demo/urls.py -------------------------------------------------------------------------------- /demo/demo/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psu-oit/django-downtime/HEAD/demo/demo/wsgi.py -------------------------------------------------------------------------------- /demo/manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psu-oit/django-downtime/HEAD/demo/manage.py -------------------------------------------------------------------------------- /demo/requirements.txt: -------------------------------------------------------------------------------- 1 | django>=1.11,<2.0 2 | -------------------------------------------------------------------------------- /demo/templates/downtime/downtime.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psu-oit/django-downtime/HEAD/demo/templates/downtime/downtime.html -------------------------------------------------------------------------------- /demo/templates/hello.html: -------------------------------------------------------------------------------- 1 |

Hello World

2 | -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psu-oit/django-downtime/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/source/changelog.rst: -------------------------------------------------------------------------------- 1 | .. include:: ../../CHANGELOG.rst -------------------------------------------------------------------------------- /docs/source/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psu-oit/django-downtime/HEAD/docs/source/conf.py -------------------------------------------------------------------------------- /docs/source/contributors.rst: -------------------------------------------------------------------------------- 1 | .. include:: ../../CONTRIBUTORS.rst -------------------------------------------------------------------------------- /docs/source/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psu-oit/django-downtime/HEAD/docs/source/index.rst -------------------------------------------------------------------------------- /docs/source/installation.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psu-oit/django-downtime/HEAD/docs/source/installation.rst -------------------------------------------------------------------------------- /docs/source/license.rst: -------------------------------------------------------------------------------- 1 | .. include:: ../../LICENSE 2 | -------------------------------------------------------------------------------- /docs/source/usage.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psu-oit/django-downtime/HEAD/docs/source/usage.rst -------------------------------------------------------------------------------- /downtime/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /downtime/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psu-oit/django-downtime/HEAD/downtime/admin.py -------------------------------------------------------------------------------- /downtime/management/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /downtime/management/commands/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /downtime/management/commands/downtime_end.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psu-oit/django-downtime/HEAD/downtime/management/commands/downtime_end.py -------------------------------------------------------------------------------- /downtime/management/commands/downtime_start.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psu-oit/django-downtime/HEAD/downtime/management/commands/downtime_start.py -------------------------------------------------------------------------------- /downtime/managers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psu-oit/django-downtime/HEAD/downtime/managers.py -------------------------------------------------------------------------------- /downtime/middleware.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psu-oit/django-downtime/HEAD/downtime/middleware.py -------------------------------------------------------------------------------- /downtime/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psu-oit/django-downtime/HEAD/downtime/migrations/0001_initial.py -------------------------------------------------------------------------------- /downtime/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /downtime/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psu-oit/django-downtime/HEAD/downtime/models.py -------------------------------------------------------------------------------- /downtime/south_migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psu-oit/django-downtime/HEAD/downtime/south_migrations/0001_initial.py -------------------------------------------------------------------------------- /downtime/south_migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /downtime/templates/downtime/downtime.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psu-oit/django-downtime/HEAD/downtime/templates/downtime/downtime.html -------------------------------------------------------------------------------- /downtime/tests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psu-oit/django-downtime/HEAD/downtime/tests/__init__.py -------------------------------------------------------------------------------- /downtime/tests/factories.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psu-oit/django-downtime/HEAD/downtime/tests/factories.py -------------------------------------------------------------------------------- /downtime/tests/test_commands.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psu-oit/django-downtime/HEAD/downtime/tests/test_commands.py -------------------------------------------------------------------------------- /downtime/tests/test_middleware.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psu-oit/django-downtime/HEAD/downtime/tests/test_middleware.py -------------------------------------------------------------------------------- /downtime/tests/test_models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psu-oit/django-downtime/HEAD/downtime/tests/test_models.py -------------------------------------------------------------------------------- /downtime/tests/test_smoke.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psu-oit/django-downtime/HEAD/downtime/tests/test_smoke.py -------------------------------------------------------------------------------- /runtests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psu-oit/django-downtime/HEAD/runtests.py -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- 1 | [bdist_wheel] 2 | universal=1 -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/psu-oit/django-downtime/HEAD/setup.py -------------------------------------------------------------------------------- /test-requirements.txt: -------------------------------------------------------------------------------- 1 | south 2 | factory_boy 3 | mock --------------------------------------------------------------------------------