summaryrefslogtreecommitdiff
path: root/tests/regressiontests/forms
AgeCommit message (Expand)Author
2012-02-04Fixed #17542 -- Gracefully handle errors when checking if the values of a Sel...Jannis Leidel
2012-02-04Fixed #14184 -- Enabled running the validators in MultiValueFields. Thanks, p...Jannis Leidel
2012-01-31Fixed #16921 -- Added assertHTMLEqual and assertHTMLNotEqual assertions, and ...Carl Meyer
2011-12-07Changed BoundField.subwidgets() to return SubWidget objects instead of render...Adrian Holovaty
2011-12-07Fixed typo in a test name in form testsAdrian Holovaty
2011-12-07Made BoundFields iterable, so that you can iterate over individual radio butt...Adrian Holovaty
2011-11-21Fixed #17114 -- Handled integer values 0 and 1 for checkboxes like other inte...Aymeric Augustin
2011-11-15Fixed #15912 -- Ensured that `forms.CharField.widget_attrs()` always returns ...Julien Phalip
2011-11-13Refs #17215: Avoid generating 47 leftover tmp dirs during a clean test run.Karen Tracey
2011-11-13Fixed #17134: Corrected Python 2.5 fallback code for parsing microseconds in ...Karen Tracey
2011-11-12Fixed #17190 -- Ensured that the `NullBooleanSelect` widget's options get laz...Julien Phalip
2011-11-07Fixed #17125 -- Made it possible to change a `RegexField`'s regular expressio...Julien Phalip
2011-11-06Fixed #17165 -- Fixed `SelectDateWidget._has_changed()` to work correctly wit...Julien Phalip
2011-10-31Fixed #16816 -- Tweaked the test mock for `URLField.verify_exists` to allow t...Julien Phalip
2011-10-28Fixed #17127 -- Made field validators list independent per form instance. Tha...Carl Meyer
2011-10-14Switch several assertNumQueries to use the context manager, which is much mor...Alex Gaynor
2011-10-13Fix a Python 2.5-ism.Alex Gaynor
2011-10-13Convert much of the regression tests to use absolute imports. There's still ...Alex Gaynor
2011-10-13Remove a handful of `import *` from the tests.Alex Gaynor
2011-09-18Fixes #8103 -- Select widget should only allow for one selected optionChris Beaven
2011-09-10Fixed #11404. Added ``FormSet.has_changed``, for consistancy with ``Form.has...Alex Gaynor
2011-09-10Make ``Formset.__getitem__`` O(1), rather than O(n). If you override ``__ite...Alex Gaynor
2011-09-10Altered the behavior of URLField to avoid a potential DOS vector, and to avoi...Russell Keith-Magee
2011-09-10Fixed #15722: ensure formsets evaluate to True even if they have no forms. Th...Karen Tracey
2011-09-09Fixes #16664 -- URLField's to_python method fails with ValueError on some url...Chris Beaven
2011-09-09Fix and test for cleaning a non-string value in a URLFieldChris Beaven
2011-08-24Fixed #15837. Consolidated all the locaflavor tests into a single, logical, p...Julien Phalip
2011-08-23Reverted r16662 -- There are bunch of problems with this patch, including fai...Russell Keith-Magee
2011-08-23Fixed #16202 -- Added a Slovenian localflavor. Thanks to Jure Cuhalev <gandal...Russell Keith-Magee
2011-08-23Fixed #15838 -- Promoted assertFieldOutput to a general test utility. Thanks ...Russell Keith-Magee
2011-08-13Fixed #14503 -- Unified multiple implementations of test cases assert* method...Ramiro Morales
2011-08-12Fixed #10405 -- Raise a more useful error if the formfield of a related model...Jannis Leidel
2011-07-29Fixed #16497 -- Added new form and model fields to the Mexican local flavor. ...Jannis Leidel
2011-07-29Fixed #8013 -- Added Columbian and Ecuadorian local flavor. Thanks, ikks and ...Jannis Leidel
2011-07-13Fixed #16225 -- Removed unused imports. Many thanks to Aymeric Augustin for t...Jannis Leidel
2011-07-03Fixed #14608 -- Added phone number field to Indian local flavor. Thanks, lawg...Jannis Leidel
2011-06-30Fixed #16050 -- BACKWARDS-INCOMPATIBLE CHANGE: Moved static files of the admi...Jannis Leidel
2011-06-28Fixed #15813 -- Updated Indian localflavor to use correct state choices and f...Jannis Leidel
2011-06-28Fixed #12761 -- Added Paraguayan local flavor. Thanks, dschulz and BernhardEssl.Jannis Leidel
2011-06-26Fixed #16230 -- Correctly escape errors message passed to ErrorDict. Thanks, ...Jannis Leidel
2011-06-25Fixed #6189 -- Modified test that need Internet access so they use a mock ins...Ramiro Morales
2011-06-25Fixed #16338 -- Fixed Austrian postal codes validation. Thanks Bernhard Essl ...Ramiro Morales
2011-06-16Fixed #15127 -- Properly copy the choices of choice fields. Thanks, dready an...Jannis Leidel
2011-06-13Removed a name clash in a test method. Refs #16246.Ramiro Morales
2011-06-12Fixed broken test introduced in r16385.Jannis Leidel
2011-06-12Fixed #15856 -- Added Macedonian localflavor. Many thanks to vasiliyeah.Jannis Leidel
2011-06-11Fixed #811 -- Added support for IPv6 to forms and model fields. Many thanks t...Jannis Leidel
2011-06-10More removal of poorly legible constructs to workaround Python 2.4 shortcomings.Ramiro Morales
2011-06-10Fixed #16196 - Redundant or incorrect code in testsLuke Plant
2011-06-09Fixed #9459: forms.HiddenInput and DateTime field loses microseconds. Thanks ...Andrew Godwin