view backend/couchdb/ListDateTimeField.py @ 208:a2552f1e450e

display the feed's URL on the feed settings dialog
author Dirk Olmes <dirk@xanthippe.ping.de>
date Fri, 01 Jun 2012 17:29:43 +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