<feed xmlns='http://www.w3.org/2005/Atom'>
<title>bitmask-dev.git/src/leap/bitmask/backend, branch 0.9.0rc1</title>
<subtitle>[bitmask-dev] 
</subtitle>
<link rel='alternate' type='text/html' href='https://leap.se/git/bitmask-dev.git/'/>
<entry>
<title>[feat] replace old log handler with new one</title>
<updated>2015-06-22T18:52:37+00:00</updated>
<author>
<name>Ivan Alejandro</name>
<email>ivanalejandro0@gmail.com</email>
</author>
<published>2015-06-12T17:34:18+00:00</published>
<link rel='alternate' type='text/html' href='https://leap.se/git/bitmask-dev.git/commit/?id=32658ae3108bc67a102cf6e0153d468b3a8ae1b0'/>
<id>32658ae3108bc67a102cf6e0153d468b3a8ae1b0</id>
<content type='text'>
Replace logging.getLogger with custom get_logger.
Remove some unneeded dependencies and reorder other.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Replace logging.getLogger with custom get_logger.
Remove some unneeded dependencies and reorder other.
</pre>
</div>
</content>
</entry>
<entry>
<title>[bug] do not unset soledad proxy object too early</title>
<updated>2015-06-01T15:37:24+00:00</updated>
<author>
<name>drebs</name>
<email>drebs@leap.se</email>
</author>
<published>2015-06-01T15:32:33+00:00</published>
<link rel='alternate' type='text/html' href='https://leap.se/git/bitmask-dev.git/commit/?id=10dd29e09e48ae8c1aab8e38cfcede1d49e190ec'/>
<id>10dd29e09e48ae8c1aab8e38cfcede1d49e190ec</id>
<content type='text'>
The backend was unsetting the soledad proxied object before actually calling
the soledad close() method and this was causing the application to hang when
exitting.

As the local soledad component's cancel_bootstrap() method is called before
the close() method, we'd better not unset the proxied object there, and let
only the close method do it. This commit fixes this by just removing the line
that unsets the proxied object in the wrong place.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
The backend was unsetting the soledad proxied object before actually calling
the soledad close() method and this was causing the application to hang when
exitting.

As the local soledad component's cancel_bootstrap() method is called before
the close() method, we'd better not unset the proxied object there, and let
only the close method do it. This commit fixes this by just removing the line
that unsets the proxied object in the wrong place.
</pre>
</div>
</content>
</entry>
<entry>
<title>[feat] use txzmq in backend</title>
<updated>2015-05-08T19:11:47+00:00</updated>
<author>
<name>drebs</name>
<email>drebs@leap.se</email>
</author>
<published>2015-01-28T18:17:51+00:00</published>
<link rel='alternate' type='text/html' href='https://leap.se/git/bitmask-dev.git/commit/?id=01b005b0642454e3d670089ed7e530eda8e9ef91'/>
<id>01b005b0642454e3d670089ed7e530eda8e9ef91</id>
<content type='text'>
Before this commit, the backend used plain pyzmq bindings for communicating
with the frontend. This implements the txzmq twisted-powered bindings instead.

Closes: #6360
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Before this commit, the backend used plain pyzmq bindings for communicating
with the frontend. This implements the txzmq twisted-powered bindings instead.

Closes: #6360
</pre>
</div>
</content>
</entry>
<entry>
<title>Merge branch 'release/0.8.x' into develop</title>
<updated>2015-03-09T14:38:17+00:00</updated>
<author>
<name>Ivan Alejandro</name>
<email>ivanalejandro0@gmail.com</email>
</author>
<published>2015-03-09T14:38:17+00:00</published>
<link rel='alternate' type='text/html' href='https://leap.se/git/bitmask-dev.git/commit/?id=d67402521a1feb04fa3cf25154ff5704f2fe0bc7'/>
<id>d67402521a1feb04fa3cf25154ff5704f2fe0bc7</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Use unix sockets for the fallback, and set permissions</title>
<updated>2015-02-23T18:34:36+00:00</updated>
<author>
<name>Kali Kaneko</name>
<email>kali@leap.se</email>
</author>
<published>2015-02-23T15:54:16+00:00</published>
<link rel='alternate' type='text/html' href='https://leap.se/git/bitmask-dev.git/commit/?id=e3ddc783ca9fb21105845d275a4b38ad6b2cd3e2'/>
<id>e3ddc783ca9fb21105845d275a4b38ad6b2cd3e2</id>
<content type='text'>
... on them, to user-writeable only.

