| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2014-11-20 | Added AutoField introspection for PostgreSQL | Claude Paroz | |
| Refs #23748. | |||
| 2014-11-20 | Added AutoField introspection for MySQL | Claude Paroz | |
| Refs #23748. | |||
| 2014-11-20 | Fixed #23817 -- Updated docs on QuerySet evaluation | Michal Petrucha | |
| Removed inaccurate info about partial evaluation after refs #18702. Added information on modifying sliced QuerySets; refs #22503. | |||
| 2014-11-20 | Fixed #12098 -- Simplified HttpRequest.__repr__(). | Berker Peksag | |
| 2014-11-20 | Fixed #23876 -- Removed dead code in SQLAggregateCompiler. | Carl Meyer | |
| 2014-11-19 | Added another migration-executor test to avoid regressions. | Carl Meyer | |
| 2014-11-19 | Fixed #23873 -- Improved GIS error message when GEOS is not installed. | Carl Meyer | |
| Thanks Claude for writing the patch. | |||
| 2014-11-19 | Fixed #23410 -- Avoided unnecessary rollbacks in related apps when migrating ↵ | Carl Meyer | |
| backwards. | |||
| 2014-11-19 | Fixed #21794 -- Removed deprecation warning for abstract models outside an app. | Carl Meyer | |
| 2014-11-19 | Fixed #23872 -- Removed sensitivity of migrations tests to CWD. | Carl Meyer | |
| 2014-11-19 | Fixed GIS tests to again skip without error when GEOS is not installed. | Carl Meyer | |
| 2014-11-19 | Fixed #23871 -- Removed promotion of MySQL warnings to errors in DEBUG mode. | Tim Graham | |
| 2014-11-19 | Replaced caching of a property with @cached_property. | Aymeric Augustin | |
| 2014-11-19 | Simplified caching of supported languages. | Aymeric Augustin | |
| 2014-11-19 | Simplified caching of the default exception reporter filter. | Aymeric Augustin | |
| Also simplified the logic under the assumption that a false-ish object won't have an exception_reporter_filter attribute. | |||
| 2014-11-19 | Removed usage of a global variable. | Aymeric Augustin | |
| 2014-11-19 | Simplified caching of template context processors. | Aymeric Augustin | |
| 2014-11-19 | Simplified caching of templatetags modules. | Aymeric Augustin | |
| 2014-11-19 | Simplified caching of get_default_timezone(). | Aymeric Augustin | |
| 2014-11-19 | Simplified caching of password hashers. | Aymeric Augustin | |
| load_hashers cached its result regardless of its password_hashers argument which required fragile cache invalidation. Remove that argument in favor of @override_settings and triggering cache invalidation with a signal. | |||
| 2014-11-19 | Cleaned up and reformatted autodetector tests | Markus Holtermann | |
| 2014-11-19 | Formatted model states in autodetector tests | Markus Holtermann | |
| 2014-11-19 | Fixed GeoSQLCompiler to pass itself correctly to column as_sql. | Carl Meyer | |
| 2014-11-19 | Removed a deprecated use of SQLCompiler as quote_name in GIS. | Carl Meyer | |
| 2014-11-19 | Fixed #22248 -- Made RenameModel reversible | Stratos Moros | |
| 2014-11-19 | Removed nonexistent module django.test._doctest from coveragerc. | Tim Graham | |
| 2014-11-18 | Fixed #23849 -- Documented the locmem.Loader class. | Preston Timmons | |
| 2014-11-18 | Deprecated calling a SQLCompiler instance. | Carl Meyer | |
| 2014-11-18 | Fixed #18714 -- Added 'fuzzy' compilemessages option | Anton Baklanov | |
| 2014-11-18 | Fixed #23799 -- Made makemigrations respect --no-optimize. | Tillmann Karras | |
| Thanks to yamila-moreno for the idea of a skip message. | |||
| 2014-11-17 | Fix malformed note directives. | Carl Meyer | |
| 2014-11-17 | Fix link target markup | Éric Araujo | |
| This markup for a code block is redundant with the code-block directive below, and blocks the following line from working as link target. | |||
| 2014-11-17 | Adjusted tests for previous commit. | Aymeric Augustin | |
| The test was testing a use case that doesn't happen in real world projects: developers don't assign settings at run time (and Django explicitly doesn't support it). | |||
| 2014-11-17 | Normalized check that ALLOWED_INCLUDE_ROOTS is a tuple. | Aymeric Augustin | |
| 2014-11-17 | Removed superfluous newline. | Aymeric Augustin | |
| 2014-11-17 | Merge pull request #3563 from MarkusH/ticket23859 | Carl Meyer | |
| Fixed #23859 -- Fixed a migration crash when a field is renamed that is part of an index_together | |||
| 2014-11-17 | Fixed #23859 -- Fixed a migration crash when a field is renamed that is part ↵ | Markus Holtermann | |
| of an index_together | |||
| 2014-11-17 | Avoided unneeded calls to state.render() in migrations. | twidi | |
| 2014-11-17 | Reordered condition to avoid calling allow_migrate() if unneeded. | twidi | |
| 2014-11-17 | Fixed #23855 -- Removed unnecessary all() in tutorial 3. | Tim Graham | |
| 2014-11-17 | Moved bilateral transform fetching to models.lookups | Anssi Kääriäinen | |
| 2014-11-17 | Fixed #20435 -- Reordered the custom template tags docs. | Daniel Roseman | |
| Introduced the various shortcuts before explaining the more complex parser/render functionality. Also removed non-decorator syntax: it's been years since Django supported a Python version without decorators. | |||
| 2014-11-17 | Added assertion error message for test_make_line | Claude Paroz | |
| Refs #23842. Thanks Thomas Chaumeny for the suggestion. | |||
| 2014-11-17 | Improved readability of negative condition in makemessages | Claude Paroz | |
| Thanks Berker Peksag for the suggestion. | |||
| 2014-11-17 | Simplified handle_extensions management utility | Claude Paroz | |
| makemessages now doesn't need any special ignoring logic, after commit bb4a92d784. | |||
| 2014-11-17 | Fixed #23840 -- Fixed makemessages find_files method | Ilja Maas | |
| Changed the handling of extensions to be used for gettext. Now obeying the --extension argument. find_files now only find the given or default extensions and puts only these in the TranslatableFiles. As a result there are no more confusing messages for filetypes (extension) not handled by makemessages. | |||
| 2014-11-17 | Fixed a test to correctly calculate a fixture's relative path. | Julien Phalip | |
| 2014-11-16 | Removed support for function-based template loaders. | Aymeric Augustin | |
| They were deprecated in Django 1.2 but not all the supporting code was removed in Django 1.4. Since the remaining code was unlikely to be functional (pun intended) e.g. it would crash unless the loader function had an is_usable attribute, this commit completes the removal immediately instead of starting another deprecation path. | |||
| 2014-11-16 | Used get_template_loaders in the cached loader. | Aymeric Augustin | |
| This ensures that enabling the cached loader doesn't change behavior. (Before this commit, it did when the list contained unusable loaders.) | |||
| 2014-11-16 | Refactored getting the list of template loaders. | Aymeric Augustin | |
| This provides the opportunity to move utility functions specific to the Django Template Language outside of django.template.loader. | |||
