diff options
author | Martin v. Löwis <martin@v.loewis.de> | 2011-03-27 10:12:07 +0200 |
---|---|---|
committer | Martin v. Löwis <martin@v.loewis.de> | 2011-03-27 10:12:07 +0200 |
commit | 3bf7fb70e2572457299d521bf2165260ac483434 (patch) | |
tree | 49f4ca9250804a5829111b67b7bcb04fc57d7a0e /Lib/msilib/__init__.py | |
parent | 908f4ff27f91be87586e7353d50047575761985c (diff) | |
download | cpython-3bf7fb70e2572457299d521bf2165260ac483434.tar.gz |
Fix short file name generation in bdist_msi.
Patch by Christoph Gohlke.
Closes #7639.
Diffstat (limited to 'Lib/msilib/__init__.py')
-rw-r--r-- | Lib/msilib/__init__.py | 25 |
1 files changed, 17 insertions, 8 deletions
diff --git a/Lib/msilib/__init__.py b/Lib/msilib/__init__.py index 114a1c788c..ce4365fb69 100644 --- a/Lib/msilib/__init__.py +++ b/Lib/msilib/__init__.py @@ -174,10 +174,10 @@ def add_tables(db, module): def make_id(str): #str = str.replace(".", "_") # colons are allowed - str = str.replace(" ", "_") - str = str.replace("-", "_") - if str[0] in string.digits: - str = "_"+str + for c in " -+~;": + str = str.replace(c, "_") + if str[0] in (string.digits + "."): + str = "_" + str assert re.match("^[A-Za-z_][A-Za-z0-9_.]*$", str), "FILE"+str return str @@ -285,19 +285,28 @@ class Directory: [(feature.id, component)]) def make_short(self, file): + oldfile = file + file = file.replace('+', '_') + file = ''.join(c for c in file if not c in ' "/\[]:;=,') parts = file.split(".") - if len(parts)>1: + if len(parts) > 1: + prefix = "".join(parts[:-1]).upper() suffix = parts[-1].upper() + if not prefix: + prefix = suffix + suffix = None else: + prefix = file.upper() suffix = None - prefix = parts[0].upper() - if len(prefix) <= 8 and (not suffix or len(suffix)<=3): + if len(parts) < 3 and len(prefix) <= 8 and file == oldfile and ( + not suffix or len(suffix) <= 3): if suffix: file = prefix+"."+suffix else: file = prefix - assert file not in self.short_names else: + file = None + if file is None or file in self.short_names: prefix = prefix[:6] if suffix: suffix = suffix[:3] |