summaryrefslogtreecommitdiff
path: root/django/apps
AgeCommit message (Expand)Author
2013-12-26Turned apps.ready into a property. Added tests.Aymeric Augustin
2013-12-26Beefed up the comments for AppConfig.all_models.Aymeric Augustin
2013-12-24Documented the Apps and AppConfig APIs.Aymeric Augustin
2013-12-24Renamed AppCache to Apps.Aymeric Augustin
2013-12-24Invalidated get_models cache in a few more places.Aymeric Augustin
2013-12-24Replaced ad-hoc caching of get_models with lru_cache.Aymeric Augustin
2013-12-24Fixed override_settings when set_available_apps raises an exception.Aymeric Augustin
2013-12-23Avoided loading repeatedly the same models module.Aymeric Augustin
2013-12-23Dropped AppCache._empty, _with_app and _without_app.Aymeric Augustin
2013-12-23Refactored INSTALLED_APPS overrides.Aymeric Augustin
2013-12-22Syntax error.Aymeric Augustin
2013-12-22Renamed has_model to get_registered_models.Aymeric Augustin
2013-12-22Changed has_app to return a boolean.Aymeric Augustin
2013-12-22Made AppConfig importable from django.apps.Aymeric Augustin
2013-12-22Moved apps back in the toplevel django namespace.Aymeric Augustin
2013-12-17Moved the new app cache inside core.Aymeric Augustin
2013-12-17Inlined trivial method that was used only once.Aymeric Augustin
2013-12-17Fixed incorrect decrementation of nesting_level.Aymeric Augustin
2013-12-17Made it possible to create apps without a models module.Aymeric Augustin
2013-12-17Deprecated get_app().Aymeric Augustin
2013-12-17Deprecated get_apps().Aymeric Augustin
2013-12-17Removed the _-prefix for populate().Aymeric Augustin
2013-12-17Simplified register_models.Aymeric Augustin
2013-12-17Simplified handling of available_apps slightly.Aymeric Augustin
2013-12-17Deprecated get_app_package, get_app_path and get_app_paths.Aymeric Augustin
2013-12-17Added get_app_configs() to iterate on app_config instances.Aymeric Augustin
2013-12-17Added get_app_config() to look up app configs by label.Aymeric Augustin
2013-12-17Fleshed out AppConfig objects.Aymeric Augustin
2013-12-17Moved list of models inside AppConfig instances.Aymeric Augustin
2013-12-17Removed unused attribute app_errors of the app cache.Aymeric Augustin
2013-12-17Stored AppConfig objects instead of models modules in the app cache.Aymeric Augustin
2013-12-17Removed module-level functions for the app cache.Aymeric Augustin
2013-12-17Removed ModelDict.Aymeric Augustin
2013-12-17Removed BaseAppCache.app_store.Aymeric Augustin
2013-12-17Moved django.db.models.loading to django.apps.cache.Aymeric Augustin