aboutsummaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeLines
...
| | | | * Improved `News` cogGravatar ks1292020-04-27-10/+22
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | - Added footer to webhook sent message - Made `send_webhook` return `discord.Message` instead ID of message - Added waiting for Webhook on `send_webhook` - Added message publishing in new loops
| | | | * Simplified title check even more in PEP newsGravatar ks1292020-04-21-1/+1
| | | | |
| | | | * `News` Cog improvisationsGravatar ks1292020-04-21-37/+36
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | - Created new helper function `News.get_webhook_and_channel` to will be run in Cog loading and will fetch #python-news channel and webhook. - Fixed `News.send_webhook` when you pass `None` as author, this will not add author. - Replaced individual channel and webhook fetches with `News.webhook` and `News.channel`. - Replaced positional arguments with kwargs in `send_webhook` uses. - Moved maillists syncing from `News.__init__` to `News.post_maillist_news`. - Simplified `News.post_pep_news` already exist checks.
| | | | * Implemented maillists news posting, created helper functions + added date checkGravatar ks1292020-04-20-19/+131
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | - Created helper function `News.get_thread_and_first_mail` - Created helper function `News.send_webhook` - Created helper function `News.check_new_exist` - Task `post_maillist_news`, that send latest maillist threads to news, when they don't exist. - Implemented helper functions to PEP news - Added date check
| | | | * Defined `chardet` log level to warning to avoid spamGravatar ks1292020-04-20-0/+1
| | | | |
| | | | * Added new dependency `beatifulsoup4` for Python news HTML parsingGravatar ks1292020-04-20-1/+3
| | | | |
| | | | * Added new function `News.get_webhook_names` + new variable `News.webhook_names`Gravatar ks1292020-04-20-0/+13
| | | | | | | | | | | | | | | | | | | | Function fetch display names of these mail lists, that bot will post. These names will be used on Webhook author names. `News.webhook_names` storage these name and display name pairs.
| | | | * Created PEP news task + minor changes in `News`Gravatar ks1292020-04-20-4/+69
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | - Created task `post_pep_news` that pull existing news message IDs from API, do checks and send new PEP when it's not already sent. - Removed `get_webhook` - Removed `self.webhook`
| | | | * Applied constant changes to NewsGravatar ks1292020-04-20-8/+2
| | | | | | | | | | | | | | | | | | | | Replaced in-file mail lists with constants.py's, replaced webhook ID getting.
| | | | * Applied Python News config changesGravatar ks1292020-04-20-2/+8
| | | | | | | | | | | | | | | | | | | | Removed Webhook and Channel from their listings, created new class `PythonNews` that hold them + mail lists.
| | | | * Added new category `python_news` to config, that hold mail lists, channel ↵Gravatar ks1292020-04-20-5/+15
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | and webhook. This use local dev environment IDs.
| | | | * Created helper function `get_webhook` and added property in `News`Gravatar ks1292020-04-20-1/+8
| | | | | | | | | | | | | | | | | | | | `News.get_webhook` fetch discord.Webhook by ID provided in config. `self.webhook` use webhook that it got from this function.
| | | | * Added #python-news channel webhook to `Webhooks` in constantsGravatar ks1292020-04-20-0/+1
| | | | |
| | | | * Added new dependency `feedparser`Gravatar ks1292020-04-20-48/+58
| | | | |
| | | | * Added helper function `News.sync_maillists`Gravatar ks1292020-04-20-0/+23
| | | | | | | | | | | | | | | | | | | | Function sync maillists listing with API, that hold IDs of message that have news. PEPs handling is over RSS, so this will added manually in this function.
| | | | * Added `News` cog loadingGravatar ks1292020-04-20-0/+1
| | | | |
| | | | * Added #python-news channel ID to constants `Channels`Gravatar ks1292020-04-20-0/+1
| | | | |
| | | | * Created `News` cogGravatar ks1292020-04-19-0/+15
| | | | | | | | | | | | | | | | | | | | Added general content of cog: class and setup.
* | | | | PEP Improvisations: Moved `get_pep_zero_embed` to outside of CogGravatar ks1292020-05-14-14/+15
| | | | |
* | | | | PEP Improvisations: Implemented stats to PEP commandGravatar ks1292020-05-14-7/+11
| | | | |
* | | | | PEP Improvisations: Made PEP URLs refreshing task PEP number resolving easierGravatar ks1292020-05-13-2/+4
| | | | |
* | | | | PEP Improvisations: Added logging to PEP URLs fetching taskGravatar ks1292020-05-13-0/+3
| | | | |
* | | | | PEP Improvisations: Replaced `wait_until_guild_available` with ↵Gravatar ks1292020-05-13-1/+1
| | | | | | | | | | | | | | | | | | | | `wait_until_ready`
* | | | | PEP Improvisations: Added `staticmethod` decorator to `get_pep_zero_embed`Gravatar ks1292020-05-13-1/+2
| | | | |
* | | | | PEP Improvisations: Moved PEP functions to one regionGravatar ks1292020-05-13-27/+29
| | | | |
* | | | | Replaced 24 hours with 3 hours in `refresh_peps_urls`Gravatar ks1292020-04-25-2/+2
| | | | | | | | | | | | | | | | | | | | Made modification to include new PEPs faster.
* | | | | Refactor `pep` command, implement cachingGravatar ks1292020-04-25-55/+46
| | | | | | | | | | | | | | | | | | | | Moved PEP embed getting to function, that use caching.
* | | | | Created new task in `Utils` cog: `refresh_peps_urls`Gravatar ks1292020-04-25-1/+20
| | | | | | | | | | | | | | | | | | | | Task refresh listing of PEPs + URLs in every 24 hours
* | | | | Moved `async_cache` decorator from `Doc` cog file to `utils/cache.py`Gravatar ks1292020-04-25-30/+34
| | | | |
* | | | | Merge branch 'master' into pep-improvisationsGravatar ks1292020-04-21-6/+44
|\| | | |
| * | | | Merge pull request #900 from python-discord/fix-category-cache-issueGravatar Sebastiaan Zeeff2020-04-21-3/+2
| |\ \ \ \ | | | | | | | | | | | | Fix category cache issue
| | * | | | Fix category cache issueGravatar Joseph Banks2020-04-21-3/+2
| |/ / / /
| * | | | Merge pull request #896 from python-discord/answered-session-statsGravatar Mark2020-04-20-3/+42
| |\ \ \ \ | | |_|_|/ | |/| | | Answered help session statistics
| | * | | HelpChannels: add logging to answered checkGravatar MarkKoz2020-04-20-3/+4
| | | | |
| | * | | Extra documentation + split out to separate functionGravatar Joseph Banks2020-04-20-8/+26
| | | | |
| | * | | Add different emoji for different channel statuses (in use answered/unanswered)Gravatar Joseph Banks2020-04-20-2/+7
| | | | |
| | * | | Incorrect comparison, we need to check if we are in help_in_use, not out of itGravatar Joseph Banks2020-04-20-1/+1
| | | | |
| | * | | Add statistics on whether a help session was closed with no input from ↵Gravatar Joseph Banks2020-04-20-0/+15
| |/ / / | | | | | | | | | | | | anyone but the claimant
* / / / Improve `!pep` commandGravatar ks1292020-04-21-6/+3
|/ / / | | | | | | | | | | | | - Made `pep_number` type hint to `int` to avoid unnecessary manual converting. - Added `ctx.trigger_typing` calling to show user that bot is responding.
* | | Merge pull request #875 from python-discord/bug/info/869/tag-encodingGravatar Mark2020-04-19-1/+1
|\ \ \ | |_|/ |/| | Explicitly use UTF-8 to read tag files
| * | Merge branch 'master' into bug/info/869/tag-encodingGravatar Mark2020-04-19-52/+354
| |\ \ | |/ / |/| |
* | | Merge pull request #877 from ↵Gravatar Shirayuki Nekomata2020-04-18-2/+8
|\ \ \ | | | | | | | | | | | | | | | | python-discord/bug/frontend/870/help-channel-dm-category HelpChannels: fix AttributeError getting a category for a DMChannel
| * \ \ Merge branch 'master' into bug/frontend/870/help-channel-dm-categoryGravatar Shirayuki Nekomata2020-04-18-50/+346
| |\ \ \ | |/ / / |/| | |
* | | | Merge pull request #874 from ks129/syncer-timeout-fixGravatar kwzrd2020-04-17-2/+4
|\ \ \ \ | | | | | | | | | | Fix wrong exception type in syncing
| * \ \ \ Merge branch 'master' into syncer-timeout-fixGravatar kwzrd2020-04-17-181/+1253
| |\ \ \ \ | |/ / / / |/| | | |
* | | | | Remove `.md` from anti-malware whitelistGravatar Sebastiaan Zeeff2020-04-16-1/+0
| |_|_|/ |/| | | | | | | We want our members to use the paste site to share text-based files instead of them sharing the files as attachments on Discord. As `.md`, a file extensions used for plain-text files with markdown formatting, is such a text file, I've removed it from the anti-malware whitelist.
* | | | Merge pull request #881 from ↵Gravatar Shirayuki Nekomata2020-04-14-4/+0
|\ \ \ \ | | | | | | | | | | | | | | | | | | | | python-discord/help-channels-keep-dormant-invocation Reverse deletion of `!dormant` invocation messages
| * | | | Revert deletion of !dormant invocation messagesGravatar Sebastiaan Zeeff2020-04-14-4/+0
|/ / / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | PR #868 introduced the automatic deletion of the message that issued the `!dormant` command. The idea behind this was that moving the channel to the dormant category makes it obvious that a channel has gone dormant and the message would only serve as visual clutter. However, removing the command invocation also means that it's less obvious why a channel was moved to the dormant category. As the message gets deleted almost immediately, you have to be actively watching the channel to know that the command was issued and who issued it. This has already caused some confusion where helping members where left wondering why a channel suddenly went dormant while they felt that the conversation was still ongoing. To improve the user experience, this commit removes the deletions of the command invocation messages.
* | | | [stat] Tag statistic was using the user input as the series name, not the ↵Gravatar Joseph Banks2020-04-13-1/+1
| | | | | | | | | | | | | | | | resolved tag name
* | | | [stat] Create a statistic for whether dormant was called by the claimant or ↵Gravatar Joseph Banks2020-04-12-1/+7
| | | | | | | | | | | | | | | | staff