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
dbb48d2b
Kaydet (Commit)
dbb48d2b
authored
May 24, 2014
tarafından
Claude Paroz
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Applied unicode_literals to makemessages command
This also fixes #22686 as some sort of side-effect.
üst
19b49082
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
20 additions
and
11 deletions
+20
-11
makemessages.py
django/core/management/commands/makemessages.py
+18
-9
trans_real.py
django/utils/translation/trans_real.py
+2
-2
No files found.
django/core/management/commands/makemessages.py
Dosyayı görüntüle @
dbb48d2b
from
__future__
import
unicode_literals
import
fnmatch
import
glob
import
io
...
...
@@ -56,6 +58,7 @@ class TranslatableFile(object):
Uses the xgettext GNU gettext utility.
"""
from
django.conf
import
settings
from
django.utils.translation
import
templatize
if
command
.
verbosity
>
1
:
...
...
@@ -64,12 +67,12 @@ class TranslatableFile(object):
if
domain
==
'djangojs'
and
file_ext
in
command
.
extensions
:
is_templatized
=
True
orig_file
=
os
.
path
.
join
(
self
.
dirpath
,
self
.
file
)
with
open
(
orig_file
)
as
fp
:
with
io
.
open
(
orig_file
,
encoding
=
settings
.
FILE_CHARSET
)
as
fp
:
src_data
=
fp
.
read
()
src_data
=
prepare_js_for_gettext
(
src_data
)
thefile
=
'
%
s.c'
%
self
.
file
work_file
=
os
.
path
.
join
(
self
.
dirpath
,
thefile
)
with
open
(
work_file
,
"w"
)
as
fp
:
with
io
.
open
(
work_file
,
"w"
,
encoding
=
'utf-8'
)
as
fp
:
fp
.
write
(
src_data
)
args
=
[
'xgettext'
,
...
...
@@ -88,11 +91,11 @@ class TranslatableFile(object):
orig_file
=
os
.
path
.
join
(
self
.
dirpath
,
self
.
file
)
is_templatized
=
file_ext
in
command
.
extensions
if
is_templatized
:
with
open
(
orig_file
,
'r'
if
six
.
PY3
else
'rU'
)
as
fp
:
with
io
.
open
(
orig_file
,
'r'
,
encoding
=
settings
.
FILE_CHARSET
)
as
fp
:
src_data
=
fp
.
read
()
thefile
=
'
%
s.py'
%
self
.
file
content
=
templatize
(
src_data
,
orig_file
[
2
:])
with
open
(
os
.
path
.
join
(
self
.
dirpath
,
thefile
),
"w"
)
as
fp
:
with
io
.
open
(
os
.
path
.
join
(
self
.
dirpath
,
thefile
),
"w"
,
encoding
=
'utf-8'
)
as
fp
:
fp
.
write
(
content
)
work_file
=
os
.
path
.
join
(
self
.
dirpath
,
thefile
)
args
=
[
...
...
@@ -126,6 +129,8 @@ class TranslatableFile(object):
# Print warnings
command
.
stdout
.
write
(
errors
)
if
msgs
:
if
six
.
PY2
:
msgs
=
msgs
.
decode
(
'utf-8'
)
# Write/append messages to pot file
potfile
=
os
.
path
.
join
(
self
.
locale_dir
,
'
%
s.pot'
%
str
(
domain
))
if
is_templatized
:
...
...
@@ -154,7 +159,7 @@ def write_pot_file(potfile, msgs):
msgs
=
'
\n
'
.
join
(
dropwhile
(
len
,
msgs
.
split
(
'
\n
'
)))
else
:
msgs
=
msgs
.
replace
(
'charset=CHARSET'
,
'charset=UTF-8'
)
with
open
(
potfile
,
'a
'
)
as
fp
:
with
io
.
open
(
potfile
,
'a'
,
encoding
=
'utf-8
'
)
as
fp
:
fp
.
write
(
msgs
)
...
...
@@ -318,13 +323,15 @@ class Command(NoArgsCommand):
continue
args
=
[
'msguniq'
]
+
self
.
msguniq_options
+
[
potfile
]
msgs
,
errors
,
status
=
popen_wrapper
(
args
)
if
six
.
PY2
:
msgs
=
msgs
.
decode
(
'utf-8'
)
if
errors
:
if
status
!=
STATUS_OK
:
raise
CommandError
(
"errors happened while running msguniq
\n
%
s"
%
errors
)
elif
self
.
verbosity
>
0
:
self
.
stdout
.
write
(
errors
)
with
open
(
potfile
,
'w
'
)
as
fp
:
with
io
.
open
(
potfile
,
'w'
,
encoding
=
'utf-8
'
)
as
fp
:
fp
.
write
(
msgs
)
potfiles
.
append
(
potfile
)
return
potfiles
...
...
@@ -395,6 +402,8 @@ class Command(NoArgsCommand):
if
os
.
path
.
exists
(
pofile
):
args
=
[
'msgmerge'
]
+
self
.
msgmerge_options
+
[
pofile
,
potfile
]
msgs
,
errors
,
status
=
popen_wrapper
(
args
)
if
six
.
PY2
:
msgs
=
msgs
.
decode
(
'utf-8'
)
if
errors
:
if
status
!=
STATUS_OK
:
raise
CommandError
(
...
...
@@ -402,13 +411,13 @@ class Command(NoArgsCommand):
elif
self
.
verbosity
>
0
:
self
.
stdout
.
write
(
errors
)
else
:
with
open
(
potfile
,
'r
'
)
as
fp
:
with
io
.
open
(
potfile
,
'r'
,
encoding
=
'utf-8
'
)
as
fp
:
msgs
=
fp
.
read
()
if
not
self
.
invoked_for_django
:
msgs
=
self
.
copy_plural_forms
(
msgs
,
locale
)
msgs
=
msgs
.
replace
(
"#. #-#-#-#-#
%
s.pot (PACKAGE VERSION) #-#-#-#-#
\n
"
%
self
.
domain
,
""
)
with
open
(
pofile
,
'w
'
)
as
fp
:
with
io
.
open
(
pofile
,
'w'
,
encoding
=
'utf-8
'
)
as
fp
:
fp
.
write
(
msgs
)
if
self
.
no_obsolete
:
...
...
@@ -435,7 +444,7 @@ class Command(NoArgsCommand):
for
domain
in
domains
:
django_po
=
os
.
path
.
join
(
django_dir
,
'conf'
,
'locale'
,
locale
,
'LC_MESSAGES'
,
'
%
s.po'
%
domain
)
if
os
.
path
.
exists
(
django_po
):
with
io
.
open
(
django_po
,
'r'
if
six
.
PY3
else
'rU'
,
encoding
=
'utf-8'
)
as
fp
:
with
io
.
open
(
django_po
,
'r'
,
encoding
=
'utf-8'
)
as
fp
:
m
=
plural_forms_re
.
search
(
fp
.
read
())
if
m
:
plural_form_line
=
force_str
(
m
.
group
(
'value'
))
...
...
django/utils/translation/trans_real.py
Dosyayı görüntüle @
dbb48d2b
...
...
@@ -14,7 +14,7 @@ from django.conf import settings
from
django.dispatch
import
receiver
from
django.test.signals
import
setting_changed
from
django.utils.deprecation
import
RemovedInDjango19Warning
from
django.utils.encoding
import
force_
str
,
force_
text
from
django.utils.encoding
import
force_text
from
django.utils._os
import
upath
from
django.utils.safestring
import
mark_safe
,
SafeData
from
django.utils
import
six
,
lru_cache
...
...
@@ -701,7 +701,7 @@ def templatize(src, origin=None):
comment_lineno_cache
=
t
.
lineno
else
:
out
.
write
(
blankout
(
t
.
contents
,
'X'
))
return
force_str
(
out
.
getvalue
()
)
return
out
.
getvalue
(
)
def
parse_accept_lang_header
(
lang_string
):
...
...
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