aboutsummaryrefslogtreecommitdiff
path: root/modules/admin.py
Commit message (Collapse)AuthorAgeFilesLines
* move IRCLine related code from utils.irc to IRCLine.pyGravatar jesopo2019-10-271-2/+2
|
* 'existing_server' -> 'server'Gravatar jesopo2019-10-251-2/+1
|
* we need both `id` and `server` for !disconnectGravatar jesopo2019-10-101-2/+6
|
* !editserver only need an alias to exist, not to be currently connectedGravatar jesopo2019-10-091-3/+3
|
* `alias` doesnt exist eitherGravatar jesopo2019-10-031-1/+2
|
* dont try to !connect to a variable that doesnt existGravatar jesopo2019-10-031-6/+8
|
* take an option server alias arg for !reconnectGravatar jesopo2019-09-271-18/+26
| | | | closes #166
* !changenickname -> !nicknameGravatar jesopo2019-09-271-1/+1
|
* show alias of disconnected server when it's a cancelled timerGravatar jesopo2019-09-251-1/+4
|
* 'seperate_hostmask()' -> 'parse_hostmask()'Gravatar jesopo2019-09-161-1/+1
|
* Show the line that was actually send from !raw, after format and filterGravatar jesopo2019-09-071-1/+5
|
* 'reconnections' dict is on IRCBot, not IRCServerGravatar jesopo2019-09-071-3/+3
|
* also cancel reconnections with !disconnectGravatar jesopo2019-09-011-2/+9
|
* also support 'realname' in !editserverGravatar jesopo2019-08-301-1/+1
|
* Add !editserver commandGravatar jesopo2019-07-041-0/+38
|
* Give SentLine (and preproc.send events) a new event object, to track eventsGravatar jesopo2019-06-041-3/+3
| | | | related to a line after it is sent
* 'alias' -> 'str(server)' as `alias` does not exist in the current contextGravatar jesopo2019-05-301-1/+2
|
* Add `depends-on` hashflags to relevant modulesGravatar jesopo2019-05-251-0/+3
|
* stdout.write on success for !disconnectGravatar jesopo2019-05-221-0/+1
|
* Remove old debug print()s from admin.pyGravatar jesopo2019-05-221-2/+0
|
* Typo, 'usernaame' -> 'username'Gravatar jesopo2019-05-211-1/+1
|
* Strip "+" from the start of `port` after checking if it is presentGravatar jesopo2019-05-211-0/+1
|
* Add !addserver commandGravatar jesopo2019-05-211-0/+31
|
* Add Database.servers.get_by_alias, move IRCBot.get_server toGravatar jesopo2019-04-241-16/+12
| | | | | IRCBot.get_server_by_id, add IRCBot.get_server_by_alias and change !connect/!disconnect to take aliases instead of IDs
* Add IRCServer.send_raw so modules don't have to parse messages before sendingGravatar jesopo2019-04-161-2/+1
| | | | them
* !raw needs to parse the line it's given in to an IRCParsedLine nowGravatar jesopo2019-02-231-1/+2
|
* Actually return function hook from _shutdown_hook (admin.py)Gravatar jesopo2019-02-111-0/+1
|
* Actually shutdown socket when !shutdown is called (admin.py)Gravatar jesopo2019-02-111-1/+3
|
* Iterate through bot.servers.values(), not .keys() (admin.py)Gravatar jesopo2019-02-101-1/+1
|
* Add !shutdown (admin.py)Gravatar jesopo2019-02-101-0/+14
|
* Utilise new line-tracking logic to reconnect when QUIT sends (admin.py)Gravatar jesopo2019-02-101-3/+3
|
* Add !disconnect to admin.pyGravatar jesopo2018-11-201-0/+21
|
* Do an instant reconnect for !reconnect in modules/admin.pyGravatar jesopo2018-11-051-0/+2
|
* Change all instances of stdout.write+return to `raise utils.EventError` inGravatar jesopo2018-10-161-6/+4
| | | | modules
* Add !connect in modules/admin.pyGravatar jesopo2018-10-031-0/+24
|
* Move src/Utils.py in to src/utils/, splitting functionality out in to modules ofGravatar jesopo2018-10-031-5/+5
| | | | related functionality
* Switch to using docstring for usage, permission and require_modeGravatar jesopo2018-09-301-10/+15
|
* Switch to using @Utils.hook and docstrings for event hooksGravatar jesopo2018-09-261-17/+27
|
* Add !reconnect in admin.pyGravatar jesopo2018-09-031-9/+12
|
* give an Exports object (actually, ExportsContex object) to each module, toGravatar jesopo2018-09-021-1/+1
| | | | facilitate things like !set and !channelset without using the events system
* Give modules event objects with "context"s, to facilitate purging all the eventGravatar jesopo2018-08-311-4/+4
| | | | hooks for a module
* added a part command to admin.py.Gravatar jesopo2016-06-241-0/+7
|
* added admin.py, for admin-type things.Gravatar jesopo2016-05-171-0/+19