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
e1ea1fd4
Commit
e1ea1fd4
authored
7 years ago
by
Christian Pointner
Browse files
Options
Downloads
Patches
Plain Diff
added markdown exporter for yearly show logs
improved some export queries
parent
dbefa4de
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
program/management/commands/export_showlog.py
+44
-0
44 additions, 0 deletions
program/management/commands/export_showlog.py
program/views.py
+6
-6
6 additions, 6 deletions
program/views.py
with
50 additions
and
6 deletions
program/management/commands/export_showlog.py
0 → 100644
+
44
−
0
View file @
e1ea1fd4
# -*- coding: utf-8 -*-
import
codecs
import
sys
from
datetime
import
date
,
datetime
,
time
,
timedelta
from
django.core.management.base
import
BaseCommand
,
CommandError
from
program.models
import
TimeSlot
class
Command
(
BaseCommand
):
help
=
'
export playlog for one year
'
args
=
'
<year>
'
def
handle
(
self
,
*
args
,
**
options
):
UTF8Writer
=
codecs
.
getwriter
(
'
utf8
'
)
sys
.
stdout
=
UTF8Writer
(
sys
.
stdout
)
if
len
(
args
)
==
1
:
try
:
year
=
int
(
args
[
0
])
except
ValueError
:
raise
CommandError
(
"'
%s
'
is not a valid year
"
%
args
[
0
])
else
:
raise
CommandError
(
'
you must provide the year
'
)
print
"
# Radio Helsinki Sendungslog %d
"
%
year
start
=
datetime
.
strptime
(
'
%d__01__01__00__00
'
%
(
year
),
'
%Y__%m__%d__%H__%M
'
)
end
=
datetime
.
strptime
(
'
%d__01__01__00__00
'
%
(
year
+
1
),
'
%Y__%m__%d__%H__%M
'
)
currentDate
=
None
for
ts
in
TimeSlot
.
objects
.
filter
(
end__gt
=
start
,
start__lt
=
end
).
select_related
(
'
programslot
'
).
select_related
(
'
show
'
):
if
currentDate
==
None
or
currentDate
<
ts
.
start
.
date
():
if
currentDate
:
print
"
\n
"
currentDate
=
ts
.
start
.
date
()
print
currentDate
.
strftime
(
"
## %a %d.%m.%Y:
\n
"
)
title
=
ts
.
show
.
name
if
ts
.
programslot
.
is_repetition
:
title
+=
"
(WH)
"
print
"
* **%s - %s**: %s
"
%
(
ts
.
start
.
strftime
(
"
%H:%M:%S
"
),
ts
.
end
.
strftime
(
"
%H:%M:%S
"
),
title
)
This diff is collapsed.
Click to expand it.
program/views.py
+
6
−
6
View file @
e1ea1fd4
...
...
@@ -193,14 +193,14 @@ def json_day_schedule(request, year=None, month=None, day=None):
else
:
today
=
datetime
.
strptime
(
'
%s__%s__%s__00__00
'
%
(
year
,
month
,
day
),
'
%Y__%m__%d__%H__%M
'
)
timeslots
=
TimeSlot
.
objects
.
get_24h_timeslots
(
today
).
select_related
(
'
programslot
'
)
timeslots
=
TimeSlot
.
objects
.
get_24h_timeslots
(
today
).
select_related
(
'
programslot
'
)
.
select_related
(
'
show
'
)
schedule
=
[]
for
ts
in
timeslots
:
entry
=
{
'
start
'
:
ts
.
start
.
strftime
(
'
%Y-%m-%d_%H:%M:%S
'
),
'
end
'
:
ts
.
end
.
strftime
(
'
%Y-%m-%d_%H:%M:%S
'
),
'
title
'
:
ts
.
programslot
.
show
.
name
,
'
id
'
:
ts
.
programslot
.
show
.
id
,
'
title
'
:
ts
.
show
.
name
,
'
id
'
:
ts
.
show
.
id
,
'
automation-id
'
:
-
1
}
...
...
@@ -220,10 +220,10 @@ def json_timeslots_specials(request):
if
show
[
'
type
'
]
==
'
s
'
:
specials
[
show
[
'
id
'
]]
=
show
for
ts
in
TimeSlot
.
objects
.
filter
(
end__gt
=
datetime
.
now
).
filter
(
programslot__automation_id__in
=
specials
.
iterkeys
()):
for
ts
in
TimeSlot
.
objects
.
filter
(
end__gt
=
datetime
.
now
,
programslot__automation_id__in
=
specials
.
iterkeys
())
.
select_related
(
'
show
'
)
:
automation_id
=
ts
.
programslot
.
automation_id
specials
[
automation_id
][
'
pv_id
'
]
=
int
(
ts
.
programslot
.
show
.
id
)
specials
[
automation_id
][
'
pv_name
'
]
=
ts
.
programslot
.
show
.
name
specials
[
automation_id
][
'
pv_id
'
]
=
int
(
ts
.
show
.
id
)
specials
[
automation_id
][
'
pv_name
'
]
=
ts
.
show
.
name
specials
[
automation_id
][
'
pv_start
'
]
=
ts
.
start
.
strftime
(
'
%Y-%m-%d_%H:%M:%S
'
)
specials
[
automation_id
][
'
pv_end
'
]
=
ts
.
end
.
strftime
(
'
%Y-%m-%d_%H:%M:%S
'
)
...
...
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