summaryrefslogtreecommitdiff
path: root/django/core
AgeCommit message (Expand)Author
2013-12-29Stopped calling get_models() for a side effect.Aymeric Augustin
2013-12-29Changed get_validation_errors to use an app config.Aymeric Augustin
2013-12-29Changed get_migratable_models to use an app config.Aymeric Augustin
2013-12-29Changed sql_* to use an app config instead of a models module.Aymeric Augustin
2013-12-29Removed unused import.Aymeric Augustin
2013-12-29Added AppConfig.get_models().Aymeric Augustin
2013-12-29Refactored the migration signals to use app configs.Aymeric Augustin
2013-12-28Fixed #21242 -- Allowed more IANA schemes in URLValidatorClaude Paroz
2013-12-28Changed get_model to raise an exception on errors.Aymeric Augustin
2013-12-28Introduced as_bytes for SafeMIMEText (and other SafeMIME-classes).Florian Apolloner
2013-12-28Worked around a bug in python 3.3.3. Refs #21093Florian Apolloner
2013-12-28Fixed #21093 -- Ensured that mails are not base64 encoded on python 3.3.3+.Florian Apolloner
2013-12-28Used app_label instead of appname.Aymeric Augustin
2013-12-28Migrated built-in AppCommands to use handle_app_config.Aymeric Augustin
2013-12-28Updated the AppCommand API to support apps without a models module.Aymeric Augustin
2013-12-27Refactored dumpdata with app configs instead of models modules.Aymeric Augustin
2013-12-26Made the AppConfig API marginally more consistent.Aymeric Augustin
2013-12-25Merge pull request #2105 from funkybob/cleanup_get_postAymeric Augustin
2013-12-24Renamed AppCache to Apps.Aymeric Augustin
2013-12-24Use cached_property for request.GET and request.COOKIESCurtis
2013-12-22Moved apps back in the toplevel django namespace.Aymeric Augustin
2013-12-22Added the ability to supply custom app configs.Aymeric Augustin
2013-12-22Improved set_available_apps() in several ways.Aymeric Augustin
2013-12-22Stop testing for inclusion in INSTALLED_APPS.Aymeric Augustin
2013-12-22Renamed registered_model to has_model.Aymeric Augustin
2013-12-22Stopped iterating on INSTALLED_APPS.Aymeric Augustin
2013-12-22Not all Python modules have a __path__.Aymeric Augustin
2013-12-22Populated models only when necessary in get_app_config[s].Aymeric Augustin
2013-12-22Deprecated load_app().Aymeric Augustin
2013-12-22Added an _-prefix to pending lookups because it's transient.Aymeric Augustin
2013-12-22Terminated AppCache._populate() with extreme prejudice.Aymeric Augustin
2013-12-22Implemented two-stage app-cache population.Aymeric Augustin
2013-12-22Removed the app_config.installed flag.Aymeric Augustin
2013-12-22Removed the only_installed argument of get_app_config[s].Aymeric Augustin
2013-12-22Refactored registration of models.Aymeric Augustin
2013-12-22Added a context manager to hold the import lock.Aymeric Augustin
2013-12-17Style cleanup forgotten in second previous commit.Aymeric Augustin
2013-12-17Deborgified the app cache.Aymeric Augustin
2013-12-17Moved the new app cache inside core.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-17Deprecated get_app_package, get_app_path and get_app_paths.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-10Fixed E124 pep8 warnings.Loic Bistuer
2013-12-07Trigger AttributeError in ValidationError.message_dict when error_dict is mis...Loic Bistuer