[2.1.x] Refs #29784 -- Switched to https:// links where available.

Backport of 82f286cf6f from master.
This commit is contained in:
Jon Dufresne 2018-09-25 23:48:47 -07:00 committed by Tim Graham
parent ec0803b1be
commit 6cb5285f29
130 changed files with 238 additions and 238 deletions

View File

@ -1,4 +1,4 @@
# http://editorconfig.org # https://editorconfig.org/
root = true root = true

View File

@ -319,39 +319,39 @@ FILE_UPLOAD_DIRECTORY_PERMISSIONS = None
FORMAT_MODULE_PATH = None FORMAT_MODULE_PATH = None
# Default formatting for date objects. See all available format strings here: # Default formatting for date objects. See all available format strings here:
# http://docs.djangoproject.com/en/dev/ref/templates/builtins/#date # https://docs.djangoproject.com/en/dev/ref/templates/builtins/#date
DATE_FORMAT = 'N j, Y' DATE_FORMAT = 'N j, Y'
# Default formatting for datetime objects. See all available format strings here: # Default formatting for datetime objects. See all available format strings here:
# http://docs.djangoproject.com/en/dev/ref/templates/builtins/#date # https://docs.djangoproject.com/en/dev/ref/templates/builtins/#date
DATETIME_FORMAT = 'N j, Y, P' DATETIME_FORMAT = 'N j, Y, P'
# Default formatting for time objects. See all available format strings here: # Default formatting for time objects. See all available format strings here:
# http://docs.djangoproject.com/en/dev/ref/templates/builtins/#date # https://docs.djangoproject.com/en/dev/ref/templates/builtins/#date
TIME_FORMAT = 'P' TIME_FORMAT = 'P'
# Default formatting for date objects when only the year and month are relevant. # Default formatting for date objects when only the year and month are relevant.
# See all available format strings here: # See all available format strings here:
# http://docs.djangoproject.com/en/dev/ref/templates/builtins/#date # https://docs.djangoproject.com/en/dev/ref/templates/builtins/#date
YEAR_MONTH_FORMAT = 'F Y' YEAR_MONTH_FORMAT = 'F Y'
# Default formatting for date objects when only the month and day are relevant. # Default formatting for date objects when only the month and day are relevant.
# See all available format strings here: # See all available format strings here:
# http://docs.djangoproject.com/en/dev/ref/templates/builtins/#date # https://docs.djangoproject.com/en/dev/ref/templates/builtins/#date
MONTH_DAY_FORMAT = 'F j' MONTH_DAY_FORMAT = 'F j'
# Default short formatting for date objects. See all available format strings here: # Default short formatting for date objects. See all available format strings here:
# http://docs.djangoproject.com/en/dev/ref/templates/builtins/#date # https://docs.djangoproject.com/en/dev/ref/templates/builtins/#date
SHORT_DATE_FORMAT = 'm/d/Y' SHORT_DATE_FORMAT = 'm/d/Y'
# Default short formatting for datetime objects. # Default short formatting for datetime objects.
# See all available format strings here: # See all available format strings here:
# http://docs.djangoproject.com/en/dev/ref/templates/builtins/#date # https://docs.djangoproject.com/en/dev/ref/templates/builtins/#date
SHORT_DATETIME_FORMAT = 'm/d/Y P' SHORT_DATETIME_FORMAT = 'm/d/Y P'
# Default formats to be used when parsing dates from input boxes, in order # Default formats to be used when parsing dates from input boxes, in order
# See all available format string here: # See all available format string here:
# http://docs.python.org/library/datetime.html#strftime-behavior # https://docs.python.org/library/datetime.html#strftime-behavior
# * Note that these format strings are different from the ones to display dates # * Note that these format strings are different from the ones to display dates
DATE_INPUT_FORMATS = [ DATE_INPUT_FORMATS = [
'%Y-%m-%d', '%m/%d/%Y', '%m/%d/%y', # '2006-10-25', '10/25/2006', '10/25/06' '%Y-%m-%d', '%m/%d/%Y', '%m/%d/%y', # '2006-10-25', '10/25/2006', '10/25/06'
@ -363,7 +363,7 @@ DATE_INPUT_FORMATS = [
# Default formats to be used when parsing times from input boxes, in order # Default formats to be used when parsing times from input boxes, in order
# See all available format string here: # See all available format string here:
# http://docs.python.org/library/datetime.html#strftime-behavior # https://docs.python.org/library/datetime.html#strftime-behavior
# * Note that these format strings are different from the ones to display dates # * Note that these format strings are different from the ones to display dates
TIME_INPUT_FORMATS = [ TIME_INPUT_FORMATS = [
'%H:%M:%S', # '14:30:59' '%H:%M:%S', # '14:30:59'
@ -374,7 +374,7 @@ TIME_INPUT_FORMATS = [
# Default formats to be used when parsing dates and times from input boxes, # Default formats to be used when parsing dates and times from input boxes,
# in order # in order
# See all available format string here: # See all available format string here:
# http://docs.python.org/library/datetime.html#strftime-behavior # https://docs.python.org/library/datetime.html#strftime-behavior
# * Note that these format strings are different from the ones to display dates # * Note that these format strings are different from the ones to display dates
DATETIME_INPUT_FORMATS = [ DATETIME_INPUT_FORMATS = [
'%Y-%m-%d %H:%M:%S', # '2006-10-25 14:30:59' '%Y-%m-%d %H:%M:%S', # '2006-10-25 14:30:59'

View File

@ -1,7 +1,7 @@
# This file is distributed under the same license as the Django package. # This file is distributed under the same license as the Django package.
# #
# The *_FORMAT strings use the Django date format syntax, # The *_FORMAT strings use the Django date format syntax,
# see http://docs.djangoproject.com/en/dev/ref/templates/builtins/#date # see https://docs.djangoproject.com/en/dev/ref/templates/builtins/#date
DATE_FORMAT = 'j F، Y' DATE_FORMAT = 'j F، Y'
TIME_FORMAT = 'g:i A' TIME_FORMAT = 'g:i A'
# DATETIME_FORMAT = # DATETIME_FORMAT =
@ -12,7 +12,7 @@ SHORT_DATE_FORMAT = 'd/m/Y'
# FIRST_DAY_OF_WEEK = # FIRST_DAY_OF_WEEK =
# The *_INPUT_FORMATS strings use the Python strftime format syntax, # The *_INPUT_FORMATS strings use the Python strftime format syntax,
# see http://docs.python.org/library/datetime.html#strftime-strptime-behavior # see https://docs.python.org/library/datetime.html#strftime-strptime-behavior
# DATE_INPUT_FORMATS = # DATE_INPUT_FORMATS =
# TIME_INPUT_FORMATS = # TIME_INPUT_FORMATS =
# DATETIME_INPUT_FORMATS = # DATETIME_INPUT_FORMATS =

View File

@ -1,7 +1,7 @@
# This file is distributed under the same license as the Django package. # This file is distributed under the same license as the Django package.
# #
# The *_FORMAT strings use the Django date format syntax, # The *_FORMAT strings use the Django date format syntax,
# see http://docs.djangoproject.com/en/dev/ref/templates/builtins/#date # see https://docs.djangoproject.com/en/dev/ref/templates/builtins/#date
DATE_FORMAT = 'j E Y' DATE_FORMAT = 'j E Y'
TIME_FORMAT = 'G:i' TIME_FORMAT = 'G:i'
DATETIME_FORMAT = 'j E Y, G:i' DATETIME_FORMAT = 'j E Y, G:i'
@ -12,7 +12,7 @@ SHORT_DATETIME_FORMAT = 'd.m.Y H:i'
FIRST_DAY_OF_WEEK = 1 # Monday FIRST_DAY_OF_WEEK = 1 # Monday
# The *_INPUT_FORMATS strings use the Python strftime format syntax, # The *_INPUT_FORMATS strings use the Python strftime format syntax,
# see http://docs.python.org/library/datetime.html#strftime-strptime-behavior # see https://docs.python.org/library/datetime.html#strftime-strptime-behavior
DATE_INPUT_FORMATS = [ DATE_INPUT_FORMATS = [
'%d.%m.%Y', # '25.10.2006' '%d.%m.%Y', # '25.10.2006'
'%d.%m.%y', # '25.10.06' '%d.%m.%y', # '25.10.06'

View File

@ -1,7 +1,7 @@
# This file is distributed under the same license as the Django package. # This file is distributed under the same license as the Django package.
# #
# The *_FORMAT strings use the Django date format syntax, # The *_FORMAT strings use the Django date format syntax,
# see http://docs.djangoproject.com/en/dev/ref/templates/builtins/#date # see https://docs.djangoproject.com/en/dev/ref/templates/builtins/#date
DATE_FORMAT = 'd F Y' DATE_FORMAT = 'd F Y'
TIME_FORMAT = 'H:i' TIME_FORMAT = 'H:i'
# DATETIME_FORMAT = # DATETIME_FORMAT =
@ -12,7 +12,7 @@ SHORT_DATE_FORMAT = 'd.m.Y'
# FIRST_DAY_OF_WEEK = # FIRST_DAY_OF_WEEK =
# The *_INPUT_FORMATS strings use the Python strftime format syntax, # The *_INPUT_FORMATS strings use the Python strftime format syntax,
# see http://docs.python.org/library/datetime.html#strftime-strptime-behavior # see https://docs.python.org/library/datetime.html#strftime-strptime-behavior
# DATE_INPUT_FORMATS = # DATE_INPUT_FORMATS =
# TIME_INPUT_FORMATS = # TIME_INPUT_FORMATS =
# DATETIME_INPUT_FORMATS = # DATETIME_INPUT_FORMATS =

View File

@ -1,7 +1,7 @@
# This file is distributed under the same license as the Django package. # This file is distributed under the same license as the Django package.
# #
# The *_FORMAT strings use the Django date format syntax, # The *_FORMAT strings use the Django date format syntax,
# see http://docs.djangoproject.com/en/dev/ref/templates/builtins/#date # see https://docs.djangoproject.com/en/dev/ref/templates/builtins/#date
DATE_FORMAT = 'j F, Y' DATE_FORMAT = 'j F, Y'
TIME_FORMAT = 'g:i A' TIME_FORMAT = 'g:i A'
# DATETIME_FORMAT = # DATETIME_FORMAT =
@ -12,7 +12,7 @@ SHORT_DATE_FORMAT = 'j M, Y'
FIRST_DAY_OF_WEEK = 6 # Saturday FIRST_DAY_OF_WEEK = 6 # Saturday
# The *_INPUT_FORMATS strings use the Python strftime format syntax, # The *_INPUT_FORMATS strings use the Python strftime format syntax,
# see http://docs.python.org/library/datetime.html#strftime-strptime-behavior # see https://docs.python.org/library/datetime.html#strftime-strptime-behavior
DATE_INPUT_FORMATS = [ DATE_INPUT_FORMATS = [
'%d/%m/%Y', # 25/10/2016 '%d/%m/%Y', # 25/10/2016
'%d/%m/%y', # 25/10/16 '%d/%m/%y', # 25/10/16

View File

@ -1,7 +1,7 @@
# This file is distributed under the same license as the Django package. # This file is distributed under the same license as the Django package.
# #
# The *_FORMAT strings use the Django date format syntax, # The *_FORMAT strings use the Django date format syntax,
# see http://docs.djangoproject.com/en/dev/ref/templates/builtins/#date # see https://docs.djangoproject.com/en/dev/ref/templates/builtins/#date
DATE_FORMAT = 'j. N Y.' DATE_FORMAT = 'j. N Y.'
TIME_FORMAT = 'G:i' TIME_FORMAT = 'G:i'
DATETIME_FORMAT = 'j. N. Y. G:i T' DATETIME_FORMAT = 'j. N. Y. G:i T'
@ -12,7 +12,7 @@ SHORT_DATE_FORMAT = 'Y M j'
# FIRST_DAY_OF_WEEK = # FIRST_DAY_OF_WEEK =
# The *_INPUT_FORMATS strings use the Python strftime format syntax, # The *_INPUT_FORMATS strings use the Python strftime format syntax,
# see http://docs.python.org/library/datetime.html#strftime-strptime-behavior # see https://docs.python.org/library/datetime.html#strftime-strptime-behavior
# DATE_INPUT_FORMATS = # DATE_INPUT_FORMATS =
# TIME_INPUT_FORMATS = # TIME_INPUT_FORMATS =
# DATETIME_INPUT_FORMATS = # DATETIME_INPUT_FORMATS =

View File

@ -1,7 +1,7 @@
# This file is distributed under the same license as the Django package. # This file is distributed under the same license as the Django package.
# #
# The *_FORMAT strings use the Django date format syntax, # The *_FORMAT strings use the Django date format syntax,
# see http://docs.djangoproject.com/en/dev/ref/templates/builtins/#date # see https://docs.djangoproject.com/en/dev/ref/templates/builtins/#date
DATE_FORMAT = r'j \d\e F \d\e Y' DATE_FORMAT = r'j \d\e F \d\e Y'
TIME_FORMAT = 'G:i' TIME_FORMAT = 'G:i'
DATETIME_FORMAT = r'j \d\e F \d\e Y \a \l\e\s G:i' DATETIME_FORMAT = r'j \d\e F \d\e Y \a \l\e\s G:i'
@ -12,7 +12,7 @@ SHORT_DATETIME_FORMAT = 'd/m/Y G:i'
FIRST_DAY_OF_WEEK = 1 # Monday FIRST_DAY_OF_WEEK = 1 # Monday
# The *_INPUT_FORMATS strings use the Python strftime format syntax, # The *_INPUT_FORMATS strings use the Python strftime format syntax,
# see http://docs.python.org/library/datetime.html#strftime-strptime-behavior # see https://docs.python.org/library/datetime.html#strftime-strptime-behavior
DATE_INPUT_FORMATS = [ DATE_INPUT_FORMATS = [
# '31/12/2009', '31/12/09' # '31/12/2009', '31/12/09'
'%d/%m/%Y', '%d/%m/%y' '%d/%m/%Y', '%d/%m/%y'

View File

@ -1,7 +1,7 @@
# This file is distributed under the same license as the Django package. # This file is distributed under the same license as the Django package.
# #
# The *_FORMAT strings use the Django date format syntax, # The *_FORMAT strings use the Django date format syntax,
# see http://docs.djangoproject.com/en/dev/ref/templates/builtins/#date # see https://docs.djangoproject.com/en/dev/ref/templates/builtins/#date
DATE_FORMAT = 'j. E Y' DATE_FORMAT = 'j. E Y'
TIME_FORMAT = 'G:i' TIME_FORMAT = 'G:i'
DATETIME_FORMAT = 'j. E Y G:i' DATETIME_FORMAT = 'j. E Y G:i'
@ -12,7 +12,7 @@ SHORT_DATETIME_FORMAT = 'd.m.Y G:i'
FIRST_DAY_OF_WEEK = 1 # Monday FIRST_DAY_OF_WEEK = 1 # Monday
# The *_INPUT_FORMATS strings use the Python strftime format syntax, # The *_INPUT_FORMATS strings use the Python strftime format syntax,
# see http://docs.python.org/library/datetime.html#strftime-strptime-behavior # see https://docs.python.org/library/datetime.html#strftime-strptime-behavior
DATE_INPUT_FORMATS = [ DATE_INPUT_FORMATS = [
'%d.%m.%Y', '%d.%m.%y', # '05.01.2006', '05.01.06' '%d.%m.%Y', '%d.%m.%y', # '05.01.2006', '05.01.06'
'%d. %m. %Y', '%d. %m. %y', # '5. 1. 2006', '5. 1. 06' '%d. %m. %Y', '%d. %m. %y', # '5. 1. 2006', '5. 1. 06'

View File

@ -1,7 +1,7 @@
# This file is distributed under the same license as the Django package. # This file is distributed under the same license as the Django package.
# #
# The *_FORMAT strings use the Django date format syntax, # The *_FORMAT strings use the Django date format syntax,
# see http://docs.djangoproject.com/en/dev/ref/templates/builtins/#date # see https://docs.djangoproject.com/en/dev/ref/templates/builtins/#date
DATE_FORMAT = 'j F Y' # '25 Hydref 2006' DATE_FORMAT = 'j F Y' # '25 Hydref 2006'
TIME_FORMAT = 'P' # '2:30 y.b.' TIME_FORMAT = 'P' # '2:30 y.b.'
DATETIME_FORMAT = 'j F Y, P' # '25 Hydref 2006, 2:30 y.b.' DATETIME_FORMAT = 'j F Y, P' # '25 Hydref 2006, 2:30 y.b.'
@ -12,7 +12,7 @@ SHORT_DATETIME_FORMAT = 'd/m/Y P' # '25/10/2006 2:30 y.b.'
FIRST_DAY_OF_WEEK = 1 # 'Dydd Llun' FIRST_DAY_OF_WEEK = 1 # 'Dydd Llun'
# The *_INPUT_FORMATS strings use the Python strftime format syntax, # The *_INPUT_FORMATS strings use the Python strftime format syntax,
# see http://docs.python.org/library/datetime.html#strftime-strptime-behavior # see https://docs.python.org/library/datetime.html#strftime-strptime-behavior
DATE_INPUT_FORMATS = [ DATE_INPUT_FORMATS = [
'%d/%m/%Y', '%d/%m/%y', # '25/10/2006', '25/10/06' '%d/%m/%Y', '%d/%m/%y', # '25/10/2006', '25/10/06'
] ]

View File

@ -1,7 +1,7 @@
# This file is distributed under the same license as the Django package. # This file is distributed under the same license as the Django package.
# #
# The *_FORMAT strings use the Django date format syntax, # The *_FORMAT strings use the Django date format syntax,
# see http://docs.djangoproject.com/en/dev/ref/templates/builtins/#date # see https://docs.djangoproject.com/en/dev/ref/templates/builtins/#date
DATE_FORMAT = 'j. F Y' DATE_FORMAT = 'j. F Y'
TIME_FORMAT = 'H:i' TIME_FORMAT = 'H:i'
DATETIME_FORMAT = 'j. F Y H:i' DATETIME_FORMAT = 'j. F Y H:i'
@ -12,7 +12,7 @@ SHORT_DATETIME_FORMAT = 'd.m.Y H:i'
FIRST_DAY_OF_WEEK = 1 FIRST_DAY_OF_WEEK = 1
# The *_INPUT_FORMATS strings use the Python strftime format syntax, # The *_INPUT_FORMATS strings use the Python strftime format syntax,
# see http://docs.python.org/library/datetime.html#strftime-strptime-behavior # see https://docs.python.org/library/datetime.html#strftime-strptime-behavior
DATE_INPUT_FORMATS = [ DATE_INPUT_FORMATS = [
'%d.%m.%Y', # '25.10.2006' '%d.%m.%Y', # '25.10.2006'
] ]

View File

@ -1,7 +1,7 @@
# This file is distributed under the same license as the Django package. # This file is distributed under the same license as the Django package.
# #
# The *_FORMAT strings use the Django date format syntax, # The *_FORMAT strings use the Django date format syntax,
# see http://docs.djangoproject.com/en/dev/ref/templates/builtins/#date # see https://docs.djangoproject.com/en/dev/ref/templates/builtins/#date
DATE_FORMAT = 'j. F Y' DATE_FORMAT = 'j. F Y'
TIME_FORMAT = 'H:i' TIME_FORMAT = 'H:i'
DATETIME_FORMAT = 'j. F Y H:i' DATETIME_FORMAT = 'j. F Y H:i'
@ -12,7 +12,7 @@ SHORT_DATETIME_FORMAT = 'd.m.Y H:i'
FIRST_DAY_OF_WEEK = 1 # Monday FIRST_DAY_OF_WEEK = 1 # Monday
# The *_INPUT_FORMATS strings use the Python strftime format syntax, # The *_INPUT_FORMATS strings use the Python strftime format syntax,
# see http://docs.python.org/library/datetime.html#strftime-strptime-behavior # see https://docs.python.org/library/datetime.html#strftime-strptime-behavior
DATE_INPUT_FORMATS = [ DATE_INPUT_FORMATS = [
'%d.%m.%Y', '%d.%m.%y', # '25.10.2006', '25.10.06' '%d.%m.%Y', '%d.%m.%y', # '25.10.2006', '25.10.06'
# '%d. %B %Y', '%d. %b. %Y', # '25. October 2006', '25. Oct. 2006' # '%d. %B %Y', '%d. %b. %Y', # '25. October 2006', '25. Oct. 2006'

View File

@ -1,7 +1,7 @@
# This file is distributed under the same license as the Django package. # This file is distributed under the same license as the Django package.
# #
# The *_FORMAT strings use the Django date format syntax, # The *_FORMAT strings use the Django date format syntax,
# see http://docs.djangoproject.com/en/dev/ref/templates/builtins/#date # see https://docs.djangoproject.com/en/dev/ref/templates/builtins/#date
DATE_FORMAT = 'j. F Y' DATE_FORMAT = 'j. F Y'
TIME_FORMAT = 'H:i' TIME_FORMAT = 'H:i'
DATETIME_FORMAT = 'j. F Y H:i' DATETIME_FORMAT = 'j. F Y H:i'
@ -12,7 +12,7 @@ SHORT_DATETIME_FORMAT = 'd.m.Y H:i'
FIRST_DAY_OF_WEEK = 1 # Monday FIRST_DAY_OF_WEEK = 1 # Monday
# The *_INPUT_FORMATS strings use the Python strftime format syntax, # The *_INPUT_FORMATS strings use the Python strftime format syntax,
# see http://docs.python.org/library/datetime.html#strftime-strptime-behavior # see https://docs.python.org/library/datetime.html#strftime-strptime-behavior
DATE_INPUT_FORMATS = [ DATE_INPUT_FORMATS = [
'%d.%m.%Y', '%d.%m.%y', # '25.10.2006', '25.10.06' '%d.%m.%Y', '%d.%m.%y', # '25.10.2006', '25.10.06'
# '%d. %B %Y', '%d. %b. %Y', # '25. October 2006', '25. Oct. 2006' # '%d. %B %Y', '%d. %b. %Y', # '25. October 2006', '25. Oct. 2006'

View File

@ -1,7 +1,7 @@
# This file is distributed under the same license as the Django package. # This file is distributed under the same license as the Django package.
# #
# The *_FORMAT strings use the Django date format syntax, # The *_FORMAT strings use the Django date format syntax,
# see http://docs.djangoproject.com/en/dev/ref/templates/builtins/#date # see https://docs.djangoproject.com/en/dev/ref/templates/builtins/#date
DATE_FORMAT = 'd/m/Y' DATE_FORMAT = 'd/m/Y'
TIME_FORMAT = 'P' TIME_FORMAT = 'P'
DATETIME_FORMAT = 'd/m/Y P' DATETIME_FORMAT = 'd/m/Y P'
@ -12,7 +12,7 @@ SHORT_DATETIME_FORMAT = 'd/m/Y P'
FIRST_DAY_OF_WEEK = 0 # Sunday FIRST_DAY_OF_WEEK = 0 # Sunday
# The *_INPUT_FORMATS strings use the Python strftime format syntax, # The *_INPUT_FORMATS strings use the Python strftime format syntax,
# see http://docs.python.org/library/datetime.html#strftime-strptime-behavior # see https://docs.python.org/library/datetime.html#strftime-strptime-behavior
DATE_INPUT_FORMATS = [ DATE_INPUT_FORMATS = [
'%d/%m/%Y', '%d/%m/%y', '%Y-%m-%d', # '25/10/2006', '25/10/06', '2006-10-25', '%d/%m/%Y', '%d/%m/%y', '%Y-%m-%d', # '25/10/2006', '25/10/06', '2006-10-25',
] ]

View File

@ -1,7 +1,7 @@
# This file is distributed under the same license as the Django package. # This file is distributed under the same license as the Django package.
# #
# The *_FORMAT strings use the Django date format syntax, # The *_FORMAT strings use the Django date format syntax,
# see http://docs.djangoproject.com/en/dev/ref/templates/builtins/#date # see https://docs.djangoproject.com/en/dev/ref/templates/builtins/#date
DATE_FORMAT = 'N j, Y' DATE_FORMAT = 'N j, Y'
TIME_FORMAT = 'P' TIME_FORMAT = 'P'
DATETIME_FORMAT = 'N j, Y, P' DATETIME_FORMAT = 'N j, Y, P'
@ -12,7 +12,7 @@ SHORT_DATETIME_FORMAT = 'm/d/Y P'
FIRST_DAY_OF_WEEK = 0 # Sunday FIRST_DAY_OF_WEEK = 0 # Sunday
# The *_INPUT_FORMATS strings use the Python strftime format syntax, # The *_INPUT_FORMATS strings use the Python strftime format syntax,
# see http://docs.python.org/library/datetime.html#strftime-strptime-behavior # see https://docs.python.org/library/datetime.html#strftime-strptime-behavior
# Kept ISO formats as they are in first position # Kept ISO formats as they are in first position
DATE_INPUT_FORMATS = [ DATE_INPUT_FORMATS = [
'%Y-%m-%d', '%m/%d/%Y', '%m/%d/%y', # '2006-10-25', '10/25/2006', '10/25/06' '%Y-%m-%d', '%m/%d/%Y', '%m/%d/%y', # '2006-10-25', '10/25/2006', '10/25/06'

View File

@ -1,7 +1,7 @@
# This file is distributed under the same license as the Django package. # This file is distributed under the same license as the Django package.
# #
# The *_FORMAT strings use the Django date format syntax, # The *_FORMAT strings use the Django date format syntax,
# see http://docs.djangoproject.com/en/dev/ref/templates/builtins/#date # see https://docs.djangoproject.com/en/dev/ref/templates/builtins/#date
DATE_FORMAT = 'j M Y' # '25 Oct 2006' DATE_FORMAT = 'j M Y' # '25 Oct 2006'
TIME_FORMAT = 'P' # '2:30 p.m.' TIME_FORMAT = 'P' # '2:30 p.m.'
DATETIME_FORMAT = 'j M Y, P' # '25 Oct 2006, 2:30 p.m.' DATETIME_FORMAT = 'j M Y, P' # '25 Oct 2006, 2:30 p.m.'
@ -12,7 +12,7 @@ SHORT_DATETIME_FORMAT = 'd/m/Y P' # '25/10/2006 2:30 p.m.'
FIRST_DAY_OF_WEEK = 0 # Sunday FIRST_DAY_OF_WEEK = 0 # Sunday
# The *_INPUT_FORMATS strings use the Python strftime format syntax, # The *_INPUT_FORMATS strings use the Python strftime format syntax,
# see http://docs.python.org/library/datetime.html#strftime-strptime-behavior # see https://docs.python.org/library/datetime.html#strftime-strptime-behavior
DATE_INPUT_FORMATS = [ DATE_INPUT_FORMATS = [
'%d/%m/%Y', '%d/%m/%y', # '25/10/2006', '25/10/06' '%d/%m/%Y', '%d/%m/%y', # '25/10/2006', '25/10/06'
# '%b %d %Y', '%b %d, %Y', # 'Oct 25 2006', 'Oct 25, 2006' # '%b %d %Y', '%b %d, %Y', # 'Oct 25 2006', 'Oct 25, 2006'

View File

@ -1,7 +1,7 @@
# This file is distributed under the same license as the Django package. # This file is distributed under the same license as the Django package.
# #
# The *_FORMAT strings use the Django date format syntax, # The *_FORMAT strings use the Django date format syntax,
# see http://docs.djangoproject.com/en/dev/ref/templates/builtins/#date # see https://docs.djangoproject.com/en/dev/ref/templates/builtins/#date
DATE_FORMAT = 'j M Y' # '25 Oct 2006' DATE_FORMAT = 'j M Y' # '25 Oct 2006'
TIME_FORMAT = 'P' # '2:30 p.m.' TIME_FORMAT = 'P' # '2:30 p.m.'
DATETIME_FORMAT = 'j M Y, P' # '25 Oct 2006, 2:30 p.m.' DATETIME_FORMAT = 'j M Y, P' # '25 Oct 2006, 2:30 p.m.'
@ -12,7 +12,7 @@ SHORT_DATETIME_FORMAT = 'd/m/Y P' # '25/10/2006 2:30 p.m.'
FIRST_DAY_OF_WEEK = 1 # Monday FIRST_DAY_OF_WEEK = 1 # Monday
# The *_INPUT_FORMATS strings use the Python strftime format syntax, # The *_INPUT_FORMATS strings use the Python strftime format syntax,
# see http://docs.python.org/library/datetime.html#strftime-strptime-behavior # see https://docs.python.org/library/datetime.html#strftime-strptime-behavior
DATE_INPUT_FORMATS = [ DATE_INPUT_FORMATS = [
'%d/%m/%Y', '%d/%m/%y', # '25/10/2006', '25/10/06' '%d/%m/%Y', '%d/%m/%y', # '25/10/2006', '25/10/06'
# '%b %d %Y', '%b %d, %Y', # 'Oct 25 2006', 'Oct 25, 2006' # '%b %d %Y', '%b %d, %Y', # 'Oct 25 2006', 'Oct 25, 2006'

View File

@ -1,7 +1,7 @@
# This file is distributed under the same license as the Django package. # This file is distributed under the same license as the Django package.
# #
# The *_FORMAT strings use the Django date format syntax, # The *_FORMAT strings use the Django date format syntax,
# see http://docs.djangoproject.com/en/dev/ref/templates/builtins/#date # see https://docs.djangoproject.com/en/dev/ref/templates/builtins/#date
DATE_FORMAT = r'j\-\a \d\e F Y' # '26-a de julio 1887' DATE_FORMAT = r'j\-\a \d\e F Y' # '26-a de julio 1887'
TIME_FORMAT = 'H:i' # '18:59' TIME_FORMAT = 'H:i' # '18:59'
DATETIME_FORMAT = r'j\-\a \d\e F Y\, \j\e H:i' # '26-a de julio 1887, je 18:59' DATETIME_FORMAT = r'j\-\a \d\e F Y\, \j\e H:i' # '26-a de julio 1887, je 18:59'
@ -12,7 +12,7 @@ SHORT_DATETIME_FORMAT = 'Y-m-d H:i' # '1887-07-26 18:59'
FIRST_DAY_OF_WEEK = 1 # Monday (lundo) FIRST_DAY_OF_WEEK = 1 # Monday (lundo)
# The *_INPUT_FORMATS strings use the Python strftime format syntax, # The *_INPUT_FORMATS strings use the Python strftime format syntax,
# see http://docs.python.org/library/datetime.html#strftime-strptime-behavior # see https://docs.python.org/library/datetime.html#strftime-strptime-behavior
DATE_INPUT_FORMATS = [ DATE_INPUT_FORMATS = [
'%Y-%m-%d', # '1887-07-26' '%Y-%m-%d', # '1887-07-26'
'%y-%m-%d', # '87-07-26' '%y-%m-%d', # '87-07-26'

View File

@ -1,7 +1,7 @@
# This file is distributed under the same license as the Django package. # This file is distributed under the same license as the Django package.
# #
# The *_FORMAT strings use the Django date format syntax, # The *_FORMAT strings use the Django date format syntax,
# see http://docs.djangoproject.com/en/dev/ref/templates/builtins/#date # see https://docs.djangoproject.com/en/dev/ref/templates/builtins/#date
DATE_FORMAT = r'j \d\e F \d\e Y' DATE_FORMAT = r'j \d\e F \d\e Y'
TIME_FORMAT = 'H:i' TIME_FORMAT = 'H:i'
DATETIME_FORMAT = r'j \d\e F \d\e Y \a \l\a\s H:i' DATETIME_FORMAT = r'j \d\e F \d\e Y \a \l\a\s H:i'
@ -12,7 +12,7 @@ SHORT_DATETIME_FORMAT = 'd/m/Y H:i'
FIRST_DAY_OF_WEEK = 1 # Monday FIRST_DAY_OF_WEEK = 1 # Monday
# The *_INPUT_FORMATS strings use the Python strftime format syntax, # The *_INPUT_FORMATS strings use the Python strftime format syntax,
# see http://docs.python.org/library/datetime.html#strftime-strptime-behavior # see https://docs.python.org/library/datetime.html#strftime-strptime-behavior
DATE_INPUT_FORMATS = [ DATE_INPUT_FORMATS = [
# '31/12/2009', '31/12/09' # '31/12/2009', '31/12/09'
'%d/%m/%Y', '%d/%m/%y' '%d/%m/%Y', '%d/%m/%y'

View File

@ -1,7 +1,7 @@
# This file is distributed under the same license as the Django package. # This file is distributed under the same license as the Django package.
# #
# The *_FORMAT strings use the Django date format syntax, # The *_FORMAT strings use the Django date format syntax,
# see http://docs.djangoproject.com/en/dev/ref/templates/builtins/#date # see https://docs.djangoproject.com/en/dev/ref/templates/builtins/#date
DATE_FORMAT = r'j N Y' DATE_FORMAT = r'j N Y'
TIME_FORMAT = r'H:i' TIME_FORMAT = r'H:i'
DATETIME_FORMAT = r'j N Y H:i' DATETIME_FORMAT = r'j N Y H:i'
@ -12,7 +12,7 @@ SHORT_DATETIME_FORMAT = r'd/m/Y H:i'
FIRST_DAY_OF_WEEK = 0 # 0: Sunday, 1: Monday FIRST_DAY_OF_WEEK = 0 # 0: Sunday, 1: Monday
# The *_INPUT_FORMATS strings use the Python strftime format syntax, # The *_INPUT_FORMATS strings use the Python strftime format syntax,
# see http://docs.python.org/library/datetime.html#strftime-strptime-behavior # see https://docs.python.org/library/datetime.html#strftime-strptime-behavior
DATE_INPUT_FORMATS = [ DATE_INPUT_FORMATS = [
'%d/%m/%Y', # '31/12/2009' '%d/%m/%Y', # '31/12/2009'
'%d/%m/%y', # '31/12/09' '%d/%m/%y', # '31/12/09'

View File

@ -1,7 +1,7 @@
# This file is distributed under the same license as the Django package. # This file is distributed under the same license as the Django package.
# #
# The *_FORMAT strings use the Django date format syntax, # The *_FORMAT strings use the Django date format syntax,
# see http://docs.djangoproject.com/en/dev/ref/templates/builtins/#date # see https://docs.djangoproject.com/en/dev/ref/templates/builtins/#date
DATE_FORMAT = 'j. F Y' DATE_FORMAT = 'j. F Y'
TIME_FORMAT = 'G:i' TIME_FORMAT = 'G:i'
# DATETIME_FORMAT = # DATETIME_FORMAT =
@ -12,7 +12,7 @@ SHORT_DATE_FORMAT = 'd.m.Y'
# FIRST_DAY_OF_WEEK = # FIRST_DAY_OF_WEEK =
# The *_INPUT_FORMATS strings use the Python strftime format syntax, # The *_INPUT_FORMATS strings use the Python strftime format syntax,
# see http://docs.python.org/library/datetime.html#strftime-strptime-behavior # see https://docs.python.org/library/datetime.html#strftime-strptime-behavior
# DATE_INPUT_FORMATS = # DATE_INPUT_FORMATS =
# TIME_INPUT_FORMATS = # TIME_INPUT_FORMATS =
# DATETIME_INPUT_FORMATS = # DATETIME_INPUT_FORMATS =

View File

@ -1,7 +1,7 @@
# This file is distributed under the same license as the Django package. # This file is distributed under the same license as the Django package.
# #
# The *_FORMAT strings use the Django date format syntax, # The *_FORMAT strings use the Django date format syntax,
# see http://docs.djangoproject.com/en/dev/ref/templates/builtins/#date # see https://docs.djangoproject.com/en/dev/ref/templates/builtins/#date
DATE_FORMAT = r'Y\k\o N j\a' DATE_FORMAT = r'Y\k\o N j\a'
TIME_FORMAT = 'H:i' TIME_FORMAT = 'H:i'
DATETIME_FORMAT = r'Y\k\o N j\a, H:i' DATETIME_FORMAT = r'Y\k\o N j\a, H:i'
@ -12,7 +12,7 @@ SHORT_DATETIME_FORMAT = 'Y-m-d H:i'
FIRST_DAY_OF_WEEK = 1 # Astelehena FIRST_DAY_OF_WEEK = 1 # Astelehena
# The *_INPUT_FORMATS strings use the Python strftime format syntax, # The *_INPUT_FORMATS strings use the Python strftime format syntax,
# see http://docs.python.org/library/datetime.html#strftime-strptime-behavior # see https://docs.python.org/library/datetime.html#strftime-strptime-behavior
# DATE_INPUT_FORMATS = # DATE_INPUT_FORMATS =
# TIME_INPUT_FORMATS = # TIME_INPUT_FORMATS =
# DATETIME_INPUT_FORMATS = # DATETIME_INPUT_FORMATS =

View File

@ -1,7 +1,7 @@
# This file is distributed under the same license as the Django package. # This file is distributed under the same license as the Django package.
# #
# The *_FORMAT strings use the Django date format syntax, # The *_FORMAT strings use the Django date format syntax,
# see http://docs.djangoproject.com/en/dev/ref/templates/builtins/#date # see https://docs.djangoproject.com/en/dev/ref/templates/builtins/#date
DATE_FORMAT = 'j F Y' DATE_FORMAT = 'j F Y'
TIME_FORMAT = 'G:i' TIME_FORMAT = 'G:i'
DATETIME_FORMAT = 'j F Y، ساعت G:i' DATETIME_FORMAT = 'j F Y، ساعت G:i'
@ -12,7 +12,7 @@ SHORT_DATETIME_FORMAT = 'Y/n/j، G:i'
FIRST_DAY_OF_WEEK = 6 FIRST_DAY_OF_WEEK = 6
# The *_INPUT_FORMATS strings use the Python strftime format syntax, # The *_INPUT_FORMATS strings use the Python strftime format syntax,
# see http://docs.python.org/library/datetime.html#strftime-strptime-behavior # see https://docs.python.org/library/datetime.html#strftime-strptime-behavior
# DATE_INPUT_FORMATS = # DATE_INPUT_FORMATS =
# TIME_INPUT_FORMATS = # TIME_INPUT_FORMATS =
# DATETIME_INPUT_FORMATS = # DATETIME_INPUT_FORMATS =

View File

@ -1,7 +1,7 @@
# This file is distributed under the same license as the Django package. # This file is distributed under the same license as the Django package.
# #
# The *_FORMAT strings use the Django date format syntax, # The *_FORMAT strings use the Django date format syntax,
# see http://docs.djangoproject.com/en/dev/ref/templates/builtins/#date # see https://docs.djangoproject.com/en/dev/ref/templates/builtins/#date
DATE_FORMAT = 'j. E Y' DATE_FORMAT = 'j. E Y'
TIME_FORMAT = 'G.i' TIME_FORMAT = 'G.i'
DATETIME_FORMAT = r'j. E Y \k\e\l\l\o G.i' DATETIME_FORMAT = r'j. E Y \k\e\l\l\o G.i'
@ -12,7 +12,7 @@ SHORT_DATETIME_FORMAT = 'j.n.Y G.i'
FIRST_DAY_OF_WEEK = 1 # Monday FIRST_DAY_OF_WEEK = 1 # Monday
# The *_INPUT_FORMATS strings use the Python strftime format syntax, # The *_INPUT_FORMATS strings use the Python strftime format syntax,
# see http://docs.python.org/library/datetime.html#strftime-strptime-behavior # see https://docs.python.org/library/datetime.html#strftime-strptime-behavior
DATE_INPUT_FORMATS = [ DATE_INPUT_FORMATS = [
'%d.%m.%Y', # '20.3.2014' '%d.%m.%Y', # '20.3.2014'
'%d.%m.%y', # '20.3.14' '%d.%m.%y', # '20.3.14'

View File

@ -1,7 +1,7 @@
# This file is distributed under the same license as the Django package. # This file is distributed under the same license as the Django package.
# #
# The *_FORMAT strings use the Django date format syntax, # The *_FORMAT strings use the Django date format syntax,
# see http://docs.djangoproject.com/en/dev/ref/templates/builtins/#date # see https://docs.djangoproject.com/en/dev/ref/templates/builtins/#date
DATE_FORMAT = 'j F Y' DATE_FORMAT = 'j F Y'
TIME_FORMAT = 'H:i' TIME_FORMAT = 'H:i'
DATETIME_FORMAT = 'j F Y H:i' DATETIME_FORMAT = 'j F Y H:i'
@ -12,7 +12,7 @@ SHORT_DATETIME_FORMAT = 'j N Y H:i'
FIRST_DAY_OF_WEEK = 1 # Monday FIRST_DAY_OF_WEEK = 1 # Monday
# The *_INPUT_FORMATS strings use the Python strftime format syntax, # The *_INPUT_FORMATS strings use the Python strftime format syntax,
# see http://docs.python.org/library/datetime.html#strftime-strptime-behavior # see https://docs.python.org/library/datetime.html#strftime-strptime-behavior
DATE_INPUT_FORMATS = [ DATE_INPUT_FORMATS = [
'%d/%m/%Y', '%d/%m/%y', # '25/10/2006', '25/10/06' '%d/%m/%Y', '%d/%m/%y', # '25/10/2006', '25/10/06'
'%d.%m.%Y', '%d.%m.%y', # Swiss [fr_CH), '25.10.2006', '25.10.06' '%d.%m.%Y', '%d.%m.%y', # Swiss [fr_CH), '25.10.2006', '25.10.06'

View File

@ -1,7 +1,7 @@
# This file is distributed under the same license as the Django package. # This file is distributed under the same license as the Django package.
# #
# The *_FORMAT strings use the Django date format syntax, # The *_FORMAT strings use the Django date format syntax,
# see http://docs.djangoproject.com/en/dev/ref/templates/builtins/#date # see https://docs.djangoproject.com/en/dev/ref/templates/builtins/#date
# DATE_FORMAT = # DATE_FORMAT =
# TIME_FORMAT = # TIME_FORMAT =
# DATETIME_FORMAT = # DATETIME_FORMAT =
@ -12,7 +12,7 @@
# FIRST_DAY_OF_WEEK = # FIRST_DAY_OF_WEEK =
# The *_INPUT_FORMATS strings use the Python strftime format syntax, # The *_INPUT_FORMATS strings use the Python strftime format syntax,
# see http://docs.python.org/library/datetime.html#strftime-strptime-behavior # see https://docs.python.org/library/datetime.html#strftime-strptime-behavior
# DATE_INPUT_FORMATS = # DATE_INPUT_FORMATS =
# TIME_INPUT_FORMATS = # TIME_INPUT_FORMATS =
# DATETIME_INPUT_FORMATS = # DATETIME_INPUT_FORMATS =

View File

@ -1,7 +1,7 @@
# This file is distributed under the same license as the Django package. # This file is distributed under the same license as the Django package.
# #
# The *_FORMAT strings use the Django date format syntax, # The *_FORMAT strings use the Django date format syntax,
# see http://docs.djangoproject.com/en/dev/ref/templates/builtins/#date # see https://docs.djangoproject.com/en/dev/ref/templates/builtins/#date
DATE_FORMAT = 'j F Y' DATE_FORMAT = 'j F Y'
TIME_FORMAT = 'H:i' TIME_FORMAT = 'H:i'
# DATETIME_FORMAT = # DATETIME_FORMAT =
@ -12,7 +12,7 @@ SHORT_DATE_FORMAT = 'j M Y'
# FIRST_DAY_OF_WEEK = # FIRST_DAY_OF_WEEK =
# The *_INPUT_FORMATS strings use the Python strftime format syntax, # The *_INPUT_FORMATS strings use the Python strftime format syntax,
# see http://docs.python.org/library/datetime.html#strftime-strptime-behavior # see https://docs.python.org/library/datetime.html#strftime-strptime-behavior
# DATE_INPUT_FORMATS = # DATE_INPUT_FORMATS =
# TIME_INPUT_FORMATS = # TIME_INPUT_FORMATS =
# DATETIME_INPUT_FORMATS = # DATETIME_INPUT_FORMATS =

View File

@ -1,7 +1,7 @@
# This file is distributed under the same license as the Django package. # This file is distributed under the same license as the Django package.
# #
# The *_FORMAT strings use the Django date format syntax, # The *_FORMAT strings use the Django date format syntax,
# see http://docs.djangoproject.com/en/dev/ref/templates/builtins/#date # see https://docs.djangoproject.com/en/dev/ref/templates/builtins/#date
DATE_FORMAT = 'j F Y' DATE_FORMAT = 'j F Y'
TIME_FORMAT = 'h:ia' TIME_FORMAT = 'h:ia'
DATETIME_FORMAT = 'j F Y h:ia' DATETIME_FORMAT = 'j F Y h:ia'
@ -12,7 +12,7 @@ SHORT_DATETIME_FORMAT = 'j M Y h:ia'
FIRST_DAY_OF_WEEK = 1 # Monday FIRST_DAY_OF_WEEK = 1 # Monday
# The *_INPUT_FORMATS strings use the Python strftime format syntax, # The *_INPUT_FORMATS strings use the Python strftime format syntax,
# see http://docs.python.org/library/datetime.html#strftime-strptime-behavior # see https://docs.python.org/library/datetime.html#strftime-strptime-behavior
# DATE_INPUT_FORMATS = # DATE_INPUT_FORMATS =
# TIME_INPUT_FORMATS = # TIME_INPUT_FORMATS =
# DATETIME_INPUT_FORMATS = # DATETIME_INPUT_FORMATS =

View File

@ -1,7 +1,7 @@
# This file is distributed under the same license as the Django package. # This file is distributed under the same license as the Django package.
# #
# The *_FORMAT strings use the Django date format syntax, # The *_FORMAT strings use the Django date format syntax,
# see http://docs.djangoproject.com/en/dev/ref/templates/builtins/#date # see https://docs.djangoproject.com/en/dev/ref/templates/builtins/#date
DATE_FORMAT = r'j \d\e F \d\e Y' DATE_FORMAT = r'j \d\e F \d\e Y'
TIME_FORMAT = 'H:i' TIME_FORMAT = 'H:i'
DATETIME_FORMAT = r'j \d\e F \d\e Y \á\s H:i' DATETIME_FORMAT = r'j \d\e F \d\e Y \á\s H:i'
@ -12,7 +12,7 @@ SHORT_DATETIME_FORMAT = 'd-m-Y, H:i'
FIRST_DAY_OF_WEEK = 1 # Monday FIRST_DAY_OF_WEEK = 1 # Monday
# The *_INPUT_FORMATS strings use the Python strftime format syntax, # The *_INPUT_FORMATS strings use the Python strftime format syntax,
# see http://docs.python.org/library/datetime.html#strftime-strptime-behavior # see https://docs.python.org/library/datetime.html#strftime-strptime-behavior
# DATE_INPUT_FORMATS = # DATE_INPUT_FORMATS =
# TIME_INPUT_FORMATS = # TIME_INPUT_FORMATS =
# DATETIME_INPUT_FORMATS = # DATETIME_INPUT_FORMATS =

View File

@ -1,7 +1,7 @@
# This file is distributed under the same license as the Django package. # This file is distributed under the same license as the Django package.
# #
# The *_FORMAT strings use the Django date format syntax, # The *_FORMAT strings use the Django date format syntax,
# see http://docs.djangoproject.com/en/dev/ref/templates/builtins/#date # see https://docs.djangoproject.com/en/dev/ref/templates/builtins/#date
DATE_FORMAT = 'j בF Y' DATE_FORMAT = 'j בF Y'
TIME_FORMAT = 'H:i' TIME_FORMAT = 'H:i'
DATETIME_FORMAT = 'j בF Y H:i' DATETIME_FORMAT = 'j בF Y H:i'
@ -12,7 +12,7 @@ SHORT_DATETIME_FORMAT = 'd/m/Y H:i'
# FIRST_DAY_OF_WEEK = # FIRST_DAY_OF_WEEK =
# The *_INPUT_FORMATS strings use the Python strftime format syntax, # The *_INPUT_FORMATS strings use the Python strftime format syntax,
# see http://docs.python.org/library/datetime.html#strftime-strptime-behavior # see https://docs.python.org/library/datetime.html#strftime-strptime-behavior
# DATE_INPUT_FORMATS = # DATE_INPUT_FORMATS =
# TIME_INPUT_FORMATS = # TIME_INPUT_FORMATS =
# DATETIME_INPUT_FORMATS = # DATETIME_INPUT_FORMATS =

View File

@ -1,7 +1,7 @@
# This file is distributed under the same license as the Django package. # This file is distributed under the same license as the Django package.
# #
# The *_FORMAT strings use the Django date format syntax, # The *_FORMAT strings use the Django date format syntax,
# see http://docs.djangoproject.com/en/dev/ref/templates/builtins/#date # see https://docs.djangoproject.com/en/dev/ref/templates/builtins/#date
DATE_FORMAT = 'j F Y' DATE_FORMAT = 'j F Y'
TIME_FORMAT = 'g:i A' TIME_FORMAT = 'g:i A'
# DATETIME_FORMAT = # DATETIME_FORMAT =
@ -12,7 +12,7 @@ SHORT_DATE_FORMAT = 'd-m-Y'
# FIRST_DAY_OF_WEEK = # FIRST_DAY_OF_WEEK =
# The *_INPUT_FORMATS strings use the Python strftime format syntax, # The *_INPUT_FORMATS strings use the Python strftime format syntax,
# see http://docs.python.org/library/datetime.html#strftime-strptime-behavior # see https://docs.python.org/library/datetime.html#strftime-strptime-behavior
# DATE_INPUT_FORMATS = # DATE_INPUT_FORMATS =
# TIME_INPUT_FORMATS = # TIME_INPUT_FORMATS =
# DATETIME_INPUT_FORMATS = # DATETIME_INPUT_FORMATS =

View File

@ -1,7 +1,7 @@
# This file is distributed under the same license as the Django package. # This file is distributed under the same license as the Django package.
# #
# The *_FORMAT strings use the Django date format syntax, # The *_FORMAT strings use the Django date format syntax,
# see http://docs.djangoproject.com/en/dev/ref/templates/builtins/#date # see https://docs.djangoproject.com/en/dev/ref/templates/builtins/#date
DATE_FORMAT = 'j. E Y.' DATE_FORMAT = 'j. E Y.'
TIME_FORMAT = 'H:i' TIME_FORMAT = 'H:i'
DATETIME_FORMAT = 'j. E Y. H:i' DATETIME_FORMAT = 'j. E Y. H:i'
@ -12,7 +12,7 @@ SHORT_DATETIME_FORMAT = 'j.m.Y. H:i'
FIRST_DAY_OF_WEEK = 1 FIRST_DAY_OF_WEEK = 1
# The *_INPUT_FORMATS strings use the Python strftime format syntax, # The *_INPUT_FORMATS strings use the Python strftime format syntax,
# see http://docs.python.org/library/datetime.html#strftime-strptime-behavior # see https://docs.python.org/library/datetime.html#strftime-strptime-behavior
# Kept ISO formats as they are in first position # Kept ISO formats as they are in first position
DATE_INPUT_FORMATS = [ DATE_INPUT_FORMATS = [
'%Y-%m-%d', # '2006-10-25' '%Y-%m-%d', # '2006-10-25'

View File

@ -1,7 +1,7 @@
# This file is distributed under the same license as the Django package. # This file is distributed under the same license as the Django package.
# #
# The *_FORMAT strings use the Django date format syntax, # The *_FORMAT strings use the Django date format syntax,
# see http://docs.djangoproject.com/en/dev/ref/templates/builtins/#date # see https://docs.djangoproject.com/en/dev/ref/templates/builtins/#date
DATE_FORMAT = 'Y. F j.' DATE_FORMAT = 'Y. F j.'
TIME_FORMAT = 'H:i' TIME_FORMAT = 'H:i'
DATETIME_FORMAT = 'Y. F j. H:i' DATETIME_FORMAT = 'Y. F j. H:i'
@ -12,7 +12,7 @@ SHORT_DATETIME_FORMAT = 'Y.m.d. H:i'
FIRST_DAY_OF_WEEK = 1 # Monday FIRST_DAY_OF_WEEK = 1 # Monday
# The *_INPUT_FORMATS strings use the Python strftime format syntax, # The *_INPUT_FORMATS strings use the Python strftime format syntax,
# see http://docs.python.org/library/datetime.html#strftime-strptime-behavior # see https://docs.python.org/library/datetime.html#strftime-strptime-behavior
DATE_INPUT_FORMATS = [ DATE_INPUT_FORMATS = [
'%Y.%m.%d.', # '2006.10.25.' '%Y.%m.%d.', # '2006.10.25.'
] ]

View File

@ -1,7 +1,7 @@
# This file is distributed under the same license as the Django package. # This file is distributed under the same license as the Django package.
# #
# The *_FORMAT strings use the Django date format syntax, # The *_FORMAT strings use the Django date format syntax,
# see http://docs.djangoproject.com/en/dev/ref/templates/builtins/#date # see https://docs.djangoproject.com/en/dev/ref/templates/builtins/#date
DATE_FORMAT = 'j N Y' DATE_FORMAT = 'j N Y'
DATETIME_FORMAT = "j N Y, G.i" DATETIME_FORMAT = "j N Y, G.i"
TIME_FORMAT = 'G.i' TIME_FORMAT = 'G.i'
@ -12,7 +12,7 @@ SHORT_DATETIME_FORMAT = 'd-m-Y G.i'
FIRST_DAY_OF_WEEK = 1 # Monday FIRST_DAY_OF_WEEK = 1 # Monday
# The *_INPUT_FORMATS strings use the Python strftime format syntax, # The *_INPUT_FORMATS strings use the Python strftime format syntax,
# see http://docs.python.org/library/datetime.html#strftime-strptime-behavior # see https://docs.python.org/library/datetime.html#strftime-strptime-behavior
DATE_INPUT_FORMATS = [ DATE_INPUT_FORMATS = [
'%d-%m-%y', '%d/%m/%y', # '25-10-09', 25/10/09' '%d-%m-%y', '%d/%m/%y', # '25-10-09', 25/10/09'
'%d-%m-%Y', '%d/%m/%Y', # '25-10-2009', 25/10/2009' '%d-%m-%Y', '%d/%m/%Y', # '25-10-2009', 25/10/2009'

View File

@ -1,7 +1,7 @@
# This file is distributed under the same license as the Django package. # This file is distributed under the same license as the Django package.
# #
# The *_FORMAT strings use the Django date format syntax, # The *_FORMAT strings use the Django date format syntax,
# see http://docs.djangoproject.com/en/dev/ref/templates/builtins/#date # see https://docs.djangoproject.com/en/dev/ref/templates/builtins/#date
DATE_FORMAT = 'j. F Y' DATE_FORMAT = 'j. F Y'
TIME_FORMAT = 'H:i' TIME_FORMAT = 'H:i'
# DATETIME_FORMAT = # DATETIME_FORMAT =
@ -12,7 +12,7 @@ SHORT_DATE_FORMAT = 'j.n.Y'
# FIRST_DAY_OF_WEEK = # FIRST_DAY_OF_WEEK =
# The *_INPUT_FORMATS strings use the Python strftime format syntax, # The *_INPUT_FORMATS strings use the Python strftime format syntax,
# see http://docs.python.org/library/datetime.html#strftime-strptime-behavior # see https://docs.python.org/library/datetime.html#strftime-strptime-behavior
# DATE_INPUT_FORMATS = # DATE_INPUT_FORMATS =
# TIME_INPUT_FORMATS = # TIME_INPUT_FORMATS =
# DATETIME_INPUT_FORMATS = # DATETIME_INPUT_FORMATS =

View File

@ -1,7 +1,7 @@
# This file is distributed under the same license as the Django package. # This file is distributed under the same license as the Django package.
# #
# The *_FORMAT strings use the Django date format syntax, # The *_FORMAT strings use the Django date format syntax,
# see http://docs.djangoproject.com/en/dev/ref/templates/builtins/#date # see https://docs.djangoproject.com/en/dev/ref/templates/builtins/#date
DATE_FORMAT = 'd F Y' # 25 Ottobre 2006 DATE_FORMAT = 'd F Y' # 25 Ottobre 2006
TIME_FORMAT = 'H:i' # 14:30 TIME_FORMAT = 'H:i' # 14:30
DATETIME_FORMAT = 'l d F Y H:i' # Mercoledì 25 Ottobre 2006 14:30 DATETIME_FORMAT = 'l d F Y H:i' # Mercoledì 25 Ottobre 2006 14:30
@ -12,7 +12,7 @@ SHORT_DATETIME_FORMAT = 'd/m/Y H:i' # 25/10/2009 14:30
FIRST_DAY_OF_WEEK = 1 # Lunedì FIRST_DAY_OF_WEEK = 1 # Lunedì
# The *_INPUT_FORMATS strings use the Python strftime format syntax, # The *_INPUT_FORMATS strings use the Python strftime format syntax,
# see http://docs.python.org/library/datetime.html#strftime-strptime-behavior # see https://docs.python.org/library/datetime.html#strftime-strptime-behavior
DATE_INPUT_FORMATS = [ DATE_INPUT_FORMATS = [
'%d/%m/%Y', '%Y/%m/%d', # '25/10/2006', '2008/10/25' '%d/%m/%Y', '%Y/%m/%d', # '25/10/2006', '2008/10/25'
'%d-%m-%Y', '%Y-%m-%d', # '25-10-2006', '2008-10-25' '%d-%m-%Y', '%Y-%m-%d', # '25-10-2006', '2008-10-25'

View File

@ -1,7 +1,7 @@
# This file is distributed under the same license as the Django package. # This file is distributed under the same license as the Django package.
# #
# The *_FORMAT strings use the Django date format syntax, # The *_FORMAT strings use the Django date format syntax,
# see http://docs.djangoproject.com/en/dev/ref/templates/builtins/#date # see https://docs.djangoproject.com/en/dev/ref/templates/builtins/#date
DATE_FORMAT = 'Y年n月j日' DATE_FORMAT = 'Y年n月j日'
TIME_FORMAT = 'G:i' TIME_FORMAT = 'G:i'
DATETIME_FORMAT = 'Y年n月j日G:i' DATETIME_FORMAT = 'Y年n月j日G:i'
@ -12,7 +12,7 @@ SHORT_DATETIME_FORMAT = 'Y/m/d G:i'
# FIRST_DAY_OF_WEEK = # FIRST_DAY_OF_WEEK =
# The *_INPUT_FORMATS strings use the Python strftime format syntax, # The *_INPUT_FORMATS strings use the Python strftime format syntax,
# see http://docs.python.org/library/datetime.html#strftime-strptime-behavior # see https://docs.python.org/library/datetime.html#strftime-strptime-behavior
# DATE_INPUT_FORMATS = # DATE_INPUT_FORMATS =
# TIME_INPUT_FORMATS = # TIME_INPUT_FORMATS =
# DATETIME_INPUT_FORMATS = # DATETIME_INPUT_FORMATS =

View File

@ -1,7 +1,7 @@
# This file is distributed under the same license as the Django package. # This file is distributed under the same license as the Django package.
# #
# The *_FORMAT strings use the Django date format syntax, # The *_FORMAT strings use the Django date format syntax,
# see http://docs.djangoproject.com/en/dev/ref/templates/builtins/#date # see https://docs.djangoproject.com/en/dev/ref/templates/builtins/#date
DATE_FORMAT = 'l, j F, Y' DATE_FORMAT = 'l, j F, Y'
TIME_FORMAT = 'h:i a' TIME_FORMAT = 'h:i a'
DATETIME_FORMAT = 'j F, Y h:i a' DATETIME_FORMAT = 'j F, Y h:i a'
@ -12,7 +12,7 @@ SHORT_DATETIME_FORMAT = 'j.M.Y H:i'
FIRST_DAY_OF_WEEK = 1 # (Monday) FIRST_DAY_OF_WEEK = 1 # (Monday)
# The *_INPUT_FORMATS strings use the Python strftime format syntax, # The *_INPUT_FORMATS strings use the Python strftime format syntax,
# see http://docs.python.org/library/datetime.html#strftime-strptime-behavior # see https://docs.python.org/library/datetime.html#strftime-strptime-behavior
# Kept ISO formats as they are in first position # Kept ISO formats as they are in first position
DATE_INPUT_FORMATS = [ DATE_INPUT_FORMATS = [
'%Y-%m-%d', '%m/%d/%Y', '%m/%d/%y', # '2006-10-25', '10/25/2006', '10/25/06' '%Y-%m-%d', '%m/%d/%Y', '%m/%d/%y', # '2006-10-25', '10/25/2006', '10/25/06'

View File

@ -1,7 +1,7 @@
# This file is distributed under the same license as the Django package. # This file is distributed under the same license as the Django package.
# #
# The *_FORMAT strings use the Django date format syntax, # The *_FORMAT strings use the Django date format syntax,
# see http://docs.djangoproject.com/en/dev/ref/templates/builtins/#date # see https://docs.djangoproject.com/en/dev/ref/templates/builtins/#date
DATE_FORMAT = 'j ខែ F ឆ្នាំ Y' DATE_FORMAT = 'j ខែ F ឆ្នាំ Y'
TIME_FORMAT = 'G:i' TIME_FORMAT = 'G:i'
DATETIME_FORMAT = 'j ខែ F ឆ្នាំ Y, G:i' DATETIME_FORMAT = 'j ខែ F ឆ្នាំ Y, G:i'
@ -12,7 +12,7 @@ SHORT_DATETIME_FORMAT = 'j M Y, G:i'
# FIRST_DAY_OF_WEEK = # FIRST_DAY_OF_WEEK =
# The *_INPUT_FORMATS strings use the Python strftime format syntax, # The *_INPUT_FORMATS strings use the Python strftime format syntax,
# see http://docs.python.org/library/datetime.html#strftime-strptime-behavior # see https://docs.python.org/library/datetime.html#strftime-strptime-behavior
# DATE_INPUT_FORMATS = # DATE_INPUT_FORMATS =
# TIME_INPUT_FORMATS = # TIME_INPUT_FORMATS =
# DATETIME_INPUT_FORMATS = # DATETIME_INPUT_FORMATS =

View File

@ -1,7 +1,7 @@
# This file is distributed under the same license as the Django package. # This file is distributed under the same license as the Django package.
# #
# The *_FORMAT strings use the Django date format syntax, # The *_FORMAT strings use the Django date format syntax,
# see http://docs.djangoproject.com/en/dev/ref/templates/builtins/#date # see https://docs.djangoproject.com/en/dev/ref/templates/builtins/#date
DATE_FORMAT = 'j F Y' DATE_FORMAT = 'j F Y'
TIME_FORMAT = 'h:i A' TIME_FORMAT = 'h:i A'
# DATETIME_FORMAT = # DATETIME_FORMAT =
@ -12,7 +12,7 @@ SHORT_DATE_FORMAT = 'j M Y'
# FIRST_DAY_OF_WEEK = # FIRST_DAY_OF_WEEK =
# The *_INPUT_FORMATS strings use the Python strftime format syntax, # The *_INPUT_FORMATS strings use the Python strftime format syntax,
# see http://docs.python.org/library/datetime.html#strftime-strptime-behavior # see https://docs.python.org/library/datetime.html#strftime-strptime-behavior
# DATE_INPUT_FORMATS = # DATE_INPUT_FORMATS =
# TIME_INPUT_FORMATS = # TIME_INPUT_FORMATS =
# DATETIME_INPUT_FORMATS = # DATETIME_INPUT_FORMATS =

View File

@ -1,7 +1,7 @@
# This file is distributed under the same license as the Django package. # This file is distributed under the same license as the Django package.
# #
# The *_FORMAT strings use the Django date format syntax, # The *_FORMAT strings use the Django date format syntax,
# see http://docs.djangoproject.com/en/dev/ref/templates/builtins/#date # see https://docs.djangoproject.com/en/dev/ref/templates/builtins/#date
DATE_FORMAT = 'Y년 n월 j일' DATE_FORMAT = 'Y년 n월 j일'
TIME_FORMAT = 'A g:i' TIME_FORMAT = 'A g:i'
DATETIME_FORMAT = 'Y년 n월 j일 g:i A' DATETIME_FORMAT = 'Y년 n월 j일 g:i A'
@ -12,7 +12,7 @@ SHORT_DATETIME_FORMAT = 'Y-n-j H:i'
# FIRST_DAY_OF_WEEK = # FIRST_DAY_OF_WEEK =
# The *_INPUT_FORMATS strings use the Python strftime format syntax, # The *_INPUT_FORMATS strings use the Python strftime format syntax,
# see http://docs.python.org/library/datetime.html#strftime-strptime-behavior # see https://docs.python.org/library/datetime.html#strftime-strptime-behavior
# Kept ISO formats as they are in first position # Kept ISO formats as they are in first position
DATE_INPUT_FORMATS = [ DATE_INPUT_FORMATS = [
'%Y-%m-%d', '%m/%d/%Y', '%m/%d/%y', # '2006-10-25', '10/25/2006', '10/25/06' '%Y-%m-%d', '%m/%d/%Y', '%m/%d/%y', # '2006-10-25', '10/25/2006', '10/25/06'

View File

@ -1,7 +1,7 @@
# This file is distributed under the same license as the Django package. # This file is distributed under the same license as the Django package.
# #
# The *_FORMAT strings use the Django date format syntax, # The *_FORMAT strings use the Django date format syntax,
# see http://docs.djangoproject.com/en/dev/ref/templates/builtins/#date # see https://docs.djangoproject.com/en/dev/ref/templates/builtins/#date
DATE_FORMAT = r'Y \m. E j \d.' DATE_FORMAT = r'Y \m. E j \d.'
TIME_FORMAT = 'H:i' TIME_FORMAT = 'H:i'
DATETIME_FORMAT = r'Y \m. E j \d., H:i' DATETIME_FORMAT = r'Y \m. E j \d., H:i'
@ -12,7 +12,7 @@ SHORT_DATETIME_FORMAT = 'Y-m-d H:i'
FIRST_DAY_OF_WEEK = 1 # Monday FIRST_DAY_OF_WEEK = 1 # Monday
# The *_INPUT_FORMATS strings use the Python strftime format syntax, # The *_INPUT_FORMATS strings use the Python strftime format syntax,
# see http://docs.python.org/library/datetime.html#strftime-strptime-behavior # see https://docs.python.org/library/datetime.html#strftime-strptime-behavior
DATE_INPUT_FORMATS = [ DATE_INPUT_FORMATS = [
'%Y-%m-%d', '%d.%m.%Y', '%d.%m.%y', # '2006-10-25', '25.10.2006', '25.10.06' '%Y-%m-%d', '%d.%m.%Y', '%d.%m.%y', # '2006-10-25', '25.10.2006', '25.10.06'
] ]

View File

@ -1,7 +1,7 @@
# This file is distributed under the same license as the Django package. # This file is distributed under the same license as the Django package.
# #
# The *_FORMAT strings use the Django date format syntax, # The *_FORMAT strings use the Django date format syntax,
# see http://docs.djangoproject.com/en/dev/ref/templates/builtins/#date # see https://docs.djangoproject.com/en/dev/ref/templates/builtins/#date
DATE_FORMAT = r'Y. \g\a\d\a j. F' DATE_FORMAT = r'Y. \g\a\d\a j. F'
TIME_FORMAT = 'H:i' TIME_FORMAT = 'H:i'
DATETIME_FORMAT = r'Y. \g\a\d\a j. F, H:i' DATETIME_FORMAT = r'Y. \g\a\d\a j. F, H:i'
@ -12,7 +12,7 @@ SHORT_DATETIME_FORMAT = 'j.m.Y H:i'
FIRST_DAY_OF_WEEK = 1 # Monday FIRST_DAY_OF_WEEK = 1 # Monday
# The *_INPUT_FORMATS strings use the Python strftime format syntax, # The *_INPUT_FORMATS strings use the Python strftime format syntax,
# see http://docs.python.org/library/datetime.html#strftime-strptime-behavior # see https://docs.python.org/library/datetime.html#strftime-strptime-behavior
# Kept ISO formats as they are in first position # Kept ISO formats as they are in first position
DATE_INPUT_FORMATS = [ DATE_INPUT_FORMATS = [
'%Y-%m-%d', '%d.%m.%Y', '%d.%m.%y', # '2006-10-25', '25.10.2006', '25.10.06' '%Y-%m-%d', '%d.%m.%Y', '%d.%m.%y', # '2006-10-25', '25.10.2006', '25.10.06'

View File

@ -1,7 +1,7 @@
# This file is distributed under the same license as the Django package. # This file is distributed under the same license as the Django package.
# #
# The *_FORMAT strings use the Django date format syntax, # The *_FORMAT strings use the Django date format syntax,
# see http://docs.djangoproject.com/en/dev/ref/templates/builtins/#date # see https://docs.djangoproject.com/en/dev/ref/templates/builtins/#date
DATE_FORMAT = 'd F Y' DATE_FORMAT = 'd F Y'
TIME_FORMAT = 'H:i' TIME_FORMAT = 'H:i'
DATETIME_FORMAT = 'j. F Y H:i' DATETIME_FORMAT = 'j. F Y H:i'
@ -12,7 +12,7 @@ SHORT_DATETIME_FORMAT = 'j.m.Y H:i'
FIRST_DAY_OF_WEEK = 1 FIRST_DAY_OF_WEEK = 1
# The *_INPUT_FORMATS strings use the Python strftime format syntax, # The *_INPUT_FORMATS strings use the Python strftime format syntax,
# see http://docs.python.org/library/datetime.html#strftime-strptime-behavior # see https://docs.python.org/library/datetime.html#strftime-strptime-behavior
DATE_INPUT_FORMATS = [ DATE_INPUT_FORMATS = [
'%d.%m.%Y', '%d.%m.%y', # '25.10.2006', '25.10.06' '%d.%m.%Y', '%d.%m.%y', # '25.10.2006', '25.10.06'
'%d. %m. %Y', '%d. %m. %y', # '25. 10. 2006', '25. 10. 06' '%d. %m. %Y', '%d. %m. %y', # '25. 10. 2006', '25. 10. 06'

View File

@ -1,7 +1,7 @@
# This file is distributed under the same license as the Django package. # This file is distributed under the same license as the Django package.
# #
# The *_FORMAT strings use the Django date format syntax, # The *_FORMAT strings use the Django date format syntax,
# see http://docs.djangoproject.com/en/dev/ref/templates/builtins/#date # see https://docs.djangoproject.com/en/dev/ref/templates/builtins/#date
DATE_FORMAT = 'N j, Y' DATE_FORMAT = 'N j, Y'
TIME_FORMAT = 'P' TIME_FORMAT = 'P'
DATETIME_FORMAT = 'N j, Y, P' DATETIME_FORMAT = 'N j, Y, P'
@ -12,7 +12,7 @@ SHORT_DATETIME_FORMAT = 'm/d/Y P'
FIRST_DAY_OF_WEEK = 0 # Sunday FIRST_DAY_OF_WEEK = 0 # Sunday
# The *_INPUT_FORMATS strings use the Python strftime format syntax, # The *_INPUT_FORMATS strings use the Python strftime format syntax,
# see http://docs.python.org/library/datetime.html#strftime-strptime-behavior # see https://docs.python.org/library/datetime.html#strftime-strptime-behavior
# Kept ISO formats as they are in first position # Kept ISO formats as they are in first position
DATE_INPUT_FORMATS = [ DATE_INPUT_FORMATS = [
'%Y-%m-%d', '%m/%d/%Y', '%m/%d/%y', # '2006-10-25', '10/25/2006', '10/25/06' '%Y-%m-%d', '%m/%d/%Y', '%m/%d/%y', # '2006-10-25', '10/25/2006', '10/25/06'

View File

@ -1,7 +1,7 @@
# This file is distributed under the same license as the Django package. # This file is distributed under the same license as the Django package.
# #
# The *_FORMAT strings use the Django date format syntax, # The *_FORMAT strings use the Django date format syntax,
# see http://docs.djangoproject.com/en/dev/ref/templates/builtins/#date # see https://docs.djangoproject.com/en/dev/ref/templates/builtins/#date
DATE_FORMAT = 'd F Y' DATE_FORMAT = 'd F Y'
TIME_FORMAT = 'g:i A' TIME_FORMAT = 'g:i A'
# DATETIME_FORMAT = # DATETIME_FORMAT =
@ -12,7 +12,7 @@ SHORT_DATE_FORMAT = 'j M Y'
# FIRST_DAY_OF_WEEK = # FIRST_DAY_OF_WEEK =
# The *_INPUT_FORMATS strings use the Python strftime format syntax, # The *_INPUT_FORMATS strings use the Python strftime format syntax,
# see http://docs.python.org/library/datetime.html#strftime-strptime-behavior # see https://docs.python.org/library/datetime.html#strftime-strptime-behavior
# DATE_INPUT_FORMATS = # DATE_INPUT_FORMATS =
# TIME_INPUT_FORMATS = # TIME_INPUT_FORMATS =
# DATETIME_INPUT_FORMATS = # DATETIME_INPUT_FORMATS =

View File

@ -1,7 +1,7 @@
# This file is distributed under the same license as the Django package. # This file is distributed under the same license as the Django package.
# #
# The *_FORMAT strings use the Django date format syntax, # The *_FORMAT strings use the Django date format syntax,
# see http://docs.djangoproject.com/en/dev/ref/templates/builtins/#date # see https://docs.djangoproject.com/en/dev/ref/templates/builtins/#date
DATE_FORMAT = 'j. F Y' DATE_FORMAT = 'j. F Y'
TIME_FORMAT = 'H:i' TIME_FORMAT = 'H:i'
DATETIME_FORMAT = 'j. F Y H:i' DATETIME_FORMAT = 'j. F Y H:i'
@ -12,7 +12,7 @@ SHORT_DATETIME_FORMAT = 'd.m.Y H:i'
FIRST_DAY_OF_WEEK = 1 # Monday FIRST_DAY_OF_WEEK = 1 # Monday
# The *_INPUT_FORMATS strings use the Python strftime format syntax, # The *_INPUT_FORMATS strings use the Python strftime format syntax,
# see http://docs.python.org/library/datetime.html#strftime-strptime-behavior # see https://docs.python.org/library/datetime.html#strftime-strptime-behavior
# Kept ISO formats as they are in first position # Kept ISO formats as they are in first position
DATE_INPUT_FORMATS = [ DATE_INPUT_FORMATS = [
'%Y-%m-%d', '%d.%m.%Y', '%d.%m.%y', # '2006-10-25', '25.10.2006', '25.10.06' '%Y-%m-%d', '%d.%m.%Y', '%d.%m.%y', # '2006-10-25', '25.10.2006', '25.10.06'

View File

@ -1,7 +1,7 @@
# This file is distributed under the same license as the Django package. # This file is distributed under the same license as the Django package.
# #
# The *_FORMAT strings use the Django date format syntax, # The *_FORMAT strings use the Django date format syntax,
# see http://docs.djangoproject.com/en/dev/ref/templates/builtins/#date # see https://docs.djangoproject.com/en/dev/ref/templates/builtins/#date
DATE_FORMAT = 'j F Y' # '20 januari 2009' DATE_FORMAT = 'j F Y' # '20 januari 2009'
TIME_FORMAT = 'H:i' # '15:23' TIME_FORMAT = 'H:i' # '15:23'
DATETIME_FORMAT = 'j F Y H:i' # '20 januari 2009 15:23' DATETIME_FORMAT = 'j F Y H:i' # '20 januari 2009 15:23'
@ -12,7 +12,7 @@ SHORT_DATETIME_FORMAT = 'j-n-Y H:i' # '20-1-2009 15:23'
FIRST_DAY_OF_WEEK = 1 # Monday (in Dutch 'maandag') FIRST_DAY_OF_WEEK = 1 # Monday (in Dutch 'maandag')
# The *_INPUT_FORMATS strings use the Python strftime format syntax, # The *_INPUT_FORMATS strings use the Python strftime format syntax,
# see http://docs.python.org/library/datetime.html#strftime-strptime-behavior # see https://docs.python.org/library/datetime.html#strftime-strptime-behavior
DATE_INPUT_FORMATS = [ DATE_INPUT_FORMATS = [
'%d-%m-%Y', '%d-%m-%y', # '20-01-2009', '20-01-09' '%d-%m-%Y', '%d-%m-%y', # '20-01-2009', '20-01-09'
'%d/%m/%Y', '%d/%m/%y', # '20/01/2009', '20/01/09' '%d/%m/%Y', '%d/%m/%y', # '20/01/2009', '20/01/09'

View File

@ -1,7 +1,7 @@
# This file is distributed under the same license as the Django package. # This file is distributed under the same license as the Django package.
# #
# The *_FORMAT strings use the Django date format syntax, # The *_FORMAT strings use the Django date format syntax,
# see http://docs.djangoproject.com/en/dev/ref/templates/builtins/#date # see https://docs.djangoproject.com/en/dev/ref/templates/builtins/#date
DATE_FORMAT = 'j. F Y' DATE_FORMAT = 'j. F Y'
TIME_FORMAT = 'H:i' TIME_FORMAT = 'H:i'
DATETIME_FORMAT = 'j. F Y H:i' DATETIME_FORMAT = 'j. F Y H:i'
@ -12,7 +12,7 @@ SHORT_DATETIME_FORMAT = 'd.m.Y H:i'
FIRST_DAY_OF_WEEK = 1 # Monday FIRST_DAY_OF_WEEK = 1 # Monday
# The *_INPUT_FORMATS strings use the Python strftime format syntax, # The *_INPUT_FORMATS strings use the Python strftime format syntax,
# see http://docs.python.org/library/datetime.html#strftime-strptime-behavior # see https://docs.python.org/library/datetime.html#strftime-strptime-behavior
# Kept ISO formats as they are in first position # Kept ISO formats as they are in first position
DATE_INPUT_FORMATS = [ DATE_INPUT_FORMATS = [
'%Y-%m-%d', '%d.%m.%Y', '%d.%m.%y', # '2006-10-25', '25.10.2006', '25.10.06' '%Y-%m-%d', '%d.%m.%Y', '%d.%m.%y', # '2006-10-25', '25.10.2006', '25.10.06'

View File

@ -1,7 +1,7 @@
# This file is distributed under the same license as the Django package. # This file is distributed under the same license as the Django package.
# #
# The *_FORMAT strings use the Django date format syntax, # The *_FORMAT strings use the Django date format syntax,
# see http://docs.djangoproject.com/en/dev/ref/templates/builtins/#date # see https://docs.djangoproject.com/en/dev/ref/templates/builtins/#date
DATE_FORMAT = 'j E Y' DATE_FORMAT = 'j E Y'
TIME_FORMAT = 'H:i' TIME_FORMAT = 'H:i'
DATETIME_FORMAT = 'j E Y H:i' DATETIME_FORMAT = 'j E Y H:i'
@ -12,7 +12,7 @@ SHORT_DATETIME_FORMAT = 'd-m-Y H:i'
FIRST_DAY_OF_WEEK = 1 # Monday FIRST_DAY_OF_WEEK = 1 # Monday
# The *_INPUT_FORMATS strings use the Python strftime format syntax, # The *_INPUT_FORMATS strings use the Python strftime format syntax,
# see http://docs.python.org/library/datetime.html#strftime-strptime-behavior # see https://docs.python.org/library/datetime.html#strftime-strptime-behavior
DATE_INPUT_FORMATS = [ DATE_INPUT_FORMATS = [
'%d.%m.%Y', '%d.%m.%y', # '25.10.2006', '25.10.06' '%d.%m.%Y', '%d.%m.%y', # '25.10.2006', '25.10.06'
'%y-%m-%d', # '06-10-25' '%y-%m-%d', # '06-10-25'

View File

@ -1,7 +1,7 @@
# This file is distributed under the same license as the Django package. # This file is distributed under the same license as the Django package.
# #
# The *_FORMAT strings use the Django date format syntax, # The *_FORMAT strings use the Django date format syntax,
# see http://docs.djangoproject.com/en/dev/ref/templates/builtins/#date # see https://docs.djangoproject.com/en/dev/ref/templates/builtins/#date
DATE_FORMAT = r'j \d\e F \d\e Y' DATE_FORMAT = r'j \d\e F \d\e Y'
TIME_FORMAT = 'H:i' TIME_FORMAT = 'H:i'
DATETIME_FORMAT = r'j \d\e F \d\e Y à\s H:i' DATETIME_FORMAT = r'j \d\e F \d\e Y à\s H:i'
@ -12,7 +12,7 @@ SHORT_DATETIME_FORMAT = 'd/m/Y H:i'
FIRST_DAY_OF_WEEK = 0 # Sunday FIRST_DAY_OF_WEEK = 0 # Sunday
# The *_INPUT_FORMATS strings use the Python strftime format syntax, # The *_INPUT_FORMATS strings use the Python strftime format syntax,
# see http://docs.python.org/library/datetime.html#strftime-strptime-behavior # see https://docs.python.org/library/datetime.html#strftime-strptime-behavior
# Kept ISO formats as they are in first position # Kept ISO formats as they are in first position
DATE_INPUT_FORMATS = [ DATE_INPUT_FORMATS = [
'%Y-%m-%d', '%d/%m/%Y', '%d/%m/%y', # '2006-10-25', '25/10/2006', '25/10/06' '%Y-%m-%d', '%d/%m/%Y', '%d/%m/%y', # '2006-10-25', '25/10/2006', '25/10/06'

View File

@ -1,7 +1,7 @@
# This file is distributed under the same license as the Django package. # This file is distributed under the same license as the Django package.
# #
# The *_FORMAT strings use the Django date format syntax, # The *_FORMAT strings use the Django date format syntax,
# see http://docs.djangoproject.com/en/dev/ref/templates/builtins/#date # see https://docs.djangoproject.com/en/dev/ref/templates/builtins/#date
DATE_FORMAT = r'j \d\e F \d\e Y' DATE_FORMAT = r'j \d\e F \d\e Y'
TIME_FORMAT = 'H:i' TIME_FORMAT = 'H:i'
DATETIME_FORMAT = r'j \d\e F \d\e Y à\s H:i' DATETIME_FORMAT = r'j \d\e F \d\e Y à\s H:i'
@ -12,7 +12,7 @@ SHORT_DATETIME_FORMAT = 'd/m/Y H:i'
FIRST_DAY_OF_WEEK = 0 # Sunday FIRST_DAY_OF_WEEK = 0 # Sunday
# The *_INPUT_FORMATS strings use the Python strftime format syntax, # The *_INPUT_FORMATS strings use the Python strftime format syntax,
# see http://docs.python.org/library/datetime.html#strftime-strptime-behavior # see https://docs.python.org/library/datetime.html#strftime-strptime-behavior
DATE_INPUT_FORMATS = [ DATE_INPUT_FORMATS = [
'%d/%m/%Y', '%d/%m/%y', # '25/10/2006', '25/10/06' '%d/%m/%Y', '%d/%m/%y', # '25/10/2006', '25/10/06'
# '%d de %b de %Y', '%d de %b, %Y', # '25 de Out de 2006', '25 Out, 2006' # '%d de %b de %Y', '%d de %b, %Y', # '25 de Out de 2006', '25 Out, 2006'

View File

@ -1,7 +1,7 @@
# This file is distributed under the same license as the Django package. # This file is distributed under the same license as the Django package.
# #
# The *_FORMAT strings use the Django date format syntax, # The *_FORMAT strings use the Django date format syntax,
# see http://docs.djangoproject.com/en/dev/ref/templates/builtins/#date # see https://docs.djangoproject.com/en/dev/ref/templates/builtins/#date
DATE_FORMAT = 'j F Y' DATE_FORMAT = 'j F Y'
TIME_FORMAT = 'H:i' TIME_FORMAT = 'H:i'
DATETIME_FORMAT = 'j F Y, H:i' DATETIME_FORMAT = 'j F Y, H:i'
@ -12,7 +12,7 @@ SHORT_DATETIME_FORMAT = 'd.m.Y, H:i'
FIRST_DAY_OF_WEEK = 1 FIRST_DAY_OF_WEEK = 1
# The *_INPUT_FORMATS strings use the Python strftime format syntax, # The *_INPUT_FORMATS strings use the Python strftime format syntax,
# see http://docs.python.org/library/datetime.html#strftime-strptime-behavior # see https://docs.python.org/library/datetime.html#strftime-strptime-behavior
DATE_INPUT_FORMATS = [ DATE_INPUT_FORMATS = [
'%d.%m.%Y', '%d.%m.%Y',
'%d.%b.%Y', '%d.%b.%Y',

View File

@ -1,7 +1,7 @@
# This file is distributed under the same license as the Django package. # This file is distributed under the same license as the Django package.
# #
# The *_FORMAT strings use the Django date format syntax, # The *_FORMAT strings use the Django date format syntax,
# see http://docs.djangoproject.com/en/dev/ref/templates/builtins/#date # see https://docs.djangoproject.com/en/dev/ref/templates/builtins/#date
DATE_FORMAT = 'j E Y г.' DATE_FORMAT = 'j E Y г.'
TIME_FORMAT = 'G:i' TIME_FORMAT = 'G:i'
DATETIME_FORMAT = 'j E Y г. G:i' DATETIME_FORMAT = 'j E Y г. G:i'
@ -12,7 +12,7 @@ SHORT_DATETIME_FORMAT = 'd.m.Y H:i'
FIRST_DAY_OF_WEEK = 1 # Monday FIRST_DAY_OF_WEEK = 1 # Monday
# The *_INPUT_FORMATS strings use the Python strftime format syntax, # The *_INPUT_FORMATS strings use the Python strftime format syntax,
# see http://docs.python.org/library/datetime.html#strftime-strptime-behavior # see https://docs.python.org/library/datetime.html#strftime-strptime-behavior
DATE_INPUT_FORMATS = [ DATE_INPUT_FORMATS = [
'%d.%m.%Y', # '25.10.2006' '%d.%m.%Y', # '25.10.2006'
'%d.%m.%y', # '25.10.06' '%d.%m.%y', # '25.10.06'

View File

@ -1,7 +1,7 @@
# This file is distributed under the same license as the Django package. # This file is distributed under the same license as the Django package.
# #
# The *_FORMAT strings use the Django date format syntax, # The *_FORMAT strings use the Django date format syntax,
# see http://docs.djangoproject.com/en/dev/ref/templates/builtins/#date # see https://docs.djangoproject.com/en/dev/ref/templates/builtins/#date
DATE_FORMAT = 'j. F Y' DATE_FORMAT = 'j. F Y'
TIME_FORMAT = 'G:i' TIME_FORMAT = 'G:i'
DATETIME_FORMAT = 'j. F Y G:i' DATETIME_FORMAT = 'j. F Y G:i'
@ -12,7 +12,7 @@ SHORT_DATETIME_FORMAT = 'd.m.Y G:i'
FIRST_DAY_OF_WEEK = 1 # Monday FIRST_DAY_OF_WEEK = 1 # Monday
# The *_INPUT_FORMATS strings use the Python strftime format syntax, # The *_INPUT_FORMATS strings use the Python strftime format syntax,
# see http://docs.python.org/library/datetime.html#strftime-strptime-behavior # see https://docs.python.org/library/datetime.html#strftime-strptime-behavior
DATE_INPUT_FORMATS = [ DATE_INPUT_FORMATS = [
'%d.%m.%Y', '%d.%m.%y', # '25.10.2006', '25.10.06' '%d.%m.%Y', '%d.%m.%y', # '25.10.2006', '25.10.06'
'%y-%m-%d', # '06-10-25' '%y-%m-%d', # '06-10-25'

View File

@ -1,7 +1,7 @@
# This file is distributed under the same license as the Django package. # This file is distributed under the same license as the Django package.
# #
# The *_FORMAT strings use the Django date format syntax, # The *_FORMAT strings use the Django date format syntax,
# see http://docs.djangoproject.com/en/dev/ref/templates/builtins/#date # see https://docs.djangoproject.com/en/dev/ref/templates/builtins/#date
DATE_FORMAT = 'd. F Y' DATE_FORMAT = 'd. F Y'
TIME_FORMAT = 'H:i' TIME_FORMAT = 'H:i'
DATETIME_FORMAT = 'j. F Y. H:i' DATETIME_FORMAT = 'j. F Y. H:i'
@ -12,7 +12,7 @@ SHORT_DATETIME_FORMAT = 'j.n.Y. H:i'
FIRST_DAY_OF_WEEK = 0 FIRST_DAY_OF_WEEK = 0
# The *_INPUT_FORMATS strings use the Python strftime format syntax, # The *_INPUT_FORMATS strings use the Python strftime format syntax,
# see http://docs.python.org/library/datetime.html#strftime-strptime-behavior # see https://docs.python.org/library/datetime.html#strftime-strptime-behavior
DATE_INPUT_FORMATS = [ DATE_INPUT_FORMATS = [
'%d.%m.%Y', '%d.%m.%y', # '25.10.2006', '25.10.06' '%d.%m.%Y', '%d.%m.%y', # '25.10.2006', '25.10.06'
'%d-%m-%Y', # '25-10-2006' '%d-%m-%Y', # '25-10-2006'

View File

@ -1,7 +1,7 @@
# This file is distributed under the same license as the Django package. # This file is distributed under the same license as the Django package.
# #
# The *_FORMAT strings use the Django date format syntax, # The *_FORMAT strings use the Django date format syntax,
# see http://docs.djangoproject.com/en/dev/ref/templates/builtins/#date # see https://docs.djangoproject.com/en/dev/ref/templates/builtins/#date
DATE_FORMAT = 'd F Y' DATE_FORMAT = 'd F Y'
TIME_FORMAT = 'g.i.A' TIME_FORMAT = 'g.i.A'
# DATETIME_FORMAT = # DATETIME_FORMAT =
@ -12,7 +12,7 @@ SHORT_DATE_FORMAT = 'Y-m-d'
# FIRST_DAY_OF_WEEK = # FIRST_DAY_OF_WEEK =
# The *_INPUT_FORMATS strings use the Python strftime format syntax, # The *_INPUT_FORMATS strings use the Python strftime format syntax,
# see http://docs.python.org/library/datetime.html#strftime-strptime-behavior # see https://docs.python.org/library/datetime.html#strftime-strptime-behavior
# DATE_INPUT_FORMATS = # DATE_INPUT_FORMATS =
# TIME_INPUT_FORMATS = # TIME_INPUT_FORMATS =
# DATETIME_INPUT_FORMATS = # DATETIME_INPUT_FORMATS =

View File

@ -1,7 +1,7 @@
# This file is distributed under the same license as the Django package. # This file is distributed under the same license as the Django package.
# #
# The *_FORMAT strings use the Django date format syntax, # The *_FORMAT strings use the Django date format syntax,
# see http://docs.djangoproject.com/en/dev/ref/templates/builtins/#date # see https://docs.djangoproject.com/en/dev/ref/templates/builtins/#date
DATE_FORMAT = 'j. F Y.' DATE_FORMAT = 'j. F Y.'
TIME_FORMAT = 'H:i' TIME_FORMAT = 'H:i'
DATETIME_FORMAT = 'j. F Y. H:i' DATETIME_FORMAT = 'j. F Y. H:i'
@ -12,7 +12,7 @@ SHORT_DATETIME_FORMAT = 'j.m.Y. H:i'
FIRST_DAY_OF_WEEK = 1 FIRST_DAY_OF_WEEK = 1
# The *_INPUT_FORMATS strings use the Python strftime format syntax, # The *_INPUT_FORMATS strings use the Python strftime format syntax,
# see http://docs.python.org/library/datetime.html#strftime-strptime-behavior # see https://docs.python.org/library/datetime.html#strftime-strptime-behavior
DATE_INPUT_FORMATS = [ DATE_INPUT_FORMATS = [
'%d.%m.%Y.', '%d.%m.%y.', # '25.10.2006.', '25.10.06.' '%d.%m.%Y.', '%d.%m.%y.', # '25.10.2006.', '25.10.06.'
'%d. %m. %Y.', '%d. %m. %y.', # '25. 10. 2006.', '25. 10. 06.' '%d. %m. %Y.', '%d. %m. %y.', # '25. 10. 2006.', '25. 10. 06.'

View File

@ -1,7 +1,7 @@
# This file is distributed under the same license as the Django package. # This file is distributed under the same license as the Django package.
# #
# The *_FORMAT strings use the Django date format syntax, # The *_FORMAT strings use the Django date format syntax,
# see http://docs.djangoproject.com/en/dev/ref/templates/builtins/#date # see https://docs.djangoproject.com/en/dev/ref/templates/builtins/#date
DATE_FORMAT = 'j. F Y.' DATE_FORMAT = 'j. F Y.'
TIME_FORMAT = 'H:i' TIME_FORMAT = 'H:i'
DATETIME_FORMAT = 'j. F Y. H:i' DATETIME_FORMAT = 'j. F Y. H:i'
@ -12,7 +12,7 @@ SHORT_DATETIME_FORMAT = 'j.m.Y. H:i'
FIRST_DAY_OF_WEEK = 1 FIRST_DAY_OF_WEEK = 1
# The *_INPUT_FORMATS strings use the Python strftime format syntax, # The *_INPUT_FORMATS strings use the Python strftime format syntax,
# see http://docs.python.org/library/datetime.html#strftime-strptime-behavior # see https://docs.python.org/library/datetime.html#strftime-strptime-behavior
DATE_INPUT_FORMATS = [ DATE_INPUT_FORMATS = [
'%d.%m.%Y.', '%d.%m.%y.', # '25.10.2006.', '25.10.06.' '%d.%m.%Y.', '%d.%m.%y.', # '25.10.2006.', '25.10.06.'
'%d. %m. %Y.', '%d. %m. %y.', # '25. 10. 2006.', '25. 10. 06.' '%d. %m. %Y.', '%d. %m. %y.', # '25. 10. 2006.', '25. 10. 06.'

View File

@ -1,7 +1,7 @@
# This file is distributed under the same license as the Django package. # This file is distributed under the same license as the Django package.
# #
# The *_FORMAT strings use the Django date format syntax, # The *_FORMAT strings use the Django date format syntax,
# see http://docs.djangoproject.com/en/dev/ref/templates/builtins/#date # see https://docs.djangoproject.com/en/dev/ref/templates/builtins/#date
DATE_FORMAT = 'j F Y' DATE_FORMAT = 'j F Y'
TIME_FORMAT = 'H:i' TIME_FORMAT = 'H:i'
DATETIME_FORMAT = 'j F Y H:i' DATETIME_FORMAT = 'j F Y H:i'
@ -12,7 +12,7 @@ SHORT_DATETIME_FORMAT = 'Y-m-d H:i'
FIRST_DAY_OF_WEEK = 1 FIRST_DAY_OF_WEEK = 1
# The *_INPUT_FORMATS strings use the Python strftime format syntax, # The *_INPUT_FORMATS strings use the Python strftime format syntax,
# see http://docs.python.org/library/datetime.html#strftime-strptime-behavior # see https://docs.python.org/library/datetime.html#strftime-strptime-behavior
# Kept ISO formats as they are in first position # Kept ISO formats as they are in first position
DATE_INPUT_FORMATS = [ DATE_INPUT_FORMATS = [
'%Y-%m-%d', # '2006-10-25' '%Y-%m-%d', # '2006-10-25'

View File

@ -1,7 +1,7 @@
# This file is distributed under the same license as the Django package. # This file is distributed under the same license as the Django package.
# #
# The *_FORMAT strings use the Django date format syntax, # The *_FORMAT strings use the Django date format syntax,
# see http://docs.djangoproject.com/en/dev/ref/templates/builtins/#date # see https://docs.djangoproject.com/en/dev/ref/templates/builtins/#date
DATE_FORMAT = 'j F, Y' DATE_FORMAT = 'j F, Y'
TIME_FORMAT = 'g:i A' TIME_FORMAT = 'g:i A'
# DATETIME_FORMAT = # DATETIME_FORMAT =
@ -12,7 +12,7 @@ SHORT_DATE_FORMAT = 'j M, Y'
# FIRST_DAY_OF_WEEK = # FIRST_DAY_OF_WEEK =
# The *_INPUT_FORMATS strings use the Python strftime format syntax, # The *_INPUT_FORMATS strings use the Python strftime format syntax,
# see http://docs.python.org/library/datetime.html#strftime-strptime-behavior # see https://docs.python.org/library/datetime.html#strftime-strptime-behavior
# DATE_INPUT_FORMATS = # DATE_INPUT_FORMATS =
# TIME_INPUT_FORMATS = # TIME_INPUT_FORMATS =
# DATETIME_INPUT_FORMATS = # DATETIME_INPUT_FORMATS =

View File

@ -1,7 +1,7 @@
# This file is distributed under the same license as the Django package. # This file is distributed under the same license as the Django package.
# #
# The *_FORMAT strings use the Django date format syntax, # The *_FORMAT strings use the Django date format syntax,
# see http://docs.djangoproject.com/en/dev/ref/templates/builtins/#date # see https://docs.djangoproject.com/en/dev/ref/templates/builtins/#date
DATE_FORMAT = 'j F Y' DATE_FORMAT = 'j F Y'
TIME_FORMAT = 'g:i A' TIME_FORMAT = 'g:i A'
# DATETIME_FORMAT = # DATETIME_FORMAT =
@ -12,7 +12,7 @@ SHORT_DATE_FORMAT = 'j M Y'
# FIRST_DAY_OF_WEEK = # FIRST_DAY_OF_WEEK =
# The *_INPUT_FORMATS strings use the Python strftime format syntax, # The *_INPUT_FORMATS strings use the Python strftime format syntax,
# see http://docs.python.org/library/datetime.html#strftime-strptime-behavior # see https://docs.python.org/library/datetime.html#strftime-strptime-behavior
# DATE_INPUT_FORMATS = # DATE_INPUT_FORMATS =
# TIME_INPUT_FORMATS = # TIME_INPUT_FORMATS =
# DATETIME_INPUT_FORMATS = # DATETIME_INPUT_FORMATS =

View File

@ -1,7 +1,7 @@
# This file is distributed under the same license as the Django package. # This file is distributed under the same license as the Django package.
# #
# The *_FORMAT strings use the Django date format syntax, # The *_FORMAT strings use the Django date format syntax,
# see http://docs.djangoproject.com/en/dev/ref/templates/builtins/#date # see https://docs.djangoproject.com/en/dev/ref/templates/builtins/#date
DATE_FORMAT = 'j F Y' DATE_FORMAT = 'j F Y'
TIME_FORMAT = 'G:i' TIME_FORMAT = 'G:i'
DATETIME_FORMAT = 'j F Y, G:i' DATETIME_FORMAT = 'j F Y, G:i'
@ -12,7 +12,7 @@ SHORT_DATETIME_FORMAT = 'j M Y, G:i'
FIRST_DAY_OF_WEEK = 0 # Sunday FIRST_DAY_OF_WEEK = 0 # Sunday
# The *_INPUT_FORMATS strings use the Python strftime format syntax, # The *_INPUT_FORMATS strings use the Python strftime format syntax,
# see http://docs.python.org/library/datetime.html#strftime-strptime-behavior # see https://docs.python.org/library/datetime.html#strftime-strptime-behavior
DATE_INPUT_FORMATS = [ DATE_INPUT_FORMATS = [
'%d/%m/%Y', # 25/10/2006 '%d/%m/%Y', # 25/10/2006
'%d %b %Y', # 25 ต.ค. 2006 '%d %b %Y', # 25 ต.ค. 2006

View File

@ -1,7 +1,7 @@
# This file is distributed under the same license as the Django package. # This file is distributed under the same license as the Django package.
# #
# The *_FORMAT strings use the Django date format syntax, # The *_FORMAT strings use the Django date format syntax,
# see http://docs.djangoproject.com/en/dev/ref/templates/builtins/#date # see https://docs.djangoproject.com/en/dev/ref/templates/builtins/#date
DATE_FORMAT = 'd F Y' DATE_FORMAT = 'd F Y'
TIME_FORMAT = 'H:i' TIME_FORMAT = 'H:i'
DATETIME_FORMAT = 'd F Y H:i' DATETIME_FORMAT = 'd F Y H:i'
@ -12,7 +12,7 @@ SHORT_DATETIME_FORMAT = 'd M Y H:i'
FIRST_DAY_OF_WEEK = 1 # Pazartesi FIRST_DAY_OF_WEEK = 1 # Pazartesi
# The *_INPUT_FORMATS strings use the Python strftime format syntax, # The *_INPUT_FORMATS strings use the Python strftime format syntax,
# see http://docs.python.org/library/datetime.html#strftime-strptime-behavior # see https://docs.python.org/library/datetime.html#strftime-strptime-behavior
DATE_INPUT_FORMATS = [ DATE_INPUT_FORMATS = [
'%d/%m/%Y', '%d/%m/%y', # '25/10/2006', '25/10/06' '%d/%m/%Y', '%d/%m/%y', # '25/10/2006', '25/10/06'
'%y-%m-%d', # '06-10-25' '%y-%m-%d', # '06-10-25'

View File

@ -1,7 +1,7 @@
# This file is distributed under the same license as the Django package. # This file is distributed under the same license as the Django package.
# #
# The *_FORMAT strings use the Django date format syntax, # The *_FORMAT strings use the Django date format syntax,
# see http://docs.djangoproject.com/en/dev/ref/templates/builtins/#date # see https://docs.djangoproject.com/en/dev/ref/templates/builtins/#date
DATE_FORMAT = 'd E Y р.' DATE_FORMAT = 'd E Y р.'
TIME_FORMAT = 'H:i' TIME_FORMAT = 'H:i'
DATETIME_FORMAT = 'd E Y р. H:i' DATETIME_FORMAT = 'd E Y р. H:i'
@ -12,7 +12,7 @@ SHORT_DATETIME_FORMAT = 'd.m.Y H:i'
FIRST_DAY_OF_WEEK = 1 # Monday FIRST_DAY_OF_WEEK = 1 # Monday
# The *_INPUT_FORMATS strings use the Python strftime format syntax, # The *_INPUT_FORMATS strings use the Python strftime format syntax,
# see http://docs.python.org/library/datetime.html#strftime-strptime-behavior # see https://docs.python.org/library/datetime.html#strftime-strptime-behavior
DATE_INPUT_FORMATS = [ DATE_INPUT_FORMATS = [
'%d.%m.%Y', # '25.10.2006' '%d.%m.%Y', # '25.10.2006'
'%d %B %Y', # '25 October 2006' '%d %B %Y', # '25 October 2006'

View File

@ -1,7 +1,7 @@
# This file is distributed under the same license as the Django package. # This file is distributed under the same license as the Django package.
# #
# The *_FORMAT strings use the Django date format syntax, # The *_FORMAT strings use the Django date format syntax,
# see http://docs.djangoproject.com/en/dev/ref/templates/builtins/#date # see https://docs.djangoproject.com/en/dev/ref/templates/builtins/#date
DATE_FORMAT = r'\N\\y d \t\\n\g n \\m Y' DATE_FORMAT = r'\N\\y d \t\\n\g n \\m Y'
TIME_FORMAT = 'H:i' TIME_FORMAT = 'H:i'
DATETIME_FORMAT = r'H:i \N\\y d \t\\n\g n \\m Y' DATETIME_FORMAT = r'H:i \N\\y d \t\\n\g n \\m Y'
@ -12,7 +12,7 @@ SHORT_DATETIME_FORMAT = 'H:i d-m-Y'
# FIRST_DAY_OF_WEEK = # FIRST_DAY_OF_WEEK =
# The *_INPUT_FORMATS strings use the Python strftime format syntax, # The *_INPUT_FORMATS strings use the Python strftime format syntax,
# see http://docs.python.org/library/datetime.html#strftime-strptime-behavior # see https://docs.python.org/library/datetime.html#strftime-strptime-behavior
# DATE_INPUT_FORMATS = # DATE_INPUT_FORMATS =
# TIME_INPUT_FORMATS = # TIME_INPUT_FORMATS =
# DATETIME_INPUT_FORMATS = # DATETIME_INPUT_FORMATS =

View File

@ -1,7 +1,7 @@
# This file is distributed under the same license as the Django package. # This file is distributed under the same license as the Django package.
# #
# The *_FORMAT strings use the Django date format syntax, # The *_FORMAT strings use the Django date format syntax,
# see http://docs.djangoproject.com/en/dev/ref/templates/builtins/#date # see https://docs.djangoproject.com/en/dev/ref/templates/builtins/#date
DATE_FORMAT = 'Y年n月j日' # 2016年9月5日 DATE_FORMAT = 'Y年n月j日' # 2016年9月5日
TIME_FORMAT = 'H:i' # 20:45 TIME_FORMAT = 'H:i' # 20:45
DATETIME_FORMAT = 'Y年n月j日 H:i' # 2016年9月5日 20:45 DATETIME_FORMAT = 'Y年n月j日 H:i' # 2016年9月5日 20:45
@ -12,7 +12,7 @@ SHORT_DATETIME_FORMAT = 'Y年n月j日 H:i' # 2016年9月5日 20:45
FIRST_DAY_OF_WEEK = 1 # 星期一 (Monday) FIRST_DAY_OF_WEEK = 1 # 星期一 (Monday)
# The *_INPUT_FORMATS strings use the Python strftime format syntax, # The *_INPUT_FORMATS strings use the Python strftime format syntax,
# see http://docs.python.org/library/datetime.html#strftime-strptime-behavior # see https://docs.python.org/library/datetime.html#strftime-strptime-behavior
DATE_INPUT_FORMATS = [ DATE_INPUT_FORMATS = [
'%Y/%m/%d', # '2016/09/05' '%Y/%m/%d', # '2016/09/05'
'%Y-%m-%d', # '2016-09-05' '%Y-%m-%d', # '2016-09-05'

View File

@ -1,7 +1,7 @@
# This file is distributed under the same license as the Django package. # This file is distributed under the same license as the Django package.
# #
# The *_FORMAT strings use the Django date format syntax, # The *_FORMAT strings use the Django date format syntax,
# see http://docs.djangoproject.com/en/dev/ref/templates/builtins/#date # see https://docs.djangoproject.com/en/dev/ref/templates/builtins/#date
DATE_FORMAT = 'Y年n月j日' # 2016年9月5日 DATE_FORMAT = 'Y年n月j日' # 2016年9月5日
TIME_FORMAT = 'H:i' # 20:45 TIME_FORMAT = 'H:i' # 20:45
DATETIME_FORMAT = 'Y年n月j日 H:i' # 2016年9月5日 20:45 DATETIME_FORMAT = 'Y年n月j日 H:i' # 2016年9月5日 20:45
@ -12,7 +12,7 @@ SHORT_DATETIME_FORMAT = 'Y年n月j日 H:i' # 2016年9月5日 20:45
FIRST_DAY_OF_WEEK = 1 # 星期一 (Monday) FIRST_DAY_OF_WEEK = 1 # 星期一 (Monday)
# The *_INPUT_FORMATS strings use the Python strftime format syntax, # The *_INPUT_FORMATS strings use the Python strftime format syntax,
# see http://docs.python.org/library/datetime.html#strftime-strptime-behavior # see https://docs.python.org/library/datetime.html#strftime-strptime-behavior
DATE_INPUT_FORMATS = [ DATE_INPUT_FORMATS = [
'%Y/%m/%d', # '2016/09/05' '%Y/%m/%d', # '2016/09/05'
'%Y-%m-%d', # '2016-09-05' '%Y-%m-%d', # '2016-09-05'

View File

@ -1,6 +1,6 @@
All icons are taken from Font Awesome (http://fontawesome.io/) project. All icons are taken from Font Awesome (http://fontawesome.io/) project.
The Font Awesome font is licensed under the SIL OFL 1.1: The Font Awesome font is licensed under the SIL OFL 1.1:
- http://scripts.sil.org/OFL - https://scripts.sil.org/OFL
SVG icons source: https://github.com/encharm/Font-Awesome-SVG-PNG SVG icons source: https://github.com/encharm/Font-Awesome-SVG-PNG
Font-Awesome-SVG-PNG is licensed under the MIT license (see file license Font-Awesome-SVG-PNG is licensed under the MIT license (see file license

View File

@ -30,7 +30,7 @@ function removeChildren(a) {
// ---------------------------------------------------------------------------- // ----------------------------------------------------------------------------
// Find-position functions by PPK // Find-position functions by PPK
// See http://www.quirksmode.org/js/findpos.html // See https://www.quirksmode.org/js/findpos.html
// ---------------------------------------------------------------------------- // ----------------------------------------------------------------------------
function findPosX(obj) { function findPosX(obj) {
'use strict'; 'use strict';

View File

@ -13,7 +13,7 @@
* and modified for Django by Jannis Leidel, Travis Swicegood and Julien Phalip. * and modified for Django by Jannis Leidel, Travis Swicegood and Julien Phalip.
* *
* Licensed under the New BSD License * Licensed under the New BSD License
* See: http://www.opensource.org/licenses/bsd-license.php * See: https://opensource.org/licenses/bsd-license.php
*/ */
(function($) { (function($) {
'use strict'; 'use strict';

View File

@ -44,7 +44,7 @@ from django.utils.encoding import force_bytes, force_text
# For more information, see the OGR C API source code: # For more information, see the OGR C API source code:
# http://www.gdal.org/ogr__api_8h.html # https://www.gdal.org/ogr__api_8h.html
# #
# The OGR_DS_* routines are relevant here. # The OGR_DS_* routines are relevant here.
class DataSource(GDALBase): class DataSource(GDALBase):
@ -57,7 +57,7 @@ class DataSource(GDALBase):
self._write = 1 self._write = 1
else: else:
self._write = 0 self._write = 0
# See also http://trac.osgeo.org/gdal/wiki/rfc23_ogr_unicode # See also https://trac.osgeo.org/gdal/wiki/rfc23_ogr_unicode
self.encoding = encoding self.encoding = encoding
Driver.ensure_registered() Driver.ensure_registered()

View File

@ -10,13 +10,13 @@ class Driver(GDALBase):
""" """
Wrap a GDAL/OGR Data Source Driver. Wrap a GDAL/OGR Data Source Driver.
For more information, see the C API source code: For more information, see the C API source code:
http://www.gdal.org/gdal_8h.html - http://www.gdal.org/ogr__api_8h.html https://www.gdal.org/gdal_8h.html - https://www.gdal.org/ogr__api_8h.html
""" """
# Case-insensitive aliases for some GDAL/OGR Drivers. # Case-insensitive aliases for some GDAL/OGR Drivers.
# For a complete list of original driver names see # For a complete list of original driver names see
# http://www.gdal.org/ogr_formats.html (vector) # https://www.gdal.org/ogr_formats.html (vector)
# http://www.gdal.org/formats_list.html (raster) # https://www.gdal.org/formats_list.html (raster)
_alias = { _alias = {
# vector # vector
'esri': 'ESRI Shapefile', 'esri': 'ESRI Shapefile',

View File

@ -17,7 +17,7 @@ from django.contrib.gis.gdal.error import GDALException
# The OGR definition of an Envelope is a C structure containing four doubles. # The OGR definition of an Envelope is a C structure containing four doubles.
# See the 'ogr_core.h' source file for more information: # See the 'ogr_core.h' source file for more information:
# http://www.gdal.org/ogr__core_8h_source.html # https://www.gdal.org/ogr__core_8h_source.html
class OGREnvelope(Structure): class OGREnvelope(Structure):
"Represent the OGREnvelope C Structure." "Represent the OGREnvelope C Structure."
_fields_ = [("MinX", c_double), _fields_ = [("MinX", c_double),

View File

@ -29,7 +29,7 @@ OGRERR_DICT = {
} }
# CPL Error Codes # CPL Error Codes
# http://www.gdal.org/cpl__error_8h.html # https://www.gdal.org/cpl__error_8h.html
CPLERR_DICT = { CPLERR_DICT = {
1: (GDALException, 'AppDefined'), 1: (GDALException, 'AppDefined'),
2: (GDALException, 'OutOfMemory'), 2: (GDALException, 'OutOfMemory'),

View File

@ -7,7 +7,7 @@ from django.utils.encoding import force_bytes, force_text
# For more information, see the OGR C API source code: # For more information, see the OGR C API source code:
# http://www.gdal.org/ogr__api_8h.html # https://www.gdal.org/ogr__api_8h.html
# #
# The OGR_F_* routines are relevant here. # The OGR_F_* routines are relevant here.
class Feature(GDALBase): class Feature(GDALBase):

View File

@ -8,7 +8,7 @@ from django.utils.encoding import force_text
# For more information, see the OGR C API source code: # For more information, see the OGR C API source code:
# http://www.gdal.org/ogr__api_8h.html # https://www.gdal.org/ogr__api_8h.html
# #
# The OGR_Fld_* routines are relevant here. # The OGR_Fld_* routines are relevant here.
class Field(GDALBase): class Field(GDALBase):
@ -167,7 +167,7 @@ class OFTDateTime(Field):
def value(self): def value(self):
"Return a Python `datetime` object for this OFTDateTime field." "Return a Python `datetime` object for this OFTDateTime field."
# TODO: Adapt timezone information. # TODO: Adapt timezone information.
# See http://lists.osgeo.org/pipermail/gdal-dev/2006-February/007990.html # See https://lists.osgeo.org/pipermail/gdal-dev/2006-February/007990.html
# The `tz` variable has values of: 0=unknown, 1=localtime (ambiguous), # The `tz` variable has values of: 0=unknown, 1=localtime (ambiguous),
# 100=GMT, 104=GMT+1, 80=GMT-5, etc. # 100=GMT, 104=GMT+1, 80=GMT-5, etc.
try: try:

View File

@ -1,6 +1,6 @@
""" """
The OGRGeometry is a wrapper for using the OGR Geometry class The OGRGeometry is a wrapper for using the OGR Geometry class
(see http://www.gdal.org/classOGRGeometry.html). OGRGeometry (see https://www.gdal.org/classOGRGeometry.html). OGRGeometry
may be instantiated when reading geometries from OGR Data Sources may be instantiated when reading geometries from OGR Data Sources
(e.g. SHP files), or when given OGC WKT (a string). (e.g. SHP files), or when given OGC WKT (a string).
@ -54,7 +54,7 @@ from django.utils.encoding import force_bytes
# For more information, see the OGR C API source code: # For more information, see the OGR C API source code:
# http://www.gdal.org/ogr__api_8h.html # https://www.gdal.org/ogr__api_8h.html
# #
# The OGR_G_* routines are relevant here. # The OGR_G_* routines are relevant here.
class OGRGeometry(GDALBase): class OGRGeometry(GDALBase):
@ -80,7 +80,7 @@ class OGRGeometry(GDALBase):
srs = int(wkt_m.group('srid')) srs = int(wkt_m.group('srid'))
if wkt_m.group('type').upper() == 'LINEARRING': if wkt_m.group('type').upper() == 'LINEARRING':
# OGR_G_CreateFromWkt doesn't work with LINEARRING WKT. # OGR_G_CreateFromWkt doesn't work with LINEARRING WKT.
# See http://trac.osgeo.org/gdal/ticket/1992. # See https://trac.osgeo.org/gdal/ticket/1992.
g = capi.create_geom(OGRGeomType(wkt_m.group('type')).num) g = capi.create_geom(OGRGeomType(wkt_m.group('type')).num)
capi.import_wkt(g, byref(c_char_p(wkt_m.group('wkt').encode()))) capi.import_wkt(g, byref(c_char_p(wkt_m.group('wkt').encode())))
else: else:

View File

@ -15,7 +15,7 @@ from django.utils.encoding import force_bytes, force_text
# For more information, see the OGR C API source code: # For more information, see the OGR C API source code:
# http://www.gdal.org/ogr__api_8h.html # https://www.gdal.org/ogr__api_8h.html
# #
# The OGR_L_* routines are relevant here. # The OGR_L_* routines are relevant here.
class Layer(GDALBase): class Layer(GDALBase):

View File

@ -12,9 +12,9 @@ from django.contrib.gis.gdal.prototypes.generation import (
) )
# For more detail about c function names and definitions see # For more detail about c function names and definitions see
# http://gdal.org/gdal_8h.html # https://gdal.org/gdal_8h.html
# http://gdal.org/gdalwarper_8h.html # https://gdal.org/gdalwarper_8h.html
# http://www.gdal.org/gdal__utils_8h.html # https://www.gdal.org/gdal__utils_8h.html
# Prepare partial functions that use cpl error codes # Prepare partial functions that use cpl error codes
void_output = partial(void_output, cpl=True) void_output = partial(void_output, cpl=True)
@ -105,7 +105,7 @@ auto_create_warped_vrt = voidptr_output(
) )
# Create VSI gdal raster files from in-memory buffers. # Create VSI gdal raster files from in-memory buffers.
# http://gdal.org/cpl__vsi_8h.html # https://gdal.org/cpl__vsi_8h.html
create_vsi_file_from_mem_buffer = voidptr_output(std_call('VSIFileFromMemBuffer'), [c_char_p, c_void_p, c_int, c_int]) create_vsi_file_from_mem_buffer = voidptr_output(std_call('VSIFileFromMemBuffer'), [c_char_p, c_void_p, c_int, c_int])
get_mem_buffer_from_vsi_file = voidptr_output(std_call('VSIGetMemFileBuffer'), [c_char_p, POINTER(c_int), c_bool]) get_mem_buffer_from_vsi_file = voidptr_output(std_call('VSIGetMemFileBuffer'), [c_char_p, POINTER(c_int), c_bool])
unlink_vsi_file = int_output(std_call('VSIUnlink'), [c_char_p]) unlink_vsi_file = int_output(std_call('VSIUnlink'), [c_char_p])

View File

@ -5,7 +5,7 @@ from ctypes import (
c_double, c_float, c_int16, c_int32, c_ubyte, c_uint16, c_uint32, c_double, c_float, c_int16, c_int32, c_ubyte, c_uint16, c_uint32,
) )
# See http://www.gdal.org/gdal_8h.html#a22e22ce0a55036a96f652765793fb7a4 # See https://www.gdal.org/gdal_8h.html#a22e22ce0a55036a96f652765793fb7a4
GDAL_PIXEL_TYPES = { GDAL_PIXEL_TYPES = {
0: 'GDT_Unknown', # Unknown or unspecified type 0: 'GDT_Unknown', # Unknown or unspecified type
1: 'GDT_Byte', # Eight bit unsigned integer 1: 'GDT_Byte', # Eight bit unsigned integer
@ -44,7 +44,7 @@ GDAL_RESAMPLE_ALGORITHMS = {
'Mode': 6, 'Mode': 6,
} }
# See http://www.gdal.org/gdal_8h.html#ace76452d94514561fffa8ea1d2a5968c # See https://www.gdal.org/gdal_8h.html#ace76452d94514561fffa8ea1d2a5968c
GDAL_COLOR_TYPES = { GDAL_COLOR_TYPES = {
0: 'GCI_Undefined', # Undefined, default value, i.e. not known 0: 'GCI_Undefined', # Undefined, default value, i.e. not known
1: 'GCI_GrayIndex', # Greyscale 1: 'GCI_GrayIndex', # Greyscale

View File

@ -52,7 +52,7 @@ def _get_sitemap_full_url(sitemap_url):
class Sitemap: class Sitemap:
# This limit is defined by Google. See the index documentation at # This limit is defined by Google. See the index documentation at
# http://www.sitemaps.org/protocol.html#index. # https://www.sitemaps.org/protocol.html#index.
limit = 50000 limit = 50000
# If protocol is None, the URLs in the sitemap will use the protocol # If protocol is None, the URLs in the sitemap will use the protocol

View File

@ -6,8 +6,8 @@ Cookbook [1] (licensed under the Python Software License) and a ctypes port by
Anatoly Techtonik for Roundup [2] (license [3]). Anatoly Techtonik for Roundup [2] (license [3]).
[1] http://aspn.activestate.com/ASPN/Cookbook/Python/Recipe/65203 [1] http://aspn.activestate.com/ASPN/Cookbook/Python/Recipe/65203
[2] http://sourceforge.net/p/roundup/code/ci/default/tree/roundup/backends/portalocker.py [2] https://sourceforge.net/p/roundup/code/ci/default/tree/roundup/backends/portalocker.py
[3] http://sourceforge.net/p/roundup/code/ci/default/tree/COPYING.txt [3] https://sourceforge.net/p/roundup/code/ci/default/tree/COPYING.txt
Example Usage:: Example Usage::

View File

@ -13,7 +13,7 @@ The custom version of NamedTemporaryFile doesn't support the same keyword
arguments available in tempfile.NamedTemporaryFile. arguments available in tempfile.NamedTemporaryFile.
1: https://mail.python.org/pipermail/python-list/2005-December/336957.html 1: https://mail.python.org/pipermail/python-list/2005-December/336957.html
2: http://bugs.python.org/issue14243 2: https://bugs.python.org/issue14243
""" """
import os import os

View File

@ -73,7 +73,7 @@ class WSGIRequest(HttpRequest):
self.path_info = path_info self.path_info = path_info
# be careful to only replace the first slash in the path because of # be careful to only replace the first slash in the path because of
# http://test/something and http://test//something being different as # http://test/something and http://test//something being different as
# stated in http://www.ietf.org/rfc/rfc2396.txt # stated in https://www.ietf.org/rfc/rfc2396.txt
self.path = '%s/%s' % (script_name.rstrip('/'), self.path = '%s/%s' % (script_name.rstrip('/'),
path_info.replace('/', '', 1)) path_info.replace('/', '', 1))
self.META = environ self.META = environ

View File

@ -1,7 +1,7 @@
""" """
YAML serializer. YAML serializer.
Requires PyYaml (http://pyyaml.org/), but that's checked for in __init__. Requires PyYaml (https://pyyaml.org/), but that's checked for in __init__.
""" """
import collections import collections

View File

@ -286,7 +286,7 @@ class Deserializer(base.Deserializer):
def getInnerText(node): def getInnerText(node):
"""Get all the inner text of a DOM node (recursively).""" """Get all the inner text of a DOM node (recursively)."""
# inspired by http://mail.python.org/pipermail/xml-sig/2005-March/011022.html # inspired by https://mail.python.org/pipermail/xml-sig/2005-March/011022.html
inner_text = [] inner_text = []
for child in node.childNodes: for child in node.childNodes:
if child.nodeType == child.TEXT_NODE or child.nodeType == child.CDATA_SECTION_NODE: if child.nodeType == child.TEXT_NODE or child.nodeType == child.CDATA_SECTION_NODE:

View File

@ -152,7 +152,7 @@ class BaseDatabaseFeatures:
can_distinct_on_fields = False can_distinct_on_fields = False
# Does the backend decide to commit before SAVEPOINT statements # Does the backend decide to commit before SAVEPOINT statements
# when autocommit is disabled? http://bugs.python.org/issue8145#msg109965 # when autocommit is disabled? https://bugs.python.org/issue8145#msg109965
autocommits_when_autocommit_is_off = False autocommits_when_autocommit_is_off = False
# Does the backend prevent running SQL queries in broken transactions? # Does the backend prevent running SQL queries in broken transactions?

View File

@ -29,7 +29,7 @@ class DatabaseOperations(BaseDatabaseOperations):
explain_prefix = 'EXPLAIN' explain_prefix = 'EXPLAIN'
def date_extract_sql(self, lookup_type, field_name): def date_extract_sql(self, lookup_type, field_name):
# http://dev.mysql.com/doc/mysql/en/date-and-time-functions.html # https://dev.mysql.com/doc/mysql/en/date-and-time-functions.html
if lookup_type == 'week_day': if lookup_type == 'week_day':
# DAYOFWEEK() returns an integer, 1-7, Sunday=1. # DAYOFWEEK() returns an integer, 1-7, Sunday=1.
# Note: WEEKDAY() returns 0-6, Monday=0. # Note: WEEKDAY() returns 0-6, Monday=0.

View File

@ -82,7 +82,7 @@ class DatabaseWrapper(BaseDatabaseWrapper):
} }
# SQLite requires LIKE statements to include an ESCAPE clause if the value # SQLite requires LIKE statements to include an ESCAPE clause if the value
# being escaped has a percent or underscore in it. # being escaped has a percent or underscore in it.
# See http://www.sqlite.org/lang_expr.html for an explanation. # See https://www.sqlite.org/lang_expr.html for an explanation.
operators = { operators = {
'exact': '= %s', 'exact': '= %s',
'iexact': "LIKE %s ESCAPE '\\'", 'iexact': "LIKE %s ESCAPE '\\'",

View File

@ -89,7 +89,7 @@ class DatabaseCreation(BaseDatabaseCreation):
This takes into account the special cases of ":memory:" and "" for This takes into account the special cases of ":memory:" and "" for
SQLite since the databases will be distinct despite having the same SQLite since the databases will be distinct despite having the same
TEST NAME. See http://www.sqlite.org/inmemorydb.html TEST NAME. See https://www.sqlite.org/inmemorydb.html
""" """
test_database_name = self._get_test_db_name() test_database_name = self._get_test_db_name()
sig = [self.connection.settings_dict['NAME']] sig = [self.connection.settings_dict['NAME']]

View File

@ -324,7 +324,7 @@ class MigrationGraph:
def ensure_not_cyclic(self, start, get_children): def ensure_not_cyclic(self, start, get_children):
# Algo from GvR: # Algo from GvR:
# http://neopythonic.blogspot.co.uk/2009/01/detecting-cycles-in-directed-graph.html # https://neopythonic.blogspot.com/2009/01/detecting-cycles-in-directed-graph.html
todo = set(self.nodes) todo = set(self.nodes)
while todo: while todo:
node = todo.pop() node = todo.pop()

View File

@ -1131,7 +1131,7 @@ def now(parser, token):
""" """
Display the date, formatted according to the given string. Display the date, formatted according to the given string.
Use the same format as PHP's ``date()`` function; see http://php.net/date Use the same format as PHP's ``date()`` function; see https://php.net/date
for all the possible values. for all the possible values.
Sample usage:: Sample usage::

View File

@ -275,7 +275,7 @@ class RequestFactory:
# This is a minimal valid WSGI environ dictionary, plus: # This is a minimal valid WSGI environ dictionary, plus:
# - HTTP_COOKIE: for cookie support, # - HTTP_COOKIE: for cookie support,
# - REMOTE_ADDR: often useful, see #8551. # - REMOTE_ADDR: often useful, see #8551.
# See http://www.python.org/dev/peps/pep-3333/#environ-variables # See https://www.python.org/dev/peps/pep-3333/#environ-variables
return { return {
'HTTP_COOKIE': self.cookies.output(header='', sep='; '), 'HTTP_COOKIE': self.cookies.output(header='', sep='; '),
'PATH_INFO': '/', 'PATH_INFO': '/',

View File

@ -1,5 +1,5 @@
# Autoreloading launcher. # Autoreloading launcher.
# Borrowed from Peter Hunt and the CherryPy project (http://www.cherrypy.org). # Borrowed from Peter Hunt and the CherryPy project (https://cherrypy.org/).
# Some taken from Ian Bicking's Paste (http://pythonpaste.org/). # Some taken from Ian Bicking's Paste (http://pythonpaste.org/).
# #
# Portions copyright (c) 2004, CherryPy Team (team@cherrypy.org) # Portions copyright (c) 2004, CherryPy Team (team@cherrypy.org)
@ -42,7 +42,7 @@ from django.conf import settings
from django.core.signals import request_finished from django.core.signals import request_finished
# This import does nothing, but it's necessary to avoid some race conditions # This import does nothing, but it's necessary to avoid some race conditions
# in the threading module. See http://code.djangoproject.com/ticket/2330 . # in the threading module. See https://code.djangoproject.com/ticket/2330 .
try: try:
import threading # NOQA import threading # NOQA
except ImportError: except ImportError:

View File

@ -117,7 +117,7 @@ def decorator_from_middleware(middleware_class):
def available_attrs(fn): def available_attrs(fn):
""" """
Return the list of functools-wrappable attributes on a callable. Return the list of functools-wrappable attributes on a callable.
This was required as a workaround for http://bugs.python.org/issue3445 This was required as a workaround for https://bugs.python.org/issue3445
under Python 2. under Python 2.
""" """
return WRAPPER_ASSIGNMENTS return WRAPPER_ASSIGNMENTS

View File

@ -19,7 +19,7 @@ Sample usage:
... feed.write(fp, 'utf-8') ... feed.write(fp, 'utf-8')
For definitions of the different versions of RSS, see: For definitions of the different versions of RSS, see:
http://web.archive.org/web/20110718035220/http://diveintomark.org/archives/2004/02/04/incompatible-rss https://web.archive.org/web/20110718035220/http://diveintomark.org/archives/2004/02/04/incompatible-rss
""" """
import datetime import datetime
import email import email
@ -48,7 +48,7 @@ def get_tag_uri(url, date):
""" """
Create a TagURI. Create a TagURI.
See http://web.archive.org/web/20110514113830/http://diveintomark.org/archives/2004/05/28/howto-atom-id See https://web.archive.org/web/20110514113830/http://diveintomark.org/archives/2004/05/28/howto-atom-id
""" """
bits = urlparse(url) bits = urlparse(url)
d = '' d = ''
@ -239,7 +239,7 @@ class RssUserland091Feed(RssFeed):
class Rss201rev2Feed(RssFeed): class Rss201rev2Feed(RssFeed):
# Spec: http://blogs.law.harvard.edu/tech/rss # Spec: https://cyber.harvard.edu/rss/rss.html
_version = "2.0" _version = "2.0"
def add_item_elements(self, handler, item): def add_item_elements(self, handler, item):

View File

@ -204,8 +204,8 @@ def smart_urlquote(url):
def unquote_quote(segment): def unquote_quote(segment):
segment = unquote(segment) segment = unquote(segment)
# Tilde is part of RFC3986 Unreserved Characters # Tilde is part of RFC3986 Unreserved Characters
# http://tools.ietf.org/html/rfc3986#section-2.3 # https://tools.ietf.org/html/rfc3986#section-2.3
# See also http://bugs.python.org/issue16285 # See also https://bugs.python.org/issue16285
return quote(segment, safe=RFC3986_SUBDELIMS + RFC3986_GENDELIMS + '~') return quote(segment, safe=RFC3986_SUBDELIMS + RFC3986_GENDELIMS + '~')
# Handle IDN before quoting. # Handle IDN before quoting.

View File

@ -76,7 +76,7 @@ def module_has_submodule(package, module_name):
# When module_name is an invalid dotted path, Python raises ImportError # When module_name is an invalid dotted path, Python raises ImportError
# (or ModuleNotFoundError in Python 3.6+). AttributeError may be raised # (or ModuleNotFoundError in Python 3.6+). AttributeError may be raised
# if the penultimate part of the path is not a package. # if the penultimate part of the path is not a package.
# (http://bugs.python.org/issue30436) # (https://bugs.python.org/issue30436)
return False return False

View File

@ -39,7 +39,7 @@ def timesince(d, now=None, reversed=False, time_strings=None):
TIME_STRINGS dict. TIME_STRINGS dict.
Adapted from Adapted from
http://web.archive.org/web/20060617175230/http://blog.natbat.co.uk/archive/2003/Jun/14/time_since https://web.archive.org/web/20060617175230/http://blog.natbat.co.uk/archive/2003/Jun/14/time_since
""" """
if time_strings is None: if time_strings is None:
time_strings = TIME_STRINGS time_strings = TIME_STRINGS

Some files were not shown because too many files have changed in this diff Show More