Arthur de Jong

Open Source / Free Software developer

summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
...
* | Fixed #20080 - Recommended use of PYTHONHASHSEEDTim Graham2013-05-231-0/+15
| | | | | | | | | | Thanks jacob for the suggestion and ryankask for the patch.
* | Fixed #19237 (again) - Made strip_tags consistent ↵Claude Paroz2013-05-233-9/+18
| | | | | | | | between Python versions
* | Made fix for #9321 less buggy and more effective.Ramiro Morales2013-05-235-8/+58
| | | | | | | | | | | | | | | | | | | | | | | | | | Don't try to be smart about building a good-looking help string because it evaluates translations too early, simply use the same old strategy as before. Thanks Donald Stufft for the report. Also, actually fix the case reported by the OP by special-casing CheckboxSelectMultiple. Added tests. Refs #9321.
* | Merge pull request #1201 from takis/docs_typoMarc Tamlyn2013-05-231-1/+1
|\ \ | | | | | | Fixed comments for translators example in the i18n documentation
| * | Fixed comments for translators example in the i18n ↵Panagiotis H.M. Issaris2013-05-231-1/+1
|/ / | | | | | | | | | | | | documentation The documentation regarding adding a comment for translators was confusing as the example contained mismatching tags.
* | Merge pull request #1200 from dstufft/pre-syncdb-signalDonald Stufft2013-05-238-2/+158
|\ \ | | | | | | Fixed #11398 - Added a pre_syncdb signal
| * | Fixed #11398 - Added a pre_syncdb signalDonald Stufft2013-05-238-2/+158
|/ /
* | Merge pull request #1198 from KrzysiekJ/http-patch-methodRussell Keith-Magee2013-05-234-2/+14
|\ \ | | | | | | Fixed #20478 – Added support for HTTP PATCH method in generic views.
| * | Fixed #20478 – Added support for HTTP PATCH method in ↵Krzysztof Jurewicz2013-05-224-2/+14
| | | | | | | | | | | | generic views.
* | | Removed check for 0.15 version of gettext toolsClaude Paroz2013-05-223-39/+3
| | | | | | | | | | | | gettext 0.15 has been released in July 2006.
* | | Fixed #19237 -- Used HTML parser to strip tagsClaude Paroz2013-05-222-4/+32
| | | | | | | | | | | | | | | | | | The regex method used until now for the strip_tags utility is fast, but subject to flaws and security issues. Consensus and good practice lead use to use a slower but safer method.
* | | Clarified policy for stable branches.Tim Graham2013-05-222-71/+81
| | | | | | | | | | | | | | | Thanks Ramiro Morales for the initial patch and Preston Holmes for the review.
* | | Added some text I meant to add in the last commit.Tim Graham2013-05-221-1/+1
| | |
* | | Added a note about pip upgrade flag.Tim Graham2013-05-221-1/+1
| | | | | | | | | | | | Thanks Jannis Leidel for the suggestion.
* | | Fixed #17048 - Added docs for upgrading Django.Tim Graham2013-05-224-4/+98
| | | | | | | | | | | | | | | Thanks Donald Stufft for the suggestion and Susan Tan and Brian Fabian Crain for the patch.
* | | Fixed a broken link introduced in a542b808baf.Tim Graham2013-05-221-1/+0
|/ /
* | Fixed #20463 -- Made get_or_create more robust.Aymeric Augustin2013-05-222-4/+22
| | | | | | | | | | | | | | When an exception other than IntegrityError was raised, get_or_create could fail and leave the database connection in an unusable state. Thanks UloPe for the report.
* | Merge pull request #246 from dekkers/ticket_18709Marc Tamlyn2013-05-222-1/+25
|\ \ | | | | | | Fixed #18709 -- Check if initial_value is a callable
| * | Fixed #18709 -- Check if initial_value is a callableJeroen Dekkers2013-05-222-1/+25
| | | | | | | | | | | | | | | In _get_changed_data, check if initial_value is a callable and call it if it is.
* | | Fixed #19895 -- Second iterator over invalid qs raises ↵Anssi Kääriäinen2013-05-221-0/+7
| | | | | | | | | | | | | | | | | | | | | errors The fix was already in the patch for #18702, so only test added for ticket #19895.
* | | Merge pull request #1196 from selwin/last-doc-fixTim Graham2013-05-221-1/+1
|\ \ \ | | | | | | | | Slightly reworded 'last()' docs
| * | | Slightly reworded 'last()' docs.Selwin Ong2013-05-211-1/+1
| | | |
* | | | Fixed #20012 -- test_year_lookup_edge_case fails under ↵Shai Berger2013-05-221-0/+10
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Oracle Used formatted date instead of datetime object for the end of the year range, as the datetime object loses fractions-of-seconds when inserted into the db.
* | | | Fixed #20015 -- date__startswith('2008') fails under OracleShai Berger2013-05-221-3/+0
| | | | | | | | | | | | | | | | Removed the explicit casting of strings to dates
* | | | Fixed #20453 -- inspectdb test failure on OracleShai Berger2013-05-221-0/+1
| |/ / |/| |
* | | Fixed #20476 -- Typo.Aymeric Augustin2013-05-211-1/+1
| | |
* | | Fixed #18702 -- Removed chunked reads from QuerySet ↵Anssi Kääriäinen2013-05-213-156/+56
|/ / | | | | | | iteration
* | Fixed #19326 -- Added first() and last() methods to QuerySetSelwin Ong2013-05-215-0/+92
| |
* | (Re-)moved some importsClaude Paroz2013-05-212-2/+2
| |
* | Fixed #6412 -- More details if a template file cannot be ↵Mathijs de Bruin2013-05-214-14/+58
| | | | | | | | | | | | loaded Report more details about template files in loader postmortem.
* | Imported copyreg from six.movesClaude Paroz2013-05-211-5/+1
| |
* | Merge pull request #1194 from ambv/python26_is_funFlorian Apolloner2013-05-211-1/+4
|\ \ | | | | | | Fixed a Python 2.6 regression (GzipFile can't act as a context manager)
| * | Fixed a Python 2.6 regression (GzipFile can't act as a ↵Łukasz Langa2013-05-211-1/+4
| | | | | | | | | | | | context manager)
* | | Fixed #17308 -- Enabled the use of short_description on ↵Wiktor Kolodziej2013-05-213-3/+44
|/ / | | | | | | properties in the admin.
* | Fixed test failures from ↵Florian Apolloner2013-05-211-1/+1
| | | | | | | | 09f865276554f35060ff939722ec4cefd578edf6.
* | Merge pull request #1192 from mjtamlyn/assertIsInstanceMarc Tamlyn2013-05-2131-87/+87
|\ \ | | | | | | Use assertIsInstance in test code.
| * | Use assertIsInstance in tests.Marc Tamlyn2013-05-2131-87/+87
| | | | | | | | | | | | Gives much nicer errors when it fails.
* | | Merge pull request #1190 from ambv/doc_settings_fixFlorian Apolloner2013-05-211-12/+3
|\ \ \ | |/ / |/| | Removed a confusing duplicate SESSION_COOKIE_DOMAIN header
| * | Removed a confusing duplicate SESSION_COOKIE_DOMAIN headerŁukasz Langa2013-05-211-12/+3
| | | | | | | | | | | | | | | | | | The note is clearly a part of MESSAGE_STORAGE documentation. As a separate section, it broke automatic link generation on the HTML version of the documentation.
* | | Merge pull request #1191 from ambv/content_is_bytesAymeric Augustin2013-05-212-2/+26
|\ \ \ | | | | | | | | Fixed #20472: response.content should be bytes on both Python 2 and 3
| * | | Fixed #20472: response.content should be bytes on both ↵Łukasz Langa2013-05-212-2/+26
| |/ / | | | | | | | | | Python 2 and 3
* / / Fixed #20212 - __reduce__ should only be defined for Py3+.Daniel Lindsley2013-05-212-5/+40
|/ /
* | Fixed #9321 -- Deprecated hard-coding of help text in ↵Ramiro Morales2013-05-204-5/+61
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | model ManyToManyField fields. This is backward incompatible for custom form field/widgets that rely on the hard-coded 'Hold down "Control", or "Command" on a Mac, to select more than one.' sentence. Application that use standard model form fields and widgets aren't affected but need to start handling these help texts by themselves before Django 1.8. For more details, see the related release notes and deprecation timeline sections added with this commit.
* | Fixed #20471 - Typos in topics/forms/formsets.txtTim Graham2013-05-201-3/+3
| |
* | Tweaked unit test 'quick start' explanation.Tim Graham2013-05-201-13/+7
| | | | | | | | Thanks Jeremy Dunck.
* | Fixed #20445 -- Raised original exception after command ↵Jorge Bastida2013-05-202-16/+18
| | | | | | | | error
* | Fixed #20403 -- Ignore forms marked for deletion when ↵Ryan Kaskel2013-05-203-2/+22
| | | | | | | | validating max_num.
* | Fixed #20278 -- ensured .get() exceptions do not recurse ↵Anssi Kääriäinen2013-05-203-20/+22
| | | | | | | | | | | | | | | | infinitely A regression caused by d5b93d3281fe93cbef5de84a52 made .get() error reporting recurse infinitely on certain rare conditions. Fixed this by not trying to print the given lookup kwargs.
* | Fixed #20378 -- regression in GenericRelation on ↵Anssi Kääriäinen2013-05-203-1/+30
| | | | | | | | | | | | | | | | | | | | | | abstract model When a GenericRelation was defined on abstract model, queries on childs of the abstract model didn't work. The problem was in the way fields and in particular field.rel was copied from models to their children. The regression was likely caused by #19385. Thanks to Gavin Wahl for spotting the regression.
* | Fixed warnings in admindocs; refs #20126.Tim Graham2013-05-201-5/+4
| |