| Commit message (Collapse) | Author | Lines | ||
|---|---|---|---|---|
| 2022-03-02 | Fix timezone awareness warnings | -20/+36 | ||
| Add a `warnings.warnings` clause to prevent these from being raised again in the future, and raise a full traceback if they don't. | ||||
| 2022-02-28 | Add link to contributing guide | -0/+4 | ||
| 2022-02-28 | Add reference to the `resources` app | -1/+1 | ||
| Co-authored-by: Leon Sandøy <[email protected]> | ||||
| 2022-02-28 | Add serial comma | -1/+1 | ||
| Co-authored-by: Mark <[email protected]> | ||||
| 2022-02-26 | Add newlines for the apps section | -3/+4 | ||
| 2022-02-26 | Elaborate on settings.py | -7/+14 | ||
| Co-authored-by: Leon Sandøy <[email protected]> | ||||
| 2022-02-26 | Elaborate on purpose of the urls module | -2/+1 | ||
| Co-authored-by: Leon Sandøy <[email protected]> | ||||
| 2022-02-26 | Remove newlines added by an 🥥 INSANE PERSON 🥥 | -1/+0 | ||
| Co-authored-by: Leon Sandøy <[email protected]> | ||||
| 2022-02-26 | Link to Django template documentation | -1/+1 | ||
| Co-authored-by: Leon Sandøy <[email protected]> | ||||
| 2022-02-26 | Document Django applications in more depth | -4/+9 | ||
| 2022-02-26 | Comment in individual application doc reference | -4/+4 | ||
| 2022-02-26 | Move static & template folder description up | -4/+5 | ||
| 2022-02-26 | Add a readme to the Django project directory | -1/+52 | ||
| 2022-02-26 | Remove and merge superfluous modules | -14/+15 | ||
| The constants module more or less did what belongs to the settings. | ||||
| 2022-02-26 | Remove unused module | -91/+0 | ||
| 2022-02-24 | git # This is a combination of 2 commits. | -2/+6 | ||
| Add channel ID to message deletion logs | ||||
| 2022-02-23 | Remove the admin app | -8/+0 | ||
| This app is completely unused. I assume it was planned to be a space for customizing the Django admin, but we don't even have it in `INSTALLED_APPS`, nor our URLs. | ||||
| 2022-02-21 | Assert we're dealing with the unique constraint | -8/+16 | ||
| 2022-02-21 | Prevent race condition with duplicate infractions | -52/+50 | ||
| DRF's `UniqueTogetherValidator` validates uniqueness by querying the database before running the actual insert. This is not, has not, and will never be valid, unless you happen to run a single worker, on a single thread, and your single worker running on a single thread is the only client for the database, in which case it may be valid. For any other cases, it's invalid, and it has never been valid. PostgreSQL spits out an `IntegrityError` for us if we have a duplicate entry, and PostgreSQL is the only valid and correct thing to trust here. The `UniqueTogetherValidator` is removed, and an existing test case calling into this validator to check for uniqueness is removed. Furthermore, to work around a Django quirk, `transaction.atomic()` is added to prevent one `subTest` from messing with another. Closes #665. | ||||
| 2022-02-21 | Fixup: final wording and typo | -2/+2 | ||
| 2022-02-20 | Add table of content and final edits | -18/+16 | ||
| 2022-02-20 | Update content | -25/+39 | ||
| Update some screenshot images to reflect emoji used in category names Break up some of the FAQ questions into smaller questions Mention the !helpdm on command added in 2021 Mention the channel claimed embed added in 2022 Culling of content to focus on information pertaining to getting help | ||||
| 2022-02-20 | Edit "can only Helpers help?" answer and question | -7/+5 | ||
| Remove screenshot of occupied help channels because it doesn't serve much purpose, and help can also be provided in topical channels. | ||||
| 2022-02-20 | Update Name & Profile Policy | -9/+9 | ||
| Update to better reflect our current moderation practices in regards to user profiles. Previous name was "Nickname Policy" | ||||
| 2022-02-20 | Update .gitignore to ignore MacOS system files | -0/+3 | ||
| 2022-02-19 | Remove expired coupon code and update course name | -3/+2 | ||
| 2022-02-16 | Fix typo in bot tutorial resource (#661) | -1/+1 | ||
| Co-authored-by: Xithrius <[email protected]> | ||||
| 2022-02-16 | Return random off topic names which are Active only (#644) | -9/+29 | ||
| Co-authored-by: Xithrius <[email protected]> | ||||
| 2022-02-13 | Edge cases: Show duckies when no visible resources | -8/+14 | ||
| 2022-02-13 | Fix bug with search tag taking up too much width. | -2/+3 | ||
| 2022-02-13 | Titlecase the PyDis YouTube resource | -1/+1 | ||
| Co-authored-by: Mark <[email protected]> | ||||
| 2022-02-13 | Best practice: Switch name to data-resource-name. | -4/+4 | ||
| 2022-02-13 | Edge case: Fix a bug with overflow on Chrome. | -1/+0 | ||
| 2022-02-13 | Add fuzzysort as a local dependency. | -1/+658 | ||
| 2022-02-13 | Allow searching users by username and discriminator | -0/+48 | ||
| A test case is added to demonstrate this functionality. Closes #578. Co-authored-by: Boris Muratov <[email protected]> | ||||
| 2022-02-13 | Edge case: Fix extremely long search overflow. | -1/+19 | ||
| 2022-02-13 | Fix search tag width bug on firefox. | -0/+1 | ||
| Without a min-width, the tag would not extend to fit the full size of the contents on Firefox. It seemed to work just fine on Chrome, though. The fix is simple - just enforce a min-width equal to fit-content. | ||||
| 2022-02-13 | Make the remove all tags affect search, too. | -1/+4 | ||
| 2022-02-13 | Fix duck pond not showing for search results of 0. | -3/+2 | ||
| 2022-02-13 | Search the resource description too. | -6/+15 | ||
| 2022-02-13 | Make the search tag look more like normal filters. | -1/+6 | ||
| 2022-02-13 | Add a filter tag when searching. | -4/+31 | ||
| 2022-02-13 | Implement fuzzy search. | -4/+35 | ||
| This implements the core logics for filtering by search. It uses fuzzysort to match the search query to the name of the resource. This name is set in the yaml for each resource. | ||||
| 2022-02-13 | Add names for every resource card. | -3/+14 | ||
| 2022-02-13 | Add fuzzysort dependency. | -0/+1 | ||
| 2022-02-13 | Trigger a UI update when typing into search. | -0/+5 | ||
| 2022-02-13 | Dynamically update URL with search query. | -3/+19 | ||
| 2022-02-12 | Kaizen: Update URL for Two Scoops. | -1/+1 | ||
| 2022-02-12 | Add a search bar to the top of the filter sidebar. | -1/+15 | ||
| 2022-02-12 | Kaizen: Fix redirect /pages/resources/communities. | -0/+5 | ||