- Feb 21, 2019
-
-
Johannes Schilling authored
-
Johannes Schilling authored
-
- Jul 25, 2018
-
-
Lukas Braun authored
AttributeError: 'set' object has no attribute 'append'
-
- Jul 19, 2018
-
-
dario authored
-
- Apr 08, 2018
-
-
Johannes Schilling authored
the rationale being that themes other than the default only override theme building blocks that are specific to them/changed from the default, so in order to have all building blocks available, we need the default theme as the last fallback option available
-
- Jul 17, 2017
-
-
Tom Kunze authored
A inverted comma was added in the term.
-
- Mar 08, 2017
-
-
Hans-Peter Deifel authored
tl;dr: Unchecked checkboxes usually don't send their value as parameter when the form is submitted. The ajax request in our upload code did just that which resulted in the value of checkboxes being wrongly interpreted. The default value of a checkbox is "on", even when it is off. The crux is that with standard HTML forms, this value will only be included in the form data if the checkbox is checked. The python end thus receives "on" for a checked checkbox and the empty string for an unchecked checkbox. It so happens that bool("on") == True and bool("") == False. Our JavaScript code that sends the form data for the upload page wrongly included the checkbox value, even if it was not checked. This resulted in the python end always receiving "on". See: http://stackoverflow.com/questions/33487360/formdata-and-checkboxes fixes #106
-
- Feb 06, 2017
-
- Sep 23, 2016
-
-
Hans-Peter Deifel authored
-
Hans-Peter Deifel authored
The internal_net_only input has to be inside it's own label. Otherwise it results in some weird spacing. references #101
-
Hans-Peter Deifel authored
Otherwise it will be written to the mod-db without this field. references #101
-
Hans-Peter Deifel authored
The `internal_net_only` checkbox needed to be in it's own `<td>`
-
Hans-Peter Deifel authored
This checkbox should initially be in checked state if the pdf is internal. references #101
-
Hans-Peter Deifel authored
-
- Sep 22, 2016
-
-
dario authored
-
dario authored
apparently there is no way to change the timeout until the title=".." tooltip shows references #101
-
dario authored
this avoids storing the connection-local data in the global database; or copying the metadata objects around to avoid the former references #101
-
Hans-Peter Deifel authored
references #101
-
Hans-Peter Deifel authored
The db code has a `required_db_version` field that has to match the db-version on disk. This ensures that no executing code accidentally assumes the wrong db version. references #101
-
- Sep 21, 2016
- Aug 17, 2016
- Aug 15, 2016
- Aug 09, 2016
-
-
dario authored
-
dario authored
-
dario authored
-
Johannes Schilling authored
-
Johannes Schilling authored
this means pdfs are no longer served via SharedDataMiddleware, instead using a regular route where we can check in the handler
-
Johannes Schilling authored
-
Johannes Schilling authored
-
- Jan 28, 2016
-
-
Hans-Peter Deifel authored
-
- Jan 26, 2016
-
-
Christoph authored
-
- Jan 02, 2016
-
-
Hans-Peter Deifel authored
So it will be recognized by gitlab
-
- Jul 23, 2015
-
-
Hans-Peter Deifel authored
- Remove the very host specific configuration from config/__init__.py and replace it by generic default values (no URL specific themes; 'fsi_inf' as default theme) - Add documentation for the two variables 'default_theme' and 'themes_by_url' so that site admins can overwrite them in their local config.
-
Hans-Peter Deifel authored
Specifically, put the lecture name in in the subject and the semester in the body. fixes #291
-