Forked from vstoykov/force_default_language_middleware.py
Last active
August 29, 2015 14:08
-
-
Save scisco/f01f169d5833a07f63d0 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| class ForceDefaultLanguageMiddleware(object): | |
| """ | |
| Ignore Accept-Language HTTP headers | |
| This will force the I18N machinery to always choose settings.LANGUAGE_CODE | |
| as the default initial language, unless another one is set via sessions or cookies | |
| Should be installed *before* any middleware that checks request.META['HTTP_ACCEPT_LANGUAGE'], | |
| namely django.middleware.locale.LocaleMiddleware | |
| """ | |
| def process_request(self, request): | |
| if request.META.has_key('HTTP_ACCEPT_LANGUAGE'): | |
| del request.META['HTTP_ACCEPT_LANGUAGE'] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment