summaryrefslogtreecommitdiff
path: root/django/forms
AgeCommit message (Expand)Author
2012-12-06[1.5.x] Fixed #18574 -- Make BaseFormSet.is_valid call its underlying forms' ...Andreas Hug
2012-11-05[1.5.x] Fixed #8627 -- Prevented textareas to swallow first newline contentClaude Paroz
2012-11-04[1.5.x] Merge pull request #495 from aisipos/ticket_18949Alex Gaynor
2012-11-03[1.5.x] Fixed #18963 -- Used a subclass-friendly patternAymeric Augustin
2012-10-26[1.5.x] Fixed #16820 -- Treated '0' value as True for checkbox inputsClaude Paroz
2012-10-13Fixed #16479 - Forms generated from formsets use ErrorList instead of supplie...Ludovic Delaveau
2012-10-03Fixed #14567 -- Made ModelMultipleChoiceField return EmptyQuerySet as empty v...Stephen Burrows
2012-09-26Fixed #17899 -- Rewrote [Ee]-mail to [Ee]mailAdrien Lemaire
2012-09-23Fixed #18982 - Caught TypeError in DateField.cleanAymeric Augustin
2012-09-10Document and test 'type' usage in Widget attrsClaude Paroz
2012-09-07Fixed #17888 -- no longer silence exceptions inside of check_test. Thanks to ...Alex Gaynor
2012-09-06Made use of property decorator in formsets.pyClaude Paroz
2012-08-30Fixed #18751 -- Cleaned up BaseFormSet._should_delete_formClaude Paroz
2012-08-23[py3] Removed duplicate imports.Aymeric Augustin
2012-08-18Fixed #18791: [py3] Double import of six in django.forms.widgetsAlexey Boriskin
2012-08-14[py3] Removed a remaining use of __metaclass__.Aymeric Augustin
2012-08-13[py3] Avoided comparison with None value in formsetsClaude Paroz
2012-08-12[py3] Refactored __unicode__ to __str__.Aymeric Augustin
2012-08-08[py3] Fixed 'iterable but non string' detectionClaude Paroz
2012-08-08[py3] Replaced __nonzero__ by __bool__Claude Paroz
2012-08-07[py3] Ported django.utils.encoding.Aymeric Augustin
2012-08-07[py3] Fixed access to dict keys/values/items.Aymeric Augustin
2012-08-06Fixed #15754 -- avoid recursively computing the tree of media widgets more ti...Alex Gaynor
2012-08-04Fixed #5524 -- Do not remove cleaned_data when a form fails validationClaude Paroz
2012-08-03Replaced some byte strings by str() callsClaude Paroz
2012-07-30Fixed second security issue in image uploading. Disclosure and release forthc...Florian Apolloner
2012-07-25it's -> itsPiet Delport
2012-07-22[py3] Added Python 3 compatibility for xrange.Aymeric Augustin
2012-07-22[py3] Updated urllib/urllib2/urlparse imports.Aymeric Augustin
2012-07-22[py3] Replaced unicode/str by six.text_type/bytes.Aymeric Augustin
2012-07-22[py3] Replaced basestring by six.string_types.Aymeric Augustin
2012-07-22[py3] Used six.with_metaclass wherever necessary.Aymeric Augustin
2012-07-06Fixed #18572 - Python26 string format incompatibilityLuke Plant
2012-07-03Changed a lot of internal code to use 'format_html' where appropriate/possibleLuke Plant
2012-06-07Fixed #18269 -- Applied unicode_literals for Python 3 compatibility.Claude Paroz
2012-05-31Fixed #18409 -- Made RegexField work with unicode characters.Julien Phalip
2012-05-19Marked bytestrings with b prefix. Refs #18269Claude Paroz
2012-05-16Hidden __pycache__ dirs for FilePathField. Refs #17393.Claude Paroz
2012-05-05Replaced cStringIO.StringIO by io.BytesIO.Claude Paroz
2012-04-29Fixed #18013 -- Use the new 'as' syntax for exceptions.Claude Paroz
2012-04-29Fixed #17976 -- Made forms.BooleanField pickleable.Aymeric Augustin
2012-04-22Fixed #5893 -- Added a flag to FilePathField to allow listing folders, in add...Alex Gaynor
2012-04-05Removed pre-2.6 compatibility code in date-based form fields. Refs #9459.Claude Paroz
2012-03-31Removed deprecated URLField.verify_exists.Aymeric Augustin
2012-03-29Fixed #11150 -- Removed dependency on cStringIO in ImageField validation. Tha...Claude Paroz
2012-02-05Made a minor tweak to a doctoring in `django/forms.forms.py` that was missed ...Julien Phalip
2012-02-05Fixed #17493 -- Made `Widget.id_for_label()` consistently be an instance method.Julien Phalip
2012-02-04Fixed #17542 -- Gracefully handle errors when checking if the values of a Sel...Jannis Leidel
2012-02-04Fixed #17594 -- Stopped ModelFormset.save from running a SELECT query by rely...Jannis Leidel
2012-02-04Fixed #14184 -- Enabled running the validators in MultiValueFields. Thanks, p...Jannis Leidel