aboutsummaryrefslogtreecommitdiff
path: root/scripts
diff options
context:
space:
mode:
authorPaul Sokolovsky <paul.sokolovsky@linaro.org>2013-12-20 00:09:43 +0200
committerPaul Sokolovsky <paul.sokolovsky@linaro.org>2013-12-20 00:09:43 +0200
commit3573af4f20afdcca50919d4bf3a804ccbe868d6c (patch)
tree7f89a4f55de5a6a0a87796cda1e98b6f68844abc /scripts
parenta028d1a9cad51ebf5ee4bced17171c4dca0b4d3c (diff)
More cleanup of whitespace and naming.
Diffstat (limited to 'scripts')
-rwxr-xr-xscripts/publish_to_snapshots.py16
1 files changed, 8 insertions, 8 deletions
diff --git a/scripts/publish_to_snapshots.py b/scripts/publish_to_snapshots.py
index 9002b0c..b1bf087 100755
--- a/scripts/publish_to_snapshots.py
+++ b/scripts/publish_to_snapshots.py
@@ -18,7 +18,7 @@ uploads_path = '/srv/snapshots.linaro.org/uploads/'
target_path = '/srv/snapshots.linaro.org/www/'
staging_uploads_path = '/srv/staging.snapshots.linaro.org/uploads/'
staging_target_path = '/srv/staging.snapshots.linaro.org/www/'
-product_dir_path = 'target/product'
+PRODUCT_DIR = 'target/product'
PASS = 0
FAIL = 1
BUILDINFO = 'BUILD-INFO.txt'
@@ -102,7 +102,7 @@ class BuildInfoException(Exception):
class SnapshotsPublisher(object):
# Files that need no sanitization even when publishing to staging.
- STAGING_ACCEPTED_FILES = [
+ STAGING_ACCEPTABLE_FILES = [
'BUILD-INFO.txt',
'EULA.txt',
'OPEN-EULA.txt',
@@ -119,10 +119,10 @@ class SnapshotsPublisher(object):
self.argument_parser = argument_parser
@classmethod
- def is_accepted_for_staging(cls, filename):
- """Is filename is in a list of globs in STAGING_ACCEPTED_FILES?"""
+ def is_ok_for_staging(cls, filename):
+ """Can filename be published on staging as is, or requires obfuscation?"""
filename = os.path.basename(filename)
- for accepted_names in cls.STAGING_ACCEPTED_FILES:
+ for accepted_names in cls.STAGING_ACCEPTABLE_FILES:
if fnmatch.fnmatch(filename, accepted_names):
return True
return False
@@ -130,7 +130,7 @@ class SnapshotsPublisher(object):
@classmethod
def sanitize_file(cls, file_path):
"""This truncates the file and fills it with its own filename."""
- assert not cls.is_accepted_for_staging(file_path)
+ assert not cls.is_ok_for_staging(file_path)
if not os.path.isdir(file_path):
base_file_name = os.path.basename(file_path)
protected_file = open(file_path, "w")
@@ -308,7 +308,7 @@ class SnapshotsPublisher(object):
def reshuffle_android_artifacts(self, src_dir):
dst_dir = src_dir
- full_product_path = os.path.join(src_dir, product_dir_path)
+ full_product_path = os.path.join(src_dir, PRODUCT_DIR)
if os.path.isdir(full_product_path):
filelist = os.listdir(full_product_path)
try:
@@ -346,7 +346,7 @@ class SnapshotsPublisher(object):
continue
else:
os.remove(dest)
- if sanitize and not self.is_accepted_for_staging(src):
+ if sanitize and not self.is_ok_for_staging(src):
# Perform the sanitization before moving the file
# into place.
print "Sanitizing contents of '%s'." % src