Irc
Irc copied to clipboard
The Hoa\Irc library.
Address https://github.com/hoaproject/Central/issues/75.
Work on the #25 issue about URL details extraction. This PR must allow the library to extract connection URL details and use it during connection : - Entity name to...
As mentioned in the PR #22, the Irc connection URL can contains a lot of details about the connection that must be done : nickname, password, channel... We need to...
IMHO, you should fire a mention AND a message event and maybe specify when a message is a mentionned message, too.
this can be done by 1. When you connect, note everyone in the channel. 2. then just watch `JOIN`, `PART`, `QUIT`, `KICK`, `NICK` messages and update the list accordingly
For now, the only way to add commands in Client::_run is to extends this method, reparse message and call parent for base message. Please provide a simple way to add...
see http://en.wikipedia.org/wiki/Client-to-client_protocol for a short list, and http://www.irchelp.org/irchelp/rfc/ctcpspec.html for reference. Extended support could include: - [ ] FINGER - Returns the user's full name, and idle time. - [ ]...