CouchDB property manager¶
Note
This is not production code.
Module Description¶
Implements a property manager based on CouchDB.
http://wiki.apache.org/couchdb/Reference http://packages.python.org/CouchDB/views.html
Usage: add this lines to wsgidav.conf:
from wsgidav.prop_man.couch_property_manager import CouchPropertyManager
prop_man_opts = {}
property_manager = CouchPropertyManager(prop_man_opts)
Valid options are (sample shows defaults):
opts = {"url": "http://localhost:5984/", # CouchDB server
"dbName": "wsgidav-props", # Name of DB to store the properties
}