src/cm/utils/date.py
author rbernard
Thu, 21 Jan 2010 21:15:20 +0100
changeset 115 3ba2d2da386f
parent 0 40c8f766c9b8
permissions -rw-r--r--
Merge with f0d097bff6b24c351716139ea4cc4c6b91be6612

import time
from django.utils.translation import ugettext as _

#http://docs.python.org/lib/module-time.html
def datetime_to_user_str(dt):
    return dt.strftime(str(_("%Y-%m-%d %H:%M"))) 

#def datetime_to_str(dt):
#    return dt.strftime(CLIENT_DATE_FMT['python_output'])

def datetime_to_epoch(dt):
    return time.mktime(dt.timetuple())

#def datetime_to_js_date_str(dt):
#    print str(1000*mktime(dt.timetuple()))
#    return str(1000*mktime(dt.timetuple()))