aboutsummaryrefslogtreecommitdiffstats
path: root/docs/Irssi/Channel.pm
diff options
context:
space:
mode:
authorTom Feist <shabble@cowu.be>2010-07-16 19:13:02 +0000
committerTom Feist <shabble@cowu.be>2010-07-16 19:13:02 +0000
commitced8aef9e7966a75b43c1d54b7fa06377bad8dff (patch)
treee6d635be017f2d6ddc84bc36d42c7677d3117e9d /docs/Irssi/Channel.pm
parentsignals maybe finished! (diff)
downloadirssi-scripts-ced8aef9e7966a75b43c1d54b7fa06377bad8dff.tar.gz
irssi-scripts-ced8aef9e7966a75b43c1d54b7fa06377bad8dff.zip
renamed everything to .pod since they are not actually perl modules
Diffstat (limited to 'docs/Irssi/Channel.pm')
-rw-r--r--docs/Irssi/Channel.pm79
1 files changed, 0 insertions, 79 deletions
diff --git a/docs/Irssi/Channel.pm b/docs/Irssi/Channel.pm
deleted file mode 100644
index bb6789d..0000000
--- a/docs/Irssi/Channel.pm
+++ /dev/null
@@ -1,79 +0,0 @@
-__END__
-
-=head1 NAME
-
-Irssi::Channel
-
-=head1 FIELDS
-
-Channel->{}
- type - "CHANNEL" text
- chat_type - String ID of chat protocol, for example "IRC"
-
- (..contains all the same data as Windowitem above..)
-
- topic - Channel topic
- topic_by - Nick who set the topic
- topic_time - Timestamp when the topic was set
-
- no_modes - Channel is modeless
- mode - Channel mode
- limit - Max. users in channel (+l mode)
- key - Channel key (password)
-
- chanop - You are channel operator
- names_got - /NAMES list has been received
- wholist - /WHO list has been received
- synced - Channel is fully synchronized
-
- joined - JOIN event for this channel has been received
- left - You just left the channel (for "channel destroyed" event)
- kicked - You was just kicked out of the channel (for
- "channel destroyed" event)
-
-=head1 METHODS
-
-
-
-Server::channels_join(channels, automatic)
- Join to channels in server. `channels' may also contain keys for
- channels just like with /JOIN command. `automatic' specifies if this
- channel was joined "automatically" or if it was joined because join
- was requested by user. If channel join is "automatic", irssi doesn't
- jump to the window where the channel was joined.
-
-
-Channel::destroy()
- Destroy channel.
-
-
-Channel::bans()
- Return a list of bans in channel.
-
-Channel::ban_get_mask(nick)
- Get ban mask for `nick'.
-
-Channel::banlist_add(ban, nick, time)
- Add a new ban to channel.
-
-Channel::banlist_remove(ban)
- Remove a ban from channel.
-
-
-Nick
-Channel::nick_insert(nick, op, voice, send_massjoin)
- Add nick to nicklist.
-
-Channel::nick_remove(nick)
- Remove nick from nicklist.
-
-Nick
-Channel::nick_find(nick)
- Find nick from nicklist.
-
-Nick
-Channel::nick_find_mask(mask)
- Find nick mask from nicklist, wildcards allowed.
-
-Channel::nicks()
- Return a list of all nicks in channel.