Opened 14 years ago
Closed 13 years ago
#16888 closed Bug (fixed)
USE_L10N and microseconds
| Reported by: | anonymous | Owned by: | Claude Paroz |
|---|---|---|---|
| Component: | Internationalization | Version: | dev |
| Severity: | Normal | Keywords: | |
| Cc: | hv@… | Triage Stage: | Accepted |
| Has patch: | no | Needs documentation: | no |
| Needs tests: | no | Patch needs improvement: | no |
| Easy pickings: | no | UI/UX: | no |
Description
Hello,
I have a problem when I'm using "USE_L10N = True" and "DateTimeField" eg in auth.User model.
I can't save the form, because it contains field "last_login" with the time including microseconds. These are defined in DATETIME_INPUT_FORMATS, but only in global_settings.py, not in the formats directory.
django.conf.global_settings:
DATETIME_INPUT_FORMATS = (
'%Y-%m-%d %H:%M:%S',
'%Y-%m-%d %H:%M:%S.%f', # OKAY
...
}
django.conf.locale.en.formats:
DATETIME_INPUT_FORMATS = (
'%d.%m.%Y %H:%M:%S',
'%d.%m.%Y %H:%M', # '25.10.2006 14:30'
'%d.%m.%Y', # '25.10.2006'
'%Y-%m-%d %H:%M:%S', # '2006-10-25 14:30:59'
'%Y-%m-%d %H:%M', # '2006-10-25 14:30'
'%Y-%m-%d', # '2006-10-25'
)
Here is ".%f" missing.
Now I have my own formats directory, where I add the ".%f" to the locales what needs my application. But I think it's not very elegant solution.
Thank you
Ross
Change History (5)
comment:1 by , 14 years ago
| Triage Stage: | Unreviewed → Accepted |
|---|
comment:2 by , 13 years ago
| Cc: | added |
|---|
comment:3 by , 13 years ago
Django 1.5 will drop support for Python 2.5. This means that the current development version of django can safely use %f to parse microseconds. I think '%Y-%m-%d %H:%M:%S.%f' should be in the DATETIME_INPUT_FORMATS list of every language, since a hidden datetime input field should not loose microseconds.
comment:4 by , 13 years ago
| Owner: | changed from to |
|---|---|
| Status: | new → assigned |
comment:5 by , 13 years ago
| Resolution: | → fixed |
|---|---|
| Status: | assigned → closed |
This problem probably affects most of the 33 locales that define their own
DATETIME_INPUT_FORMATS.Note that
%fonly exists since Python 2.6, but there's a hack indjango.forms.fields.BaseTemporalField.to_pythonto support format strings ending in%f.