Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

update django to 4.2 #527

Open
wants to merge 28 commits into
base: master
Choose a base branch
from
Open
Changes from 1 commit
Commits
Show all changes
28 commits
Select commit Hold shift + click to select a range
ab5328e
fix deprecation warnings
glbert-does Nov 17, 2023
86345bd
fix deprecated rexgexp
glbert-does Nov 17, 2023
57d4fd1
fix one test, temporarily turn failing test off
glbert-does Nov 21, 2023
a852a92
providing_args are documentational and are deprecated
glbert-does Nov 21, 2023
70d208e
add migration that was not done for 3rd alt option
glbert-does Nov 21, 2023
548ba3c
remove install_cacheops()
glbert-does Nov 21, 2023
d9cd10c
default_app_config in __init__.py is deprecated
glbert-does Nov 21, 2023
361460a
migrate deprecated fields
glbert-does Nov 22, 2023
4f8aa65
conf.urls.url() is deprecated in favour of urls.re_path()
glbert-does Nov 22, 2023
5c5e931
change some urls to paths
glbert-does Nov 22, 2023
0b49e75
change re_path to more readable path
glbert-does Nov 23, 2023
13f282c
ifequals is deprecated
glbert-does Nov 23, 2023
2b14357
update recaptcha to version 4
glbert-does Nov 23, 2023
a02c11a
update removed django.utils.http functions
glbert-does Nov 23, 2023
9ce14d4
re-enable cacheops, move to django 4.2
glbert-does Nov 23, 2023
f006834
the app is called tournament, not heltour
glbert-does Nov 23, 2023
89598e3
disable cacheops for testing
glbert-does Nov 23, 2023
5787737
add ad-hoc replacement for deactivated test
glbert-does Nov 23, 2023
f3a368d
enable cacheops in default settings
glbert-does Nov 23, 2023
5a5b9b0
fix django 5 deprecation warnings
glbert-does Nov 24, 2023
ae22207
fix broken url for webcal
glbert-does Nov 24, 2023
70a1edc
upgrade to python 3.9
glbert-does Jan 12, 2024
1fa17df
add missing map files for ManifestStaticFilesStorage
glbert-does Dec 4, 2024
99987b8
use regex string literals instead of escaping
glbert-does Dec 4, 2024
c45185d
remove superfluous comments
glbert-does Dec 4, 2024
2d83b28
be explicit about imports
glbert-does Dec 4, 2024
b57c6af
fill map files
glbert-does Dec 5, 2024
87dcf87
add helper for allowing static in debug mode
glbert-does Dec 16, 2024
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
fix broken url for webcal
  • Loading branch information
glbert-does committed Nov 24, 2023
commit ae222072ddd852749c7e2ce02c26131de4b777d8
2 changes: 1 addition & 1 deletion heltour/tournament/urls.py
Original file line number Diff line number Diff line change
@@ -107,7 +107,7 @@
urlpatterns = [
path('', views.HomeView.as_view(), name='home'),
path('toggle/darkmode/', views.ToggleDarkModeView.as_view(), name='toggle_darkmode'),
path('player/<slug:username>)/calendar.ics', views.ICalPlayerView.as_view(),
path('player/<slug:username>/calendar.ics', views.ICalPlayerView.as_view(),
name='player_icalendar'),
path('api/', include((api_urlpatterns, 'tournament'), 'api')),
path('app/', include((app_urlpatterns, 'tournament'), 'app')),