mirror of
https://github.com/pragma-/pbot.git
synced 2024-11-22 03:49:29 +01:00
Doc: minor edits
This commit is contained in:
parent
4bb7a3ade6
commit
f2b7436f58
50
doc/Admin.md
50
doc/Admin.md
@ -34,10 +34,8 @@
|
||||
* [ignore](#ignore)
|
||||
* [unignore](#unignore)
|
||||
* [blacklist](#blacklist)
|
||||
* [nicklist](Admin.md#nicklist)
|
||||
* [banlist](Admin.md#banlist)
|
||||
* [checkban](Admin.md#checkban)
|
||||
* [checkmute](Admin.md#checkmute)
|
||||
* [nicklist](#nicklist)
|
||||
* [banlist](#banlist)
|
||||
* [op](#op)
|
||||
* [deop](#deop)
|
||||
* [voice](#voice)
|
||||
@ -45,6 +43,8 @@
|
||||
* [mode](#mode)
|
||||
* [ban/mute](#banmute)
|
||||
* [unban/unmute](#unbanunmute)
|
||||
* [checkban](#checkban)
|
||||
* [checkmute](#checkmute)
|
||||
* [invite](#invite)
|
||||
* [kick](#kick)
|
||||
* [Module-management](#module-management)
|
||||
@ -421,7 +421,7 @@ Usages:
|
||||
- `blacklist add <hostmask regex> [channel]`
|
||||
- `blacklist remove <hostmask regex> [channel]`
|
||||
|
||||
### [nicklist](Admin.md#nicklist)
|
||||
### nicklist
|
||||
The `nicklist` command displays information about entries in PBot's internal nicklist.
|
||||
|
||||
Usage: `nicklist (<channel [nick]> | <nick>) [-sort <by>] [-hostmask] [-join]`
|
||||
@ -439,7 +439,7 @@ Examples:
|
||||
<pragma-> nicklist #c pragma-
|
||||
<PBot> Nicklist information for pragma-!~chaos@user/pragmatic-chaos in #c: last spoken 1h ago, etc...
|
||||
|
||||
### [banlist](Admin.md#banlist)
|
||||
### banlist
|
||||
The `banlist` command displays information about entries in PBot's internal banlist. PBot's internal banlist
|
||||
remembers the original setters and timestamps of ban entries when the IRC server forgets them. PBot's internal
|
||||
banlist can store extra metadata such as ban-reasons, ban-timeouts, etc.
|
||||
@ -451,25 +451,6 @@ Example:
|
||||
<pragma-> banlist #c
|
||||
<PBot> Ban list for #c: 1 ban: loser!*@* on Tue Aug 31 06:41:24 2021 PDT (14d15h ago) by candide!~pbot3@about/c/bot/candide for chat-flooding (2h remaining); 0 mutes.
|
||||
|
||||
### [checkban](Admin.md#checkban)
|
||||
The `checkban` command displays information about an entry in PBot's internal banlist. PBot's internal banlist
|
||||
remembers the original setters and timestamps of ban entries when the IRC server forgets them. PBot's internal
|
||||
banlist can store extra metadata such as ban-reasons, ban-timeouts, etc.
|
||||
|
||||
Usage: `checkban <mask> [channel]`
|
||||
|
||||
If the `[channel]` option is omitted, the channel in which the command is invoked will be used.
|
||||
|
||||
Example:
|
||||
|
||||
<pragma-> checkban loser!*@*
|
||||
<PBot> loser!*@* banned in #c on Tue Aug 31 06:41:24 2021 PDT (14d15h ago) by candide!~pbot3@about/c/bot/candide for chat-flooding (2h remaining)
|
||||
|
||||
### [checkmute](Admin.md#checkmute)
|
||||
The `checkmute` command is identical to the [`checkban`](#checkban) command, except for mutes instead of bans.
|
||||
|
||||
Usage: checkban <mask> [channel]
|
||||
|
||||
### op
|
||||
### deop
|
||||
### voice
|
||||
@ -522,6 +503,25 @@ Usages:
|
||||
- `unban <nick or hostmask> [channel]`
|
||||
- `unmute <nick or hostmask> [channel]`
|
||||
|
||||
### checkban
|
||||
The `checkban` command displays information about an entry in PBot's internal banlist. PBot's internal banlist
|
||||
remembers the original setters and timestamps of ban entries when the IRC server forgets them. PBot's internal
|
||||
banlist can store extra metadata such as ban-reasons, ban-timeouts, etc.
|
||||
|
||||
Usage: `checkban <mask> [channel]`
|
||||
|
||||
If the `[channel]` option is omitted, the channel in which the command is invoked will be used.
|
||||
|
||||
Example:
|
||||
|
||||
<pragma-> checkban loser!*@*
|
||||
<PBot> loser!*@* banned in #c on Tue Aug 31 06:41:24 2021 PDT (14d15h ago) by candide!~pbot3@about/c/bot/candide for chat-flooding (2h remaining)
|
||||
|
||||
### checkmute
|
||||
The `checkmute` command is identical to the [`checkban`](#checkban) command, except for mutes instead of bans.
|
||||
|
||||
Usage: checkmute <mask> [channel]
|
||||
|
||||
### invite
|
||||
Invites a user to a channel.
|
||||
|
||||
|
@ -124,10 +124,8 @@
|
||||
* [ignore](Admin.md#ignore)
|
||||
* [unignore](Admin.md#unignore)
|
||||
* [blacklist](Admin.md#blacklist)
|
||||
* [nicklist](Admin.mdAdmin.md#nicklist)
|
||||
* [banlist](Admin.mdAdmin.md#banlist)
|
||||
* [checkban](Admin.mdAdmin.md#checkban)
|
||||
* [checkmute](Admin.mdAdmin.md#checkmute)
|
||||
* [nicklist](Admin.md#nicklist)
|
||||
* [banlist](Admin.md#banlist)
|
||||
* [op](Admin.md#op)
|
||||
* [deop](Admin.md#deop)
|
||||
* [voice](Admin.md#voice)
|
||||
@ -135,6 +133,8 @@
|
||||
* [mode](Admin.md#mode)
|
||||
* [ban/mute](Admin.md#banmute)
|
||||
* [unban/unmute](Admin.md#unbanunmute)
|
||||
* [checkban](Admin.md#checkban)
|
||||
* [checkmute](Admin.md#checkmute)
|
||||
* [invite](Admin.md#invite)
|
||||
* [kick](Admin.md#kick)
|
||||
* [Module-management](Admin.md#module-management)
|
||||
|
Loading…
Reference in New Issue
Block a user