| Commit message (Collapse) | Author | Lines | ||
|---|---|---|---|---|
| 2021-08-30 | Prevent erroneous symbols from always raising stale warnings | -7/+29 | ||
| Some doc symbols are improperly generated and never exist on the doc page the inventory file defines them in, causing the stale warning to get raised every time the page is parsed (at a maximum every week because of the redis expire). This can be prevented by keeping a counter in redis for the items which were stale, every time the item is warned for the counter is incremented and set to expire in 3 weeks. Then a warning is only raised when the counter is below 3, resulting in the unpreventable warning only being raised twice until it is fixed by the maintainers after it expires in 3 weeks after the last increment. | ||||
| 2021-08-30 | create a helper function to get the redis key of a doc item | -12/+5 | ||
| 2021-08-30 | Remove the json argument from the raw command. (#1792) | -6/+14 | ||
| 2021-08-29 | Add more clarity to docstrings | -5/+5 | ||
| Clarify what Discord usernames are and the usage of the word "ambiguity". | ||||
| 2021-08-29 | Make the helper function more readable | -8/+4 | ||
| 2021-08-29 | Use unambiguous converters for infraction commands | -15/+16 | ||
| 2021-08-29 | Fix mismatches in parameter names and docstrings | -2/+2 | ||
| 2021-08-29 | Add the UnambiguousMember converter | -3/+23 | ||
| 2021-08-29 | Replace UserMentionOrID with UnambiguousUser | -12/+26 | ||