Skip to content
Snippets Groups Projects
Commit c495fb5e authored by Christian Pointner's avatar Christian Pointner
Browse files

move musikprogram handling of nop to settings

parent 38eff6e2
No related branches found
No related tags found
No related merge requests found
# coding=utf-8 # coding=utf-8
from django.conf import settings
from django.core.exceptions import ObjectDoesNotExist, MultipleObjectsReturned from django.core.exceptions import ObjectDoesNotExist, MultipleObjectsReturned
from django.shortcuts import render_to_response from django.shortcuts import render_to_response
from django.http import HttpResponse from django.http import HttpResponse
...@@ -13,26 +14,6 @@ from datetime import datetime ...@@ -13,26 +14,6 @@ from datetime import datetime
DB = 'nop' DB = 'nop'
MUSIKPROG_IDS = (
1, # unmodieriertes musikprogramm
17, # bumbumtschak
203, # Hotel Passage
204, # Radyo Mezopotamya
206, # Abunda Lingva
290, # styrian underground
523, # Songbirds
562, # Singing Birds
563, # canzoni italiane
564, # on connait la chanson
604 # pussy*whipped
)
SPECIAL_PROGRAM_IDS = (
66, # Probebühne
374 # musikprogramm bunt gemischt
)
class NopForm(forms.Form): class NopForm(forms.Form):
date = forms.DateField( date = forms.DateField(
required=True, required=True,
...@@ -88,8 +69,8 @@ def _current(): ...@@ -88,8 +69,8 @@ def _current():
album = None album = None
show = _get_show() show = _get_show()
if show['id'] in MUSIKPROG_IDS \ if show['id'] in settings.MUSIKPROG_IDS \
or (show['id'] in SPECIAL_PROGRAM_IDS and not show['note']): or (show['id'] in settings.SPECIAL_PROGRAM_IDS and not show['note']):
result = _which().objects.using(DB).filter(carttype__exact='pool')[0] result = _which().objects.using(DB).filter(carttype__exact='pool')[0]
artist = result.artist artist = result.artist
title = result.title title = result.title
...@@ -105,7 +86,7 @@ def _current(): ...@@ -105,7 +86,7 @@ def _current():
def _bydate(year=None, month=None, day=None, hour=None, minute=None): def _bydate(year=None, month=None, day=None, hour=None, minute=None):
show = _get_show(datetime(year, month, day, hour, minute)) show = _get_show(datetime(year, month, day, hour, minute))
if show['id'] and show['id'] not in MUSIKPROG_IDS: if show['id'] and show['id'] not in settings.MUSIKPROG_IDS:
return [{'show': show['name'], return [{'show': show['name'],
'start': show['start'], 'start': show['start'],
'artist': None, 'artist': None,
......
...@@ -97,6 +97,11 @@ TINYMCE_DEFAULT_CONFIG = { ...@@ -97,6 +97,11 @@ TINYMCE_DEFAULT_CONFIG = {
CACHE_BACKEND = 'locmem://' CACHE_BACKEND = 'locmem://'
MUSIKPROG_IDS = (
1, # unmodieriertes musikprogramm
)
SPECIAL_PROGRAM_IDS = ()
try: try:
from local_settings import * from local_settings import *
except ImportError: except ImportError:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment