| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2015-01-13 | Fixed test failures in Oracle introspection | Shai Berger | |
| Refs #17785 | |||
| 2015-01-12 | Fixed typo in docs/release/1.8.txt & added word for spelling check. | Tim Graham | |
| 2015-01-12 | Fixed #24138 -- Added modelform_factory to __all__. | Josh Schneier | |
| 2015-01-13 | Fixed #24060 -- Added OrderBy Expressions | Josh Smeaton | |
| 2015-01-12 | Fixed #24133 -- Replaced formatting syntax in success_url placeholders | Claude Paroz | |
| Thanks Laurent Payot for the report, and Markus Holtermann, Tim Graham for the reviews. | |||
| 2015-01-12 | Fixed #24124 (again) -- Updated tests with new default context_processors. | Aymeric Augustin | |
| Thanks Collin for the review. | |||
| 2015-01-12 | Avoided exceptions in admindocs' template detail view. | Aymeric Augustin | |
| This is marginally better than crashing when several Django template engines are configured in a project. Refs #24125. | |||
| 2015-01-12 | Avoided exceptions in a non-critical check in the admin. | Aymeric Augustin | |
| This change makes it possible to configure several Django template engines in a project and still use the admin. On the flip side the check is silently skipped when no Django template engine is configured. | |||
| 2015-01-12 | Made debug views not crash when there isn't a default template engine. | Aymeric Augustin | |
| 2015-01-12 | Accounted for multiple template engines in template responses. | Aymeric Augustin | |
| 2015-01-12 | Deprecated passing a Context to a generic Template.render. | Aymeric Augustin | |
| A deprecation path is required because the return type of django.template.loader.get_template changed during the multiple template engines refactor. test_csrf_token_in_404 was incorrect: it tested the case when the hardcoded template was rendered, and that template doesn't depend on the CSRF token. This commit makes it test the case when a custom template is rendered. | |||
| 2015-01-12 | Rewrapped TemplateSyntaxError in Jinja2 backend. | Aymeric Augustin | |
| Changed import style to avoid confusion between Django's and Jinja2's APIs. | |||
| 2015-01-12 | Fixed #17785 -- Preferred column names in get_relations introspection | Claude Paroz | |
| Thanks Thomas Güttler for the report and the initial patch, and Tim Graham for the review. | |||
| 2015-01-12 | Fixed #24089 -- Added check for when ModelAdmin.fieldsets[1]['fields'] isn't ↵ | Muthiah Annamalai | |
| a list/tuple. | |||
| 2015-01-12 | Fixed #24129 -- Added indicator that migrations are rendering the initial state | Markus Holtermann | |
| Thanks Tim Graham for the review. | |||
| 2015-01-12 | Fixed test from refs #23913 when running tests in reverse. | Tim Graham | |
| 2015-01-12 | Fixed #24124 -- Changed context_processors in the default settings.py | Collin Anderson | |
| 2015-01-12 | Fixed #24123 -- Used all available migrations to generate the initial ↵ | Markus Holtermann | |
| migration state Thanks Collin Anderson for the input when creating the patch and Tim Graham for the review. | |||
| 2015-01-12 | Fixed #23878 -- Moved Query and Prefetch documentation | Ng Zhi An | |
| 2015-01-12 | Made Django's templates get their own LANGUAGE_* variables. | Collin Anderson | |
| Refs #24117 | |||
| 2015-01-12 | Fixed #9893 -- Allowed using a field's max_length in the Storage. | Pavel Shpilev | |
| 2015-01-12 | Fixed #24118 -- Added --debug-sql option for tests. | Marc Tamlyn | |
| Added a --debug-sql option for tests and runtests.py which outputs the SQL logger for failing tests. When combined with --verbosity=2, it also outputs the SQL for passing tests. Thanks to Berker, Tim, Markus, Shai, Josh and Anssi for review and discussion. | |||
| 2015-01-11 | Removed supports_binary_field flag as all backends support them | Claude Paroz | |
| It was mainly for MySQL on Python 3, but now the current recommended MySQL driver for Python 3 (mysqlclient) does support binary fields, it is unneeded. Refs #20377. | |||
| 2015-01-11 | Fixed #23913 -- Deprecated the `=` comparison in `if` template tag. | Ola Sitarska | |
| 2015-01-11 | Revert "Marked a test as an expected failure on MySQL and Python 3.2." | Claude Paroz | |
| This reverts commit 832b4a5722ba6b55e7b17c3bac6614ecca9aa88d. We officially don't support MySQL on Python 3.2. Refs #20380. | |||
| 2015-01-11 | Fixed spelling errors in docs. | Tim Graham | |
| 2015-01-11 | Refs #24110 -- Added a more descriptive release note and fixed a spelling ↵ | Markus Holtermann | |
| mistake. | |||
| 2015-01-10 | Fixed #24110 -- Rewrote migration unapply to preserve intermediate states | Markus Holtermann | |
| 2015-01-10 | Improved template ugrading docs. | Aymeric Augustin | |
| Recommending Template(template_code) was dumb. Described alternatives. | |||
| 2015-01-10 | Updated templates API reference. | Aymeric Augustin | |
| Accounted for multiple template engines and made a few small fixes. | |||
| 2015-01-10 | Updated custom template tags how-to. | Aymeric Augustin | |
| Accounted for multiple template engines and made a few small fixes. | |||
| 2015-01-10 | Added release notes and upgrade instructions for templates. | Aymeric Augustin | |
| 2015-01-10 | Wrote main documentation for templates. | Aymeric Augustin | |
| 2015-01-10 | Moved doc on the DTL's syntax to the ref/ section. | Aymeric Augustin | |
| This makes room for a more general introduction about templating. Updated some links to point to the new location, but kept those that didn't talk specifically about the DTL. | |||
| 2015-01-10 | Fixed #24114 -- Improved error message in GEOSGeometry constructor | Claude Paroz | |
| 2015-01-10 | Fixed #13165 -- Added edit and delete links to admin foreign key widgets. | Simon Charette | |
| Thanks to Collin Anderson for the review and suggestions and Tim for the final review. | |||
| 2015-01-10 | Fixed #24001 -- Added range fields for PostgreSQL. | Marc Tamlyn | |
| Added support for PostgreSQL range types to contrib.postgres. - 5 new model fields - 4 new form fields - New validators - Uses psycopg2's range type implementation in python | |||
| 2015-01-10 | Move % addition to lookups, refactor postgres lookups. | Marc Tamlyn | |
| These refactorings making overriding some text based lookup names on other fields (specifically `contains`) much cleaner. It also removes a bunch of duplication in the contrib.postgres lookups. | |||
| 2015-01-10 | Fixed #23967 -- Added formats for Greek | Serafeim Papastefanos | |
| 2015-01-10 | Introspected alternate SQLite FK definitions | Claude Paroz | |
| 2015-01-10 | Updated introspection test to use skipUnlessDBFeature | Claude Paroz | |
| 2015-01-10 | Fixed #24097 -- Prevented AttributeError in redirect_to_login | Claude Paroz | |
| Thanks Peter Schmidt for the report and the initial patch. Thanks to Oktay Sancak for writing the original failing test and Alvin Savoy for supporting contributing back to the community. | |||
| 2015-01-10 | Added Josh Smeaton bio to team | Josh Smeaton | |
| 2015-01-10 | Added my bio to the core team. | Markus Holtermann | |
| 2015-01-09 | Removed an undocumented contenttypes synchronization method. | Simon Charette | |
| 2015-01-09 | Fixed a typo in contrib/auth/tests/custom_user.py docstring. | Tim Graham | |
| 2015-01-09 | Added best practices for versionadded/changed annotations. | Tim Graham | |
| 2015-01-10 | Fixed #22583 -- Allowed RunPython and RunSQL to provide hints to the db router. | Loic Bistuer | |
| Thanks Markus Holtermann and Tim Graham for the review. | |||
| 2015-01-09 | Fixed #24094 -- Enabled template tests to run individually. | Preston Timmons | |
| 2015-01-09 | Fixed #24098 -- Added no-op attributes to RunPython and RunSQL | Markus Holtermann | |
| Thanks Loïc Bistuer and Tim Graham for the discussion and review. | |||
