Skip to content
Projeler
Gruplar
Parçacıklar
Yardım
Yükleniyor...
Oturum aç / Kaydol
Gezinmeyi değiştir
D
django
Proje
Proje
Ayrıntılar
Etkinlik
Cycle Analytics
Depo (repository)
Depo (repository)
Dosyalar
Kayıtlar (commit)
Dallar (branch)
Etiketler
Katkıda bulunanlar
Grafik
Karşılaştır
Grafikler
Konular (issue)
0
Konular (issue)
0
Liste
Pano
Etiketler
Kilometre Taşları
Birleştirme (merge) Talepleri
0
Birleştirme (merge) Talepleri
0
CI / CD
CI / CD
İş akışları (pipeline)
İşler
Zamanlamalar
Grafikler
Paketler
Paketler
Wiki
Wiki
Parçacıklar
Parçacıklar
Üyeler
Üyeler
Collapse sidebar
Close sidebar
Etkinlik
Grafik
Grafikler
Yeni bir konu (issue) oluştur
İşler
Kayıtlar (commit)
Konu (issue) Panoları
Kenar çubuğunu aç
Batuhan Osman TASKAYA
django
Commits
9d3d1a03
Kaydet (Commit)
9d3d1a03
authored
Kas 18, 2014
tarafından
Aymeric Augustin
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Simplified caching of supported languages.
üst
09008150
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
15 additions
and
16 deletions
+15
-16
trans_real.py
django/utils/translation/trans_real.py
+15
-16
No files found.
django/utils/translation/trans_real.py
Dosyayı görüntüle @
9d3d1a03
...
...
@@ -31,10 +31,6 @@ _active = local()
# The default translation is based on the settings file.
_default
=
None
# This is a cache of settings.LANGUAGES in an OrderedDict for easy lookups by
# key
_supported
=
None
# magic gettext number to separate context from message
CONTEXT_SEPARATOR
=
"
\x04
"
...
...
@@ -64,9 +60,8 @@ def reset_cache(**kwargs):
languages should no longer be accepted.
"""
if
kwargs
[
'setting'
]
in
(
'LANGUAGES'
,
'LANGUAGE_CODE'
):
global
_supported
_supported
=
None
check_for_language
.
cache_clear
()
get_languages
.
cache_clear
()
get_supported_language_variant
.
cache_clear
()
...
...
@@ -415,6 +410,14 @@ def check_for_language(lang_code):
return
False
@lru_cache.lru_cache
()
def
get_languages
():
"""
Cache of settings.LANGUAGES in an OrderedDict for easy lookups by key.
"""
return
OrderedDict
(
settings
.
LANGUAGES
)
@lru_cache.lru_cache
(
maxsize
=
1000
)
def
get_supported_language_variant
(
lang_code
,
strict
=
False
):
"""
...
...
@@ -428,9 +431,6 @@ def get_supported_language_variant(lang_code, strict=False):
as the provided language codes are taken from the HTTP request. See also
<https://www.djangoproject.com/weblog/2007/oct/26/security-fix/>.
"""
global
_supported
if
_supported
is
None
:
_supported
=
OrderedDict
(
settings
.
LANGUAGES
)
if
lang_code
:
# If 'fr-ca' is not supported, try special fallback or language-only 'fr'.
possible_lang_codes
=
[
lang_code
]
...
...
@@ -440,13 +440,14 @@ def get_supported_language_variant(lang_code, strict=False):
pass
generic_lang_code
=
lang_code
.
split
(
'-'
)[
0
]
possible_lang_codes
.
append
(
generic_lang_code
)
supported_lang_codes
=
get_languages
()
for
code
in
possible_lang_codes
:
if
code
in
_supported
and
check_for_language
(
code
):
if
code
in
supported_lang_codes
and
check_for_language
(
code
):
return
code
if
not
strict
:
# if fr-fr is not supported, try fr-ca.
for
supported_code
in
_supported
:
for
supported_code
in
supported_lang_codes
:
if
supported_code
.
startswith
(
generic_lang_code
+
'-'
):
return
supported_code
raise
LookupError
(
lang_code
)
...
...
@@ -480,18 +481,16 @@ def get_language_from_request(request, check_path=False):
If check_path is True, the URL path prefix will be checked for a language
code, otherwise this is skipped for backwards compatibility.
"""
global
_supported
if
_supported
is
None
:
_supported
=
OrderedDict
(
settings
.
LANGUAGES
)
if
check_path
:
lang_code
=
get_language_from_path
(
request
.
path_info
)
if
lang_code
is
not
None
:
return
lang_code
supported_lang_codes
=
get_languages
()
if
hasattr
(
request
,
'session'
):
lang_code
=
request
.
session
.
get
(
LANGUAGE_SESSION_KEY
)
if
lang_code
in
_supported
and
lang_code
is
not
None
and
check_for_language
(
lang_code
):
if
lang_code
in
supported_lang_codes
and
lang_code
is
not
None
and
check_for_language
(
lang_code
):
return
lang_code
lang_code
=
request
.
COOKIES
.
get
(
settings
.
LANGUAGE_COOKIE_NAME
)
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment