Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
steering
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
AURA
steering
Commits
c495fb5e
Commit
c495fb5e
authored
7 years ago
by
Christian Pointner
Browse files
Options
Downloads
Patches
Plain Diff
move musikprogram handling of nop to settings
parent
38eff6e2
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
nop/views.py
+4
-23
4 additions, 23 deletions
nop/views.py
pv/settings.py
+5
-0
5 additions, 0 deletions
pv/settings.py
with
9 additions
and
23 deletions
nop/views.py
+
4
−
23
View file @
c495fb5e
# 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
,
...
...
This diff is collapsed.
Click to expand it.
pv/settings.py
+
5
−
0
View file @
c495fb5e
...
@@ -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
:
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment