summaryrefslogtreecommitdiff
path: root/django/db/models/loading.py
AgeCommit message (Expand)Author
2015-01-17Removed django.db.models.loading per deprecation timeline.Tim Graham
2014-03-08Fixed #21188 -- Introduced subclasses for to-be-removed-in-django-XX warningsClaude Paroz
2014-03-02Restored aliases for two APIs removed by app-loading.Aymeric Augustin
2013-12-31Turned django.db.models.app_cache_ready back into a method.Aymeric Augustin
2013-12-30Stopped populating the app registry as a side effect.Aymeric Augustin
2013-12-24Renamed AppCache to Apps.Aymeric Augustin
2013-12-22Moved apps back in the toplevel django namespace.Aymeric Augustin
2013-12-22Terminated AppCache._populate() with extreme prejudice.Aymeric Augustin
2013-12-17Moved the new app cache inside core.Aymeric Augustin
2013-12-17Removed the _-prefix for populate().Aymeric Augustin
2013-12-17Removed unused attribute app_errors of the app cache.Aymeric Augustin
2013-12-17Removed module-level functions for the app cache.Aymeric Augustin
2013-12-17Moved django.db.models.loading to django.apps.cache.Aymeric Augustin
2013-12-14Fixed E127 pep8 warnings.Loic Bistuer
2013-12-11Brought comments in sync with the code in BaseAppCache.Aymeric Augustin
2013-11-03Fixed flake8 E251 violationsMilton Mazzarri
2013-11-02More attacking E302 violatorsAlex Gaynor
2013-10-19Fixed #21283 -- Added support for migrations if models is a package.Loic Bistuer
2013-08-09Merge remote-tracking branch 'core/master' into schema-alterationAndrew Godwin
2013-08-05Fixed #17667 -- Prevented app loading from skipping nonexistent apps after th...Tim Graham
2013-08-04Deprecated SortedDict (replaced with collections.OrderedDict)Curtis Maloney
2013-07-29Deprecated django.utils.importlibClaude Paroz
2013-07-24Fixed #14300 -- Fixed initial SQL location if models is a package.Tim Graham
2013-07-22Merge branch 'master' into schema-alterationAndrew Godwin
2013-07-16Fixed #14007 -- Added model discovery in models module without the need to sp...Tim Graham
2013-07-08A large number of stylistic cleanups across django/db/Alex Gaynor
2013-06-19Merge remote-tracking branch 'core/master' into schema-alterationAndrew Godwin
2013-06-10Added TransactionTestCase.available_apps.Aymeric Augustin
2013-06-09Replaced a dict emulating a set with a set.Aymeric Augustin
2013-06-07Merge remote-tracking branch 'core/master' into schema-alterationAndrew Godwin
2013-06-02Added get_app_paths() to the AppCache.Aymeric Augustin
2013-05-09Rest of the _meta.app_cache stuff. Schema tests work now.Andrew Godwin
2013-05-09Split out a BaseAppCache, make AppCache borg again, add _meta.app_cacheAndrew Godwin
2013-04-18Merge branch 'master' into schema-alterationAndrew Godwin
2013-02-05Fixed #19689 -- Renamed `Model._meta.module_name` to `model_name`.Simon Charette
2012-12-18Merge remote-tracking branch 'core/master' into schema-alterationAndrew Godwin
2012-12-08Fixed #19357 -- Allow non-ASCII chars in filesystem pathsClaude Paroz
2012-11-24Fixed #19806 -- Ensure that content types and permissions aren't created for ...Russell Keith-Magee
2012-09-26Fixed #3011 -- Added swappable auth.User models.Russell Keith-Magee
2012-09-22Remove AppCache state handling, replace with swappable cachesAndrew Godwin
2012-09-21Un-borg-ify AppCacheAndrew Godwin
2012-09-17More schema test fixingAndrew Godwin
2012-09-17Fix app loading/test interactionAndrew Godwin
2012-09-07Added SQLite backend which passes all current testsAndrew Godwin
2012-09-05Add some state management methods to AppCache.Andrew Godwin
2012-08-07[py3] Fixed access to dict keys/values/items.Aymeric Augustin
2012-07-01Fixed #18251 -- Removed a deadlock possibility in apploadingAnssi Kääriäinen
2012-06-23Switch to using context managers for acquiring and releasing locks.Alex Gaynor
2011-09-22Fixed #7198 (again) -- Corrects a problem with string interpolation from r168...Gabriel Hurley
2011-09-22Fixed #7198 -- Improved error message when missing models.py. Thanks Silver_G...Paul McMillan