factor/extra/irc/client/chats/chats-docs.factor

23 lines
885 B
Factor
Raw Normal View History

! Copyright (C) 2009 Bruno Deferrari
! See http://factorcode.org/license.txt for BSD license.
2009-04-08 23:04:42 -04:00
USING: help.markup help.syntax quotations kernel ;
IN: irc.client.chats
HELP: irc-client "IRC Client object" ;
HELP: irc-server-chat "Chat for server messages unmanaged by other chats" ;
HELP: irc-channel-chat "Chat for irc channels" ;
HELP: irc-nick-chat "Chat for irc users" ;
HELP: irc-profile "IRC Client profile object" ;
HELP: irc-chat-end "Message sent to a chat when it has been detached from the client, the chat should stop after it receives this message." ;
2009-04-12 15:52:24 -04:00
HELP: irc-end "Message sent when the client isn't running anymore, the chat should stop after it receives this message." ;
2009-04-08 23:04:42 -04:00
HELP: irc-disconnected "Message sent to notify chats that connection was lost." ;
HELP: irc-connected "Message sent to notify chats that a connection with the irc server was established." ;