aboutsummaryrefslogtreecommitdiffstats
path: root/manage.py (unfollow)
Commit message (Collapse)AuthorLines
2021-05-14Add good question guide redirectGravatar Joe Banks-0/+6
2021-05-14Modify env vars list for Lancebot and PythonGravatar dawnofmidnight-2/+4
2021-05-14Update redirect tests to use 301Gravatar Joe Banks-1/+1
2021-05-14Enable permanent redirects for redirect appGravatar Joe Banks-3/+1
After monitoring traffic ingressing and confirming redirects are working as expected, I'm happy to switch redirects from the redirect app to using 301 permanent redirect.
2021-05-14Changed rules to those agreed upon in a prior staff meeting.Gravatar swfarnsworth-7/+9
2021-05-14Explicitly state which config file should be used for use_fakeredisGravatar Joe Banks-1/+1
2021-05-14Revert "fix: USE_FAKEREDIS is uppercase"Gravatar Joe Banks-1/+1
2021-05-14fix: USE_FAKEREDIS is uppercaseGravatar vcokltfre-1/+1
2021-05-14Remove stale dependency.Gravatar kosayoda-30/+5
The reliance on gitpython for the SHA for Sentry was made obsolete by site#439, see https://github.com/python-discord/site/pull/439.
2021-05-14Enable smooth scrolling on the website.Gravatar kosayoda-0/+8
This makes it less jarring when scrolling to a heading since many content pages include a Table of Contents.
2021-05-14Add redirect to notion privacy location.Gravatar kosayoda-0/+5
Since this is a backwards compatibility redirect, the page should redirect the user rather than rely on the cloudflare worker.
2021-05-14Fix misleading coverage report.Gravatar kosayoda-1/+3
Due to an optimization in CPython that is amended in 3.10, coverage.py is sometimes unable to determine the coverage of continue statements in branches. See: https://github.com/nedbat/coveragepy/issues/198 Adding a no-op like a print or an empty statement would solve the coverage issue, but I've opted to just ignore the line. This should be tested and the line removed when the site is updated to Python 3.10.
2021-05-14Use bulma extension in place of self-written code.Gravatar kosayoda-17/+1
2021-05-14Merge branch main into dewikificationGravatar kosayoda-1273/+7792
2021-05-13Fix default margin on error pagesGravatar Bast-0/+1
This removes the scrollbar from them
2021-05-14Make tests expect 302.Gravatar kosayoda-1/+1
It's what we're using now for dewikification redirects, this has to be changed back to 301 when we decide to make redirects permanent.
2021-05-13Add privacy policy information and link.Gravatar kosayoda-1/+8
This should be redirected to the notion page using our cloudflare worker.
2021-05-13Add disclaimer for the redirects app.Gravatar kosayoda-0/+12
2021-05-13Use temporary redirects for now.Gravatar kosayoda-1/+3
2021-05-13Route navbar links to their new locations.Gravatar kosayoda-8/+8
2021-05-13Add content app redirects.Gravatar kosayoda-1/+75
2021-05-03Add game jam pages redirectsGravatar ks129-0/+25
2021-05-03Add HTTP 200 requirement to redirect survival testsGravatar ks129-0/+2
2021-05-03Add code jam 6 and 7 rules pages redirectsGravatar ks129-0/+10
2021-05-03Add code jams helper pages redirectsGravatar ks129-0/+15
2021-05-03Add note about prefix redirectsGravatar ks129-0/+1
2021-05-03Add contributing pages prefix redirection and update testsGravatar ks129-2/+22
2021-05-03Implement hacky solution to allow prefix redirectsGravatar ks129-3/+8
2021-05-03Migrate redirections from settings.py -> redirects.yamlGravatar ks129-44/+66
2021-05-03Add code jam pages redirectsGravatar ks129-0/+21
2021-05-03Add groups with comments to redirections definitionGravatar ks129-0/+3
2021-05-03Update redirect app tests to take account recent changesGravatar ks129-5/+28
2021-05-03Migrate redirections definition to not include testing argsGravatar ks129-7/+6
2021-05-03Migrate URLs generation from Django's own RedirectView -> CustomRedirectViewGravatar ks129-3/+11
2021-05-03Add missing type annotation to get_redirect_urlGravatar ks129-1/+3