From a1db341a39ec336ab62e89280f9bfb315420bfb5 Mon Sep 17 00:00:00 2001 From: Kali Kaneko Date: Sat, 11 Jan 2014 23:10:09 -0400 Subject: offline mode This will skip: * srp authentication with server * remote soledad configuration * keymanager sending key to server * imap fetches. Its main goal is to help us while debugging imap accounts, by cutting almost all communication with server. It will break havoc if you use it without having local keys configured. So, basically, use with care. --- docs/dev/signals.rst | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 docs/dev/signals.rst (limited to 'docs') diff --git a/docs/dev/signals.rst b/docs/dev/signals.rst new file mode 100644 index 00000000..536a3746 --- /dev/null +++ b/docs/dev/signals.rst @@ -0,0 +1,12 @@ +Startup process +--------------- + +mainwindow._login -> backend.run_provider_setup_checks +[...provider bootstrap...] +self._provider_config_loaded +[...login...] +authentication_finished +_start_eip_bootstrap +_maybe_start_eip +_maybe_run_soledad_setup_checks +soledadbootstrapper -- cgit v1.2.3 From 9c1c3da9a39120d615288c56eee6b54b05ebaf7f Mon Sep 17 00:00:00 2001 From: Ivan Alejandro Date: Wed, 12 Mar 2014 18:00:58 -0300 Subject: Add dependency needed by the latest PyOpenSSL. --- docs/dev/quickstart.rst | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'docs') diff --git a/docs/dev/quickstart.rst b/docs/dev/quickstart.rst index 96dcaeb9..a8be955e 100644 --- a/docs/dev/quickstart.rst +++ b/docs/dev/quickstart.rst @@ -25,8 +25,8 @@ Prerequisites $ sudo apt-get install git python-dev python-setuptools python-virtualenv python-pip python-openssl libsqlite3-dev g++ openvpn - pyside-tools python-pyside - + pyside-tools python-pyside libffi-dev + .. python-qt4 ??? (for translations) .. TODO I'm pretty sure python-qt4 shoudln't be there... Nor libsqlite-dev, that's a bug in python-sqlcipher/soledad. @@ -75,7 +75,7 @@ Running Run ``bitmask_client`` in debug mode:: - (bitmask)$ bitmask --debug + (bitmask)$ bitmask --debug You should see the ``bitmask_client`` window prompting to connect to an existing node or add a new one. If not, something went wrong, maybe ask -- cgit v1.2.3