aboutsummaryrefslogtreecommitdiff
path: root/modules/channel_op.py
Commit message (Collapse)AuthorAgeFilesLines
* `event` doesn't exist in _quiet_method()Gravatar jesopo2020-01-261-1/+1
|
* we should be checking if there are no flags specifiedGravatar jesopo2020-01-261-1/+1
|
* find "word" type, not cuser (because i can be 'user')Gravatar jesopo2020-01-261-3/+3
|
* fix _ban looking for user instead of cuser, fix kickban _kick argGravatar jesopo2020-01-261-2/+2
|
* fix channel_op spec arg indexesGravatar jesopo2020-01-261-3/+3
|
* remove channel_op.py usage, specs cover itGravatar jesopo2020-01-251-35/+19
|
* implement default spec argument typesGravatar jesopo2020-01-251-6/+6
|
* change command specs to be compiled at runtime by a decoratorGravatar jesopo2020-01-251-17/+17
|
* update mode list functions to not use `args`Gravatar jesopo2020-01-251-6/+1
|
* !cunmute needs an `event` argGravatar jesopo2020-01-251-1/+1
|
* use new command specs in channel_op.pyGravatar jesopo2020-01-241-94/+73
|
* add !lsearch to show what !clear would removeGravatar jesopo2020-01-231-34/+55
|
* search for QUIET prefix anywhere, not just at the start of stringGravatar jesopo2020-01-231-2/+2
|
* get channelset quiet-method list from QUIET_METHODSGravatar jesopo2020-01-231-1/+1
|
* fix duplicate "insp" QUIET_METHODS entryGravatar jesopo2020-01-231-1/+1
|
* add "!clear quiets|mutes"Gravatar jesopo2020-01-231-16/+44
|
* move mode list (beIq e.g.) to it's own module, mode_lists.pyGravatar jesopo2020-01-221-55/+0
|
* don't add modes to mode_lists until we have dataGravatar jesopo2020-01-221-8/+12
|
* support ISUPPORT MODES token having no argGravatar jesopo2020-01-221-1/+4
|
* add an optional mask pattern arg to !clearGravatar jesopo2020-01-221-3/+8
|
* effectively ignore ENDOF when there were no itemsGravatar jesopo2020-01-221-1/+2
|
* implement "!clear +b" to clear ban listsGravatar jesopo2020-01-221-8/+29
|
* track all channel list modes, not just ban and maybe quietGravatar jesopo2020-01-221-10/+13
|
* store ban (and maybe quiet) mode listsGravatar jesopo2020-01-221-0/+38
|
* query ban (and maybe quiet) list on joinGravatar jesopo2020-01-221-0/+10
|
* 'mute_method' -> 'quiet_method'Gravatar jesopo2020-01-221-1/+1
|
* default to quiet-method being unsupportedGravatar jesopo2020-01-221-1/+1
|
* use ISUPPORT QUIET when availableGravatar jesopo2020-01-221-5/+9
|
* !mute -> !quiet, refactor quiets to be mode,prefix,listnum,endnumGravatar jesopo2020-01-221-23/+42
|
* switch channel_op ban masks to use utils.parse.parse_token_replaceGravatar jesopo2019-12-211-7/+6
|
* add !up/!down as aliases of !op/!deopGravatar jesopo2019-12-141-2/+13
|
* IRCUser.get_identified_account() doesn't exist anymoreGravatar jesopo2019-11-221-2/+2
|
* refactor permissions and allow hostmasks to be assigned to accountsGravatar jesopo2019-11-211-1/+1
|
* move "+5m" syntax parsing out to utils.parseGravatar jesopo2019-11-181-14/+4
|
* move all datetime-related code from utils/__init__ to utils.datetimeGravatar jesopo2019-11-151-1/+1
|
* add !cmute/!cunmute to set +m/-m on current channelGravatar jesopo2019-10-251-1/+32
|
* show $n/$u/$h for ban-format-account help tooGravatar jesopo2019-10-081-1/+3
|
* !k should be alias_of !kickGravatar jesopo2019-09-261-1/+1
|
* reference mask_split, not sGravatar jesopo2019-09-241-1/+1
|
* don't throw when account name is nullGravatar jesopo2019-09-241-1/+1
|
* switch ban-format-account from a serverset to channelsetGravatar jesopo2019-09-241-1/+1
|
* support having a separate ban format for users with accountsGravatar jesopo2019-09-241-3/+9
|
* use ban-format for mute masksGravatar jesopo2019-09-241-3/+4
|
* support "$$" as "$" in ban-formatGravatar jesopo2019-09-241-4/+7
|
* support $a (account) in ban-mask settingGravatar jesopo2019-09-241-3/+5
|
* send_mode() args should be an arrayGravatar jesopo2019-09-151-2/+2
|
* _parse_flags() should always return 2 objectsGravatar jesopo2019-09-121-1/+1
|
* only apply modes for !flags when the user doesn't have them alreadyGravatar jesopo2019-09-121-5/+12
|
* _check_flags() when flags are changedGravatar jesopo2019-09-121-0/+3
|
* add !b as an alias of !banGravatar jesopo2019-09-121-0/+1
|