Dirkjan Ochtman
Dirkjan Ochtman
_From [daevaorn](https://code.google.com/u/daevaorn/) on June 06, 2011 13:31:08_ `DictField` accepts default value and has default default as empty dict. But if `mapping` parameter is specified user is expecting empty `Mapping` instance...
_From [kxepal](https://code.google.com/u/kxepal/) on May 18, 2011 11:04:31_ What steps will reproduce the problem? 1. Create show function: function(doc, req){ return {json: req} } 1. Try to call it with custom...
_From [daevaorn](https://code.google.com/u/daevaorn/) on March 13, 2011 21:57:38_ Now `Proxy` is subclass of standard list. But this is not necessary. `Proxy` have complete set of methods that implements list interface just...
_From [daevaorn](https://code.google.com/u/daevaorn/) on March 13, 2011 21:00:13_ Python documentation says that `__getslice__` and other `__*slice__` methods are deprecated and classes should use `__*item__` instead. `ListField.Proxy` doesn't respect `slice` objects as...
_From [[email protected]](https://code.google.com/u/115243012174886883987/) on March 03, 2011 18:19:11_ What steps will reproduce the problem? 1. Create a ViewResults object from a view where the values are something that isn't a dict...
_From [[email protected]](https://code.google.com/u/113886470075752902605/) on March 02, 2011 12:51:42_ If pkg_resources is not available the couchdb.**init** modules sets the version string to '?'. We shouldn't rely on pkg_resources for something so important,...
_From [kxepal](https://code.google.com/u/kxepal/) on February 12, 2011 20:58:23_ What steps will reproduce the problem? 1. Imagine that where is some document where DateTime fields are controls document modification timestamp. 2. You...
_From [[email protected]](https://code.google.com/u/104171024793059535812/) on December 30, 2010 20:59:35_ What steps will reproduce the problem? 1. On Mac OS X 10.6.5, install couchpy to default python installation on system, which is 2.6.1...
_From [[email protected]](https://code.google.com/u/115331731415937710448/) on November 22, 2010 18:14:58_ CouchDB supports oauth, this patch add this functionality to python-couchdb. _Original issue: http://code.google.com/p/couchdb-python/issues/detail?id=158_
_From [kxepal](https://code.google.com/u/kxepal/) on August 05, 2010 20:20:18_ Feature discussion and description: http://groups.google.ru/group/couchdb-python/browse_thread/thread/9276b4aad7845bd9?hl=ru Usage example: class Author(Document): name = TextField() class Post(Document): author = DocumentRefField(Author) post = Post() post.author(id='Mike') post.author.name =...