Skip to content
Projeler
Gruplar
Parçacıklar
Yardım
Yükleniyor...
Oturum aç / Kaydol
Gezinmeyi değiştir
C
cpython
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
cpython
Commits
8276d87f
Kaydet (Commit)
8276d87f
authored
Eki 02, 2014
tarafından
Serhiy Storchaka
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Issue #20079: makelocalealias.py now supports installed SUPPORTED file,
not only source SUPPORTED file in glibc sources tree.
üst
5189ee54
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
11 additions
and
7 deletions
+11
-7
makelocalealias.py
Tools/i18n/makelocalealias.py
+11
-7
No files found.
Tools/i18n/makelocalealias.py
Dosyayı görüntüle @
8276d87f
...
...
@@ -10,8 +10,10 @@ import locale
import
sys
_locale
=
locale
# Location of the
alias file
# Location of the
X11 alias file.
LOCALE_ALIAS
=
'/usr/share/X11/locale/locale.alias'
# Location of the glibc SUPPORTED locales file.
SUPPORTED
=
'/usr/share/i18n/SUPPORTED'
def
parse
(
filename
):
...
...
@@ -59,10 +61,12 @@ def parse_glibc_supported(filename):
continue
if
line
[:
1
]
==
'#'
:
continue
if
'/'
not
in
line
:
continue
line
=
line
.
replace
(
'/'
,
' '
)
.
strip
()
line
=
line
.
rstrip
(
'
\\
'
)
.
rstrip
()
alias
,
_
,
alias_encoding
=
line
.
partition
(
'/'
)
words
=
line
.
split
()
if
len
(
words
)
!=
2
:
continue
alias
,
alias_encoding
=
words
# Lower-case locale
locale
=
alias
.
lower
()
# Normalize encoding, if given
...
...
@@ -125,12 +129,12 @@ if __name__ == '__main__':
parser
.
add_argument
(
'--locale-alias'
,
default
=
LOCALE_ALIAS
,
help
=
'location of the X11 alias file '
'(default:
%
a)'
%
LOCALE_ALIAS
)
parser
.
add_argument
(
'--glibc-supported'
,
help
=
'location of the glibc SUPPORTED locales file'
)
parser
.
add_argument
(
'--glibc-supported'
,
default
=
SUPPORTED
,
help
=
'location of the glibc SUPPORTED locales file '
'(default:
%
a)'
%
SUPPORTED
)
args
=
parser
.
parse_args
()
data
=
locale
.
locale_alias
.
copy
()
if
args
.
glibc_supported
:
data
.
update
(
parse_glibc_supported
(
args
.
glibc_supported
))
data
.
update
(
parse
(
args
.
locale_alias
))
while
True
:
...
...
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