summaryrefslogtreecommitdiff
path: root/django/apps
Commit message (Expand)AuthorAgeFilesLines
* Removed deprecated Apps methods per deprecation timeline.Tim Graham2015-01-181-112/+1
* Removed an obsolete comment in django/apps/config.pyTim Graham2015-01-181-3/+0
* Fixed #12663 -- Formalized the Model._meta API for retrieving fields.Daniel Pyrathon2015-01-061-0/+5
* Improved warning message when reloading models. Refs #23621.Loic Bistuer2014-10-231-1/+3
* Fixed #23621 -- Warn for duplicate models when a module is reloaded.Loic Bistuer2014-10-231-3/+9
* Revert "Improved AppRegistryNotReady message."Tim Graham2014-10-041-1/+1
* Improved AppRegistryNotReady message.Collin Anderson2014-10-041-1/+1
* Fixed #22920 -- Avoid masking some exceptions.Aymeric Augustin2014-09-081-7/+12
* Checked more precisely whether the app registry is ready.Aymeric Augustin2014-07-122-24/+42
* Fixed #8033 -- Explained app registry error during translation setupClaude Paroz2014-06-231-2/+2
* Fixed #21188 -- Introduced subclasses for to-be-removed-in-django-XX warningsClaude Paroz2014-03-081-9/+10
* Fixed two typos.Rodolfo Carvalho2014-02-151-1/+1
* Fixed #21874 -- Require Django applications to have a filesystem path.Carl Meyer2014-01-271-16/+27
* Fixed some missing/extraneous new line warnings.Simon Charette2014-01-261-1/+0
* Fixed #21877 -- Renamed django.apps.base to config.Aymeric Augustin2014-01-263-2/+2
* Fixed #21702 -- get_model('app_label.ModelName').Aymeric Augustin2014-01-261-2/+8
* Fixed #17304 -- Allow single-path and configured-path namespace packages as a...Carl Meyer2014-01-251-1/+10
* Fixed #21829 -- Added default AppConfigs.Aymeric Augustin2014-01-251-31/+42
* Fixed #21871 -- Fixed Apps.is_installed() for apps with custom label.Carl Meyer2014-01-241-2/+1
* Fixed typo in comment.Martin Matusiak2014-01-151-1/+1
* Used a regular lock for app registry population.Aymeric Augustin2014-01-121-5/+8
* Fixed #21718 -- Renamed has_app to is_installed.Aymeric Augustin2014-01-061-1/+1
* Fixed #21711 -- Enforced unicity of model names.Aymeric Augustin2014-01-051-1/+0
* Renamed AppConfig.setup to ready.Aymeric Augustin2013-12-312-3/+3
* Enforced unicity of app labels.Aymeric Augustin2013-12-311-1/+5
* Made it possible to change an application's label in its configuration.Aymeric Augustin2013-12-311-0/+21
* Checked unicity of app config names when populating the app registry.Aymeric Augustin2013-12-311-1/+12
* Fleshed out release notes for app loading.Aymeric Augustin2013-12-311-3/+1
* Removed the only_with_models_module argument of get_model[s].Aymeric Augustin2013-12-301-21/+14
* Merged Apps.populate_apps() and populate_models().Aymeric Augustin2013-12-302-61/+20
* Removed postponing in Apps.populate_models.Aymeric Augustin2013-12-301-30/+6
* Stopped populating the app registry as a side effect.Aymeric Augustin2013-12-302-27/+24
* Populated Apps instances immediately by default.Aymeric Augustin2013-12-301-6/+12
* Added AppConfig.setup() to run setup code.Aymeric Augustin2013-12-302-0/+8
* Avoided leaking state on exceptions in populate_models().Aymeric Augustin2013-12-301-5/+6
* Deprecated the app argument of apps.get_models.Aymeric Augustin2013-12-291-26/+21
* Fixed stupid error in 21f22f95.Aymeric Augustin2013-12-291-1/+1
* Removed obsolete docstring.Aymeric Augustin2013-12-291-2/+0
* Added Apps.clear_cache().Aymeric Augustin2013-12-291-8/+16
* Added AppConfig.get_models().Aymeric Augustin2013-12-291-0/+26
* Removed the only_installed argument of Apps.get_models.Aymeric Augustin2013-12-281-25/+7
* Changed get_model to raise an exception on errors.Aymeric Augustin2013-12-281-8/+9
* Simplified Apps.get_model and added AppConfig.get_model.Aymeric Augustin2013-12-282-14/+31
* Populated non-master app registries.Aymeric Augustin2013-12-282-9/+11
* Simplified the implementation of register_model.Aymeric Augustin2013-12-281-13/+7
* Avoided %r formatting on possibly unicode strings.Aymeric Augustin2013-12-272-5/+5
* Normalized exceptions raised by AppConfig.create.Aymeric Augustin2013-12-261-5/+16
* Made the AppConfig API marginally more consistent.Aymeric Augustin2013-12-261-7/+10
* Made unset_installed_apps reset the app registry state.Aymeric Augustin2013-12-261-2/+2
* Turned apps.ready into a property. Added tests.Aymeric Augustin2013-12-261-3/+4