Age | Commit message (Collapse) | Author | |
---|---|---|---|
2015-06-11 | [bug] remove extraneous data from events logs | drebs | |
The emission of an event was being logged twice, and the second time was logging the pickled content of the event. This pickled content contained line breaks and other things that caused strange output on the client log. This commit removes the second loggin of the event pickled content. Closes #7130. | |||
2015-06-03 | [bug] allow ipc socket types | Kali Kaneko | |
previous regex wasn't capturing addresses of type ipc://<path> Closes: #7089 | |||
2015-05-28 | [bug] use dict keys to iterate | Victor Shyba | |
We ran into a RuntimeError yesterday on this line, the callback can modify this dict and make the iteration raise an error. Using keys method to iterate is safer. See http://stackoverflow.com/questions/11941817/python-runtimeerror-dictionary-changed-size-during-iteration-how-to-avoid-th/11941855#11941855 | |||
2015-05-27 | [feat] refactor events to use ZMQ | drebs | |
Before this commit, protobuf and protobuf.socketrpc were used to serialize and transmit messages between events clients. This change implements a simpler ZMQ client/server events mechanism that uses ZMQ sockets for transmitting messages from clients to server and to redistribute such messages to subscribed clients. Closes: #6359 | |||
2014-07-04 | Update documentation about events/proto | Ruben Pollan | |
2014-05-02 | Add soledad sync status signals (#5517). | drebs | |
2014-03-18 | Add Soledad invalid auth token event (#5191). | drebs | |
2013-09-09 | Fix events exception raising when ensuring server. Closes #3515. | drebs | |
2013-09-03 | change verbosity level in logging | Kali Kaneko | |
2013-09-03 | cosmetic changes to imports | Kali Kaneko | |
2013-09-03 | Fix Exception use | Kali Kaneko | |
2013-08-19 | Add IMAP_UNREAD_MAIL event | Tomás Touceda | |
2013-08-16 | add new events for imap and keymanager | Kali Kaneko | |
2013-08-15 | Add events for SMTP signaling. | drebs | |
2013-08-15 | Force protobuf version to >=2.4.1. | drebs | |
* Also, generate events_pb2.py file using 2.4.1. | |||
2013-08-14 | Make ensure_server async | Tomás Touceda | |
2013-07-25 | Fix events doc about reqcbk signature. Closes #3261 | drebs | |
2013-07-24 | Add doc and tests about events sync/async behaviour. | drebs | |
* Also fix docstrings identation so sphynx doesn't complain. | |||
2013-07-24 | Trying to init events server raises when given port is not free. | drebs | |
* Also fix and improve some tests. | |||
2013-07-24 | Refactor events so components become clients. | drebs | |
2013-06-13 | Add possibility of unregistering in events mechanism. | drebs | |
2013-05-28 | Merge remote-tracking branch 'kali/bug/allow-absolute-paths2' into develop | Tomás Touceda | |
2013-05-29 | change docstring comments to use sphinx style | Kali Kaneko | |
2013-05-23 | make more compact debug info by truncating strings | Kali Kaneko | |
2013-05-16 | Fix pep8 style. | drebs | |
2013-04-11 | Add compiled proto | Kali Kaneko | |
bumped version | |||
2013-04-11 | Add option to compile services | Kali Kaneko | |
(needed from 2.4.0 onwards, since it defaults to false) | |||
2013-04-11 | add RAISE_WINDOW event | Kali Kaneko | |
2013-04-11 | add debug info about server port | Kali Kaneko | |
2013-04-11 | fix deprecation warnings; add debug info | Kali Kaneko | |
2013-04-08 | Add missing import for socket and forward signal()s paramteres | Tomas Touceda | |
2013-04-01 | Add README and changes file for events mechanism. | drebs | |
2013-04-01 | Add tests for events mechanism. | drebs | |
2013-03-31 | Add events module with basic API. | drebs | |
2013-03-31 | Add support for components in events mechanism. | drebs | |
2013-03-31 | Add a server for events mechanism. | drebs | |
2013-03-31 | Add protobuf definition for events messages and services. | drebs | |