Age | Commit message (Collapse) | Author | |
---|---|---|---|
2015-06-09 | pin python-sqlcipher to our version | Christoph Kluenter | |
Problem is, that the debian version is linked against a broken sqlcipher. Our version is statically linked against a version of sqlcipher that comes with python-sqlcipher. See https://github.com/pixelated-project/project-issues/issues/110 | |||
2015-06-08 | Heavy rework on certs, removed most of it, simplified the logic | Bruno Wagner | |
2015-06-08 | Moved initialization, fingerprint and cert inside LeapCertificate class | Bruno Wagner | |
2015-06-08 | Removed which_bootstrap_ca_bundle | Bruno Wagner | |
2015-06-08 | Fixed certificates initialization and removed which_api_bundle | Bruno Wagner | |
2015-06-08 | move leap certs initialization to the certs module | rafael lisboa | |
2015-06-07 | fixes tests for smtp gateway | Victor Shyba | |
2015-06-07 | events server can also run on random port | Victor Shyba | |
With this last change, it is now possible to run more than one user agent on same pc without docker. With a fixed one it would raise port already in use and it is not configurable, making it impossible to run multiple activist UA. | |||
2015-06-07 | smtp with better variable naming and random port | Victor Shyba | |
2015-06-06 | maintenance was broken, arguments parser changed | Victor Shyba | |
2015-06-05 | Moved initialization of leap background jobs to leap init | Bruno Wagner | |
2015-06-05 | Added creation of input mail from python message | Bruno Wagner | |
That way we don't need extra logic for the welcome mail, we just have to read the file and send the contents to the input mail parser and that's it. Also moved the logic of adding a welcome mail to the mailboxes because it has knowledge of mailbox methods anyways. | |||
2015-06-05 | Moved register out of application like maintenance | Bruno Wagner | |
2015-06-05 | if exception variable isnt used, we shouldnt declare it for cleaner code | Victor Shyba | |
2015-06-05 | Moved extensions to their own folder, so support has more meaning | Bruno Wagner | |
2015-06-05 | Refactoring the config, logging_setup is now called logger | Bruno Wagner | |
2015-06-05 | Loading page is now in the resources folder | Bruno Wagner | |
2015-06-04 | [feat] async index writer to avoid locking #404 | Victor Shyba | |
This commit changes index writer to use AsyncWriter. It should avoid locking on our code and speed up things for now. | |||
2015-06-04 | removing unused imports | Victor Shyba | |
2015-06-04 | removing unnecessary extra query | Victor Shyba | |
2015-06-04 | errors undefined. importing it from u1db | Victor Shyba | |
2015-06-04 | Config is not used anymore | Bruno Wagner | |
2015-06-04 | Removed leftover imports after refactorings | Bruno Wagner | |
2015-06-04 | Config dispatcher and config_ua are now in credentials | Bruno Wagner | |
2015-06-04 | remove leftover constants | rafael lisboa | |
2015-06-04 | Initialization is not config, moving it to pixelated.application | Bruno Wagner | |
2015-06-04 | refactor unassigned list comprehension | Victor Shyba | |
2015-06-04 | init_leap_session moved to initialize_leap.py (#406) | rafael lisboa | |
2015-06-04 | don't run remove duplicates, index mails and add welcome email when | rafael lisboa | |
soledad sync finishes (#406) when init_app is executed, the first soledad sync was already done. it doesn't make much sense to register this as an event listener, also because these methods are executed only once. | |||
2015-06-04 | #406 Monkey patched the _sign_request method from soledad client shared_db | Jefferson Stachelski | |
2015-06-04 | remove duplicate nicknym key initialization | rafael lisboa | |
2015-06-04 | remove apparently unneeded extra procedure when reactor stops | rafael lisboa | |
also add comment with more context on why adjustPoolsize is needed. | |||
2015-06-03 | errors not being captured, use errbacks | Victor Shyba | |
2015-06-03 | moving imports, code moved without them | Victor Shyba | |
2015-06-03 | remove unused imports from maintenance | Victor Shyba | |
2015-06-03 | Move reactor logic out of application initialization | rafael lisboa | |
2015-06-03 | fix jshint for interstitial page | rafael lisboa | |
2015-06-03 | Removed unused redirect to ssl and moved reactor listens one place up in the ↵ | Bruno Wagner | |
tree, to remove them from the app in the future | |||
2015-06-03 | Better identing the initialization deferreds | Bruno Wagner | |
2015-06-03 | Creating a leap session is now part of leap init | Bruno Wagner | |
We've moved the init soledad method to the leap_initialization module and gave it a meaningful name, because it was initializing the whole leap session instead of only soledad, because of that we removed some of the uneeded config files and deduplicated some code on maintenance to use the same facilities. Some arguments had non-meaningful variable names and args was being passed everywhere (it was unclear who was using which variables in the args) We changed the initialization to pass those arguments explicitly, then we can factor them out sometime when it makes sense | |||
2015-06-03 | Changed the method used to open a leap session to a meaningful and ↵ | Bruno Wagner | |
non-conflicting name | |||
2015-06-03 | Dispatcher tests were not reflecting the args parser changes | Bruno Wagner | |
2015-06-03 | Argument parser now specifies user agent | Bruno Wagner | |
2015-06-03 | Moved all args parseing to config/args and fixed maintenance after the shifts | Bruno Wagner | |
2015-06-03 | Added config file | Bruno Wagner | |
2015-06-03 | Leap cert was still being imported in initialize leap | Bruno Wagner | |
2015-06-03 | use debian jessie instead of testing on dockerfile | rafael lisboa | |
we were using debian:testing, which apparently was causing "invalid header value" for the SRP token (see https://github.com/pixelated-project/pixelated-dispatcher/issues/102). i'm reverting this back to debian:jessie since that's the version we intend to run the user-agent on for now anyway. | |||
2015-06-03 | Fixed tests after app changes | Bruno Wagner | |
2015-06-03 | Leap certificate initialization and credentials gathering is now done on ↵ | Bruno Wagner | |
initialize_leap | |||
2015-06-02 | Started isolating leap initialization, so we can call it in one place ↵ | Bruno Wagner | |
instead of across all of initialization |