aboutsummaryrefslogtreecommitdiff
path: root/modules/title.py
Commit message (Collapse)AuthorAgeFilesLines
* add !notitle to bypass auto-titleGravatar jesopo2019-11-201-0/+5
|
* move all datetime-related code from utils/__init__ to utils.datetimeGravatar jesopo2019-11-151-4/+7
|
* dont print full stacktrace when getting a url's title failsGravatar jesopo2019-11-141-1/+1
|
* use utils.parse.line_normalise in title.pyGravatar jesopo2019-10-311-2/+1
|
* don't try to parse empty <title>sGravatar jesopo2019-10-311-0/+2
|
* don't assume we're in a channel when we're not (title.py)Gravatar jesopo2019-10-311-8/+14
|
* strip '"<>() from <title> words when checking for title/url differenceGravatar jesopo2019-10-281-1/+2
|
* also split auto-title words on `/`Gravatar jesopo2019-10-091-1/+3
|
* ignore one-char "words" in <title> if they're not a "letter"Gravatar jesopo2019-10-041-2/+7
|
* don't auto-title when a URL contains most of it's <title>Gravatar jesopo2019-10-041-0/+21
|
* 'is_localhost()' -> 'host_permitted()'Gravatar jesopo2019-09-301-2/+2
|
* only show auto-title when response code is 200Gravatar jesopo2019-09-201-9/+9
|
* Revert "switch to using IRCBot.http_client() in title.py"Gravatar jesopo2019-09-111-1/+1
| | | | This reverts commit 748008cf360616752375f72e619f741a3b224a6a.
* switch to using IRCBot.http_client() in title.pyGravatar jesopo2019-09-111-1/+1
|
* refactor utils.http.requests to support a Request objectGravatar jesopo2019-09-111-1/+1
|
* return matching string from buffer.find() as most uses were redundantly regexingGravatar jesopo2019-08-131-3/+3
|
* Allow url shorteners to be specified per-channelGravatar jesopo2019-08-051-1/+2
|
* Actually use sanitised url when getting <title>Gravatar jesopo2019-07-021-2/+1
|
* use utils.http.url_sanitise() in title.pyGravatar jesopo2019-07-021-1/+1
|
* Refactor set/channelset/serverset/botset in to 'utils.Setting' objectsGravatar jesopo2019-06-281-10/+6
|
* implement @utils.kwarg() magic, use it for command.regex hooksGravatar jesopo2019-06-261-6/+5
|
* `event` doesn't exist in _get_titleGravatar jesopo2019-06-251-5/+5
|
* Add system to have multiple url shorteners and chose which to useGravatar jesopo2019-06-251-2/+3
|
* Allow command.regex hooks to opt-in to being triggered from a /meGravatar jesopo2019-06-161-1/+1
| | | | closes #68
* Add `depends-on` hashflags to relevant modulesGravatar jesopo2019-05-251-0/+3
|
* Add usage examples for all settingsGravatar jesopo2019-05-231-3/+3
|
* event.eat() in command.regex for !titleGravatar jesopo2019-05-211-0/+1
|
* Actually check `auto-title` settingGravatar jesopo2019-05-191-18/+19
|
* Hand over regex-based-command responsibilities to `commands` moduleGravatar jesopo2019-05-181-30/+23
|
* Log URL when we fail to get a <title>Gravatar jesopo2019-05-071-1/+1
|
* Add a mechanism to ignore specific commands for a whole networkGravatar jesopo2019-05-061-1/+1
|
* Add a setting to automatically shorten URLs when their title is retrievedGravatar jesopo2019-04-281-4/+13
|
* Use is-ignored export in title.py to ignore users for auto-titleGravatar jesopo2019-04-271-0/+5
|
* Refuse to get the title for any url that points locallGravatar jesopo2019-04-251-1/+9
|
* Move REGEX_URL out of isgd.py and title.py in to utils.httpGravatar jesopo2019-04-241-5/+3
|
* Store full non-hashed auto-title url in setting valueGravatar jesopo2019-04-241-3/+3
|
* Add ability to track (and show) who first send a specific link that wasGravatar jesopo2019-04-241-2/+29
| | | | auto-titled
* Move HTTPWrongContentTypeException catch above Exception catchGravatar jesopo2019-03-011-2/+2
|
* specifically handle HTTPWrongContentTypeException in title.pyGravatar jesopo2019-02-281-0/+2
|
* `title` is already a parsed string from _get_title() (title.py)Gravatar jesopo2019-02-091-2/+0
|
* Add empty `params` arg to log call (title.py)Gravatar jesopo2019-02-091-1/+1
|
* Forgot to import EventManager (title.py, youtube.py)Gravatar jesopo2019-02-091-1/+1
|
* Eat youtube URLs on LOW priority, switch auto-title to MONITOR priorityGravatar jesopo2019-02-091-1/+2
|
* Actually return title text, not html Tag object (title.py)Gravatar jesopo2019-02-091-1/+5
|
* Add a setting to get the title from URLs automatically (title.py)Gravatar jesopo2019-02-091-11/+23
|
* Error log failure to get title of a url (title.py)Gravatar jesopo2019-01-211-1/+3
|
* 'utils.http.get_url' -> 'utils.http.request', return a Response object fromGravatar jesopo2018-12-111-4/+3
| | | | utils.http.request
* Catch exceptions in modules/title.pyGravatar jesopo2018-10-191-1/+8
|
* Change all instances of stdout.write+return to `raise utils.EventError` inGravatar jesopo2018-10-161-4/+2
| | | | modules
* Mark command hooks that are aliases ('g' vs 'google')Gravatar jesopo2018-10-101-1/+2
|