Arthur de Jong

Open Source / Free Software developer

summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Fixed #15910 -- Show delete links for all admin inline ↵ticket_15910.oldArthur de Jong2013-06-021-41/+47
| | | | | | | | | formset rows Move the addition of delete links to the initialisation code instead of to the add event handler to ensure that all rows that should have a delete link end up with one (not just the rows that are dynamically added).
* Fixed admindoc template errors introduced by 02fd87c821.Simon Charette2013-06-023-29/+32
| | | | | | Also regenerated the affected translation template. Refs #20540.
* Fixed #18388 - Added InlineModelAdmin.get_max_num hook.Tim Graham2013-06-025-5/+47
| | | | | Thanks d.willy.c.c@ for the suggestion and Melevir and Areski Belaid for work on the patch.
* Fixed #20337 -- Clarified error message when database ↵Dan Loewenherz2013-06-011-4/+2
| | | | relation is not allowed.
* Added minor splitting optimization in ↵Danilo Bargen2013-06-011-2/+1
| | | | django.utils.ipv6._unpack_ipv4
* Changed assertEquals -> assertEqual.Tim Graham2013-06-011-2/+2
|
* Updated contrib.admindocs translation templateClaude Paroz2013-06-011-1/+176
|
* Fixed #20540 -- Added more translatable strings to ↵Claude Paroz2013-06-019-50/+48
| | | | | | contrib.admindocs Thanks lborgav for the initial patch.
* Fixed #20543 - Typo in db model fields docs.Tim Graham2013-06-011-1/+1
| | | | Thanks i.amber.jain@ for the report.
* Fixed #18481 -- Wrapped request.FILES read error in ↵Claude Paroz2013-06-012-2/+26
| | | | | | | UnreadablePostError Thanks KyleMac for the report, André Cruz for the initial patch and Hiroki Kiyohara for the tests.
* Fixed #18169 -- NoReverseMatch not silenced if from ↵Anssi Kääriäinen2013-05-315-2/+30
| | | | block.super
* Fixed #18785 -- Added Test join trimming regressionAnssi Kääriäinen2013-05-311-0/+11
| | | | | The regression was caused by patch to ticket #15316 and was fixed by a patch to #10790.
* Fixed #20404 -- Added a keys() method to ContextList.Chris Wilson2013-05-312-2/+26
| | | | | | | | | | | It's useful to be able to list all the (flattened) keys of a ContextList, to help you figure out why the variable that's supposed to be there is not. No .values() or .items() added as the definition for those aren't clear. The patch is Chris Wilson's patch from pull request 1065 with some modifications by committer.
* Improved the usage message of the test command.René Fleschenberg2013-05-311-1/+1
|
* Fixed #18681 -- BaseModelAdmin.get_form and ↵Loic Bistuer2013-05-312-8/+32
| | | | | | InlineModelAdmin.get_formset no longer bypass get_fieldsets Thanks msopacua for the report.
* Fixed #20166 - Corrected TEST_DEPENDENCIES example in ↵Tim Graham2013-05-311-1/+3
| | | | | | testing docs. Thanks czambran.
* Fixed #20326 - Corrected form wizard get_form() example.Tim Graham2013-05-311-2/+9
| | | | Thanks tris@ for the report.
* Fixed #20515 - Clarified note regarding translator comments.Tim Graham2013-05-311-4/+3
| | | | Thanks wim@ for the suggestion.
* Fixed #20511 -- Corrected link about isolation levels in ↵Claude Paroz2013-05-311-5/+4
| | | | | | databases docs Thanks tinodb for the report.
* Merge pull request #1232 from fusionbox/normalize_emailClaude Paroz2013-05-313-3/+3
|\ | | | | Fixed #20531 -- Don't hard-code class names when calling static methods
| * Don't hard-code class names when calling static methodsGavin Wahl2013-05-303-3/+3
| | | | | | | | | | | | | | normalize_email should be called on the instance, not the class. This has the same effect normally but is more helpful to subclassers. When methods are called directly on the class, subclasses can't override them.
* | Fixed #16436 -- Oracle defer_regress test failureAnssi Kääriäinen2013-05-311-6/+6
| | | | | | | | | | Oracle doesn't like grouping by TextField, so use CharFields instead in models.
* | Tweak caching decorators/utility functions xrefs.Ramiro Morales2013-05-312-9/+11
| |
* | Fixed #20502 -- Flushed i18n caches for a defaultfilter testClaude Paroz2013-05-301-22/+26
| | | | | | | | Thanks Chris Wilson for the report and initial patch.
* | Added missing stacklevel arg in forms/models.pyClaude Paroz2013-05-301-1/+1
| |
* | Fixed #19425 - Added InlineModelAdmin.get_extra hook.Tim Graham2013-05-306-2/+65
| | | | | | | | Thanks dave@ for the suggestion and Rohan Jain for the patch.
* | Merge pull request #1027 from intgr/debug_no_exc_messageTim Graham2013-05-302-3/+3
|\ \ | | | | | | Clearer explanation when exception has no message
| * | Clearer explanation when exception has no messageMarti Raudsepp2013-04-232-3/+3
| | | | | | | | | | | | | | | "No exception supplied" is misleading; actually there is an exception, but there's no message string.
* | | Fixed #16856 - Added a way to clear select_related.Tim Graham2013-05-304-1/+21
| | | | | | | | | | | | Thanks Carl for the suggestion and David Cramer for the patch.
* | | Fixed #20272 - Moved update_fields existence check into ↵Tim Graham2013-05-301-11/+11
| | | | | | | | | | | | | | | | | | Model._do_update. Thanks Gavin Wahl.
* | | Fixed #20509 - Proper parsing for dumpdata --pks option.Tim Graham2013-05-303-4/+24
| | | | | | | | | | | | Thanks weipin for the report and Baptiste Mispelon for the patch.
* | | Fixed #16436 -- defer + annotate + select_related crashTai Lee2013-05-303-8/+55
| | | | | | | | | | | | | | | | | | | | | | | | Correctly calculate the ``aggregate_start`` offset from loaded fields, if any are deferred, instead of ``self.query.select`` which includes all fields on the model. Also made some PEP 8 fixes.
* | | Made an app-cache test not dependent on all models in ↵Anssi Kääriäinen2013-05-301-53/+34
| | | | | | | | | | | | defer_regress
* | | Fixed regroup example.Gavin Wahl2013-05-301-0/+2
| | | | | | | | | | | | Chicago was missing.
* | | Fixed a failure on Python 3 introduced by ↵Simon Charette2013-05-291-3/+3
| | | | | | | | | | | | | | | | | | 5939864616d56cf949f0bca348a8e05230b62fe0. Refs #15653.
* | | Fixed #20331 -- Allowed admin actions to serve ↵Tim Graham2013-05-293-8/+50
| | | | | | | | | | | | | | | | | | StreamingHttpResponses Thanks Edwin.
* | | Fixed #15697 -- Made sqlindexes aware of auto-created tablesClaude Paroz2013-05-293-25/+27
| | | | | | | | | | | | | | | Thanks mbertheau for the report and Ash Christopher for the initial patch.
* | | Fixed #15653 - Error in admin pagination tag.Tim Graham2013-05-292-1/+40
| | | | | | | | | | | | | | | Thanks jcumbo@ for the report and adamzap and nott for the patch.
* | | Fixed #20250 - Added a regression test for negated Q + ↵Tim Graham2013-05-291-0/+11
| | | | | | | | | | | | | | | | | | annotate Thanks nott.
* | | Fixed #20525 -- Added versionadded for clearsessions.Tim Graham2013-05-291-0/+2
| | | | | | | | | | | | Thanks wiml@.
* | | Fixed #20484 -- Added model validation for ↵Tim Graham2013-05-285-6/+23
| | | | | | | | | | | | | | | | | | | | | | | | GenericIPAddressField GenericIPAddressField must not allow blank for NOT NULL fields Thanks Erik Romijn.
* | | Fixed #20242 - Added a regression test for prefetch_related.Tim Graham2013-05-282-0/+11
| |/ |/| | | | | | | | | | | Issue was fixed by removal of chunked reads from QuerySet iteration in 70679243d1786e03557c28929f9762a119e3ac14. Thanks Simeon Visser for the patch.
* | Fixed #20523 - Incorrect form field for FilePathField.Tim Graham2013-05-281-1/+1
| | | | | | | | Thanks sane4ka.sh@ for the report.
* | Fixed #20228 - Documented unique_for_date and exclude ↵Tim Graham2013-05-283-3/+41
| | | | | | | | | | | | behavior. Thanks Deepak Thukral for the patch.
* | Fixed #20513 - Expanded docs on QuerySet caching.Tim Graham2013-05-281-3/+40
| | | | | | | | Thanks seddonym.
* | Fixed random aggregation_regress test_more_more_more() ↵Anssi Kääriäinen2013-05-281-1/+7
| | | | | | | | | | | | | | failure The cause was assuming that an unordered queryset returns the values always in the same order.
* | Fixed #20503 - Moved doctest utilities in with the rest ↵Carl Meyer2013-05-274-95/+78
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | of the deprecated test code. The ``DocTestRunner`` and ``OutputChecker`` were formerly in ``django.test.testcases``, now they are in ``django.test.simple``. This avoids triggering the ``django.test._doctest`` deprecation message with any import from ``django.test``. Since these utility classes are undocumented internal API, they can be moved without a separate deprecation process. Also removed the deprecation warnings specific to these classes, as they are now covered by the module-level warning in ``django.test.simple``. Thanks Anssi for the report. Refs #17365.
* | Fixed #20014 -- implemented get_key_columns() for OracleShai Berger2013-05-271-0/+12
| | | | | | | | Thanks Aymeric Augustin for reporting
* | Fixed #20182 - admin lookup should treat 0 as False for ↵Tim Graham2013-05-274-5/+57
| | | | | | | | | | | | __isnull Thanks Benjie Chen.
* | Fixed #11603 - Added ↵Tim Graham2013-05-277-1/+340
| | | | | | | | | | | | django.test.SimpleTestCase.assertFormsetError Thank-you Martin Green for the patch.