Age | Commit message (Collapse) | Author | |
---|---|---|---|
2014-01-04 | Fix a bug when receiving a topic change | Florent Le Coz | |
The number of arguments is not always the same | |||
2014-01-04 | Possibility to change a channel's topic | Florent Le Coz | |
2014-01-04 | Convert received modes into roles and affiliations | Florent Le Coz | |
2014-01-04 | Do not throw an exception when recv returns and error, just close the socket | Florent Le Coz | |
2014-01-04 | Use isupport informations to know the user modes when joining | Florent Le Coz | |
Also remove the duplicate send_self_join methods, user only send_user_join | |||
2014-01-04 | Basic isupport support | Florent Le Coz | |
CHANMODES and PREFIX only | |||
2014-01-04 | Handle nickname conflicts by sending the correct XMPP error presence | Florent Le Coz | |
2014-01-04 | Remove disconnected IrcClients | Florent Le Coz | |
2014-01-04 | Keep a "connected" state in the SocketHandler class | Florent Le Coz | |
2014-01-04 | Be verbose about the connection status, and some errors | Florent Le Coz | |
2014-01-04 | Handle topic changes | Florent Le Coz | |
2014-01-04 | Check that channels are joined before acting on objects in it | Florent Le Coz | |
2014-01-04 | Shutdown cleanly on SIGINT | Florent Le Coz | |
2013-12-24 | Do not mismatch password and hostname in the config error help message | Florent Le Coz | |
2013-12-24 | connect() returns a boolean | Florent Le Coz | |
2013-12-23 | Read a variable number of bytes, 4096 by default | Florent Le Coz | |
2013-12-23 | Correctly send the part message to IRC | Florent Le Coz | |
By fixing a namespace when looking for an XML element containing that message | |||
2013-12-15 | Use XML-sanitized strings when serializing stanzas for the XMPP server | Florent Le Coz | |
2013-12-15 | Functions to provide xml-valid strings | Florent Le Coz | |
By removing invalid chars, see http://www.w3.org/TR/xml/#charsets | |||
2013-12-09 | Lowercase the chan names in two missing cases | Florent Le Coz | |
2013-12-08 | Document the log_file and log_level configuration options | Florent Le Coz | |
2013-12-08 | Document the bare-JID-for-IRC-users feature | Florent Le Coz | |
2013-12-08 | Provide the doc in markdown format | Florent Le Coz | |
The included man page is now generated from this markdown file, using ronn | |||
2013-12-08 | Provide a JID for IRC users, and add a stringprep dependency for this | Florent Le Coz | |
2013-12-08 | Put utils::tolower definition in its own cpp file | Florent Le Coz | |
2013-12-08 | Rewrite the FindIconv module cleanly | Florent Le Coz | |
2013-12-08 | Rewrite the FindCryptopp cmake module cleanly | Florent Le Coz | |
2013-12-08 | Enforce a simple limit of 400 bytes for IRC messages body | Florent Le Coz | |
The limit for the whole message is 512 bytes, we limit the body to 400 (instead of doing a calculation based on the command name and the other parameters), because it's simple, easy and that’s enough. fixes #2416 | |||
2013-12-03 | Display all the MODE arguments in the message | Florent Le Coz | |
2013-12-03 | Use the logger everywhere | Florent Le Coz | |
2013-12-03 | Add a logger class | Florent Le Coz | |
2013-12-03 | Fix a parenthesis ambiguity | Florent Le Coz | |
2013-12-02 | xml-escape the tail in an XmlNode | Florent Le Coz | |
2013-11-28 | :3 | Florent Le Coz | |
2013-11-28 | Channel names are case insensitive | Florent Le Coz | |
But some servers (epiknet for example) send channel names with an uppercase | |||
2013-11-28 | Print some stuff when ./test is running | Florent Le Coz | |
2013-11-28 | Re-add support for /me messages from IRC | Florent Le Coz | |
It was recently removed because it was handled in the old "convert irc colors" code. It now is in the right place. | |||
2013-11-28 | Add some documentation | Florent Le Coz | |
2013-11-28 | Implement IRC format to xhtml-im conversion | Florent Le Coz | |
The generated XML is very verbose because each IRC formatting tag makes us close a <span/> element and reopen it with the new style applied. However, this works quite well and is easy to implement. | |||
2013-11-28 | fsanitize=address requires libasan, that’s a useless dependency. | Florent Le Coz | |
Also we cannot use both this feature and valgrind at the same time. So, I’ll just specify this flag myself when I need it, this doesn’t need to be there by default | |||
2013-11-27 | Remove incomplete implementation of remove_irc_colors | Florent Le Coz | |
2013-11-27 | Set the parent of a node passed to add_child, and return it for conveniance | Florent Le Coz | |
2013-11-21 | TIL override and final | Florent Le Coz | |
2013-11-21 | Send XMPP multi-line messages as multiple IRC messages | Florent Le Coz | |
2013-11-21 | Merge branch 'epolletc' | Florent Le Coz | |
2013-11-21 | Let the user choose the poller to use through cmake POLLER option | Florent Le Coz | |
Use ccmake, or cmake -i, or cmake -DPOLLER=EPOLL, for example | |||
2013-11-21 | Use epoll | Florent Le Coz | |
2013-11-21 | Send the motd as one single big message | Florent Le Coz | |
We append each line to a string, and when the MOTD is complete, we send that string at once. | |||
2013-11-16 | Add a test for xml escape/unescape | Florent Le Coz | |
2013-11-14 | Fix a warning | Florent Le Coz | |