├── .gitignore ├── ChangeLog.txt ├── LICENSE.txt ├── MANIFEST.in ├── README.rst ├── djsupervisor ├── __init__.py ├── config.py ├── events.py ├── management │ ├── __init__.py │ └── commands │ │ ├── __init__.py │ │ └── supervisor.py ├── models.py ├── templatetags │ ├── __init__.py │ └── djsupervisor_tags.py └── tests.py ├── setup.cfg └── setup.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfk/django-supervisor/HEAD/.gitignore -------------------------------------------------------------------------------- /ChangeLog.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfk/django-supervisor/HEAD/ChangeLog.txt -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfk/django-supervisor/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfk/django-supervisor/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfk/django-supervisor/HEAD/README.rst -------------------------------------------------------------------------------- /djsupervisor/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfk/django-supervisor/HEAD/djsupervisor/__init__.py -------------------------------------------------------------------------------- /djsupervisor/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfk/django-supervisor/HEAD/djsupervisor/config.py -------------------------------------------------------------------------------- /djsupervisor/events.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfk/django-supervisor/HEAD/djsupervisor/events.py -------------------------------------------------------------------------------- /djsupervisor/management/__init__.py: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /djsupervisor/management/commands/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /djsupervisor/management/commands/supervisor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfk/django-supervisor/HEAD/djsupervisor/management/commands/supervisor.py -------------------------------------------------------------------------------- /djsupervisor/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfk/django-supervisor/HEAD/djsupervisor/models.py -------------------------------------------------------------------------------- /djsupervisor/templatetags/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /djsupervisor/templatetags/djsupervisor_tags.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfk/django-supervisor/HEAD/djsupervisor/templatetags/djsupervisor_tags.py -------------------------------------------------------------------------------- /djsupervisor/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfk/django-supervisor/HEAD/djsupervisor/tests.py -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfk/django-supervisor/HEAD/setup.py --------------------------------------------------------------------------------