Arthur de Jong

Open Source / Free Software developer

summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
...
* | Fixed #20013 -- A test for sqlall fails under OracleShai Berger2013-05-271-3/+9
| |
* | Fixed #20501 -- failure of datetime queries with ↵Shai Berger2013-05-271-3/+4
| | | | | | | | timezones under Oracle
* | Fixed #16137 - Removed kwargs requirement for ↵Tim Graham2013-05-275-5/+23
| | | | | | | | | | | | | | QuerySet.get_or_create Thanks wilfred@, poirier, and charettes for work on the patch.
* | Merge pull request #1226 from bmispelon/ticket-20505Tim Graham2013-05-271-1/+1
|\ \ | | | | | | Fixed #20505 -- Typo in BinaryField documentation.
| * | Fix #20505: Typo in BinaryField documentation.Baptiste Mispelon2013-05-271-1/+1
| | |
* | | Fixed #17582 - Added message to DoesNotExist exceptions.Tim Graham2013-05-274-3/+15
| | | | | | | | | | | | | | | Thanks simon@ for the suggestion and JordanPowell for the initial patch.
* | | Fixed #20507 -- SubqueryConstraint alias handlingAnssi Kääriäinen2013-05-271-2/+1
| | | | | | | | | | | | MySQL should work now, too.
* | | Fixed #12491 -- Tweak checkbox widget help text ↵Ramiro Morales2013-05-271-1/+1
| | | | | | | | | | | | | | | | | | alignment on the admin. Thanks master' for the report and Niels van Dijk for the fix
* | | Reimplemented PostGIS spatial_version with cached_propertyClaude Paroz2013-05-271-46/+35
|/ /
* | Fixed URL for six inventory.Aymeric Augustin2013-05-271-1/+1
| |
* | Fixed #20508 -- ReST typo.Aymeric Augustin2013-05-271-3/+4
| |
* | Fixed #20507 -- SubqueryConstraint alias relabelingAnssi Kääriäinen2013-05-273-7/+23
| | | | | | | | | | | | | | | | | | | | The SubqueryConstraint defined relabeled_clone(), but that was never called. Instead there is now clone() and relabel_aliases() methods for SubqueryConstraint. A related problem was that SubqueryConstraint didn't correctly use quote_name_unless_alias() of the outer query. This resulted in failures when running under PostgreSQL.
* | Merge pull request #1224 from yishaibeeri/masterAymeric Augustin2013-05-271-1/+1
|\ \ | | | | | | Fixed #20506 - Typo in transactions docs.
| * | Patch for ticket #20506 - documentation typeyishaibeeri2013-05-271-1/+1
|/ /
* | Merge pull request #1217 from erikr/better-settings-errors2Claude Paroz2013-05-271-1/+4
|\ \ | | | | | | Fixed #20443 -- Import errors in settings cause confusing error messages
| * | Fixed #20443 -- Import errors in settings cause ↵Erik Romijn2013-05-251-1/+4
| | | | | | | | | | | | confusing error messages
* | | Replaced `and...or...` constructs with PEP 308 ↵Ramiro Morales2013-05-2725-39/+37
| | | | | | | | | | | | conditional expressions.
* | | Fixed #19866 -- Added security logger and return 400 for ↵Preston Holmes2013-05-2638-77/+363
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | SuspiciousOperation. SuspiciousOperations have been differentiated into subclasses, and are now logged to a 'django.security.*' logger. SuspiciousOperations that reach django.core.handlers.base.BaseHandler will now return a 400 instead of a 500. Thanks to tiwoc for the report, and Carl Meyer and Donald Stufft for review.
* | | Fixed get_or_create...test_savepoint_rollback test for ↵Shai Berger2013-05-261-1/+1
| | | | | | | | | | | | | | | | | | Python3 The test was always skipped on Python3 because string literals are unicode
* | | Fix get_or_create test failure under OracleShai Berger2013-05-261-1/+2
|/ / | | | | | | | | Test expected that when given invalid utf-8, the backend should raise a DatabaseError, but the Oracle backend raises a UnicodeDecodeError.
* | Fixed #19938 -- Consumed iterator only once in ↵Andrew Jesaitis2013-05-252-1/+6
| | | | | | | | | | | | paginator's Page Thanks Joshua Fialkoff for the report.
* | Fixed #20296 -- Allowed SafeData and EscapeData to be lazyBaptiste Mispelon2013-05-252-3/+60
| |
* | Fixed #11725 -- Made possible to create widget label tag ↵Claude Paroz2013-05-253-15/+32
| | | | | | | | | | | | | | without "for" Thanks Denis Martinez for the report and initial patch, and Sergey Kolosov for bringing the patch up to date.
* | Updated translation catalogsClaude Paroz2013-05-254-134/+154
| | | | | | | | Updated core/admin/admindocs/comments translation catalogs.
* | Fixed some minor translation-related issuesClaude Paroz2013-05-252-1/+2
| |
* | Fixed #20455 -- Do not use ngettext for undefined pluralsMarc Egli2013-05-256-6/+6
| | | | | | | | | | | | | | Using two separate translation strings instead of gettext plural when there is no reference to the number in the translated string. This prevents some translations like Russian and Latvian to use the singular form for 11 or 21.
* | Removed obsolete attribute of DjangoTranslationClaude Paroz2013-05-251-1/+0
| |
* | Fixed #20099 -- Eased subclassing of ↵Claude Paroz2013-05-254-9/+40
| | | | | | | | | | | | | | BrokenLinkEmailsMiddleware Thanks Ram Rachum for the report and the initial patch, and Simon Charette for the review.
* | Fixed #14825 -- LocaleMiddleware keeps languageVlastimil Zíma2013-05-254-1/+42
| | | | | | | | * LocaleMiddleware stores language into session if it is not present there.
* | Rotate CSRF token on loginAndrew Godwin2013-05-243-1/+49
| |
* | Fixed a regression in router initializationClaude Paroz2013-05-242-2/+30
| | | | | | | | | | Regression was introduced in 6a6bb168b. Thanks Bas Peschier for the report.
* | Fixed #20492 - Removed a broken link in GIS docs.Tim Graham2013-05-241-3/+1
| |
* | Merge pull request #1210 from ↵Tim Graham2013-05-241-1/+1
|\ \ | | | | | | | | | | | | alasdairnicol/jquery_cookie_plugin_link Updated link to jQuery Cookie plugin site
| * | Update link to jQuery Cookie plugin siteAlasdair Nicol2013-05-241-1/+1
| | |
* | | Merge pull request #1209 from tax/masterPreston Holmes2013-05-241-1/+1
|\ \ \ | | | | | | | | Updated link to active project for ODBC backend
| * | | Link to active fork for ODBC backendPaul Tax2013-05-241-1/+1
| |/ / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | It took me quite some time to find if and where the ODBC backend was maintained. I found (on djangoproject.com): http://code.google.com/p/django-pyodbc/ (last commit about 3 years ago) then: https://github.com/avidal/django-pyodbc avidal fork. then: https://github.com/aurorasoftware/django-pyodbc/ aurorasoftware version which has avidal improvements merged. Avidals version now links to https://github.com/aurorasoftware/django-pyodbc/ which is also the version installed through PIP.
* / / Updated my bioBrian Rosner2013-05-241-3/+2
|/ /
* | Optimisation in prefetch_related_objectsLuke Plant2013-05-241-25/+22
| |
* | Fixed #19607 - prefetch_related crashLuke Plant2013-05-243-3/+51
| | | | | | | | Thanks to av@rdf.ru and flarno11@yahoo.de for the report.
* | Fixed #17648 -- Add `for_concrete_model` to ↵Gavin Wahl2013-05-246-17/+179
| | | | | | | | | | | | | | | | | | | | | | `GenericForeignKey`. Allows a `GenericForeignKey` to reference proxy models. The default for `for_concrete_model` is `True` to keep backwards compatibility. Also added the analog `for_concrete_model` kwarg to `generic_inlineformset_factory` to provide an API at the form level.
* | Removed noise from pre_syncdb signal testsDonald Stufft2013-05-231-5/+0
| | | | | | | | | | Only make assertions that actually test the functionality of the change and not unrelated pieces.
* | Fixed #20316 - Clarified transaction behavior of TestCase.Tim Graham2013-05-231-3/+12
| | | | | | | | Thanks uberj@ for the report and lolek09 for the patch.
* | Added back a link to docs/internals/committers.txtTim Graham2013-05-231-0/+1
| |
* | Update my employer.Alex Gaynor2013-05-231-2/+2
| |
* | Fixing some FIXMEs in howto-release-django. Refs #20082Andrew Godwin2013-05-231-8/+41
| |
* | Delayed settings.DATABASE_ROUTERS usage by ConnectionRouterClaude Paroz2013-05-232-6/+14
| | | | | | | | Refs #20474.
* | Delayed settings.DATABASES usage by ConnectionHandlerClaude Paroz2013-05-232-12/+19
| | | | | | | | Refs #20474.
* | Fixed #20474 -- Proxied and deprecated django.db.backendClaude Paroz2013-05-233-4/+30
| |
* | Fixed #20417 - Noted that a server restart is required ↵Tim Graham2013-05-231-1/+2
| | | | | | | | | | | | to load new templatetag modules. Thanks Katya for the suggestion.
* | Fixed #20482 - Added a file reference in tutorial 3.Tim Graham2013-05-231-1/+1
| | | | | | | | Thanks diek@ for the suggestion.