summaryrefslogtreecommitdiff
path: root/django/db/models/loading.py
Commit message (Expand)AuthorAgeFilesLines
* Removed the _-prefix for populate().Aymeric Augustin2013-12-171-1/+1
* Removed unused attribute app_errors of the app cache.Aymeric Augustin2013-12-171-1/+11
* Removed module-level functions for the app cache.Aymeric Augustin2013-12-171-12/+12
* Moved django.db.models.loading to django.apps.cache.Aymeric Augustin2013-12-171-378/+6
* Fixed E127 pep8 warnings.Loic Bistuer2013-12-141-6/+4
* Brought comments in sync with the code in BaseAppCache.Aymeric Augustin2013-12-111-6/+5
* Fixed flake8 E251 violationsMilton Mazzarri2013-11-031-4/+4
* More attacking E302 violatorsAlex Gaynor2013-11-021-0/+2
* Fixed #21283 -- Added support for migrations if models is a package.Loic Bistuer2013-10-191-0/+7
* Merge remote-tracking branch 'core/master' into schema-alterationAndrew Godwin2013-08-091-17/+34
|\
| * Fixed #17667 -- Prevented app loading from skipping nonexistent apps after th...Tim Graham2013-08-051-1/+1
| * Deprecated SortedDict (replaced with collections.OrderedDict)Curtis Maloney2013-08-041-6/+15
| * Deprecated django.utils.importlibClaude Paroz2013-07-291-6/+6
| * Fixed #14300 -- Fixed initial SQL location if models is a package.Tim Graham2013-07-241-4/+12
* | Merge branch 'master' into schema-alterationAndrew Godwin2013-07-221-2/+6
|\ \ | |/
| * Fixed #14007 -- Added model discovery in models module without the need to sp...Tim Graham2013-07-161-2/+4
| * A large number of stylistic cleanups across django/db/Alex Gaynor2013-07-081-0/+2
* | Merge remote-tracking branch 'core/master' into schema-alterationAndrew Godwin2013-06-191-18/+57
|\ \ | |/
| * Added TransactionTestCase.available_apps.Aymeric Augustin2013-06-101-12/+50
| * Replaced a dict emulating a set with a set.Aymeric Augustin2013-06-091-2/+2
* | Merge remote-tracking branch 'core/master' into schema-alterationAndrew Godwin2013-06-071-1/+21
|\ \ | |/
| * Added get_app_paths() to the AppCache.Aymeric Augustin2013-06-021-1/+21
* | Rest of the _meta.app_cache stuff. Schema tests work now.Andrew Godwin2013-05-091-37/+43
* | Split out a BaseAppCache, make AppCache borg again, add _meta.app_cacheAndrew Godwin2013-05-091-68/+79
* | Merge branch 'master' into schema-alterationAndrew Godwin2013-04-181-1/+1
|\ \ | |/
| * Fixed #19689 -- Renamed `Model._meta.module_name` to `model_name`.Simon Charette2013-02-051-1/+1
* | Merge remote-tracking branch 'core/master' into schema-alterationAndrew Godwin2012-12-181-5/+15
|\ \ | |/
| * Fixed #19357 -- Allow non-ASCII chars in filesystem pathsClaude Paroz2012-12-081-2/+3
| * Fixed #19806 -- Ensure that content types and permissions aren't created for ...Russell Keith-Magee2012-11-241-12/+21
| * Fixed #3011 -- Added swappable auth.User models.Russell Keith-Magee2012-09-261-0/+1
* | Remove AppCache state handling, replace with swappable cachesAndrew Godwin2012-09-221-54/+34
* | Un-borg-ify AppCacheAndrew Godwin2012-09-211-20/+12
* | More schema test fixingAndrew Godwin2012-09-171-1/+2
* | Fix app loading/test interactionAndrew Godwin2012-09-171-1/+2
* | Added SQLite backend which passes all current testsAndrew Godwin2012-09-071-0/+21
* | Add some state management methods to AppCache.Andrew Godwin2012-09-051-0/+31
|/
* [py3] Fixed access to dict keys/values/items.Aymeric Augustin2012-08-071-2/+3
* Fixed #18251 -- Removed a deadlock possibility in apploadingAnssi Kääriäinen2012-07-011-4/+15
* Switch to using context managers for acquiring and releasing locks.Alex Gaynor2012-06-231-8/+2
* Fixed #7198 (again) -- Corrects a problem with string interpolation from r168...Gabriel Hurley2011-09-221-1/+1
* Fixed #7198 -- Improved error message when missing models.py. Thanks Silver_G...Paul McMillan2011-09-221-0/+1
* Fixed #16225 -- Removed unused imports. Many thanks to Aymeric Augustin for t...Jannis Leidel2011-07-131-1/+0
* Fixed #15903 -- Allowed not-installed models to still be referenced in relate...Carl Meyer2011-04-271-4/+8
* Fixed #15866, #15850 -- Prevented get_model() and get_models() from returning...Carl Meyer2011-04-201-6/+27
* Fixed #13348: Restored ability to load models from apps in eggs. Thanks Ramir...Karen Tracey2010-04-151-13/+17
* Fixed #13335: Adjusted the r12950 fix to properly handle import errors result...Karen Tracey2010-04-141-3/+10
* Fixed #11696: Changed app loading code so that it does not swallow import err...Karen Tracey2010-04-121-1/+4
* Changed a whole bunch of places to raise exception instances instead of old-s...Adrian Holovaty2010-01-101-1/+1
* Fixed #11936 -- Removed deferred models from the list returned by the app_cac...Russell Keith-Magee2009-12-221-8/+15
* Fixed #12389 - performance enhancement of get_models()Luke Plant2009-12-161-1/+9