diff --git a/aircox/README.md b/aircox/README.md index ebfc9dd..657dcdd 100755 --- a/aircox/README.md +++ b/aircox/README.md @@ -22,9 +22,11 @@ Each program has a directory in **AIRCOX_PROGRAMS_DIR**; For each, subdir: ## 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). -* **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. -* **sound_quality_check**: check for the quality of the file (don't update database) +* **diffusions**: update/create, check and clean diffusions based on programs schedules; +* **import_playlist**: import a playlist from a csv file, and associate it to a sound; +* **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 diff --git a/aircox/management/commands/diffusions_monitor.py b/aircox/management/commands/diffusions.py similarity index 100% rename from aircox/management/commands/diffusions_monitor.py rename to aircox/management/commands/diffusions.py diff --git a/aircox_cms/templates/aircox_cms/publication.html b/aircox_cms/templates/aircox_cms/publication.html index cbfae93..85d6e87 100755 --- a/aircox_cms/templates/aircox_cms/publication.html +++ b/aircox_cms/templates/aircox_cms/publication.html @@ -32,7 +32,7 @@ {# list view #}
{{ page.summary }} - {% trans "Go back to the publication" %} + {% trans "Go back to the publication" %}
{% with list_paginator=paginator %} diff --git a/scripts/cron_diffusions b/scripts/cron_diffusions index 1cb1320..49765cd 100755 --- a/scripts/cron_diffusions +++ b/scripts/cron_diffusions @@ -3,8 +3,8 @@ # aircox daily tasks: # - diffusions monitoring for the current month 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 -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 -