| Commit message (Collapse) | Author | Age | Lines |
| ... | |
| | | | |
| | | |
| | | |
| | | |
| | | |
| | | | |
This commit adds in the information about the winners of the code jam.
Additionally, it adds in Code Jam 8 as a prior event in the sidebar.
|
| | | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | | |
Re-ordered and updated the events listed on the main events page.
We're no longer participating in Hacktoberfest, so that was removed.
Game jams was moved to the bottom as we have not hosted one and will not
for the forseeable future.
PyWeek was moved above Advent of Code because AoC is one of the
last events we do in the year so it didn't make sense to have
PyWeek below it.
This also updated the Events Calendar on the sidebar to be accurate for
2021.
|
| | | | | |
|
| | | | | |
|
| | |\ \ \ |
|
| | |\ \ \ \ |
|
| | | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
In more detail:
- Use Django URL namespaces (e.g. `api:bot:infractions`) instead of
`django_hosts` host argument.
- Update the hosts file setup documentation to remove subdomain entries.
- Update the hosts file setup documentation to mention that the entry of
`pythondiscord.local` is not required and mainly for convenience.
- Rename the `APISubdomainTestCase` to the more fitting
`AuthenticatedAPITestCase`, as authentication is all that is left that the
class is doing.
- Drop dependency to `django_hosts`.
|
| | |_|_|_|/
|/| | | |
| | | | |
| | | | | |
Rather than mentioning the apeals email address, we now direct users to the appeal server, which will now be used for ban appeals.
|
| | |_|_|/
|/| | | |
|
| | | | |
| | | |
| | | |
| | | | |
Fixes breaking tests
|
| | | | |
| | | |
| | | | |
In accordance with a poll in #dev-contrib, King Arthur becomes the 6th repository featured on the Python Discord homepage.
|
| | | | | |
|
| | | | | |
|
| | | | | |
|
| |\ \ \ \ |
|
| | | | | |
| | | | |
| | | | |
| | | | | |
Not having this timeout could cause a worker to hang indefinitely
|
| | | | | |
| | | | |
| | | | |
| | | | | |
Co-Authored-By: jchristgit <[email protected]>
|
| | | | | | |
|
| |/ / / / |
|
| | | | |
| | | |
| | | |
| | | |
| | | | |
In most cases this won't need to be specified,
so it makes more sense to move it out of the way
|
| | |_|/
|/| | |
|
| | | |
| | |
| | | |
Co-authored-by: Matteo Bertucci <[email protected]>
|
| | | | |
|
| | | | |
|
| | | | |
|
| | | | |
|
| |\ \ \ |
|
| | |\ \ \ |
|
| | | | | | |
|
| | |/ / /
| | | |
| | | |
| | | |
| | | |
| | | | |
Fixes a local link that points to a non-existent resource.
Signed-off-by: Hassan Abouelela <[email protected]>
|
| | | | |
| | | |
| | | |
| | | | |
replit recently updated branding to replit.com, so we now reflect that in our site too.
|
| | | | | |
|
| |/ / /
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
These changes mainly aim to prevent multiple concurrent requests from
deadlocking the table due to the lazy evaluation imposed by `objects.all()`,
and introduce some quality of life changes whilst doing so.
To prevent unwanted locks, the following is done:
- Instead of evaluating the first item of `objects.all()` only in order to
determine when the table was most recently updated, we query for the least
recent updated entry and use that instead. As we use `.first()`, the model
instance is loaded directly.
The following quality of life changes are introduced:
- Instead of manual "update or create" logic for repositories retrieved from
the API, use Django's `update_or_create` instead.
- Instead of manual bulk creation of entries on initial data retrieve, Django's
`bulk_create` method is used instead.
- To allow for local testing of this endpoint without having to manually set up
GitHub REST authorization, anonymous GitHub access is used when no
`GITHUB_TOKEN` is configured.
|
| | | | |
|
| | | | |
|
| | | | |
|
| |\ \ \ |
|
| | | | |
| | | |
| | | |
| | | |
| | | |
| | | | |
Adds Textual, the TUI framework that uses Rich as its renderer to as an
allowed library. It's still under active development though and is not
stable.
|
| | | |/
| |/|
| | |
| | |
| | | |
The dates and times on the main event page have been updated to
reflect the changes.
|
| | | | |
|
| | | | |
|
| | | | |
|
| | | | |
|
| | | | |
|
| | | | |
|
| | | | |
|
| | | | |
|
| | | |
| | |
| | | |
HTML <pre> tag is adding indention also to result, so I had to remove these.
|
| | | | |
|
| | | |
| | |
| | | |
Co-authored-by: Numerlor <[email protected]>
|