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

Delta Between Two Patch Sets: packagerEdge.py

Issue 29374642: Issue 4865 - Make sure Identity.Name attribute is different for devbuilds for Edge (Closed)
Left Patch Set: Created Feb. 6, 2017, 3:24 p.m.
Right Patch Set: Rename a variable. Remove unnecessary conditional. Created Feb. 8, 2017, 7:45 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 | tests/metadata.edge » ('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 base64 5 import base64
6 import hashlib 6 import hashlib
7 import json 7 import json
8 import mimetypes 8 import mimetypes
9 import os 9 import os
10 import zipfile 10 import zipfile
(...skipping 67 matching lines...) Expand 10 before | Expand all | Expand 10 after
78 78
79 def create_appx_manifest(params, files, release_build=False): 79 def create_appx_manifest(params, files, release_build=False):
80 """Create AppxManifest.xml.""" 80 """Create AppxManifest.xml."""
81 params = dict(params) 81 params = dict(params)
82 metadata = params['metadata'] 82 metadata = params['metadata']
83 w = params['windows_version'] = {} 83 w = params['windows_version'] = {}
84 w['min'], w['max'] = metadata.get('compat', 'windows').split('/') 84 w['min'], w['max'] = metadata.get('compat', 'windows').split('/')
85 params.update(metadata.items('general')) 85 params.update(metadata.items('general'))
86 params['version'] = pad_version(params['version']) 86 params['version'] = pad_version(params['version'])
87 87
88 metadata_id_suffix = 'release' if release_build else 'devbuild' 88 metadata_suffix = 'release' if release_build else 'devbuild'
89 metadata_id = 'extension_id_' + metadata_id_suffix 89 app_extension_id = 'extension_id_' +metadata_suffix
90 if metadata.has_option('general', metadata_id): 90 if metadata.has_option('general', app_extension_id):
91 params['app_extension_id'] = metadata.get('general', metadata_id) 91 params['app_extension_id'] = metadata.get('general', app_extension_id)
92 else: 92 else:
93 params['app_extension_id'] = 'EdgeExtension' 93 params['app_extension_id'] = 'EdgeExtension'
94 94
95 if not release_build: 95 app_id = 'app_id_' + metadata_suffix
96 params['app_id'] += 'developmentbuild' 96 params['app_id'] = metadata.get('general', app_id)
Sebastian Noack 2017/02/07 14:44:38 During the review of the initial implementation we
Vasily Kuznetsov 2017/02/07 14:57:41 I prefer the second option. Constructing ids from
Oleksandr 2017/02/08 06:56:55 Done.
97 97
98 translation = load_translation(files, defaultLocale) 98 translation = load_translation(files, defaultLocale)
99 name_key = 'name' if release_build else 'name_devbuild' 99 name_key = 'name' if release_build else 'name_devbuild'
100 params['display_name'] = translation[name_key]['message'] 100 params['display_name'] = translation[name_key]['message']
101 params['description'] = translation['description']['message'] 101 params['description'] = translation['description']['message']
102 102
103 for size in ['44', '50', '150']: 103 for size in ['44', '50', '150']:
104 path = '{}/logo_{}.png'.format(ASSETS_DIR, size) 104 path = '{}/logo_{}.png'.format(ASSETS_DIR, size)
105 if path not in files: 105 if path not in files:
106 raise KeyError(path + ' is not found in files') 106 raise KeyError(path + ' is not found in files')
(...skipping 84 matching lines...) Expand 10 before | Expand all | Expand 10 after
191 if metadata.has_section('appx_assets'): 191 if metadata.has_section('appx_assets'):
192 for name, path in metadata.items('appx_assets'): 192 for name, path in metadata.items('appx_assets'):
193 path = os.path.join(baseDir, path) 193 path = os.path.join(baseDir, path)
194 files.read(path, '{}/{}'.format(ASSETS_DIR, name)) 194 files.read(path, '{}/{}'.format(ASSETS_DIR, name))
195 195
196 files[MANIFEST] = create_appx_manifest(params, files, releaseBuild) 196 files[MANIFEST] = create_appx_manifest(params, files, releaseBuild)
197 files[BLOCKMAP] = create_appx_blockmap(files) 197 files[BLOCKMAP] = create_appx_blockmap(files)
198 files[CONTENT_TYPES] = create_content_types_map(files.keys() + [BLOCKMAP]) 198 files[CONTENT_TYPES] = create_content_types_map(files.keys() + [BLOCKMAP])
199 199
200 files.zip(outfile, compression=zipfile.ZIP_STORED) 200 files.zip(outfile, compression=zipfile.ZIP_STORED)
LEFTRIGHT

Powered by Google App Engine
This is Rietveld