Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code

Delta Between Two Patch Sets: packagerChrome.py

Issue 29517660: Issue 5477 - Import everything from imported locales (Closed)
Left Patch Set: Created Aug. 18, 2017, 3:32 p.m.
Right Patch Set: Created Aug. 22, 2017, 7:59 a.m.
Left:
Right:
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
Left: Side by side diff | Download
Right: Side by side diff | Download
« no previous file with change/comment | « no previous file | packagerEdge.py » ('j') | no next file with change/comment »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
LEFTRIGHT
1 # This Source Code Form is subject to the terms of the Mozilla Public 1 # This Source Code Form is subject to the terms of the Mozilla Public
2 # License, v. 2.0. If a copy of the MPL was not distributed with this 2 # License, v. 2.0. If a copy of the MPL was not distributed with this
3 # file, You can obtain one at http://mozilla.org/MPL/2.0/. 3 # file, You can obtain one at http://mozilla.org/MPL/2.0/.
4 4
5 import errno 5 import errno
6 import io 6 import io
7 import json 7 import json
8 import os 8 import os
9 import re 9 import re
10 from StringIO import StringIO 10 from StringIO import StringIO
(...skipping 173 matching lines...) Expand 10 before | Expand all | Expand 10 after
184 184
185 185
186 def toJson(data): 186 def toJson(data):
187 return json.dumps( 187 return json.dumps(
188 data, ensure_ascii=False, sort_keys=True, 188 data, ensure_ascii=False, sort_keys=True,
189 indent=2, separators=(',', ': ') 189 indent=2, separators=(',', ': ')
190 ).encode('utf-8') + '\n' 190 ).encode('utf-8') + '\n'
191 191
192 192
193 def import_string_webext(data, key, source): 193 def import_string_webext(data, key, source):
194 """Sets data[key] to the desired {'message':value}, adds all additional 194 """Import a single translation from the source dictionary into data"""
195 info from the source dict. 195 data[key] = source
196
197
198 def import_string_gecko(data, key, value):
199 """Import Gecko-style locales into data.
200
201 Only sets {'message': value} in the data-dictionary, after stripping
202 undesired Gecko-style access keys.
196 """ 203 """
197 value = source['message']
198
199 data[key] = {'messages': value}
200 for k, v in source.items():
201 data[key].setdefault(k, v)
202
203
204 def import_string_gecko(data, key, value):
205 """Only sets {'message': value} in data-dictionary, after stripping
206 undesired gecko-style access keys.
207 """
208
209 # Remove access keys from possible gecko-style
210 # translations
211 match = re.search(r'^(.*?)\s*\(&.\)$', value) 204 match = re.search(r'^(.*?)\s*\(&.\)$', value)
212 if match: 205 if match:
213 value = match.group(1) 206 value = match.group(1)
214 else: 207 else:
215 index = value.find('&') 208 index = value.find('&')
216 if index >= 0: 209 if index >= 0:
217 value = value[0:index] + value[index + 1:] 210 value = value[0:index] + value[index + 1:]
218 211
219 data[key] = {'message': value} 212 data[key] = {'message': value}
220 213
(...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after
253 if not os.path.exists(sourceFile) or os.path.exists(incompleteMarker ): 246 if not os.path.exists(sourceFile) or os.path.exists(incompleteMarker ):
254 continue 247 continue
255 248
256 data = json.loads(files[targetFile].decode('utf-8')) 249 data = json.loads(files[targetFile].decode('utf-8'))
257 250
258 try: 251 try:
259 # The WebExtensions (.json) and Gecko format provide 252 # The WebExtensions (.json) and Gecko format provide
260 # translations differently and/or provide additional 253 # translations differently and/or provide additional
261 # information like e.g. "placeholders". We want to adhere to 254 # information like e.g. "placeholders". We want to adhere to
262 # that and preserve the addtional info. 255 # that and preserve the addtional info.
263
264 if sourceFile.endswith('.json'): 256 if sourceFile.endswith('.json'):
265 with io.open(sourceFile, 'r', encoding='utf-8') as handle: 257 with io.open(sourceFile, 'r', encoding='utf-8') as handle:
266 sourceData = json.load(handle) 258 sourceData = json.load(handle)
267
268 import_string = import_string_webext 259 import_string = import_string_webext
269 else: 260 else:
270 sourceData = localeTools.readFile(sourceFile) 261 sourceData = localeTools.readFile(sourceFile)
271
272 import_string = import_string_gecko 262 import_string = import_string_gecko
273 263
274 # Resolve wildcard imports 264 # Resolve wildcard imports
275 if keys == '*' or keys == '=*': 265 if keys == '*' or keys == '=*':
276 importList = sourceData.keys() 266 importList = sourceData.keys()
277 importList = filter(lambda k: not k.startswith('_'), importL ist) 267 importList = filter(lambda k: not k.startswith('_'), importL ist)
278 if keys == '=*': 268 if keys == '=*':
279 importList = map(lambda k: '=' + k, importList) 269 importList = map(lambda k: '=' + k, importList)
280 keys = ' '.join(importList) 270 keys = ' '.join(importList)
281 271
(...skipping 144 matching lines...) Expand 10 before | Expand all | Expand 10 after
426 params, 'testIndex.html.tmpl', ('general', 'testScripts') 416 params, 'testIndex.html.tmpl', ('general', 'testScripts')
427 ) 417 )
428 418
429 zipdata = files.zipToString() 419 zipdata = files.zipToString()
430 signature = None 420 signature = None
431 pubkey = None 421 pubkey = None
432 if keyFile != None: 422 if keyFile != None:
433 signature = signBinary(zipdata, keyFile) 423 signature = signBinary(zipdata, keyFile)
434 pubkey = getPublicKey(keyFile) 424 pubkey = getPublicKey(keyFile)
435 writePackage(outFile, pubkey, signature, zipdata) 425 writePackage(outFile, pubkey, signature, zipdata)
LEFTRIGHT
« no previous file | packagerEdge.py » ('j') | Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Toggle Comments ('s')

Powered by Google App Engine
This is Rietveld