Arthur de Jong

Open Source / Free Software developer

summaryrefslogtreecommitdiffstats
path: root/django/forms/extras
Commit message (Collapse)AuthorAgeFilesLines
* Renamed RemovedInDjangoXYWarnings for new roadmap.Tim Graham2015-06-241-2/+2
| | | | | Forwardport of ae1d663b7913f6da233c55409c4973248372d302 from stable/1.8.x plus more.
* Fixed #24219 -- Moved SelectDateWidget together with the ↵Loic Bistuer2015-01-272-150/+11
| | | | | | | | other widgets and deprecated django.forms.extras. Thanks Berker Peksag and Tim Graham for the reviews.
* Fixed #22684 -- Amended SelectDateWidget.empty_label to ↵gyx10002014-06-041-7/+20
| | | | | | accept a tuple of values. Thanks danielsamuels for the report
* Fixed #22684 -- Added `empty_label` option on ↵Guillaume Pannatier2014-05-281-1/+4
| | | | | | `django.forms.extras.widets.SelectDateWidget` Thanks danielsamuels for the report
* Refactored some code in SelectDateWidget.Tomasz Wysocki2014-04-101-22/+9
|
* Fixed #13970 -- Made SelectDateWidget use the standard ↵Claude Paroz2013-11-081-3/+2
| | | | | | widget is_required attribute Thanks mitar for the report and Tim Graham for the review.
* Fixed all E226 violationsAlex Gaynor2013-11-031-1/+1
|
* Fixed flake8 E241Boryslav Larin2013-11-021-1/+3
|
* Fixed #21302 -- Fixed unused imports and import *.Tim Graham2013-11-021-1/+3
|
* Fixed #20986 -- Enabled SelectDateWidget to use custom ↵Loic Bistuer2013-08-281-3/+10
| | | | | | months Reviewed by Trac alias MarkusH.
* Removed most of absolute_import importsClaude Paroz2013-07-291-2/+0
| | | | | Should be unneeded with Python 2.7 and up. Added some unicode_literals along the way.
* Fixed #16123 -- Ensured strptime receive proper string typeClaude Paroz2013-01-261-1/+2
| | | | | strptime generates an UnicodeEncodeError when using a non-ascii unicode string on Python 2.
* Moved has_changed logic from widget to form fieldClaude Paroz2013-01-251-8/+0
| | | | Refs #16612. Thanks Aymeric Augustin for the suggestion.
* [py3] Fixed access to dict keys/values/items.Aymeric Augustin2012-08-071-1/+1
|
* [py3] Replaced basestring by six.string_types.Aymeric Augustin2012-07-221-1/+2
|
* Fixed #18269 -- Applied unicode_literals for Python 3 ↵Claude Paroz2012-06-071-1/+2
| | | | | | | compatibility. Thanks Vinay Sajip for the support of his django3 branch and Jannis Leidel for the review.
* Fixed #17493 -- Made `Widget.id_for_label()` ↵Julien Phalip2012-02-051-1/+0
| | | | | | consistently be an instance method. git-svn-id: http://code.djangoproject.com/svn/django/trunk@17452 bcc190cf-cafb-0310-a4f2-bffc1f526a37
* Fixed #17542 -- Gracefully handle errors when checking ↵Jannis Leidel2012-02-041-3/+6
| | | | | | if the values of a SelectDateWidget has changed if it's not required. Thanks, pigletto. git-svn-id: http://code.djangoproject.com/svn/django/trunk@17436 bcc190cf-cafb-0310-a4f2-bffc1f526a37
* Fixed #17165 -- Fixed `SelectDateWidget._has_changed()` ↵Julien Phalip2011-11-061-0/+5
| | | | | | to work correctly with a localized date format. git-svn-id: http://code.djangoproject.com/svn/django/trunk@17071 bcc190cf-cafb-0310-a4f2-bffc1f526a37
* Remove all relative imports. We have always been at war ↵Alex Gaynor2011-10-181-1/+3
| | | | | | with relative imports. git-svn-id: http://code.djangoproject.com/svn/django/trunk@17009 bcc190cf-cafb-0310-a4f2-bffc1f526a37
* Fixed #16225 -- Removed unused imports. Many thanks to ↵Jannis Leidel2011-07-131-1/+0
| | | | | | Aymeric Augustin for the work on the patch and Alex for reviewing. git-svn-id: http://code.djangoproject.com/svn/django/trunk@16539 bcc190cf-cafb-0310-a4f2-bffc1f526a37
* Removed a bunch more Python 2.4 workarounds now that we ↵Adrian Holovaty2011-03-281-5/+1
| | | | | | don't support that version. Refs #15702 -- thanks to jonash for the patch. git-svn-id: http://code.djangoproject.com/svn/django/trunk@15927 bcc190cf-cafb-0310-a4f2-bffc1f526a37
* Fixed #15226 - Made SelectDateWidget render the label ↵Ramiro Morales2011-02-051-12/+32
| | | | | | tag associated with the correct dropdown sub-widget when USE_L10N is active and non-English locale is in use. git-svn-id: http://code.djangoproject.com/svn/django/trunk@15427 bcc190cf-cafb-0310-a4f2-bffc1f526a37
* Fixed #13968 -- Fixed SelectDateWidget processing of an ↵Ramiro Morales2011-02-051-2/+2
| | | | | | invalid date input value when USE_L10N is on, for consistency with its behavior when USE_L10N=False (now the form field reports the validation error in both cases). Thanks mitar for the report. git-svn-id: http://code.djangoproject.com/svn/django/trunk@15416 bcc190cf-cafb-0310-a4f2-bffc1f526a37
* Fixed #14933 -- Added ability to SelectDateWidget to ↵Jannis Leidel2010-12-221-1/+1
| | | | | | cope with new alternative month names added in [14900]. Thanks, alek and Claude Peroz. git-svn-id: http://code.djangoproject.com/svn/django/trunk@15017 bcc190cf-cafb-0310-a4f2-bffc1f526a37
* Fixed #13592 -- Make sure the SelectDateWidget works ↵Jannis Leidel2010-05-231-0/+2
| | | | | | with dates before 1900 when localization is enabled. Thanks for the report and patch, magnus. git-svn-id: http://code.djangoproject.com/svn/django/trunk@13301 bcc190cf-cafb-0310-a4f2-bffc1f526a37
* Fixed Python2.4 incompatibility introduced in r13041: ↵Karen Tracey2010-05-031-1/+6
| | | | | | datetime.strptime classmethod was added in 2.5. git-svn-id: http://code.djangoproject.com/svn/django/trunk@13078 bcc190cf-cafb-0310-a4f2-bffc1f526a37
* Fixed #12986 -- Ensured that SelectDateField repopulates ↵Russell Keith-Magee2010-04-281-5/+12
| | | | | | correctly when USE_L10N=True and locale has a default date input format other than %Y-%m-%d. Thanks to wim@go2people.nl for the report, and walteralini for his draft patch. git-svn-id: http://code.djangoproject.com/svn/django/trunk@13041 bcc190cf-cafb-0310-a4f2-bffc1f526a37
* Fixed #7980 - Improved i18n framework to support locale ↵Jannis Leidel2009-12-221-32/+45
| | | | | | | | | | aware formatting (dates and numbers) and form processing. Thanks to Marc Garcia for working on this during his Google Summer of Code 2009! Additionally fixes #1061, #2203, #3940, #5526, #6449, #6231, #6693, #6783, #9366 and #10891. git-svn-id: http://code.djangoproject.com/svn/django/trunk@11964 bcc190cf-cafb-0310-a4f2-bffc1f526a37
* Fixed #9124: fixed `SelectDateWidget` with ↵Jacob Kaplan-Moss2009-04-181-5/+20
| | | | | | `required=False`. Thanks, Bernd Schlapsi. git-svn-id: http://code.djangoproject.com/svn/django/trunk@10584 bcc190cf-cafb-0310-a4f2-bffc1f526a37
* Fixed #7741: django.newforms is now django.forms. This ↵Jacob Kaplan-Moss2008-07-192-0/+80
is obviously a backwards-incompatible change. There's a warning upon import of django.newforms itself, but deeper imports will raise errors. git-svn-id: http://code.djangoproject.com/svn/django/trunk@7971 bcc190cf-cafb-0310-a4f2-bffc1f526a37