summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2013-04-15Properly used test skipping in OGRInspectTest TestCaseClaude Paroz
2013-04-15Added a tip about --layer param of ogrinspect for databasesClaude Paroz
Refs #20260.
2013-04-15Fixed #20263 -- Corrected wording in the formset documentation.Simon Charette
Thanks to feraudyh at yahoo.com for the report.
2013-04-14Fixed #18231 -- Made JavaScript i18n not pollute global JS namespace.Matthew Tretter
Also, use Django templating for the dynamic generated JS code and use more idiomatic coding techniques. Thanks Matthew Tretter for the report and the patch.
2013-04-13Fixed #17840 -- Generalized named placeholders in form error messagesClaude Paroz
Also fixed plural messages for DecimalField.
2013-04-13Fixed #4592: Made CheckboxSelectMultiple more like RadioSelectBaptiste Mispelon
I refactored RadioSelect and CheckboxSelectMultiple to make them inherit from a base class, allowing them to share the behavior of being able to iterate over their subwidgets. Thanks to Matt McClanahan for the initial patch and to Claude Paroz for the review.
2013-04-13Fixed #4117: Apply id attribute to the outer <ul> of RadioSelectBaptiste Mispelon
2013-04-13Used a Python 3 compatible StringIO in test_utilsClaude Paroz
2013-04-13Fixed #19874: Apply id attribute to the outer <ul> of CheckboxSelectMultipleBaptiste Mispelon
2013-04-13Updated a renamed test fileClaude Paroz
2013-04-12Fixed #20247 - Added some missing paths in the tutorial.Tim Graham
Thanks gsavix for the suggestion and patch.
2013-04-12Fixed template_tests so discovery doesn't directly find tests that require ↵Preston Timmons
setuptools.
2013-04-12Modified view_tests for unittest2 discovery.Preston Timmons
2013-04-12Modified validation to work with unittest2 discovery.Preston Timmons
2013-04-12Modified utils_tests for unittest2 discovery.Preston Timmons
2013-04-12Modified template_tests for unittest2 discovery.Preston Timmons
2013-04-12Modified model_fields for unittest2 discovery.Preston Timmons
2013-04-12Modified generic_views for unittest2 discovery.Preston Timmons
2013-04-12Modified comment_tests for unittest2 discovery.Preston Timmons
2013-04-12Modified test_client_override to work with unittest2 discovery.Preston Timmons
2013-04-12Modified test_utils to work with unittest2 discovery.Preston Timmons
2013-04-12Modified forms_tests to work with unittest2 discovery.Preston Timmons
2013-04-12Fixed #20252 -- Mentionned geojson Spatialite support from 1.5Claude Paroz
Thanks burton449geo at gmail.com for the report.
2013-04-12Fixed #20237 (again) Allowed binary parameter to assertContainsClaude Paroz
2013-04-12Fixed #20248 - Clarified manage.py vs. django-admin.pyTim Graham
2013-04-12Fixed #20211: Document backwards-incompatible change in BoundField.label_tagBaptiste Mispelon
Also cleaned up label escaping and consolidated the test suite regarding label_tag.
2013-04-12Documented BoundField.label_tagClaude Paroz
2013-04-11Fixed #20243 - Clarified when RelatedManager.remove() exists.Tim Graham
2013-04-11Merge pull request #1008 from reverie/patch-2Tim Graham
Removed incorrect phrase from DecimalField docs.
2013-04-11remove confusing phrase from DecimalField docsAndrew Badr
The phrase "if it exists" was used in reference to the `decimal_places` argument to `DecimalField`, when in fact that field is required.
2013-04-11Changed a deprecated warn() call in libgeosClaude Paroz
2013-04-11Fixed #20237 -- Reenabled assertContains with binary parameterClaude Paroz
Thanks Baptiste Mispelon for the review.
2013-04-10Fixed #20204 - Consistent usage of url() in URL dispatcher documentationTim Graham
Thanks Baptiste Mispelon for the patch and dave.lampton@ for the suggestion.
2013-04-10Turned the triage attributes to actual sections so they can be more easily ↵Julien Phalip
linked to in the documentation.
2013-04-10Fixed #20231 -- Don't use allow_lazy on smart_splitBaptiste Mispelon
2013-04-10Made usage of assertTemplateUsed in admin_views testsClaude Paroz
Thanks Baptiste Mispelon for the suggestion.
2013-04-09Added some further guidance to "accepted" triage stagePreston Holmes
Now that DDN is gone, I felt it was worth some extra language about what "accepted" means, and qualify what it means to be "safe" to start writing a patch.
2013-04-08Merge pull request #1003 from bmispelon/fix-tests-3be368c73eJannis Leidel
Fix admin_views tests after commit 3be368c73e.
2013-04-08Fix admin_views tests after commit 3be368c73e.Baptiste Mispelon
2013-04-08Fixed #14019 -- Initialize `SQLInsertCompiler.return_id` attribute.Tobias McNulty
2013-04-08Removed references to the DDN triage state.Aymeric Augustin
Rephrased "How can I help with triaging?" a bit to reflect the current practice.
2013-04-08Merge pull request #938 from darklow/ticket_20111Jannis Leidel
Added more precise message level for succcess and warning messages
2013-04-08Fix #20111 Added more precise message level for succcess and warning messagesKaspars Sprogis
2013-04-07Merge pull request #1000 from bmispelon/ticket-15126Jannis Leidel
Fix #15126: Better error message when passing invalid options to ModelFo...
2013-04-07Fix #15126: Better error message when passing invalid options to ModelForm.Meta.Baptiste Mispelon
2013-04-06Explicitly removes dismissCalendarAndrew Jesaitis
Uses the removeEvent function in core.js to remove the dismissCalendar function from the document click event. Fixes #4045.
2013-04-06Explicitly removes dismissClockAndrew Jesaitis
Uses the removeEvent function in core.js to remove the function from the document click event. Refs #4045.
2013-04-05Fixed #20207 -- Handle ManyToManyField with a unicode name correctly.Simon Charette
2013-04-05Fixed #20114 -- support custom project login_url in testsPreston Holmes
Thanks to Matias Bordese for the patch
2013-04-05Added release note about percent literals in cursor.executeClaude Paroz
Thanks Aymeric Augustin for noticing the omission and Tim Graham for the text review. Fixes #9055 (again).