Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
Roman Karwacik
website
Commits
25683ada
Commit
25683ada
authored
Apr 26, 2017
by
Julian Rother
Browse files
Added norecording property to lectures, closes #213
parent
54ae3ace
Changes
5
Hide whitespace changes
Inline
Side-by-side
db_schema.sql
View file @
25683ada
...
...
@@ -98,7 +98,8 @@ CREATE TABLE IF NOT EXISTS `lectures_data` (
`time_updated`
datetime
NOT
NULL
,
`jumplist`
text
NOT
NULL
DEFAULT
''
,
`titlefile`
varchar
(
255
)
NOT
NULL
DEFAULT
''
,
`live`
INTEGER
NOT
NULL
DEFAULT
0
`live`
INTEGER
NOT
NULL
DEFAULT
0
,
`norecording`
INTEGER
NOT
NULL
DEFAULT
0
);
CREATE
TABLE
IF
NOT
EXISTS
`places`
(
`place`
varchar
(
20
)
NOT
NULL
PRIMARY
KEY
,
...
...
edit.py
View file @
25683ada
...
...
@@ -41,7 +41,8 @@ editable_tables = {
'duration'
:
{
'type'
:
'duration'
},
'jumplist'
:
{
'type'
:
''
},
'deleted'
:
{
'type'
:
'boolean'
},
'live'
:
{
'type'
:
'boolean'
}},
'live'
:
{
'type'
:
'boolean'
},
'norecording'
:
{
'type'
:
'boolean'
}},
'creationtime_fields'
:
[
'course_id'
,
'time_created'
,
'time_updated'
]
},
'videos'
:
{
'table'
:
'videos_data'
,
...
...
server.py
View file @
25683ada
...
...
@@ -331,7 +331,7 @@ def index():
SELECT lectures.*, "course" AS sep, courses.*
FROM lectures
JOIN courses ON (lectures.course_id = courses.id)
WHERE (time > ?) AND (time < ?) and lectures.visible and courses.visible and courses.listed
WHERE (time > ?) AND (time < ?) and lectures.visible and courses.visible and courses.listed
and not lectures.norecording
ORDER BY time ASC LIMIT 30'''
,
start
,
end
)
for
i
in
upcomming
:
i
[
'date'
]
=
i
[
'time'
].
date
()
...
...
templates/macros.html
View file @
25683ada
...
...
@@ -165,7 +165,7 @@ $('#embedcodebtn').popover(
{% endmacro %}
{% macro lecture_list_item(lecture,videos,global_permissions) %}
<li
class=
"list-group-item"
id=
"lecture-{{lecture.id}}"
>
<li
class=
"list-group-item
{% if lecture.norecording %} text-muted{% endif %}
"
id=
"lecture-{{lecture.id}}"
>
<div
class=
"row"
>
<div
style=
"background-image: url('{{ config.VIDEOPREFIX }}/thumbnail/l_{{lecture.id}}.jpg')"
class=
"col-sm-2 col-xs-12 thumbnailimg"
>
{% if not videos|length is equalto 0 %}
...
...
@@ -189,6 +189,7 @@ $('#embedcodebtn').popover(
<li>
{{ moderator_editor(['lectures',lecture.id,'internal'], lecture.internal) }}
</li>
<li>
Sichtbar: {{ moderator_checkbox(['lectures',lecture.id,'visible'], lecture.visible) }}
</li>
<li>
Livestream geplant: {{ moderator_checkbox(['lectures',lecture.id,'live'], lecture.live) }}
</li>
<li>
Wird nicht aufgenommen: {{ moderator_checkbox(['lectures',lecture.id,'norecording'], lecture.norecording) }}
</li>
<li>
Hörsaal: {{ moderator_editor(['lectures',lecture.id,'place'], lecture.place) }}
</li>
{% endif %}
</ul>
...
...
timetable.py
View file @
25683ada
...
...
@@ -26,7 +26,7 @@ def timetable():
SELECT lectures.*, courses.short, "course" AS sep, courses.*
FROM lectures
JOIN courses ON (lectures.course_id = courses.id)
WHERE time < ?
and
time > ?
WHERE time < ?
AND
time > ?
AND NOT norecording
ORDER BY time ASC'''
,
i
[
'date'
]
+
timedelta
(
weeks
=
2
),
i
[
'date'
]
-
timedelta
(
weeks
=
2
)):
# we can not use the where clause of sql to match against the time, because sqlite and mysql use a different syntax -.-
# we still use it to only get the lectures for a 3 week periode
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment