summaryrefslogtreecommitdiff
path: root/django/apps
AgeCommit message (Expand)Author
2014-01-15Fixed typo in comment.Martin Matusiak
2014-01-12Used a regular lock for app registry population.Aymeric Augustin
2014-01-06Fixed #21718 -- Renamed has_app to is_installed.Aymeric Augustin
2014-01-05Fixed #21711 -- Enforced unicity of model names.Aymeric Augustin
2013-12-31Renamed AppConfig.setup to ready.Aymeric Augustin
2013-12-31Enforced unicity of app labels.Aymeric Augustin
2013-12-31Made it possible to change an application's label in its configuration.Aymeric Augustin
2013-12-31Checked unicity of app config names when populating the app registry.Aymeric Augustin
2013-12-31Fleshed out release notes for app loading.Aymeric Augustin
2013-12-30Removed the only_with_models_module argument of get_model[s].Aymeric Augustin
2013-12-30Merged Apps.populate_apps() and populate_models().Aymeric Augustin
2013-12-30Removed postponing in Apps.populate_models.Aymeric Augustin
2013-12-30Stopped populating the app registry as a side effect.Aymeric Augustin
2013-12-30Populated Apps instances immediately by default.Aymeric Augustin
2013-12-30Added AppConfig.setup() to run setup code.Aymeric Augustin
2013-12-30Avoided leaking state on exceptions in populate_models().Aymeric Augustin
2013-12-29Deprecated the app argument of apps.get_models.Aymeric Augustin
2013-12-29Fixed stupid error in 21f22f95.Aymeric Augustin
2013-12-29Removed obsolete docstring.Aymeric Augustin
2013-12-29Added Apps.clear_cache().Aymeric Augustin
2013-12-29Added AppConfig.get_models().Aymeric Augustin
2013-12-28Removed the only_installed argument of Apps.get_models.Aymeric Augustin
2013-12-28Changed get_model to raise an exception on errors.Aymeric Augustin
2013-12-28Simplified Apps.get_model and added AppConfig.get_model.Aymeric Augustin
2013-12-28Populated non-master app registries.Aymeric Augustin
2013-12-28Simplified the implementation of register_model.Aymeric Augustin
2013-12-27Avoided %r formatting on possibly unicode strings.Aymeric Augustin
2013-12-26Normalized exceptions raised by AppConfig.create.Aymeric Augustin
2013-12-26Made the AppConfig API marginally more consistent.Aymeric Augustin
2013-12-26Made unset_installed_apps reset the app registry state.Aymeric Augustin
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