view backend/couchdb/ListDateTimeField.py @ 230:9faa1f84e8c9

display the number of feeds and articles above the table
author Dirk Olmes <dirk@xanthippe.ping.de>
date Thu, 07 Aug 2014 04:46:57 +0200
parents bb3c851b18b1
children e34c53a3e407
line wrap: on
line source

# -*- coding: utf-8 -*-
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