Alexander Shorin
Alexander Shorin
Assume I have an URL `URL('http://localhost:5984/base')` and some list of path segments like `['foo', '/bar', 'baz%']`. What's the proper way to join them to url to have`URL(http://localhost:5984/base/foo/%2fbar/baz%25)` as result? So...
From [CORS specification](http://www.w3.org/TR/cors/#resource-requests): > If the resource supports credentials add a single Access-Control-Allow-Origin header, with the value of the Origin header as value, and add a single Access-Control-Allow-Credentials header with...
aiohttp did that long time ago (last supported release is 0.17.4), so we have to do that as well.
Those shouldn't happen and need the tests to ensure that they never will.
Currently, test suite is quite a overly complicated. It has two mode to run: "mock" and "couchdb". For the "mock" it mocks (obliviously!) HTTP request method and only test logic...
While it's not released yet, as experimental feature it would be nice to have for testing purposes.
This is reimplementation of couch_replicator. Currently all the work is located in feature/replicator branch. Need to finish it and merge.
appmetrics works perfectly without need to depend on ipython, werkzeug and the other libs. Also, since Python 3.3 mock is available in stdlib what makes dependency on external mock package...
It would be nice to install couch_normalizer as plugin for CouchDB. Related links: - [COUCHDB-1867](https://issues.apache.org/jira/browse/COUCHDB-1867) - [1867-feature-plugins branch](https://github.com/apache/couchdb/tree/1867-feature-plugins/src/couch_plugins) - [Demo plugin example](https://github.com/janl/my-first-couchdb-plugin)