rename diffusions_monitor to diffusions

This commit is contained in:
bkfox 2017-04-06 17:04:49 +02:00
parent c3573867d0
commit 5dba577062
4 changed files with 8 additions and 6 deletions

View File

@ -22,9 +22,11 @@ Each program has a directory in **AIRCOX_PROGRAMS_DIR**; For each, subdir:
## manage.py's commands ## manage.py's commands
* **diffusions_monitor**: update/create, check and clean diffusions; When a diffusion is created its type can be set on "unconfirmed" (this depends on the approval mode). * **diffusions**: update/create, check and clean diffusions based on programs schedules;
* **sound_monitor**: check for existing and missing sounds files in programs directories and synchronize the database. Can also check for the quality of file and synchronize the database according to them. * **import_playlist**: import a playlist from a csv file, and associate it to a sound;
* **sound_quality_check**: check for the quality of the file (don't update database) * **sound_monitor**: check for existing and missing sounds files in programs directories and synchronize the database. It can check for the quality of file and update sound info.
* **sound_quality_check**: check for the quality of the file (don't update database);
* **streamer**: audio stream generation and control it;
## Requirements ## Requirements

View File

@ -32,7 +32,7 @@
{# list view #} {# list view #}
<section class="body summary"> <section class="body summary">
{{ page.summary }} {{ page.summary }}
<a href="?" class="go_back">{% trans "Go back to the publication" %}</a> <a href="?" class="go_back float_right">{% trans "Go back to the publication" %}</a>
</section> </section>
{% with list_paginator=paginator %} {% with list_paginator=paginator %}

View File

@ -3,8 +3,8 @@
# aircox daily tasks: # aircox daily tasks:
# - diffusions monitoring for the current month # - diffusions monitoring for the current month
cd /srv/apps/aircox/ cd /srv/apps/aircox/
scripts/launch_in_venv ./manage.py diffusions_monitor --update --clean --check --mode auto scripts/launch_in_venv ./manage.py diffusions --update --clean --check --mode auto
# - diffusions monitoring for the next month # - diffusions monitoring for the next month
scripts/launch_in_venv ./manage.py diffusions_monitor --update --next-month --mode auto scripts/launch_in_venv ./manage.py diffusions --update --next-month --mode auto
cd - cd -