├── .gitignore ├── MANIFEST.in ├── README.rst ├── kitsune ├── __init__.py ├── admin.py ├── base.py ├── html2text.py ├── mail.py ├── management │ ├── __init__.py │ └── commands │ │ ├── __init__.py │ │ ├── kitsune_cron.py │ │ ├── kitsune_cron_clean.py │ │ ├── kitsune_cronserver.py │ │ ├── kitsune_nagios_check.py │ │ ├── kitsune_run_job.py │ │ └── kitsune_test_check.py ├── migrations │ ├── 0001_initial.py │ ├── 0002_auto__add_host.py │ ├── 0003_auto__del_field_job_host_name.py │ ├── 0004_auto__add_field_job_host.py │ ├── 0005_auto__add_field_job_last_result.py │ ├── 0006_auto__add_field_job_renderer.py │ ├── 0007_auto__add_field_job_log_clean_freq_unit__add_field_job_log_clean_freq_.py │ ├── 0008_auto__del_field_job_log_clean_freq_value__del_field_job_log_clean_freq.py │ ├── 0009_auto__add_notificationrule.py │ ├── 0010_auto__chg_field_notificationrule_frequency_value.py │ ├── 0011_auto__add_field_notificationrule_enabled.py │ ├── 0012_auto__del_field_notificationrule_frequency_unit__del_field_notificatio.py │ ├── 0013_auto__del_notificationrule__add_notificationgroup__add_notificationuse.py │ └── __init__.py ├── models.py ├── monitor.py ├── nagios.py ├── renderers.py ├── scripts.py ├── templates │ ├── admin │ │ └── kitsune │ │ │ ├── job │ │ │ ├── change_form.html │ │ │ └── change_list.html │ │ │ └── log │ │ │ └── change_form.html │ └── kitsune │ │ ├── error_message.txt │ │ ├── mail_base.html │ │ ├── mail_notification.html │ │ ├── nagios_status_message.html │ │ └── status_code.html ├── templatetags │ ├── __init__.py │ └── kitsune_tags.py ├── utils.py └── views.py └── setup.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryolabs/django-kitsune/HEAD/.gitignore -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryolabs/django-kitsune/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryolabs/django-kitsune/HEAD/README.rst -------------------------------------------------------------------------------- /kitsune/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryolabs/django-kitsune/HEAD/kitsune/__init__.py -------------------------------------------------------------------------------- /kitsune/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryolabs/django-kitsune/HEAD/kitsune/admin.py -------------------------------------------------------------------------------- /kitsune/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryolabs/django-kitsune/HEAD/kitsune/base.py -------------------------------------------------------------------------------- /kitsune/html2text.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryolabs/django-kitsune/HEAD/kitsune/html2text.py -------------------------------------------------------------------------------- /kitsune/mail.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryolabs/django-kitsune/HEAD/kitsune/mail.py -------------------------------------------------------------------------------- /kitsune/management/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /kitsune/management/commands/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /kitsune/management/commands/kitsune_cron.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryolabs/django-kitsune/HEAD/kitsune/management/commands/kitsune_cron.py -------------------------------------------------------------------------------- /kitsune/management/commands/kitsune_cron_clean.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryolabs/django-kitsune/HEAD/kitsune/management/commands/kitsune_cron_clean.py -------------------------------------------------------------------------------- /kitsune/management/commands/kitsune_cronserver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryolabs/django-kitsune/HEAD/kitsune/management/commands/kitsune_cronserver.py -------------------------------------------------------------------------------- /kitsune/management/commands/kitsune_nagios_check.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryolabs/django-kitsune/HEAD/kitsune/management/commands/kitsune_nagios_check.py -------------------------------------------------------------------------------- /kitsune/management/commands/kitsune_run_job.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryolabs/django-kitsune/HEAD/kitsune/management/commands/kitsune_run_job.py -------------------------------------------------------------------------------- /kitsune/management/commands/kitsune_test_check.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryolabs/django-kitsune/HEAD/kitsune/management/commands/kitsune_test_check.py -------------------------------------------------------------------------------- /kitsune/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryolabs/django-kitsune/HEAD/kitsune/migrations/0001_initial.py -------------------------------------------------------------------------------- /kitsune/migrations/0002_auto__add_host.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryolabs/django-kitsune/HEAD/kitsune/migrations/0002_auto__add_host.py -------------------------------------------------------------------------------- /kitsune/migrations/0003_auto__del_field_job_host_name.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryolabs/django-kitsune/HEAD/kitsune/migrations/0003_auto__del_field_job_host_name.py -------------------------------------------------------------------------------- /kitsune/migrations/0004_auto__add_field_job_host.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryolabs/django-kitsune/HEAD/kitsune/migrations/0004_auto__add_field_job_host.py -------------------------------------------------------------------------------- /kitsune/migrations/0005_auto__add_field_job_last_result.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryolabs/django-kitsune/HEAD/kitsune/migrations/0005_auto__add_field_job_last_result.py -------------------------------------------------------------------------------- /kitsune/migrations/0006_auto__add_field_job_renderer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryolabs/django-kitsune/HEAD/kitsune/migrations/0006_auto__add_field_job_renderer.py -------------------------------------------------------------------------------- /kitsune/migrations/0007_auto__add_field_job_log_clean_freq_unit__add_field_job_log_clean_freq_.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryolabs/django-kitsune/HEAD/kitsune/migrations/0007_auto__add_field_job_log_clean_freq_unit__add_field_job_log_clean_freq_.py -------------------------------------------------------------------------------- /kitsune/migrations/0008_auto__del_field_job_log_clean_freq_value__del_field_job_log_clean_freq.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryolabs/django-kitsune/HEAD/kitsune/migrations/0008_auto__del_field_job_log_clean_freq_value__del_field_job_log_clean_freq.py -------------------------------------------------------------------------------- /kitsune/migrations/0009_auto__add_notificationrule.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryolabs/django-kitsune/HEAD/kitsune/migrations/0009_auto__add_notificationrule.py -------------------------------------------------------------------------------- /kitsune/migrations/0010_auto__chg_field_notificationrule_frequency_value.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryolabs/django-kitsune/HEAD/kitsune/migrations/0010_auto__chg_field_notificationrule_frequency_value.py -------------------------------------------------------------------------------- /kitsune/migrations/0011_auto__add_field_notificationrule_enabled.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryolabs/django-kitsune/HEAD/kitsune/migrations/0011_auto__add_field_notificationrule_enabled.py -------------------------------------------------------------------------------- /kitsune/migrations/0012_auto__del_field_notificationrule_frequency_unit__del_field_notificatio.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryolabs/django-kitsune/HEAD/kitsune/migrations/0012_auto__del_field_notificationrule_frequency_unit__del_field_notificatio.py -------------------------------------------------------------------------------- /kitsune/migrations/0013_auto__del_notificationrule__add_notificationgroup__add_notificationuse.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryolabs/django-kitsune/HEAD/kitsune/migrations/0013_auto__del_notificationrule__add_notificationgroup__add_notificationuse.py -------------------------------------------------------------------------------- /kitsune/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /kitsune/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryolabs/django-kitsune/HEAD/kitsune/models.py -------------------------------------------------------------------------------- /kitsune/monitor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryolabs/django-kitsune/HEAD/kitsune/monitor.py -------------------------------------------------------------------------------- /kitsune/nagios.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryolabs/django-kitsune/HEAD/kitsune/nagios.py -------------------------------------------------------------------------------- /kitsune/renderers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryolabs/django-kitsune/HEAD/kitsune/renderers.py -------------------------------------------------------------------------------- /kitsune/scripts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryolabs/django-kitsune/HEAD/kitsune/scripts.py -------------------------------------------------------------------------------- /kitsune/templates/admin/kitsune/job/change_form.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryolabs/django-kitsune/HEAD/kitsune/templates/admin/kitsune/job/change_form.html -------------------------------------------------------------------------------- /kitsune/templates/admin/kitsune/job/change_list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryolabs/django-kitsune/HEAD/kitsune/templates/admin/kitsune/job/change_list.html -------------------------------------------------------------------------------- /kitsune/templates/admin/kitsune/log/change_form.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryolabs/django-kitsune/HEAD/kitsune/templates/admin/kitsune/log/change_form.html -------------------------------------------------------------------------------- /kitsune/templates/kitsune/error_message.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryolabs/django-kitsune/HEAD/kitsune/templates/kitsune/error_message.txt -------------------------------------------------------------------------------- /kitsune/templates/kitsune/mail_base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryolabs/django-kitsune/HEAD/kitsune/templates/kitsune/mail_base.html -------------------------------------------------------------------------------- /kitsune/templates/kitsune/mail_notification.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryolabs/django-kitsune/HEAD/kitsune/templates/kitsune/mail_notification.html -------------------------------------------------------------------------------- /kitsune/templates/kitsune/nagios_status_message.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryolabs/django-kitsune/HEAD/kitsune/templates/kitsune/nagios_status_message.html -------------------------------------------------------------------------------- /kitsune/templates/kitsune/status_code.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryolabs/django-kitsune/HEAD/kitsune/templates/kitsune/status_code.html -------------------------------------------------------------------------------- /kitsune/templatetags/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /kitsune/templatetags/kitsune_tags.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryolabs/django-kitsune/HEAD/kitsune/templatetags/kitsune_tags.py -------------------------------------------------------------------------------- /kitsune/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryolabs/django-kitsune/HEAD/kitsune/utils.py -------------------------------------------------------------------------------- /kitsune/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryolabs/django-kitsune/HEAD/kitsune/views.py -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tryolabs/django-kitsune/HEAD/setup.py --------------------------------------------------------------------------------