I think we could consider ipc for the curve-case too, at least for the
platforms that support them.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
... on them, to user-writeable only.

I think we could consider ipc for the curve-case too, at least for the
platforms that support them.
</pre>
</div>
</content>
</entry>
<entry>
<title>Fall back to plain ZMQ if Curve is not available.</title>
<updated>2015-02-20T17:23:05+00:00</updated>
<author>
<name>Ivan Alejandro</name>
<email>ivanalejandro0@gmail.com</email>
</author>
<published>2015-02-19T17:12:15+00:00</published>
<link rel='alternate' type='text/html' href='https://leap.se/git/bitmask-dev.git/commit/?id=00b8cbaa31d48326b36928228269ac14276fd5ee'/>
<id>00b8cbaa31d48326b36928228269ac14276fd5ee</id>
<content type='text'>
Use global flag for ZMQ_HAS_CURVE.
Closes #6646
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Use global flag for ZMQ_HAS_CURVE.
Closes #6646
</pre>
</div>
</content>
</entry>
<entry>
<title>Do the soledad sync the twisted way</title>
<updated>2015-02-18T17:19:03+00:00</updated>
<author>
<name>Ruben Pollan</name>
<email>meskio@sindominio.net</email>
</author>
<published>2015-02-14T23:52:27+00:00</published>
<link rel='alternate' type='text/html' href='https://leap.se/git/bitmask-dev.git/commit/?id=82652e174b4f38a29ce488421eb6c0067d0c657f'/>
<id>82652e174b4f38a29ce488421eb6c0067d0c657f</id>
<content type='text'>
This closes: #6658 and #6691
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
This closes: #6658 and #6691
</pre>
</div>
</content>
</entry>
<entry>
<title>enable --offline mode for email again</title>
<updated>2015-02-13T17:01:45+00:00</updated>
<author>
<name>Kali Kaneko</name>
<email>kali@leap.se</email>
</author>
<published>2015-02-12T03:46:42+00:00</published>
<link rel='alternate' type='text/html' href='https://leap.se/git/bitmask-dev.git/commit/?id=e52f9a239a146c06a0683e47eaf9d53f4deb332b'/>
<id>e52f9a239a146c06a0683e47eaf9d53f4deb332b</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>remove use of threading.Condition</title>
<updated>2015-02-11T18:06:44+00:00</updated>
<author>
<name>Kali Kaneko</name>
<email>kali@leap.se</email>
</author>
<published>2015-01-17T00:03:11+00:00</published>
<link rel='alternate' type='text/html' href='https://leap.se/git/bitmask-dev.git/commit/?id=782fb8d66aabb29d68712e2fc220d967ef8dfcf5'/>
<id>782fb8d66aabb29d68712e2fc220d967ef8dfcf5</id>
<content type='text'>
we should deal with this with pure deferreds
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
we should deal with this with pure deferreds
</pre>
</div>
</content>
</entry>
<entry>
<title>fix mail imports for new mail api (0.4.0)</title>
<updated>2015-02-11T18:06:44+00:00</updated>
<author>
<name>Kali Kaneko</name>
<email>kali@leap.se</email>
</author>
<published>2015-01-16T15:53:29+00:00</published>
<link rel='alternate' type='text/html' href='https://leap.se/git/bitmask-dev.git/commit/?id=39c0419cfa7e74e365c02091fc3cfe455da15404'/>
<id>39c0419cfa7e74e365c02091fc3cfe455da15404</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
</feed>
