diff --git a/docs/technical/autogen/classes.html b/docs/technical/autogen/classes.html
index c6cdeaa..e639b74 100644
--- a/docs/technical/autogen/classes.html
+++ b/docs/technical/autogen/classes.html
@@ -267,12 +267,34 @@ Data descriptors defined here:
PyLink IRC channel class. |
|
Methods defined here:
-- __init__(self)
- Initialize self. See help(type(self)) for accurate signature.
+- __init__(self, name=None)
- Initialize self. See help(type(self)) for accurate signature.
- __repr__(self)
- Return repr(self).
- deepcopy(self)
- Returns a deep copy of the channel object.
+- getPrefixModes(self, uid, prefixmodes=None)
- Returns a list of all named prefix modes the given user has in the channel.
+
+Optionally, a prefixmodes argument can be given to look at an earlier state of
+the channel's prefix modes mapping, e.g. for checking the op status of a mode
+setter before their modes are processed and added to the channel state.
+
+- isAdmin(self, uid)
- Returns whether the given user is admin (&) in the channel.
+
+- isHalfop(self, uid)
- Returns whether the given user is halfop in the channel.
+
+- isHalfopPlus(self, uid)
- Returns whether the given user is halfop or above in the channel.
+
+- isOp(self, uid)
- Returns whether the given user is op in the channel.
+
+- isOpPlus(self, uid)
- Returns whether the given user is op or above in the channel.
+
+- isOwner(self, uid)
- Returns whether the given user is owner (~) in the channel.
+
+- isVoice(self, uid)
- Returns whether the given user is voice in the channel.
+
+- isVoicePlus(self, uid)
- Returns whether the given user is voice or above in the channel.
+
- removeuser(self, target)
- Removes a user from a channel.
@@ -428,12 +450,13 @@ Data descriptors inherited from builtins.B
Data |
| |
-conf = {'bot': {'nick': 'PyLink', 'realname': 'PyLink Service Client', 'serverdesc': 'PyLink unit tests', 'user': 'pylink'}, 'logging': {'stdout': 'CRITICAL'}, 'servers': defaultdict(<function <lambda> at 0x7f07198fc840>, {})}
+ | conf = {'bot': {'nick': 'PyLink', 'realname': 'PyLink Service Client', 'serverdesc': 'PyLink unit tests', 'user': 'pylink'}, 'logging': {'stdout': 'CRITICAL'}, 'servers': defaultdict(<function <lambda> at 0x7f8f3fcbc9d8>, {})}
confname = 'testconf'
curdir = '/home/gl/pylink'
files = None
log = <logging.RootLogger object>
logdir = '/home/gl/pylink/log'
logformatter = <logging.Formatter object>
+stdout_handler = <logging.StreamHandler object>
stdout_level = 'CRITICAL' |