| Commit message (Collapse) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | fixed #193 | Gael Pasgrimaud | 2018-05-18 | 1 | -0/+15 |
| | | |||||
| * | Preserve submit order for radio inputs. | Florian Schulze | 2017-10-09 | 1 | -0/+30 |
| | | |||||
| * | Fix fails in existing tests from unicode headers | Brendan McCollam | 2017-05-02 | 1 | -0/+10 |
| | | |||||
| * | fixed #146 | Gael Pasgrimaud | 2017-04-12 | 1 | -0/+21 |
| | | |||||
| * | Fix #173: Do not omit file uploads without a file from post. | Michael Howitz | 2017-02-05 | 1 | -3/+7 |
| | | |||||
| * | reset values of select multiple | Yannick Chabbert | 2015-05-29 | 1 | -0/+14 |
| | | |||||
| * | Fixed #110. Don't ignore forced value on Radio input | Zeb DeOs | 2014-04-24 | 1 | -0/+10 |
| | | |||||
| * | pep8 everywhere | Gael Pasgrimaud | 2014-04-16 | 1 | -23/+19 |
| | | |||||
| * | Allow selecting by text for multi selects | Markus Bertheau | 2014-01-23 | 1 | -0/+12 |
| | | |||||
| * | Allow selecting by text for single selects | Markus Bertheau | 2014-01-23 | 1 | -0/+11 |
| | | |||||
| * | resolve conflict | Gael Pasgrimaud | 2014-01-17 | 1 | -0/+21 |
| |\ | |||||
| | * | Allow selecting submit button by value | Markus Bertheau | 2014-01-17 | 1 | -0/+21 |
| | | | |||||
| * | | Ignore the value attribute of <input type="file"> | Markus Bertheau | 2014-01-16 | 1 | -1/+1 |
| |/ | | | | | | | | Browsers do the same thing, see http://stackoverflow.com/questions/20537696/remember-and-repopulate-file-input/20537822#20537822 Without this, submitting the form as is gives ValueError: upload_files need to be a list of tuples of (fieldname, filename, filecontent, mimetype) or (fieldname, filename, filecontent) or (fieldname, filename); you gave: "['file-field', u's', u'o', u'm', u'e', u'/', u'p', u'a', u't', u'h', u'/', u'f', u'i', u'l', u'e', u" | ||||
| * | Make sure Upload.content_type is not ignored | Marius Gedminas | 2013-09-18 | 1 | -2/+22 |
| | | | | | | | | | Looks like there's a bazillion methods of specifying files you want to upload with a form, and I missed one of them. This adds a missing test case and fixes the bug. A followup fix for issue #86. | ||||
| * | Allow assigning a list to a set of same-named checkboxes. | Carl Meyer | 2013-08-30 | 1 | -2/+10 |
| | | |||||
| * | remove leading newline from textarea | Victor Safronovich | 2013-05-04 | 1 | -0/+7 |
| | | |||||
| * | Test and changelog entry for #65. | Georges Dubus | 2013-04-17 | 1 | -0/+4 |
| | | |||||
| * | Handle the short form of <select multiple> | Marius Gedminas | 2013-04-01 | 1 | -3/+29 |
| | | | | | | | See http://www.w3.org/TR/REC-html40/interact/forms.html#adef-multiple if you need convincing that this is valid HTML (first example, a couple of pages down). | ||||
| * | Correctly handle <option> elements with no value attribute | Marius Gedminas | 2013-03-28 | 1 | -1/+81 |
| | | | | | | | E.g. http://www.w3.org/TR/REC-html40/interact/forms.html#edef-OPTION clearly states that the value attribute of OPTION elements "defauls to element content". | ||||
| * | All <button> elements are treated as submit controls | Andrey Lebedev | 2013-03-22 | 1 | -1/+7 |
| | | |||||
| * | test for unknow fields; move some html in real html files | Gael Pasgrimaud | 2013-02-27 | 1 | -212/+52 |
| | | |||||
| * | Tests for input fields of type password. | Diarmuid Bourke | 2013-02-26 | 1 | -0/+24 |
| | | | | | This checks that input fields with type password work and act like text input fields. | ||||
| * | improve test about files upload | Gael Pasgrimaud | 2013-02-23 | 1 | -3/+14 |
| | | |||||
| * | pep8 stuff | Gael Pasgrimaud | 2013-02-23 | 1 | -4/+3 |
| | | |||||
| * | Improve webtest.response.TestResponse coverage | Stéphane Klein | 2013-02-22 | 1 | -1/+12 |
| | | |||||
| * | Replaced assert by unittest's asserts | Arthur Vuillard | 2013-02-22 | 1 | -1/+3 |
| | | |||||
| * | Replaced assert by unittest's asserts | Arthur Vuillard | 2013-02-22 | 1 | -9/+11 |
| | | |||||
| * | Add tests for uploading invalid files exceptions | Christophe de Vienne | 2013-02-22 | 1 | -0/+23 |
| | | |||||
| * | typo / use non unicode file for testing | Gael Pasgrimaud | 2013-02-22 | 1 | -0/+2 |
| | | |||||
| * | use unicode_literals in test_forms.py | Domen Kožar | 2013-02-22 | 1 | -18/+19 |
| | | |||||
| * | merge relevant stuff into test_forms.py | Domen Kožar | 2013-02-22 | 1 | -1/+778 |
| | | |||||
| * | 100% coverage on webtest.forms | Gael Pasgrimaud | 2013-02-21 | 1 | -0/+26 |
| | | |||||
| * | pep8 | Gael Pasgrimaud | 2013-02-21 | 1 | -5/+4 |
| | | |||||
| * | Test selection api from form | Arthur Vuillard | 2013-02-21 | 1 | -0/+8 |
| | | |||||
| * | Little cleaning in test_forms.py | Arthur Vuillard | 2013-02-21 | 1 | -20/+12 |
| | | |||||
| * | Fix import in tests and python3 | Arthur Vuillard | 2013-02-21 | 1 | -1/+1 |
| | | |||||
| * | Add a test on forcing (and unforcing) value with select field | Arthur Vuillard | 2013-02-21 | 1 | -0/+24 |
| | | |||||
| * | First test of the forms module (test that you cannot set a value for a ↵ | Arthur Vuillard | 2013-02-21 | 1 | -0/+24 |
| submit field) | |||||
