-
Notifications
You must be signed in to change notification settings - Fork 0
Commits on Aug 13, 2020
-
Update python requirements with (cd requirements; rm *.txt; make) This updates Django from version 2.2.9 to version 3.1. This updates Wagtail from version 2.7.1 to version 2.10. The virtual environment can be update to the specified versions with pip-sync requirements/dev.txt
Configuration menu - View commit details
-
Copy full SHA for 84bbfa3 - Browse repository at this point
Copy the full SHA 84bbfa3View commit details -
Update patches after library update
Update our library patches to the package versions installed by the previous commit. The patches should be applied from the virtual environment directory with for f in ../patches/*; do patch -p1 < $f; done
Configuration menu - View commit details
-
Copy full SHA for 73869b2 - Browse repository at this point
Copy the full SHA 73869b2View commit details -
Update permission_required to current Wagtail API
Wagtails permission_required has been moved from wagtail.admin.utils to wagtail.admin.auth [1]. Use new package name. [1] https://docs.wagtail.io/en/stable/releases/2.7.html.
Configuration menu - View commit details
-
Copy full SHA for ace029b - Browse repository at this point
Copy the full SHA ace029bView commit details -
Update to current wagtail.api.v2 API
Some names in wagtail.api.v2 have changed ([1] vs [2]) Update our source accordingly. [1] https://docs.wagtail.io/en/v2.0/advanced_topics/api/v2/configuration.html [2] https://docs.wagtail.io/en/v2.10/advanced_topics/api/v2/configuration.html
Configuration menu - View commit details
-
Copy full SHA for 566509b - Browse repository at this point
Copy the full SHA 566509bView commit details -
Add migrations after library update
Create migrations with ./manage.py makemigrations
Configuration menu - View commit details
-
Copy full SHA for 895413f - Browse repository at this point
Copy the full SHA 895413fView commit details -
Remove obsolete Wagtail SiteMiddleware
The SiteMiddlware is obsoleted [1]. Use wagtail_site tag instead. [1] https://docs.wagtail.io/en/stable/releases/2.9.html
Configuration menu - View commit details
-
Copy full SHA for 13bbfea - Browse repository at this point
Copy the full SHA 13bbfeaView commit details -
Contact: Increase width of Contact.room
Increase the width of the room field in the Contact model. This was requested by user.
Configuration menu - View commit details
-
Copy full SHA for 3273456 - Browse repository at this point
Copy the full SHA 3273456View commit details -
Add migration after schema change
Create migration with ./manage.py makemigrations
Configuration menu - View commit details
-
Copy full SHA for 50926ea - Browse repository at this point
Copy the full SHA 50926eaView commit details -
Add template filter add_room_links
Add a filter which greps room patterns in a string and converts them to a link to our twiki room map.
Configuration menu - View commit details
-
Copy full SHA for b92c8b5 - Browse repository at this point
Copy the full SHA b92c8b5View commit details -
Use filter add_room_links in templates
Replace usage of the room_links tag with the new add_room_links filter.
Configuration menu - View commit details
-
Copy full SHA for 75469a6 - Browse repository at this point
Copy the full SHA 75469a6View commit details -
Remove the now unused tag room_link and the function get_room_link which is only used by this tag.
Configuration menu - View commit details
-
Copy full SHA for d0e154b - Browse repository at this point
Copy the full SHA d0e154bView commit details -
Create usable links for seminar rooms
For "events", room specifications like "SR 1" are often used. However, this is not a valid room numer as expected by the twiki map. Translate "SR [1234]" to correct room numbers for the link target.
Configuration menu - View commit details
-
Copy full SHA for 2915e07 - Browse repository at this point
Copy the full SHA 2915e07View commit details -
settings/local: Remove SMTP server localhost:1025
Remove invalid setting for the SMTP server. Note: These lines have already been commented out on our production server.
Configuration menu - View commit details
-
Copy full SHA for 6ee7120 - Browse repository at this point
Copy the full SHA 6ee7120View commit details
Commits on Aug 15, 2020
-
Configuration menu - View commit details
-
Copy full SHA for 207aa12 - Browse repository at this point
Copy the full SHA 207aa12View commit details -
personal: Use index.AutocompleteField
Wagtail is changing its search API [1]. There is a documentation PR pending at [2]. Our automplete hack - patch to make Wagtail Snippet Chooser use .autocomplete() instead of .search() - stopped working after the Wagtail update for the Contact snippet. Use wagtail.search.index.AutocompleteField in Contact model to specify, which fields should be indexed for autocompletion. [1] https://github.com/wagtail/wagtail/issues/4937 [2] https://github.com/wagtail/wagtail/issues/4938
Configuration menu - View commit details
-
Copy full SHA for 3da67a8 - Browse repository at this point
Copy the full SHA 3da67a8View commit details