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

Side by Side Diff: sitescripts/extensions/utils.py

Issue 5092904657747968: Issue 356 - Update devbuild in the Chrome Web Store (Closed)
Patch Set: Created April 19, 2014, 4:12 p.m.
Left:
Right:
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View unified diff | Download patch
OLDNEW
1 # coding: utf-8 1 # coding: utf-8
2 2
3 # This file is part of the Adblock Plus web scripts, 3 # This file is part of the Adblock Plus web scripts,
4 # Copyright (C) 2006-2013 Eyeo GmbH 4 # Copyright (C) 2006-2013 Eyeo GmbH
5 # 5 #
6 # Adblock Plus is free software: you can redistribute it and/or modify 6 # Adblock Plus is free software: you can redistribute it and/or modify
7 # it under the terms of the GNU General Public License version 3 as 7 # it under the terms of the GNU General Public License version 3 as
8 # published by the Free Software Foundation. 8 # published by the Free Software Foundation.
9 # 9 #
10 # Adblock Plus is distributed in the hope that it will be useful, 10 # Adblock Plus is distributed in the hope that it will be useful,
(...skipping 120 matching lines...) Expand 10 before | Expand all | Expand 10 after
131 signtool = _defineGlobalProperty('signtool') 131 signtool = _defineGlobalProperty('signtool')
132 certname = _defineGlobalProperty('signtool_certname') 132 certname = _defineGlobalProperty('signtool_certname')
133 dbdir = _defineGlobalProperty('signtool_dbdir') 133 dbdir = _defineGlobalProperty('signtool_dbdir')
134 dbpass = _defineGlobalProperty('signtool_dbpass') 134 dbpass = _defineGlobalProperty('signtool_dbpass')
135 135
136 keyFile = _defineLocalProperty('key', '') 136 keyFile = _defineLocalProperty('key', '')
137 name = _defineLocalProperty('name') 137 name = _defineLocalProperty('name')
138 galleryID = _defineLocalProperty('galleryID', '') 138 galleryID = _defineLocalProperty('galleryID', '')
139 downloadPage = _defineLocalProperty('downloadPage', '') 139 downloadPage = _defineLocalProperty('downloadPage', '')
140 experimental = _defineLocalProperty('experimental', '') 140 experimental = _defineLocalProperty('experimental', '')
141 serviceAccountEmail = _defineLocalProperty('serviceAccountEmail', '')
142 serviceAccountKey = _defineLocalProperty('serviceAccountKey', '')
141 143
142 latestRevision = _defineNightlyProperty('latestRevision') 144 latestRevision = _defineNightlyProperty('latestRevision')
143 145
144 def __init__(self, config, nightlyConfig, repositoryName, repository): 146 def __init__(self, config, nightlyConfig, repositoryName, repository):
145 """ 147 """
146 Creates a new Configuration instance that is bound to a particular 148 Creates a new Configuration instance that is bound to a particular
147 repository. 149 repository.
148 """ 150 """
149 151
150 self.repositoryName = repositoryName 152 self.repositoryName = repositoryName
(...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after
186 in the configuration file. 188 in the configuration file.
187 This static method will enumerate Configuration 189 This static method will enumerate Configuration
188 objects representing the settings for each repository. 190 objects representing the settings for each repository.
189 """ 191 """
190 config = get_config() 192 config = get_config()
191 for key, value in config.items("extensions"): 193 for key, value in config.items("extensions"):
192 if key.endswith("_repository"): 194 if key.endswith("_repository"):
193 repositoryName = re.sub(r'_repository$', '', key) 195 repositoryName = re.sub(r'_repository$', '', key)
194 if repositoryName: 196 if repositoryName:
195 yield Configuration(config, nightlyConfig, repositoryName, value) 197 yield Configuration(config, nightlyConfig, repositoryName, value)
OLDNEW

Powered by Google App Engine
This is Rietveld