Left: | ||
Right: |
LEFT | RIGHT |
---|---|
1 # coding: utf-8 | 1 # coding: utf-8 |
2 | 2 |
3 # This Source Code Form is subject to the terms of the Mozilla Public | 3 # This Source Code Form is subject to the terms of the Mozilla Public |
4 # License, v. 2.0. If a copy of the MPL was not distributed with this | 4 # License, v. 2.0. If a copy of the MPL was not distributed with this |
5 # file, You can obtain one at http://mozilla.org/MPL/2.0/. | 5 # file, You can obtain one at http://mozilla.org/MPL/2.0/. |
6 | 6 |
7 import re, os, sys, codecs, json, urllib, urllib2 | 7 import re, os, sys, codecs, json, urllib, urllib2 |
8 from StringIO import StringIO | 8 from StringIO import StringIO |
9 from ConfigParser import SafeConfigParser | 9 from ConfigParser import SafeConfigParser |
10 from zipfile import ZipFile | 10 from zipfile import ZipFile |
(...skipping 381 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
392 result = urllib2.urlopen('http://api.crowdin.net/api/project/%s/export?key=%s' % (projectName, key)).read() | 392 result = urllib2.urlopen('http://api.crowdin.net/api/project/%s/export?key=%s' % (projectName, key)).read() |
393 if result.find('<success') < 0: | 393 if result.find('<success') < 0: |
394 raise Exception('Server indicated that the operation was not successful\n' + result) | 394 raise Exception('Server indicated that the operation was not successful\n' + result) |
395 | 395 |
396 result = urllib2.urlopen('http://api.crowdin.net/api/project/%s/download/all.z ip?key=%s' % (projectName, key)).read() | 396 result = urllib2.urlopen('http://api.crowdin.net/api/project/%s/download/all.z ip?key=%s' % (projectName, key)).read() |
397 zip = ZipFile(StringIO(result)) | 397 zip = ZipFile(StringIO(result)) |
398 dirs = {} | 398 dirs = {} |
399 | 399 |
400 normalizedDefaultLocale = localeConfig['default_locale'] | 400 normalizedDefaultLocale = localeConfig['default_locale'] |
401 if localeConfig['name_format'] == 'ISO-15897': | 401 if localeConfig['name_format'] == 'ISO-15897': |
402 normalizedDefaultLocale = defaultLocale.replace('_', '-') | 402 normalizedDefaultLocale = normalizedDefaultLocale.replace('_', '-') |
403 normalizedDefaultLocale = mapLocale('ISO-15897', normalizedDefaultLocale) | 403 normalizedDefaultLocale = mapLocale(localeConfig['name_format'], |
Wladimir Palant
2016/02/12 19:49:34
It shouldn't be 'ISO-15897' but localeConfig['name
kzar
2016/02/12 20:05:37
Whoops sorry, Done.
| |
404 normalizedDefaultLocale) | |
404 | 405 |
405 for info in zip.infolist(): | 406 for info in zip.infolist(): |
406 if not info.filename.endswith('.json'): | 407 if not info.filename.endswith('.json'): |
407 continue | 408 continue |
408 | 409 |
409 dir, file = os.path.split(info.filename) | 410 dir, file = os.path.split(info.filename) |
410 if not re.match(r'^[\w\-]+$', dir) or dir == normalizedDefaultLocale: | 411 if not re.match(r'^[\w\-]+$', dir) or dir == normalizedDefaultLocale: |
411 continue | 412 continue |
412 if localeConfig['file_format'] == 'chrome-json' and file.count('.') == 1: | 413 if localeConfig['file_format'] == 'chrome-json' and file.count('.') == 1: |
413 origFile = file | 414 origFile = file |
(...skipping 39 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
453 | 454 |
454 # Remove any extra files | 455 # Remove any extra files |
455 for dir, files in dirs.iteritems(): | 456 for dir, files in dirs.iteritems(): |
456 baseDir = os.path.join(localeConfig['base_path'], dir) | 457 baseDir = os.path.join(localeConfig['base_path'], dir) |
457 if not os.path.exists(baseDir): | 458 if not os.path.exists(baseDir): |
458 continue | 459 continue |
459 for file in os.listdir(baseDir): | 460 for file in os.listdir(baseDir): |
460 path = os.path.join(baseDir, file) | 461 path = os.path.join(baseDir, file) |
461 if os.path.isfile(path) and (file.endswith('.json') or file.endswith('.pro perties') or file.endswith('.dtd')) and not file in files: | 462 if os.path.isfile(path) and (file.endswith('.json') or file.endswith('.pro perties') or file.endswith('.dtd')) and not file in files: |
462 os.remove(path) | 463 os.remove(path) |
LEFT | RIGHT |