Arthur de Jong

Open Source / Free Software developer

summaryrefslogtreecommitdiffstats
path: root/django/apps
Commit message (Expand)AuthorAgeFilesLines
...
* 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
* Beefed up the comments for AppConfig.all_models.Aymeric Augustin2013-12-262-6/+11
* Documented the Apps and AppConfig APIs.Aymeric Augustin2013-12-241-2/+2
* Renamed AppCache to Apps.Aymeric Augustin2013-12-243-20/+27
* Invalidated get_models cache in a few more places.Aymeric Augustin2013-12-241-0/+4
* Replaced ad-hoc caching of get_models with lru_cache.Aymeric Augustin2013-12-241-10/+7
* Fixed override_settings when set_available_apps raises an...Aymeric Augustin2013-12-241-11/+14
* Avoided loading repeatedly the same models module.Aymeric Augustin2013-12-231-0/+3
* Dropped AppCache._empty, _with_app and _without_app.Aymeric Augustin2013-12-231-56/+0
* Refactored INSTALLED_APPS overrides.Aymeric Augustin2013-12-232-46/+46
* Syntax error.Aymeric Augustin2013-12-221-1/+1
* Renamed has_model to get_registered_models.Aymeric Augustin2013-12-221-1/+1
* Changed has_app to return a boolean.Aymeric Augustin2013-12-221-4/+4
* Made AppConfig importable from django.apps.Aymeric Augustin2013-12-221-0/+1
* Moved apps back in the toplevel django namespace.Aymeric Augustin2013-12-223-0/+605
* Moved the new app cache inside core.Aymeric Augustin2013-12-173-464/+0
* Inlined trivial method that was used only once.Aymeric Augustin2013-12-171-8/+1
* Fixed incorrect decrementation of nesting_level.Aymeric Augustin2013-12-171-3/+2
* Made it possible to create apps without a models module.Aymeric Augustin2013-12-172-9/+22
* Deprecated get_app().Aymeric Augustin2013-12-171-13/+16
* Deprecated get_apps().Aymeric Augustin2013-12-171-6/+9
* Removed the _-prefix for populate().Aymeric Augustin2013-12-171-7/+7
* Simplified register_models.Aymeric Augustin2013-12-172-27/+32
* Simplified handling of available_apps slightly.Aymeric Augustin2013-12-171-10/+17
* Deprecated get_app_package, get_app_path and get_app_paths.Aymeric Augustin2013-12-171-30/+43
* Added get_app_configs() to iterate on app_config instances.Aymeric Augustin2013-12-171-9/+16
* Added get_app_config() to look up app configs by label.Aymeric Augustin2013-12-171-16/+25
* Fleshed out AppConfig objects.Aymeric Augustin2013-12-172-15/+34
* Moved list of models inside AppConfig instances.Aymeric Augustin2013-12-172-24/+48
* Removed unused attribute app_errors of the app cache.Aymeric Augustin2013-12-171-8/+0
* Stored AppConfig objects instead of models modules in the...Aymeric Augustin2013-12-172-13/+27
* Removed module-level functions for the app cache.Aymeric Augustin2013-12-172-18/+2
* Removed ModelDict.Aymeric Augustin2013-12-171-15/+4
* Removed BaseAppCache.app_store.Aymeric Augustin2013-12-171-19/+13
* Moved django.db.models.loading to django.apps.cache.Aymeric Augustin2013-12-172-0/+396