Mercurial > hg > Feedworm
view backend/couchdb/ListDateTimeField.py @ 205:adf7f617bda9
make the name of the design document configurable via command line switch. When cloning the feedworm db, the design document is no longer the same as the database name
author | dirk |
---|---|
date | Sat, 02 Jun 2012 04:24:49 +0200 |
parents | f0afcd1c5656 |
children | bb3c851b18b1 |
line wrap: on
line source
from couchdb.mapping import Field from datetime import datetime class ListDateTimeField(Field): def _to_python(self, value): if isinstance(value, list): return datetime(*value) return value def _to_json(self, value): if isinstance(value, datetime): return [ value.year, value.month, value.day, value.hour, value.minute, value.second ] return value