Arthur de Jong

Open Source / Free Software developer

summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
...
* Refs #22384 -- Removed the ability to reverse URLs by ↵Tim Graham2015-09-2415-299/+94
| | | | dotted path per deprecation timeline.
* Refs #23276 -- Removed passing views as strings to url() ↵Tim Graham2015-09-242-29/+3
| | | | per deprecation timeline.
* Refs #22218 -- Removed conf.urls.patterns() per ↵Tim Graham2015-09-2410-230/+94
| | | | deprecation timeline.
* Removed SQLCompiler.__call__() per deprecation timeline.Tim Graham2015-09-241-13/+0
|
* Refs #23261 -- Removed old style list syntax for ↵Tim Graham2015-09-243-101/+1
| | | | | | unordered_list filter Per deprecation timeline.
* Refs #24451 -- Removed comma-separated {% cycle %} ↵Tim Graham2015-09-243-54/+1
| | | | syntax per deprecation timeline.
* Refs #24022 -- Removed the ssi tag per deprecation timeline.Tim Graham2015-09-2421-332/+28
|
* Refs #22789 -- Removed contrib.webdesign per deprecation ↵Tim Graham2015-09-2412-72/+2
| | | | timeline.
* Refs #22306 -- Removed cycle/firstof template tags from ↵Tim Graham2015-09-243-86/+8
| | | | | | "future". Per deprecation timeline.
* Refs #12663 -- Removed deprecated Model._meta methods.Tim Graham2015-09-243-334/+3
|
* Removed SubfieldBase per deprecation timeline.Tim Graham2015-09-246-312/+2
|
* Refs #24351 -- Removed support for the old ↵Tim Graham2015-09-243-61/+1
| | | | allow_migrate() signature per deprecation timeline.
* Added stub 1.10 release notes.Tim Graham2015-09-242-0/+389
|
* Bumped version; master is now 1.10 pre-alpha.Tim Graham2015-09-242-3/+3
|
* Updated man page for Django 1.9 alpha.Tim Graham2015-09-241-53/+200
|
* Fixed #25386 -- Warned about differences between Engine ↵Tim Graham2015-09-241-0/+7
| | | | and DjangoTemplates.
* Fixed #25378 -- Improved tab through experience in admin.Ryan Allen2015-09-234-43/+90
|
* Fixed #25448 -- Eased GISLookup subclassing with custom ↵Claude Paroz2015-09-231-2/+8
| | | | | | | | lookups When someone needs to build a custom backend-specific GIS lookup, it is much easier done if getting the spatial operator class happens in a dedicated method (no need to rewrite the entire as_sql() method).
* Added some more links in form field docsClaude Paroz2015-09-231-5/+6
|
* Refs #18081 -- Asserted db constraints are created for ↵Simon Charette2015-09-231-0/+30
| | | | fk to proxy models.
* Fixed #25453 -- Reworded makemigration's ↵Benjamin Wohlwend2015-09-231-2/+2
| | | | ask_not_null_alteration suggestion.
* Fixed typo in docs/topics/db/examples/one_to_one.txtDon Kirkby2015-09-231-1/+1
|
* Fixed #25407 -- Removed network dependency in GeoIP tests.Anton Baklanov2015-09-232-7/+34
|
* Refs #25373 -- Doc'd logging of exceptions during {% ↵Tim Graham2015-09-231-2/+8
| | | | include %} rendering.
* Refs #24526 -- Made the django logger handle INFO messages.Tim Graham2015-09-234-3/+34
| | | | | | | Without an explicit 'level', only messages at WARNING or higher are handled. This makes the config consistent with the docs which say, "The django catch-all logger sends all messages at the INFO level or higher to the console."
* Fixed #25410 -- Fixed empty ClearableFileInput crash on ↵Tim Graham2015-09-233-27/+13
| | | | | | | | | Python 2. Reverted "Fixes #24727 -- Prevented ClearableFileInput from masking exceptions on Python 2" and added a regression test. This reverts commit 5c412dd8a724b263489c1bd7a2fea381460665d7.
* Refs #21927 -- Added examples to urls.include() changes ↵Tim Graham2015-09-231-6/+50
| | | | in 1.9 release notes.
* Fixed #25439 -- Added `SUCCESS` style to termcolor palettesMatt Deacalion Stevens2015-09-231-0/+3
|
* Fixed #25447 -- Emphasized the need to restart dev ↵Henry Jordan2015-09-231-2/+6
| | | | server when adding template tags.
* Refs #24115 -- Added docs for password updates on bcrypt ↵Tim Graham2015-09-231-3/+7
| | | | rounds change.
* Fixed #24509 -- Added Expression support to ↵Alex Hill2015-09-2215-67/+247
| | | | SQLInsertCompiler
* Added link to Babel's message extracting functionality.Rik2015-09-221-2/+3
|
* Recommended against default_app_config.Aymeric Augustin2015-09-221-0/+8
| | | | | | | | Most likely this is a losing fight -- people seem to love this small convention -- but at least the reasons for avoiding it will be documented. Refs #25356.
* Refs #23813 -- Moved URLconfs into module and tidied ↵Alasdair Nicol2015-09-2210-53/+35
| | | | docstrings.
* Fixed #25373 -- Added warning logging for exceptions ↵Nick Johnson2015-09-224-8/+75
| | | | during {% include %} tag rendering.
* Refs #18773 -- Improved template variable exception ↵Nick Johnson2015-09-222-8/+22
| | | | logging message.
* Added "readded" to the docs wordlist.Tim Graham2015-09-211-0/+1
|
* Fix import sorting problem.Aymeric Augustin2015-09-211-3/+2
|
* Fixed #24921 -- set_autocommit(False) + ORM queries.Aymeric Augustin2015-09-214-11/+25
| | | | | | | | | | | | | This commits lifts the restriction that the outermost atomic block must be declared with savepoint=False. This restriction was overly cautious. The logic that makes it safe not to create savepoints for inner blocks also applies to the outermost block when autocommit is disabled and a transaction is already active. This makes it possible to use the ORM after set_autocommit(False). Previously it didn't work because ORM write operations are protected with atomic(savepoint=False).
* Documented "rel objects".Aymeric Augustin2015-09-211-0/+11
| | | | | Kept the docstring short because these objects aren't very well defined and they're in the crosshairs of several refactorings.
* Renamed descriptor classes for related objects.Aymeric Augustin2015-09-2110-58/+61
| | | | | | | | | | | | The old names were downright confusing. Some seemed to mean the opposite of what the class actually did. The new names follow a consistent nomenclature: (Forward|Reverse)(ManyToOne|OneToOne|ManyToMany)Descriptor. I mentioned combinations that do not exist in the docstring in order to help people who would search for them in the code base.
* Added comments in related instances descriptors.Aymeric Augustin2015-09-211-6/+23
|
* Documented related models descriptors.Aymeric Augustin2015-09-211-14/+141
| | | | | Changed the poll / choices example to a more obvious parent / children. I think that reduces the cognitive load.
* Fixed #22341 -- Split django.db.models.fields.related.Aymeric Augustin2015-09-213-1191/+1213
| | | | | | | At 2800 lines it was the largest module in the django package. This commit brings it down to a more manageable 1620 lines. Very small changes were performed to uniformize import style.
* Fixed #15760 -- Added JavaScript events for admin inline ↵ramez2015-09-217-9/+114
| | | | forms.
* Fixed #25431 -- Readded inline foreign keys to ↵Claude Paroz2015-09-213-5/+12
| | | | | | | | modelformset instances Too much field exclusions in form's construct_instance() in _post_clean() could lead to some unexpected missing ForeignKey values. Fixes a regression from 45e049937. Refs #13776.
* Corrected docstring in core.urlresolvers module.Matt Deacalion Stevens2015-09-211-3/+2
| | | | | The RegexURLResolver.resolve() method no longer returns a tuple. It has returned a ResolverMatch object since commit e0fb90b2.
* Fixed #24688 -- Added Oracle support for new-style GIS ↵Jani Tiainen2015-09-216-28/+128
| | | | functions.
* Fixed #23813 -- Added checks for common URL pattern errorsAlasdair Nicol2015-09-2111-1/+194
| | | | | Thanks jwa and lamby for the suggestions, and timgraham and jarshwah for their reviews.
* Fixed #12856 -- Documented BoundField API.Moritz Sichert2015-09-213-75/+165
|