Arthur de Jong

Open Source / Free Software developer

summaryrefslogtreecommitdiffstats
path: root/django/contrib/messages
Commit message (Collapse)AuthorAgeFilesLines
* Used getattr() to simplify contrib.messages.api.Curtis Maloney2015-09-271-2/+2
|
* Used ternary operator to simplify contrib.messages.api.GhostThrone2015-09-251-8/+2
|
* Removed translations from contrib.messagesClaude Paroz2015-03-18170-2237/+0
| | | | | The only one translatable string will be handled in the core catalog. Forward port of 1bb712d79c8d0 from stable/1.8.x
* Moved contrib.messages tests out of contrib.Tim Graham2015-02-119-970/+0
|
* Sorted imports with isort; refs #23860.Tim Graham2015-02-0611-25/+29
|
* Updated en translation catalogsClaude Paroz2015-01-171-2/+2
| | | | Forward port of 666c12e52 from stable/1.8.x
* Accounted for multiple template engines in template ↵Aymeric Augustin2015-01-121-4/+5
| | | | responses.
* Deprecated TEMPLATE_DIRS.Aymeric Augustin2014-12-281-6/+26
|
* Fixed #23968 -- Replaced list comprehension with ↵Jon Dufresne2014-12-082-3/+3
| | | | generators and dict comprehension
* Fixed #23620 -- Used more specific assertions in the ↵Berker Peksag2014-11-032-7/+7
| | | | Django test suite.
* Updated translations from TransifexClaude Paroz2014-09-3016-29/+34
| | | | Forward port of e9c8aefbcee5 from stable/1.7.x
* Limited lines to 119 characters in django/Tim Graham2014-09-051-1/+2
| | | | refs #23395.
* Fetched translations from TransifexClaude Paroz2014-08-20164-425/+1023
| | | | Forward port of 49280a73ea5 from stable/1.7.x
* Fixed #22384 -- Deprecated reversing URLs by dotted path.Tim Graham2014-06-032-22/+17
|
* Fixed several typos in DjangoAlex Gaynor2014-05-291-1/+1
|
* Updated translation catalogsClaude Paroz2014-05-191-2/+6
|
* Fix many many typos in comments throughout the codebaseAlex Gaynor2014-04-261-1/+1
|
* Fixed #22426 -- Added support old-style d.c.messages format.Florian Apolloner2014-04-222-0/+25
| | | | | | | Forward ported code from 1.5 that adds backwards compatibility with legacy message length. See commit 9e7183073f64e541587e8dcfd8bb3ddeb47f8162 for details. Thanks to Ofir Ovadia for the initial patch.
* Fixed #21977 -- Deprecated SimpleTestCase.urlsAnubhav Joshi2014-04-062-3/+3
|
* Fixed #22218 -- Deprecated django.conf.urls.patterns.Tim Graham2014-04-031-7/+7
| | | | Thanks Carl Meyer for the suggestion and Alex Gaynor and Carl for reviews.
* Fixed #22070 -- Changed verbose_name for apps in ↵James Jenkins2014-03-071-1/+1
| | | | | | django.contrib to use title case Thanks bendavis78 for the report.
* Fixed #21674 -- Deprecated the import_by_path() function ↵Berker Peksag2014-02-081-3/+3
| | | | | | in favor of import_string(). Thanks Aymeric Augustin for the suggestion and review.
* Fixed #21829 -- Added default AppConfigs.Aymeric Augustin2014-01-251-0/+3
| | | | | Thanks Russell for the report, Marc for the initial patch, Carl for the final review, and everyone who contributed to the design discussion.
* Fixed #21718 -- Renamed has_app to is_installed.Aymeric Augustin2014-01-061-1/+1
|
* Fixed #21675 -- Added app configs for contrib apps.Aymeric Augustin2014-01-051-0/+8
|
* Removed a few gratuitous lambdas.Aymeric Augustin2013-12-261-5/+9
|
* Renamed AppCache to Apps.Aymeric Augustin2013-12-241-2/+2
| | | | | | Also renamed app_cache to apps and "app cache" to "app registry". Deprecated AppCache.app_cache_ready() in favor of Apps.ready().
* Imported override_settings from its new location.Aymeric Augustin2013-12-232-3/+2
|
* Dropped AppCache._empty, _with_app and _without_app.Aymeric Augustin2013-12-231-39/+32
| | | | | It's now easier to achieve the same effect with modify_settings or override_settings.
* Moved apps back in the toplevel django namespace.Aymeric Augustin2013-12-221-1/+1
| | | | Reverted 4a56a93cc458e9ab4dcab95d9f5067d4975dd1a2.
* Stop testing for inclusion in INSTALLED_APPS.Aymeric Augustin2013-12-221-27/+26
| | | | | Removed some exception masking in the comments app that was harmful and couldn't be preserved easily.
* Removed superfluous models.py files.Aymeric Augustin2013-12-171-1/+0
| | | | | | | Added comments in the three empty models.py files that are still needed. Adjusted the test runner to add applications corresponding to test labels to INSTALLED_APPS even when they don't have a models module.
* Fixed E127 pep8 warnings.Loic Bistuer2013-12-142-7/+5
|
* Fixes #21412 -- Better error message for ↵Denis Cornehl2013-11-232-0/+60
| | | | | | | | | | messages.add_message Problem were users calling messages.debug/info/* with a wrong argument and getting the error "You cannot add messages without installing MessageMiddleware" Thanks to trac-user merb for the report.
* Merge pull request #1907 from Bouke/tickets/21388Claude Paroz2013-11-112-0/+0
|\ | | | | Fixed #21388 -- Corrected language code for Frisian
| * Fixed #21388 -- Corrected language code for FrisianBouke Haarsma2013-11-112-0/+0
| |
* | Fixed #21421 -- Added level_tag attribute on messages.Sjoerd Langkemper2013-11-112-6/+17
|/ | | | | | | | | Exposing the level name (e.g. "info") makes it possible to prepend something to the class name. For example, Twitter Bootstrap has an alert-info class. This class can now be added to the message using `class="alert-{{ message.level_tag }}". Because the level_tag was on the end of the `tags` property, it could not be used in this fashion when extra_tags were given.
* Fixed flake8 E251 violationsMilton Mazzarri2013-11-031-5/+5
|
* Fixed all E261 warningscoagulant2013-11-022-2/+2
|
* More attacking E302 violatorsAlex Gaynor2013-11-024-0/+7
|
* Fixed #21302 -- Fixed unused imports and import *.Tim Graham2013-11-021-2/+2
|
* Fixed #20610: Added a message level dict to ↵Baptiste Mispelon2013-10-303-1/+21
| | | | contrib.message context processor.
* Fixed #21298 -- Fixed E301 pep8 warningsAlasdair Nicol2013-10-231-0/+1
|
* Fixed E225 pep8 warnings.Tim Graham2013-10-231-6/+6
|
* Fixed E221 pep8 warnings.Tim Graham2013-10-221-2/+2
|
* Fixed #21288 -- Fixed E126 pep8 warningsAlasdair Nicol2013-10-211-5/+5
|
* Fixed #21287 -- Fixed E123 pep8 warningsAlasdair Nicol2013-10-181-1/+1
|
* Fixed #21267 -- Fixed E502 pep8 warningsAlasdair Nicol2013-10-181-2/+2
|
* Fixed #21285 -- Fixed E121,E122 pep8 warningsAlasdair Nicol2013-10-182-3/+3
|
* Fixed #20841 -- Added messages to NotImplementedErrorsGregor MacGregor2013-09-101-2/+2
| | | | Thanks joseph at vertstudios.com for the suggestion.