Opened 11 years ago

Closed 11 years ago

Last modified 11 years ago

#19734 closed Cleanup/optimization (fixed)

missing values in DATETIME_INPUT_FORMATS docs

Reported by: Stephan Groß Owned by: Simon Charette
Component: Documentation Version: dev
Severity: Normal Keywords:
Cc: Triage Stage: Accepted
Has patch: no Needs documentation: no
Needs tests: no Patch needs improvement: no
Easy pickings: yes UI/UX: no

Description

here 1 are some values missing.

current code:

DATETIME_INPUT_FORMATS = (
    '%Y-%m-%d %H:%M:%S',     # '2006-10-25 14:30:59'
    '%Y-%m-%d %H:%M:%S.%f',  # '2006-10-25 14:30:59.000200'
    '%Y-%m-%d %H:%M',        # '2006-10-25 14:30'
    '%Y-%m-%d',              # '2006-10-25'
    '%m/%d/%Y %H:%M:%S',     # '10/25/2006 14:30:59'
    '%m/%d/%Y %H:%M:%S.%f',  # '10/25/2006 14:30:59.000200'
    '%m/%d/%Y %H:%M',        # '10/25/2006 14:30'
    '%m/%d/%Y',              # '10/25/2006'
    '%m/%d/%y %H:%M:%S',     # '10/25/06 14:30:59'
    '%m/%d/%y %H:%M:%S.%f',  # '10/25/06 14:30:59.000200'
    '%m/%d/%y %H:%M',        # '10/25/06 14:30'
    '%m/%d/%y',              # '10/25/06'
)

current doc:

DATETIME_INPUT_FORMATS = (
    '%Y-%m-%d %H:%M:%S', 
    '%Y-%m-%d %H:%M', 
    '%Y-%m-%d',
    '%m/%d/%Y %H:%M:%S', 
    '%m/%d/%Y %H:%M', 
    '%m/%d/%Y',
    '%m/%d/%y %H:%M:%S', 
    '%m/%d/%y %H:%M', 
    '%m/%d/%y'
)

1: https://docs.djangoproject.com/en/dev/ref/settings/#datetime-input-formats

Change History (5)

comment:1 by Simon Charette, 11 years ago

Owner: changed from nobody to Simon Charette
Status: newassigned
Triage Stage: UnreviewedAccepted

comment:2 by Simon Charette, 11 years ago

Resolution: fixed
Status: assignedclosed

Fixed on master and on 1.5.x

comment:3 by Simon Charette <charette.s@…>, 11 years ago

In f58aae9311ade7a59ca97ec1e5dee7c08ab86f28:

[1.5.x] Fixed #19734 -- Missing values in DATETIME_INPUT_FORMATS doc.

Also changed formating of DATE_INPUT_FORMATS and
TIME_INPUT_FORMATS for readability.

Thanks minddust for the report!

Backport of 5c70299a71 from master.

comment:4 by Simon Charette <charette.s@…>, 11 years ago

In 5c70299a712434c8f1b2156230634913c6a0c813:

Fixed #19734 -- Missing values in DATETIME_INPUT_FORMATS doc.

Also changed formating of DATE_INPUT_FORMATS and
TIME_INPUT_FORMATS for readability.

Thanks minddust for the report!

comment:5 by Simon Charette <charette.s@…>, 11 years ago

In f58aae9311ade7a59ca97ec1e5dee7c08ab86f28:

[1.5.x] Fixed #19734 -- Missing values in DATETIME_INPUT_FORMATS doc.

Also changed formating of DATE_INPUT_FORMATS and
TIME_INPUT_FORMATS for readability.

Thanks minddust for the report!

Backport of 5c70299a71 from master.

Note: See TracTickets for help on using tickets.
Back to Top