summaryrefslogtreecommitdiff
path: root/django/core
AgeCommit message (Expand)Author
2014-02-02Ensure cursors are closed when no longer needed.Michael Manfre
2014-01-28Fixed #21849 -- Included the count of silenced system checks in output.Tim Graham
2014-01-26Fixed #21866 -- Replaced "COMMIT" in managmement command SQL with backend hook.Wojciech Banaś
2014-01-26Took advantage of the new get_model API. Refs #21702.Aymeric Augustin
2014-01-25Fixed #21873 -- Removed duplicate import.Aymeric Augustin
2014-01-25Fixed #21829 -- Added default AppConfigs.Aymeric Augustin
2014-01-20fixed typo on docstringJosé Moreira
2014-01-20Fixed #16905 -- Added extensible checks (nee validation) frameworkRussell Keith-Magee
2014-01-19Fixed #21638: Validators are now comparable, stops infinite user mig'nsAndrew Godwin
2014-01-17Adjusted inspectdb management command to yield PEP 8-compliant output barring...JustinTArthur
2014-01-13Remove unneded open(.., 'U') when on python 3.Marc Tamlyn
2014-01-12Undelete the `return True` removed in 4e0a2fe.Marc Tamlyn
2014-01-12Fixed #21770 -- Updated autocomplete for app-loading.Aymeric Augustin
2014-01-12Fixed #21477 -- Renamed db to using in pre/post_migrate signals.Aymeric Augustin
2014-01-06Avoided catching ImproperlyConfigured on django.setup().Aymeric Augustin
2014-01-02Moved django.setup() to ManagementUtilityClaude Paroz
2014-01-01Adjusted previous commit for Python 3.Aymeric Augustin
2014-01-01Fixed #21018 -- Reversed precedence order for management commands.Aymeric Augustin
2014-01-01Wiped get_commands() cache when INSTALLED_APPS changes.Aymeric Augustin
2013-12-31Oops.Aymeric Augustin
2013-12-31Called django.setup() explicitly in management commands.Aymeric Augustin
2013-12-30Removed the only_with_models_module argument of get_model[s].Aymeric Augustin
2013-12-30Merge pull request #2126 from apollo13/email_bytesFlorian Apolloner
2013-12-30Decode mails using the message encoding.Florian Apolloner
2013-12-30Changed console and filebackend to use msg.as_bytes to output the data as it ...Florian Apolloner
2013-12-30Merged Apps.populate_apps() and populate_models().Aymeric Augustin
2013-12-30Stopped populating the app registry as a side effect.Aymeric Augustin
2013-12-30Populated the app registry earlier at startup.Aymeric Augustin
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