summaryrefslogtreecommitdiff
path: root/django/conf
AgeCommit message (Collapse)Author
2013-11-11Fixed #21388 -- Corrected language code for FrisianBouke Haarsma
2013-11-04Fixed #18149 -- Changed language codes for ChineseBouke Haarsma
Language codes for Chinese are zh_Hans (Simplified) and zh_Hant (Traditional). Added support for browsers that still send the deprecated language codes. Thanks to Olli Wang for the report.
2013-11-02Fixed all E261 warningscoagulant
2013-10-31Started attackign the next flake8 violationAlex Gaynor
2013-10-24Start attacking E231 violationsAlex Gaynor
2013-10-17Fixed #21285 -- Fixed E121,E122 pep8 warningsAlasdair Nicol
2013-10-11Fixed assorted flake8 errors.Tim Graham
2013-10-10Whitespace cleanup.Tim Graham
* Removed trailing whitespace. * Added newline to EOF if missing. * Removed blank lines at EOF. * Removed some stray tabs.
2013-09-22Removed a few trailing backslashes.Aymeric Augustin
We have always been at war with trailing backslashes.
2013-08-30Set 'bidi' Urdu property to TrueClaude Paroz
Refs #20454.
2013-08-23Merge remote-tracking branch 'core/master' into schema-alterationAndrew Godwin
Conflicts: django/db/backends/oracle/base.py django/db/backends/postgresql_psycopg2/base.py django/db/models/signals.py tests/queries/tests.py
2013-08-22Fixed #20922 -- Allowed customizing the serializer used by contrib.sessionsTim Graham
Added settings.SESSION_SERIALIZER which is the import path of a serializer to use for sessions. Thanks apollo13, carljm, shaib, akaariai, charettes, and dstufft for reviews.
2013-08-19Merge remote-tracking branch 'core/master' into schema-alterationAndrew Godwin
Conflicts: docs/ref/django-admin.txt
2013-08-12Fixed #13518 -- Added FILE_UPLOAD_DIRECTORY_PERMISSIONS settingMel Collins
This setting does for new directories what FILE_UPLOAD_PERMISSIONS does for new files. Thanks jacob@ for the suggestion.
2013-08-09Merge remote-tracking branch 'core/master' into schema-alterationAndrew Godwin
Conflicts: django/db/models/options.py
2013-08-09Merge remote-tracking branch 'core/master' into schema-alterationAndrew Godwin
Conflicts: django/core/management/commands/flush.py django/core/management/commands/syncdb.py django/db/models/loading.py docs/internals/deprecation.txt docs/ref/django-admin.txt docs/releases/1.7.txt
2013-08-09Fixed test failures on Python 3 - refs #12288Tim Graham
2013-08-09Fixed #12288 -- Added unique validation for INSTALLED_APPSSusanTan
2013-07-29Deprecated django.utils.importlibClaude Paroz
This was a shim for pre-Python 2.7 support.
2013-07-22Merge branch 'master' into schema-alterationAndrew Godwin
Conflicts: django/db/backends/mysql/introspection.py django/db/backends/oracle/creation.py django/db/backends/postgresql_psycopg2/creation.py django/db/models/base.py django/db/models/loading.py
2013-07-13Fixed #20582 -- Allowed default Form.label_suffix to be translatedClaude Paroz
Thanks Tim Graham for the review.
2013-07-11Fixed #17471 -- Added smtplib.SMTP_SSL connection option for SMTP backendClaude Paroz
Thanks dj.facebook at gmail.com for the report and initial patch and Areski Belaid and senko for improvements.
2013-07-08Completed some more name_local namesClaude Paroz
2013-07-08Fixed #20716 --Missing 'name_local' translationMathias Andre
Added 'name_local' translation for Albanian in LANG_INFO
2013-07-02Merge branch 'master' into schema-alterationAndrew Godwin
2013-07-01Deprecated django.utils.dictconfig.Aymeric Augustin
The module still exists for whoever uses it in its current state, but it isn't imported by Django anywhere.
2013-07-01Removed some conditional code only needed under Python 2.6.Aymeric Augustin
2013-06-29Report wrongly-typed settings and abort, as originally planned.Ramiro Morales
Thanks Claude for the heads up. Refs #12493 and commit 5e08b792.
2013-06-29Advanced deprecation warnings for Django 1.7.Aymeric Augustin
2013-06-28Stop auto-correcting string INSTALLED_APPS, TEMPLATE_DIRS settings, as per ↵Ramiro Morales
deprecation TL.
2013-06-19Fix test running with new apps stuff/migrate actually running migrationsAndrew Godwin
2013-05-27Merge pull request #1217 from erikr/better-settings-errors2Claude Paroz
Fixed #20443 -- Import errors in settings cause confusing error messages
2013-05-25Fixed #19866 -- Added security logger and return 400 for SuspiciousOperation.Preston Holmes
SuspiciousOperations have been differentiated into subclasses, and are now logged to a 'django.security.*' logger. SuspiciousOperations that reach django.core.handlers.base.BaseHandler will now return a 400 instead of a 500. Thanks to tiwoc for the report, and Carl Meyer and Donald Stufft for review.
2013-05-25Fixed #20443 -- Import errors in settings cause confusing error messagesErik Romijn
2013-05-25Updated translation catalogsClaude Paroz
Updated core/admin/admindocs/comments translation catalogs.
2013-05-19Make Urdu (ur) recognized as RTL language. Refs #20454Axel Hecht
2013-05-10Fixed #17365, #17366, #18727 -- Switched to discovery test runner.Carl Meyer
Thanks to Preston Timmons for the bulk of the work on the patch, especially updating Django's own test suite to comply with the requirements of the new runner. Thanks also to Jannis Leidel and Mahdi Yusuf for earlier work on the patch and the discovery runner. Refs #11077, #17032, and #18670.
2013-05-02Updated translation templates and removed en translationsClaude Paroz
"en" translations have been mistakenly committed in 87cc3da81.
2013-04-05Removed LocaleMiddleware from settings template.Aymeric Augustin
It was added in 3f1c7b70537330435e2ec2fca9550f7b7fa4372e. Single language sites should always be translated in LANGUAGE_CODE, regardless of the browser's Accept-Language. Having LocaleMiddleware enabled can result in having some parts, like the admin, translated in an unexpected language, typically if someone browses a non-English website on a system set up in English. Since most websites won't be translated in multiple languages — especially at the time they're created — it's better not to enable LocaleMiddleware by default. Thanks Ramiro for the feedback.
2013-03-29Fixed #14540 -- Added Porto-Rico specific formatsClaude Paroz
Thanks rosarior for the report and the file proposal.
2013-03-28Updated translation templatesClaude Paroz
2013-03-28Added Burmese languageClaude Paroz
Thanks to Yhal Htet Aung for the translation work.
2013-03-28Added Ossetic languageClaude Paroz
Thanks to Xwybylty Soslan for the translation work.
2013-03-28Replaced escaped by real characters in LANG_INFO structureClaude Paroz
2013-03-28Updated translations from TransifexClaude Paroz
Polish, Telugu, Georgian, Azerbaijani, Norwegian Bokmål, Basque, Dutch, Thai, Spanish (Argentina), Afrikaans.
2013-03-27Merge remote-tracking branch 'ptone/18985-fix'Jacob Kaplan-Moss
2013-03-26Fixed #20138 -- Added BCryptSHA256PasswordHasherDonald Stufft
BCryptSHA256PasswordHasher pre-hashes the users password using SHA256 to prevent the 72 byte truncation inherient in the BCrypt algorithm.
2013-03-24Fixed #18985 -- ensure module level deprecations are displayedPreston Holmes
Also don't compete with -W CLI option. Thanks to Aymeric Augustin for the catch, and Claude Paroz for the patch.
2013-03-17Fixed #19697 -- Added a deployment checklist.Aymeric Augustin
2013-03-14Deprecated django.views.defaults.shortcut.Aymeric Augustin