blob: 032d662de20bccbc6d9893eb82d4e8a81eda8368 [file] [log] [blame]
Martin v. Löwis8ffe9ab2004-08-22 13:34:34 +00001# Python MSI Generator
2# (C) 2003 Martin v. Loewis
3# See "FOO" in comments refers to MSDN sections with the title FOO.
Christian Heimes9acba042007-12-04 14:57:30 +00004import msilib, schema, sequence, os, glob, time, re, shutil
Martin v. Löwis8ffe9ab2004-08-22 13:34:34 +00005from msilib import Feature, CAB, Directory, Dialog, Binary, add_data
6import uisample
7from win32com.client import constants
Martin v. Löwis9fda9312004-12-22 13:41:49 +00008from distutils.spawn import find_executable
Martin v. Löwis1d278fc2006-03-28 18:30:05 +00009from uuids import product_codes
Martin v. Löwis8ffe9ab2004-08-22 13:34:34 +000010
11# Settings can be overridden in config.py below
Martin v. Löwis8ffe9ab2004-08-22 13:34:34 +000012# 0 for official python.org releases
13# 1 for intermediate releases by anybody, with
14# a new product code for every package.
15snapshot = 1
16# 1 means that file extension is px, not py,
17# and binaries start with x
18testpackage = 0
19# Location of build tree
20srcdir = os.path.abspath("../..")
21# Text to be displayed as the version in dialogs etc.
22# goes into file name and ProductCode. Defaults to
23# current_version.day for Snapshot, current_version otherwise
24full_current_version = None
Martin v. Löwise0f780d2004-09-01 14:51:06 +000025# Is Tcl available at all?
26have_tcl = True
Martin v. Löwis1a494bd2006-04-04 07:10:59 +000027# Where is sqlite3.dll located, relative to srcdir?
28sqlite_dir = "../sqlite-source-3.3.4"
Christian Heimes9acba042007-12-04 14:57:30 +000029# path to PCbuild directory
Martin v. Löwise7a434e2008-01-06 11:03:43 +000030PCBUILD="PCbuild"
Christian Heimes9acba042007-12-04 14:57:30 +000031# msvcrt version
Martin v. Löwise7a434e2008-01-06 11:03:43 +000032MSVCR = "90"
Martin v. Löwis8ffe9ab2004-08-22 13:34:34 +000033
34try:
35 from config import *
36except ImportError:
37 pass
38
39# Extract current version from Include/patchlevel.h
40lines = open(srcdir + "/Include/patchlevel.h").readlines()
41major = minor = micro = level = serial = None
42levels = {
43 'PY_RELEASE_LEVEL_ALPHA':0xA,
44 'PY_RELEASE_LEVEL_BETA': 0xB,
45 'PY_RELEASE_LEVEL_GAMMA':0xC,
46 'PY_RELEASE_LEVEL_FINAL':0xF
47 }
48for l in lines:
49 if not l.startswith("#define"):
50 continue
51 l = l.split()
52 if len(l) != 3:
53 continue
54 _, name, value = l
55 if name == 'PY_MAJOR_VERSION': major = value
56 if name == 'PY_MINOR_VERSION': minor = value
57 if name == 'PY_MICRO_VERSION': micro = value
58 if name == 'PY_RELEASE_LEVEL': level = levels[value]
59 if name == 'PY_RELEASE_SERIAL': serial = value
60
61short_version = major+"."+minor
62# See PC/make_versioninfo.c
63FIELD3 = 1000*int(micro) + 10*level + int(serial)
64current_version = "%s.%d" % (short_version, FIELD3)
65
66# This should never change. The UpgradeCode of this package can be
67# used in the Upgrade table of future packages to make the future
68# package replace this one. See "UpgradeCode Property".
69upgrade_code_snapshot='{92A24481-3ECB-40FC-8836-04B7966EC0D5}'
70upgrade_code='{65E6DE48-A358-434D-AA4F-4AF72DB4718F}'
71
Martin v. Löwis8ffe9ab2004-08-22 13:34:34 +000072if snapshot:
73 current_version = "%s.%s.%s" % (major, minor, int(time.time()/3600/24))
74 product_code = msilib.gen_uuid()
75else:
76 product_code = product_codes[current_version]
77
78if full_current_version is None:
79 full_current_version = current_version
80
81extensions = [
82 'bz2.pyd',
83 'pyexpat.pyd',
84 'select.pyd',
85 'unicodedata.pyd',
86 'winsound.pyd',
Trent Micke97e5a72005-12-15 22:08:46 +000087 '_elementtree.pyd',
Martin v. Löwis8ffe9ab2004-08-22 13:34:34 +000088 '_bsddb.pyd',
89 '_socket.pyd',
90 '_ssl.pyd',
91 '_testcapi.pyd',
92 '_tkinter.pyd',
Martin v. Löwis8c7c56e2006-03-05 14:04:26 +000093 '_msi.pyd',
Martin v. Löwisa09655e2006-03-10 15:36:28 +000094 '_ctypes.pyd',
Martin v. Löwis1a494bd2006-04-04 07:10:59 +000095 '_ctypes_test.pyd',
Martin v. Löwisa09fd6e2006-08-16 12:55:10 +000096 '_sqlite3.pyd',
97 '_hashlib.pyd'
Martin v. Löwis8ffe9ab2004-08-22 13:34:34 +000098]
99
Martin v. Löwis141f41a2005-03-15 00:39:40 +0000100# Well-known component UUIDs
101# These are needed for SharedDLLs reference counter; if
102# a different UUID was used for each incarnation of, say,
103# python24.dll, an upgrade would set the reference counter
104# from 1 to 2 (due to what I consider a bug in MSI)
105# Using the same UUID is fine since these files are versioned,
106# so Installer will always keep the newest version.
Christian Heimes9acba042007-12-04 14:57:30 +0000107# NOTE: All uuids are self generated.
Martin v. Löwis141f41a2005-03-15 00:39:40 +0000108pythondll_uuid = {
109 "24":"{9B81E618-2301-4035-AC77-75D9ABEB7301}",
Martin v. Löwis5409c8d2007-08-30 18:15:22 +0000110 "25":"{2e41b118-38bd-4c1b-a840-6977efd1b911}",
Martin v. Löwisbe7abbb2007-08-14 05:01:50 +0000111 "26":"{34ebecac-f046-4e1c-b0e3-9bac3cdaacfa}",
Martin v. Löwis141f41a2005-03-15 00:39:40 +0000112 } [major+minor]
Tim Peterseba28be2005-03-28 01:08:02 +0000113
Martin v. Löwis344d0662008-05-09 18:21:55 +0000114# Compute the name that Sphinx gives to the docfile
115docfile = ""
116if level < 0xf:
117 docfile = '%x%s' % (level, serial)
118docfile = 'python%s%s%s.chm' % (major, minor, docfile)
119
Martin v. Löwis9fda9312004-12-22 13:41:49 +0000120# Build the mingw import library, libpythonXY.a
121# This requires 'nm' and 'dlltool' executables on your PATH
122def build_mingw_lib(lib_file, def_file, dll_file, mingw_lib):
123 warning = "WARNING: %s - libpythonXX.a not built"
124 nm = find_executable('nm')
125 dlltool = find_executable('dlltool')
126
127 if not nm or not dlltool:
128 print warning % "nm and/or dlltool were not found"
129 return False
130
131 nm_command = '%s -Cs %s' % (nm, lib_file)
132 dlltool_command = "%s --dllname %s --def %s --output-lib %s" % \
133 (dlltool, dll_file, def_file, mingw_lib)
134 export_match = re.compile(r"^_imp__(.*) in python\d+\.dll").match
135
136 f = open(def_file,'w')
137 print >>f, "LIBRARY %s" % dll_file
138 print >>f, "EXPORTS"
139
140 nm_pipe = os.popen(nm_command)
141 for line in nm_pipe.readlines():
142 m = export_match(line)
143 if m:
144 print >>f, m.group(1)
145 f.close()
146 exit = nm_pipe.close()
147
148 if exit:
149 print warning % "nm did not run successfully"
150 return False
151
152 if os.system(dlltool_command) != 0:
153 print warning % "dlltool did not run successfully"
154 return False
155
156 return True
157
158# Target files (.def and .a) go in PCBuild directory
Christian Heimes9acba042007-12-04 14:57:30 +0000159lib_file = os.path.join(srcdir, PCBUILD, "python%s%s.lib" % (major, minor))
160def_file = os.path.join(srcdir, PCBUILD, "python%s%s.def" % (major, minor))
Martin v. Löwis9fda9312004-12-22 13:41:49 +0000161dll_file = "python%s%s.dll" % (major, minor)
Christian Heimes9acba042007-12-04 14:57:30 +0000162mingw_lib = os.path.join(srcdir, PCBUILD, "libpython%s%s.a" % (major, minor))
Martin v. Löwis9fda9312004-12-22 13:41:49 +0000163
164have_mingw = build_mingw_lib(lib_file, def_file, dll_file, mingw_lib)
165
Martin v. Löwis856bf9a2006-02-14 20:42:55 +0000166# Determine the target architechture
Christian Heimes9acba042007-12-04 14:57:30 +0000167dll_path = os.path.join(srcdir, PCBUILD, dll_file)
Martin v. Löwis856bf9a2006-02-14 20:42:55 +0000168msilib.set_arch_from_file(dll_path)
169if msilib.pe_type(dll_path) != msilib.pe_type("msisupport.dll"):
170 raise SystemError, "msisupport.dll for incorrect architecture"
171
Martin v. Löwis8ffe9ab2004-08-22 13:34:34 +0000172if testpackage:
173 ext = 'px'
174 testprefix = 'x'
175else:
176 ext = 'py'
177 testprefix = ''
178
179if msilib.Win64:
Martin v. Löwis75c23bd2007-08-30 18:25:47 +0000180 SystemFolderName = "[System64Folder]"
Martin v. Löwis1ab4a1f2007-08-31 10:01:07 +0000181 registry_component = 4|256
Martin v. Löwis8ffe9ab2004-08-22 13:34:34 +0000182else:
183 SystemFolderName = "[SystemFolder]"
Martin v. Löwis1ab4a1f2007-08-31 10:01:07 +0000184 registry_component = 4
Martin v. Löwis8ffe9ab2004-08-22 13:34:34 +0000185
186msilib.reset()
187
188# condition in which to install pythonxy.dll in system32:
189# a) it is Windows 9x or
190# b) it is NT, the user is privileged, and has chosen per-machine installation
191sys32cond = "(Windows9x or (Privileged and ALLUSERS))"
192
Martin v. Löwis8ffe9ab2004-08-22 13:34:34 +0000193def build_database():
194 """Generate an empty database, with just the schema and the
195 Summary information stream."""
196 if snapshot:
197 uc = upgrade_code_snapshot
198 else:
199 uc = upgrade_code
200 # schema represents the installer 2.0 database schema.
201 # sequence is the set of standard sequences
202 # (ui/execute, admin/advt/install)
Martin v. Löwis856bf9a2006-02-14 20:42:55 +0000203 db = msilib.init_database("python-%s%s.msi" % (full_current_version, msilib.arch_ext),
Martin v. Löwis8ffe9ab2004-08-22 13:34:34 +0000204 schema, ProductName="Python "+full_current_version,
205 ProductCode=product_code,
206 ProductVersion=current_version,
Martin v. Löwis8bc77e42007-09-01 06:36:03 +0000207 Manufacturer=u"Python Software Foundation")
Martin v. Löwis8ffe9ab2004-08-22 13:34:34 +0000208 # The default sequencing of the RemoveExistingProducts action causes
209 # removal of files that got just installed. Place it after
210 # InstallInitialize, so we first uninstall everything, but still roll
211 # back in case the installation is interrupted
212 msilib.change_sequence(sequence.InstallExecuteSequence,
213 "RemoveExistingProducts", 1510)
Martin v. Löwis8ffe9ab2004-08-22 13:34:34 +0000214 msilib.add_tables(db, sequence)
215 # We cannot set ALLUSERS in the property table, as this cannot be
216 # reset if the user choses a per-user installation. Instead, we
217 # maintain WhichUsers, which can be "ALL" or "JUSTME". The UI manages
218 # this property, and when the execution starts, ALLUSERS is set
219 # accordingly.
220 add_data(db, "Property", [("UpgradeCode", uc),
221 ("WhichUsers", "ALL"),
Martin v. Löwis141f41a2005-03-15 00:39:40 +0000222 ("ProductLine", "Python%s%s" % (major, minor)),
Martin v. Löwis8ffe9ab2004-08-22 13:34:34 +0000223 ])
224 db.Commit()
225 return db
226
227def remove_old_versions(db):
228 "Fill the upgrade table."
229 start = "%s.%s.0" % (major, minor)
230 # This requests that feature selection states of an older
231 # installation should be forwarded into this one. Upgrading
232 # requires that both the old and the new installation are
233 # either both per-machine or per-user.
234 migrate_features = 1
235 # See "Upgrade Table". We remove releases with the same major and
236 # minor version. For an snapshot, we remove all earlier snapshots. For
237 # a release, we remove all snapshots, and all earlier releases.
238 if snapshot:
239 add_data(db, "Upgrade",
Tim Peters66cb0182004-08-26 05:23:19 +0000240 [(upgrade_code_snapshot, start,
Martin v. Löwis8ffe9ab2004-08-22 13:34:34 +0000241 current_version,
242 None, # Ignore language
Tim Peters66cb0182004-08-26 05:23:19 +0000243 migrate_features,
Martin v. Löwis8ffe9ab2004-08-22 13:34:34 +0000244 None, # Migrate ALL features
245 "REMOVEOLDSNAPSHOT")])
246 props = "REMOVEOLDSNAPSHOT"
247 else:
248 add_data(db, "Upgrade",
249 [(upgrade_code, start, current_version,
250 None, migrate_features, None, "REMOVEOLDVERSION"),
251 (upgrade_code_snapshot, start, "%s.%d.0" % (major, int(minor)+1),
252 None, migrate_features, None, "REMOVEOLDSNAPSHOT")])
253 props = "REMOVEOLDSNAPSHOT;REMOVEOLDVERSION"
254 # Installer collects the product codes of the earlier releases in
255 # these properties. In order to allow modification of the properties,
256 # they must be declared as secure. See "SecureCustomProperties Property"
257 add_data(db, "Property", [("SecureCustomProperties", props)])
258
259class PyDialog(Dialog):
260 """Dialog class with a fixed layout: controls at the top, then a ruler,
261 then a list of buttons: back, next, cancel. Optionally a bitmap at the
262 left."""
263 def __init__(self, *args, **kw):
264 """Dialog(database, name, x, y, w, h, attributes, title, first,
265 default, cancel, bitmap=true)"""
266 Dialog.__init__(self, *args)
267 ruler = self.h - 36
268 bmwidth = 152*ruler/328
269 if kw.get("bitmap", True):
270 self.bitmap("Bitmap", 0, 0, bmwidth, ruler, "PythonWin")
271 self.line("BottomLine", 0, ruler, self.w, 0)
272
273 def title(self, title):
274 "Set the title text of the dialog at the top."
275 # name, x, y, w, h, flags=Visible|Enabled|Transparent|NoPrefix,
276 # text, in VerdanaBold10
277 self.text("Title", 135, 10, 220, 60, 0x30003,
278 r"{\VerdanaBold10}%s" % title)
279
280 def back(self, title, next, name = "Back", active = 1):
281 """Add a back button with a given title, the tab-next button,
282 its name in the Control table, possibly initially disabled.
283
284 Return the button, so that events can be associated"""
285 if active:
286 flags = 3 # Visible|Enabled
287 else:
288 flags = 1 # Visible
289 return self.pushbutton(name, 180, self.h-27 , 56, 17, flags, title, next)
290
291 def cancel(self, title, next, name = "Cancel", active = 1):
292 """Add a cancel button with a given title, the tab-next button,
293 its name in the Control table, possibly initially disabled.
294
295 Return the button, so that events can be associated"""
296 if active:
297 flags = 3 # Visible|Enabled
298 else:
299 flags = 1 # Visible
300 return self.pushbutton(name, 304, self.h-27, 56, 17, flags, title, next)
301
302 def next(self, title, next, name = "Next", active = 1):
303 """Add a Next button with a given title, the tab-next button,
304 its name in the Control table, possibly initially disabled.
305
306 Return the button, so that events can be associated"""
307 if active:
308 flags = 3 # Visible|Enabled
309 else:
310 flags = 1 # Visible
311 return self.pushbutton(name, 236, self.h-27, 56, 17, flags, title, next)
312
313 def xbutton(self, name, title, next, xpos):
314 """Add a button with a given title, the tab-next button,
315 its name in the Control table, giving its x position; the
316 y-position is aligned with the other buttons.
317
318 Return the button, so that events can be associated"""
319 return self.pushbutton(name, int(self.w*xpos - 28), self.h-27, 56, 17, 3, title, next)
320
321def add_ui(db):
322 x = y = 50
323 w = 370
324 h = 300
325 title = "[ProductName] Setup"
326
327 # see "Dialog Style Bits"
328 modal = 3 # visible | modal
329 modeless = 1 # visible
330 track_disk_space = 32
331
332 add_data(db, 'ActionText', uisample.ActionText)
333 add_data(db, 'UIText', uisample.UIText)
334
335 # Bitmaps
336 if not os.path.exists(srcdir+r"\PC\python_icon.exe"):
337 raise "Run icons.mak in PC directory"
338 add_data(db, "Binary",
Christian Heimes7e28e492008-01-01 13:52:57 +0000339 [("PythonWin", msilib.Binary(r"%s\PCbuild\installer.bmp" % srcdir)), # 152x328 pixels
Martin v. Löwis8ffe9ab2004-08-22 13:34:34 +0000340 ("py.ico",msilib.Binary(srcdir+r"\PC\py.ico")),
341 ])
342 add_data(db, "Icon",
343 [("python_icon.exe", msilib.Binary(srcdir+r"\PC\python_icon.exe"))])
344
345 # Scripts
Martin v. Löwisdff68d02004-09-10 09:20:10 +0000346 # CheckDir sets TargetExists if TARGETDIR exists.
347 # UpdateEditIDLE sets the REGISTRY.tcl component into
348 # the installed/uninstalled state according to both the
349 # Extensions and TclTk features.
Martin v. Löwiseb68be42004-12-12 15:29:21 +0000350 if os.system("nmake /nologo /c /f msisupport.mak") != 0:
351 raise "'nmake /f msisupport.mak' failed"
352 add_data(db, "Binary", [("Script", msilib.Binary("msisupport.dll"))])
353 # See "Custom Action Type 1"
Martin v. Löwis3390d332005-03-14 17:20:13 +0000354 if msilib.Win64:
355 CheckDir = "CheckDir"
Martin v. Löwisdf40ce32006-02-16 14:38:30 +0000356 UpdateEditIDLE = "UpdateEditIDLE"
Martin v. Löwis3390d332005-03-14 17:20:13 +0000357 else:
358 CheckDir = "_CheckDir@4"
359 UpdateEditIDLE = "_UpdateEditIDLE@4"
Tim Peters0e9980f2004-09-12 03:49:31 +0000360 add_data(db, "CustomAction",
Martin v. Löwis3390d332005-03-14 17:20:13 +0000361 [("CheckDir", 1, "Script", CheckDir)])
Martin v. Löwiseac02e62004-11-18 08:00:33 +0000362 if have_tcl:
363 add_data(db, "CustomAction",
Martin v. Löwis3390d332005-03-14 17:20:13 +0000364 [("UpdateEditIDLE", 1, "Script", UpdateEditIDLE)])
Martin v. Löwis8ffe9ab2004-08-22 13:34:34 +0000365
366 # UI customization properties
367 add_data(db, "Property",
368 # See "DefaultUIFont Property"
369 [("DefaultUIFont", "DlgFont8"),
370 # See "ErrorDialog Style Bit"
371 ("ErrorDialog", "ErrorDlg"),
372 ("Progress1", "Install"), # modified in maintenance type dlg
373 ("Progress2", "installs"),
374 ("MaintenanceForm_Action", "Repair")])
375
376 # Fonts, see "TextStyle Table"
377 add_data(db, "TextStyle",
378 [("DlgFont8", "Tahoma", 9, None, 0),
379 ("DlgFontBold8", "Tahoma", 8, None, 1), #bold
380 ("VerdanaBold10", "Verdana", 10, None, 1),
Martin v. Löwis141f41a2005-03-15 00:39:40 +0000381 ("VerdanaRed9", "Verdana", 9, 255, 0),
Martin v. Löwis8ffe9ab2004-08-22 13:34:34 +0000382 ])
383
Martin v. Löwis775e10d2008-04-08 16:48:35 +0000384 compileargs = r'-Wi "[TARGETDIR]Lib\compileall.py" -f -x bad_coding|badsyntax|site-packages|py3_ "[TARGETDIR]Lib"'
Martin v. Löwis8ffe9ab2004-08-22 13:34:34 +0000385 # See "CustomAction Table"
386 add_data(db, "CustomAction", [
387 # msidbCustomActionTypeFirstSequence + msidbCustomActionTypeTextData + msidbCustomActionTypeProperty
388 # See "Custom Action Type 51",
389 # "Custom Action Execution Scheduling Options"
390 ("InitialTargetDir", 307, "TARGETDIR",
391 "[WindowsVolume]Python%s%s" % (major, minor)),
392 ("SetDLLDirToTarget", 307, "DLLDIR", "[TARGETDIR]"),
393 ("SetDLLDirToSystem32", 307, "DLLDIR", SystemFolderName),
394 # msidbCustomActionTypeExe + msidbCustomActionTypeSourceFile
395 # See "Custom Action Type 18"
Martin v. Löwis7b2563b2004-11-02 22:59:56 +0000396 ("CompilePyc", 18, "python.exe", compileargs),
397 ("CompilePyo", 18, "python.exe", "-O "+compileargs),
Martin v. Löwis8ffe9ab2004-08-22 13:34:34 +0000398 ])
399
400 # UI Sequences, see "InstallUISequence Table", "Using a Sequence Table"
401 # Numbers indicate sequence; see sequence.py for how these action integrate
402 add_data(db, "InstallUISequence",
403 [("PrepareDlg", "Not Privileged or Windows9x or Installed", 140),
404 ("WhichUsersDlg", "Privileged and not Windows9x and not Installed", 141),
405 ("InitialTargetDir", 'TARGETDIR=""', 750),
406 # In the user interface, assume all-users installation if privileged.
407 ("SetDLLDirToSystem32", 'DLLDIR="" and ' + sys32cond, 751),
408 ("SetDLLDirToTarget", 'DLLDIR="" and not ' + sys32cond, 752),
409 ("SelectDirectoryDlg", "Not Installed", 1230),
410 # XXX no support for resume installations yet
411 #("ResumeDlg", "Installed AND (RESUME OR Preselected)", 1240),
412 ("MaintenanceTypeDlg", "Installed AND NOT RESUME AND NOT Preselected", 1250),
413 ("ProgressDlg", None, 1280)])
414 add_data(db, "AdminUISequence",
415 [("InitialTargetDir", 'TARGETDIR=""', 750),
416 ("SetDLLDirToTarget", 'DLLDIR=""', 751),
417 ])
418
419 # Execute Sequences
420 add_data(db, "InstallExecuteSequence",
421 [("InitialTargetDir", 'TARGETDIR=""', 750),
422 ("SetDLLDirToSystem32", 'DLLDIR="" and ' + sys32cond, 751),
423 ("SetDLLDirToTarget", 'DLLDIR="" and not ' + sys32cond, 752),
Martin v. Löwisdff68d02004-09-10 09:20:10 +0000424 ("UpdateEditIDLE", None, 1050),
Martin v. Löwis8ffe9ab2004-08-22 13:34:34 +0000425 ("CompilePyc", "COMPILEALL", 6800),
426 ("CompilePyo", "COMPILEALL", 6801),
427 ])
428 add_data(db, "AdminExecuteSequence",
429 [("InitialTargetDir", 'TARGETDIR=""', 750),
430 ("SetDLLDirToTarget", 'DLLDIR=""', 751),
431 ("CompilePyc", "COMPILEALL", 6800),
432 ("CompilePyo", "COMPILEALL", 6801),
433 ])
434
435 #####################################################################
436 # Standard dialogs: FatalError, UserExit, ExitDialog
437 fatal=PyDialog(db, "FatalError", x, y, w, h, modal, title,
438 "Finish", "Finish", "Finish")
439 fatal.title("[ProductName] Installer ended prematurely")
440 fatal.back("< Back", "Finish", active = 0)
441 fatal.cancel("Cancel", "Back", active = 0)
442 fatal.text("Description1", 135, 70, 220, 80, 0x30003,
443 "[ProductName] setup ended prematurely because of an error. Your system has not been modified. To install this program at a later time, please run the installation again.")
444 fatal.text("Description2", 135, 155, 220, 20, 0x30003,
445 "Click the Finish button to exit the Installer.")
446 c=fatal.next("Finish", "Cancel", name="Finish")
447 # See "ControlEvent Table". Parameters are the event, the parameter
448 # to the action, and optionally the condition for the event, and the order
449 # of events.
450 c.event("EndDialog", "Exit")
Tim Peters66cb0182004-08-26 05:23:19 +0000451
Martin v. Löwis8ffe9ab2004-08-22 13:34:34 +0000452 user_exit=PyDialog(db, "UserExit", x, y, w, h, modal, title,
453 "Finish", "Finish", "Finish")
454 user_exit.title("[ProductName] Installer was interrupted")
455 user_exit.back("< Back", "Finish", active = 0)
456 user_exit.cancel("Cancel", "Back", active = 0)
457 user_exit.text("Description1", 135, 70, 220, 80, 0x30003,
458 "[ProductName] setup was interrupted. Your system has not been modified. "
459 "To install this program at a later time, please run the installation again.")
460 user_exit.text("Description2", 135, 155, 220, 20, 0x30003,
461 "Click the Finish button to exit the Installer.")
462 c = user_exit.next("Finish", "Cancel", name="Finish")
463 c.event("EndDialog", "Exit")
Tim Peters66cb0182004-08-26 05:23:19 +0000464
Martin v. Löwis8ffe9ab2004-08-22 13:34:34 +0000465 exit_dialog = PyDialog(db, "ExitDialog", x, y, w, h, modal, title,
466 "Finish", "Finish", "Finish")
467 exit_dialog.title("Completing the [ProductName] Installer")
468 exit_dialog.back("< Back", "Finish", active = 0)
469 exit_dialog.cancel("Cancel", "Back", active = 0)
Martin v. Löwis2dd2a282004-08-22 17:10:12 +0000470 exit_dialog.text("Acknowledgements", 135, 95, 220, 120, 0x30003,
471 "Special Windows thanks to:\n"
Martin v. Löwisd3f61a22004-08-30 09:22:30 +0000472 " Mark Hammond, without whose years of freely \n"
473 " shared Windows expertise, Python for Windows \n"
474 " would still be Python for DOS.")
Tim Peters66cb0182004-08-26 05:23:19 +0000475
Martin v. Löwis8c7c56e2006-03-05 14:04:26 +0000476 c = exit_dialog.text("warning", 135, 200, 220, 40, 0x30003,
477 "{\\VerdanaRed9}Warning: Python 2.5.x is the last "
478 "Python release for Windows 9x.")
Martin v. Löwisdf511792006-03-28 07:51:51 +0000479 c.condition("Hide", "NOT Version9X")
Martin v. Löwis8c7c56e2006-03-05 14:04:26 +0000480
Martin v. Löwis2dd2a282004-08-22 17:10:12 +0000481 exit_dialog.text("Description", 135, 235, 220, 20, 0x30003,
Martin v. Löwis8ffe9ab2004-08-22 13:34:34 +0000482 "Click the Finish button to exit the Installer.")
483 c = exit_dialog.next("Finish", "Cancel", name="Finish")
484 c.event("EndDialog", "Return")
485
486 #####################################################################
487 # Required dialog: FilesInUse, ErrorDlg
488 inuse = PyDialog(db, "FilesInUse",
489 x, y, w, h,
490 19, # KeepModeless|Modal|Visible
491 title,
492 "Retry", "Retry", "Retry", bitmap=False)
493 inuse.text("Title", 15, 6, 200, 15, 0x30003,
494 r"{\DlgFontBold8}Files in Use")
495 inuse.text("Description", 20, 23, 280, 20, 0x30003,
496 "Some files that need to be updated are currently in use.")
497 inuse.text("Text", 20, 55, 330, 50, 3,
498 "The following applications are using files that need to be updated by this setup. Close these applications and then click Retry to continue the installation or Cancel to exit it.")
499 inuse.control("List", "ListBox", 20, 107, 330, 130, 7, "FileInUseProcess",
500 None, None, None)
501 c=inuse.back("Exit", "Ignore", name="Exit")
502 c.event("EndDialog", "Exit")
503 c=inuse.next("Ignore", "Retry", name="Ignore")
504 c.event("EndDialog", "Ignore")
505 c=inuse.cancel("Retry", "Exit", name="Retry")
506 c.event("EndDialog","Retry")
507
508
509 # See "Error Dialog". See "ICE20" for the required names of the controls.
510 error = Dialog(db, "ErrorDlg",
511 50, 10, 330, 101,
512 65543, # Error|Minimize|Modal|Visible
513 title,
514 "ErrorText", None, None)
515 error.text("ErrorText", 50,9,280,48,3, "")
516 error.control("ErrorIcon", "Icon", 15, 9, 24, 24, 5242881, None, "py.ico", None, None)
517 error.pushbutton("N",120,72,81,21,3,"No",None).event("EndDialog","ErrorNo")
518 error.pushbutton("Y",240,72,81,21,3,"Yes",None).event("EndDialog","ErrorYes")
519 error.pushbutton("A",0,72,81,21,3,"Abort",None).event("EndDialog","ErrorAbort")
520 error.pushbutton("C",42,72,81,21,3,"Cancel",None).event("EndDialog","ErrorCancel")
521 error.pushbutton("I",81,72,81,21,3,"Ignore",None).event("EndDialog","ErrorIgnore")
522 error.pushbutton("O",159,72,81,21,3,"Ok",None).event("EndDialog","ErrorOk")
523 error.pushbutton("R",198,72,81,21,3,"Retry",None).event("EndDialog","ErrorRetry")
524
525 #####################################################################
526 # Global "Query Cancel" dialog
527 cancel = Dialog(db, "CancelDlg", 50, 10, 260, 85, 3, title,
528 "No", "No", "No")
Tim Peters66cb0182004-08-26 05:23:19 +0000529 cancel.text("Text", 48, 15, 194, 30, 3,
Martin v. Löwis8ffe9ab2004-08-22 13:34:34 +0000530 "Are you sure you want to cancel [ProductName] installation?")
531 cancel.control("Icon", "Icon", 15, 15, 24, 24, 5242881, None,
532 "py.ico", None, None)
533 c=cancel.pushbutton("Yes", 72, 57, 56, 17, 3, "Yes", "No")
534 c.event("EndDialog", "Exit")
Tim Peters66cb0182004-08-26 05:23:19 +0000535
Martin v. Löwis8ffe9ab2004-08-22 13:34:34 +0000536 c=cancel.pushbutton("No", 132, 57, 56, 17, 3, "No", "Yes")
537 c.event("EndDialog", "Return")
538
539 #####################################################################
540 # Global "Wait for costing" dialog
541 costing = Dialog(db, "WaitForCostingDlg", 50, 10, 260, 85, modal, title,
542 "Return", "Return", "Return")
543 costing.text("Text", 48, 15, 194, 30, 3,
544 "Please wait while the installer finishes determining your disk space requirements.")
545 costing.control("Icon", "Icon", 15, 15, 24, 24, 5242881, None,
546 "py.ico", None, None)
547 c = costing.pushbutton("Return", 102, 57, 56, 17, 3, "Return", None)
548 c.event("EndDialog", "Exit")
549
550 #####################################################################
551 # Preparation dialog: no user input except cancellation
552 prep = PyDialog(db, "PrepareDlg", x, y, w, h, modeless, title,
553 "Cancel", "Cancel", "Cancel")
554 prep.text("Description", 135, 70, 220, 40, 0x30003,
555 "Please wait while the Installer prepares to guide you through the installation.")
556 prep.title("Welcome to the [ProductName] Installer")
557 c=prep.text("ActionText", 135, 110, 220, 20, 0x30003, "Pondering...")
558 c.mapping("ActionText", "Text")
559 c=prep.text("ActionData", 135, 135, 220, 30, 0x30003, None)
560 c.mapping("ActionData", "Text")
561 prep.back("Back", None, active=0)
562 prep.next("Next", None, active=0)
563 c=prep.cancel("Cancel", None)
564 c.event("SpawnDialog", "CancelDlg")
565
566 #####################################################################
567 # Target directory selection
568 seldlg = PyDialog(db, "SelectDirectoryDlg", x, y, w, h, modal, title,
569 "Next", "Next", "Cancel")
570 seldlg.title("Select Destination Directory")
Martin v. Löwis141f41a2005-03-15 00:39:40 +0000571 c = seldlg.text("Existing", 135, 25, 235, 30, 0x30003,
572 "{\VerdanaRed9}This update will replace your existing [ProductLine] installation.")
573 c.condition("Hide", 'REMOVEOLDVERSION="" and REMOVEOLDSNAPSHOT=""')
Martin v. Löwis8ffe9ab2004-08-22 13:34:34 +0000574 seldlg.text("Description", 135, 50, 220, 40, 0x30003,
575 "Please select a directory for the [ProductName] files.")
576
577 seldlg.back("< Back", None, active=0)
578 c = seldlg.next("Next >", "Cancel")
579 c.event("DoAction", "CheckDir", "TargetExistsOk<>1", order=1)
580 # If the target exists, but we found that we are going to remove old versions, don't bother
581 # confirming that the target directory exists. Strictly speaking, we should determine that
582 # the target directory is indeed the target of the product that we are going to remove, but
583 # I don't know how to do that.
584 c.event("SpawnDialog", "ExistingDirectoryDlg", 'TargetExists=1 and REMOVEOLDVERSION="" and REMOVEOLDSNAPSHOT=""', 2)
585 c.event("SetTargetPath", "TARGETDIR", 'TargetExists=0 or REMOVEOLDVERSION<>"" or REMOVEOLDSNAPSHOT<>""', 3)
586 c.event("SpawnWaitDialog", "WaitForCostingDlg", "CostingComplete=1", 4)
587 c.event("NewDialog", "SelectFeaturesDlg", 'TargetExists=0 or REMOVEOLDVERSION<>"" or REMOVEOLDSNAPSHOT<>""', 5)
588
589 c = seldlg.cancel("Cancel", "DirectoryCombo")
590 c.event("SpawnDialog", "CancelDlg")
591
592 seldlg.control("DirectoryCombo", "DirectoryCombo", 135, 70, 172, 80, 393219,
593 "TARGETDIR", None, "DirectoryList", None)
594 seldlg.control("DirectoryList", "DirectoryList", 135, 90, 208, 136, 3, "TARGETDIR",
595 None, "PathEdit", None)
596 seldlg.control("PathEdit", "PathEdit", 135, 230, 206, 16, 3, "TARGETDIR", None, "Next", None)
597 c = seldlg.pushbutton("Up", 306, 70, 18, 18, 3, "Up", None)
598 c.event("DirectoryListUp", "0")
599 c = seldlg.pushbutton("NewDir", 324, 70, 30, 18, 3, "New", None)
600 c.event("DirectoryListNew", "0")
601
602 #####################################################################
603 # SelectFeaturesDlg
604 features = PyDialog(db, "SelectFeaturesDlg", x, y, w, h, modal|track_disk_space,
605 title, "Tree", "Next", "Cancel")
606 features.title("Customize [ProductName]")
607 features.text("Description", 135, 35, 220, 15, 0x30003,
608 "Select the way you want features to be installed.")
609 features.text("Text", 135,45,220,30, 3,
610 "Click on the icons in the tree below to change the way features will be installed.")
611
612 c=features.back("< Back", "Next")
613 c.event("NewDialog", "SelectDirectoryDlg")
614
615 c=features.next("Next >", "Cancel")
616 c.mapping("SelectionNoItems", "Enabled")
617 c.event("SpawnDialog", "DiskCostDlg", "OutOfDiskSpace=1", order=1)
618 c.event("EndDialog", "Return", "OutOfDiskSpace<>1", order=2)
619
620 c=features.cancel("Cancel", "Tree")
621 c.event("SpawnDialog", "CancelDlg")
622
Tim Peters66cb0182004-08-26 05:23:19 +0000623 # The browse property is not used, since we have only a single target path (selected already)
Martin v. Löwis8ffe9ab2004-08-22 13:34:34 +0000624 features.control("Tree", "SelectionTree", 135, 75, 220, 95, 7, "_BrowseProperty",
625 "Tree of selections", "Back", None)
626
627 #c=features.pushbutton("Reset", 42, 243, 56, 17, 3, "Reset", "DiskCost")
628 #c.mapping("SelectionNoItems", "Enabled")
629 #c.event("Reset", "0")
Tim Peters66cb0182004-08-26 05:23:19 +0000630
Martin v. Löwis8ffe9ab2004-08-22 13:34:34 +0000631 features.control("Box", "GroupBox", 135, 170, 225, 90, 1, None, None, None, None)
632
633 c=features.xbutton("DiskCost", "Disk &Usage", None, 0.10)
634 c.mapping("SelectionNoItems","Enabled")
635 c.event("SpawnDialog", "DiskCostDlg")
636
637 c=features.xbutton("Advanced", "Advanced", None, 0.30)
638 c.event("SpawnDialog", "AdvancedDlg")
639
640 c=features.text("ItemDescription", 140, 180, 210, 30, 3,
641 "Multiline description of the currently selected item.")
642 c.mapping("SelectionDescription","Text")
Tim Peters66cb0182004-08-26 05:23:19 +0000643
Martin v. Löwis8ffe9ab2004-08-22 13:34:34 +0000644 c=features.text("ItemSize", 140, 210, 210, 45, 3,
645 "The size of the currently selected item.")
646 c.mapping("SelectionSize", "Text")
647
648 #####################################################################
649 # Disk cost
650 cost = PyDialog(db, "DiskCostDlg", x, y, w, h, modal, title,
651 "OK", "OK", "OK", bitmap=False)
652 cost.text("Title", 15, 6, 200, 15, 0x30003,
653 "{\DlgFontBold8}Disk Space Requirements")
654 cost.text("Description", 20, 20, 280, 20, 0x30003,
655 "The disk space required for the installation of the selected features.")
656 cost.text("Text", 20, 53, 330, 60, 3,
657 "The highlighted volumes (if any) do not have enough disk space "
658 "available for the currently selected features. You can either "
659 "remove some files from the highlighted volumes, or choose to "
660 "install less features onto local drive(s), or select different "
661 "destination drive(s).")
662 cost.control("VolumeList", "VolumeCostList", 20, 100, 330, 150, 393223,
663 None, "{120}{70}{70}{70}{70}", None, None)
664 cost.xbutton("OK", "Ok", None, 0.5).event("EndDialog", "Return")
665
666 #####################################################################
667 # WhichUsers Dialog. Only available on NT, and for privileged users.
668 # This must be run before FindRelatedProducts, because that will
669 # take into account whether the previous installation was per-user
670 # or per-machine. We currently don't support going back to this
671 # dialog after "Next" was selected; to support this, we would need to
672 # find how to reset the ALLUSERS property, and how to re-run
673 # FindRelatedProducts.
674 # On Windows9x, the ALLUSERS property is ignored on the command line
675 # and in the Property table, but installer fails according to the documentation
676 # if a dialog attempts to set ALLUSERS.
677 whichusers = PyDialog(db, "WhichUsersDlg", x, y, w, h, modal, title,
678 "AdminInstall", "Next", "Cancel")
679 whichusers.title("Select whether to install [ProductName] for all users of this computer.")
680 # A radio group with two options: allusers, justme
681 g = whichusers.radiogroup("AdminInstall", 135, 60, 160, 50, 3,
682 "WhichUsers", "", "Next")
683 g.add("ALL", 0, 5, 150, 20, "Install for all users")
684 g.add("JUSTME", 0, 25, 150, 20, "Install just for me")
685
Tim Peters66cb0182004-08-26 05:23:19 +0000686 whichusers.back("Back", None, active=0)
Martin v. Löwis8ffe9ab2004-08-22 13:34:34 +0000687
688 c = whichusers.next("Next >", "Cancel")
689 c.event("[ALLUSERS]", "1", 'WhichUsers="ALL"', 1)
690 c.event("EndDialog", "Return", order = 2)
691
692 c = whichusers.cancel("Cancel", "AdminInstall")
693 c.event("SpawnDialog", "CancelDlg")
Tim Peters66cb0182004-08-26 05:23:19 +0000694
Martin v. Löwis8ffe9ab2004-08-22 13:34:34 +0000695 #####################################################################
696 # Advanced Dialog.
697 advanced = PyDialog(db, "AdvancedDlg", x, y, w, h, modal, title,
698 "CompilePyc", "Next", "Cancel")
699 advanced.title("Advanced Options for [ProductName]")
700 # A radio group with two options: allusers, justme
701 advanced.checkbox("CompilePyc", 135, 60, 230, 50, 3,
702 "COMPILEALL", "Compile .py files to byte code after installation", "Next")
703
704 c = advanced.next("Finish", "Cancel")
705 c.event("EndDialog", "Return")
706
707 c = advanced.cancel("Cancel", "CompilePyc")
708 c.event("SpawnDialog", "CancelDlg")
Tim Peters66cb0182004-08-26 05:23:19 +0000709
Martin v. Löwis8ffe9ab2004-08-22 13:34:34 +0000710 #####################################################################
Tim Peters66cb0182004-08-26 05:23:19 +0000711 # Existing Directory dialog
Martin v. Löwis8ffe9ab2004-08-22 13:34:34 +0000712 dlg = Dialog(db, "ExistingDirectoryDlg", 50, 30, 200, 80, modal, title,
713 "No", "No", "No")
714 dlg.text("Title", 10, 20, 180, 40, 3,
715 "[TARGETDIR] exists. Are you sure you want to overwrite existing files?")
716 c=dlg.pushbutton("Yes", 30, 60, 55, 17, 3, "Yes", "No")
717 c.event("[TargetExists]", "0", order=1)
718 c.event("[TargetExistsOk]", "1", order=2)
719 c.event("EndDialog", "Return", order=3)
720 c=dlg.pushbutton("No", 115, 60, 55, 17, 3, "No", "Yes")
721 c.event("EndDialog", "Return")
722
723 #####################################################################
724 # Installation Progress dialog (modeless)
725 progress = PyDialog(db, "ProgressDlg", x, y, w, h, modeless, title,
726 "Cancel", "Cancel", "Cancel", bitmap=False)
727 progress.text("Title", 20, 15, 200, 15, 0x30003,
728 "{\DlgFontBold8}[Progress1] [ProductName]")
729 progress.text("Text", 35, 65, 300, 30, 3,
730 "Please wait while the Installer [Progress2] [ProductName]. "
731 "This may take several minutes.")
732 progress.text("StatusLabel", 35, 100, 35, 20, 3, "Status:")
733
734 c=progress.text("ActionText", 70, 100, w-70, 20, 3, "Pondering...")
735 c.mapping("ActionText", "Text")
736
737 #c=progress.text("ActionData", 35, 140, 300, 20, 3, None)
738 #c.mapping("ActionData", "Text")
739
740 c=progress.control("ProgressBar", "ProgressBar", 35, 120, 300, 10, 65537,
741 None, "Progress done", None, None)
742 c.mapping("SetProgress", "Progress")
743
744 progress.back("< Back", "Next", active=False)
745 progress.next("Next >", "Cancel", active=False)
746 progress.cancel("Cancel", "Back").event("SpawnDialog", "CancelDlg")
747
748 # Maintenance type: repair/uninstall
749 maint = PyDialog(db, "MaintenanceTypeDlg", x, y, w, h, modal, title,
750 "Next", "Next", "Cancel")
751 maint.title("Welcome to the [ProductName] Setup Wizard")
752 maint.text("BodyText", 135, 63, 230, 42, 3,
753 "Select whether you want to repair or remove [ProductName].")
754 g=maint.radiogroup("RepairRadioGroup", 135, 108, 230, 60, 3,
755 "MaintenanceForm_Action", "", "Next")
756 g.add("Change", 0, 0, 200, 17, "&Change [ProductName]")
757 g.add("Repair", 0, 18, 200, 17, "&Repair [ProductName]")
758 g.add("Remove", 0, 36, 200, 17, "Re&move [ProductName]")
Tim Peters66cb0182004-08-26 05:23:19 +0000759
Martin v. Löwis8ffe9ab2004-08-22 13:34:34 +0000760 maint.back("< Back", None, active=False)
761 c=maint.next("Finish", "Cancel")
762 # Change installation: Change progress dialog to "Change", then ask
763 # for feature selection
764 c.event("[Progress1]", "Change", 'MaintenanceForm_Action="Change"', 1)
765 c.event("[Progress2]", "changes", 'MaintenanceForm_Action="Change"', 2)
766
767 # Reinstall: Change progress dialog to "Repair", then invoke reinstall
768 # Also set list of reinstalled features to "ALL"
769 c.event("[REINSTALL]", "ALL", 'MaintenanceForm_Action="Repair"', 5)
770 c.event("[Progress1]", "Repairing", 'MaintenanceForm_Action="Repair"', 6)
Raymond Hettinger72f08012004-11-07 07:08:25 +0000771 c.event("[Progress2]", "repairs", 'MaintenanceForm_Action="Repair"', 7)
Martin v. Löwis8ffe9ab2004-08-22 13:34:34 +0000772 c.event("Reinstall", "ALL", 'MaintenanceForm_Action="Repair"', 8)
773
774 # Uninstall: Change progress to "Remove", then invoke uninstall
775 # Also set list of removed features to "ALL"
776 c.event("[REMOVE]", "ALL", 'MaintenanceForm_Action="Remove"', 11)
777 c.event("[Progress1]", "Removing", 'MaintenanceForm_Action="Remove"', 12)
778 c.event("[Progress2]", "removes", 'MaintenanceForm_Action="Remove"', 13)
779 c.event("Remove", "ALL", 'MaintenanceForm_Action="Remove"', 14)
780
Tim Peters66cb0182004-08-26 05:23:19 +0000781 # Close dialog when maintenance action scheduled
Martin v. Löwis8ffe9ab2004-08-22 13:34:34 +0000782 c.event("EndDialog", "Return", 'MaintenanceForm_Action<>"Change"', 20)
783 c.event("NewDialog", "SelectFeaturesDlg", 'MaintenanceForm_Action="Change"', 21)
Tim Peters66cb0182004-08-26 05:23:19 +0000784
Martin v. Löwis8ffe9ab2004-08-22 13:34:34 +0000785 maint.cancel("Cancel", "RepairRadioGroup").event("SpawnDialog", "CancelDlg")
Tim Peters66cb0182004-08-26 05:23:19 +0000786
Martin v. Löwis8ffe9ab2004-08-22 13:34:34 +0000787
788# See "Feature Table". The feature level is 1 for all features,
789# and the feature attributes are 0 for the DefaultFeature, and
790# FollowParent for all other features. The numbers are the Display
791# column.
792def add_features(db):
793 # feature attributes:
794 # msidbFeatureAttributesFollowParent == 2
795 # msidbFeatureAttributesDisallowAdvertise == 8
796 # Features that need to be installed with together with the main feature
797 # (i.e. additional Python libraries) need to follow the parent feature.
798 # Features that have no advertisement trigger (e.g. the test suite)
799 # must not support advertisement
Martin v. Löwise411f892008-04-07 14:54:16 +0000800 global default_feature, tcltk, htmlfiles, tools, testsuite, ext_feature, private_crt
Martin v. Löwis8ffe9ab2004-08-22 13:34:34 +0000801 default_feature = Feature(db, "DefaultFeature", "Python",
802 "Python Interpreter and Libraries",
803 1, directory = "TARGETDIR")
Martin v. Löwis4dc34152008-04-05 15:48:36 +0000804 shared_crt = Feature(db, "SharedCRT", "MSVCRT", "C Run-Time (system-wide)", 0,
805 level=0)
806 private_crt = Feature(db, "PrivateCRT", "MSVCRT", "C Run-Time (private)", 0,
807 level=0)
808 add_data(db, "Condition", [("SharedCRT", 1, sys32cond),
809 ("PrivateCRT", 1, "not "+sys32cond)])
Martin v. Löwisdff68d02004-09-10 09:20:10 +0000810 # We don't support advertisement of extensions
Martin v. Löwis8ffe9ab2004-08-22 13:34:34 +0000811 ext_feature = Feature(db, "Extensions", "Register Extensions",
812 "Make this Python installation the default Python installation", 3,
Martin v. Löwisdff68d02004-09-10 09:20:10 +0000813 parent = default_feature, attributes=2|8)
Martin v. Löwise0f780d2004-09-01 14:51:06 +0000814 if have_tcl:
815 tcltk = Feature(db, "TclTk", "Tcl/Tk", "Tkinter, IDLE, pydoc", 5,
Martin v. Löwis8ffe9ab2004-08-22 13:34:34 +0000816 parent = default_feature, attributes=2)
817 htmlfiles = Feature(db, "Documentation", "Documentation",
818 "Python HTMLHelp File", 7, parent = default_feature)
819 tools = Feature(db, "Tools", "Utility Scripts",
Tim Peters66cb0182004-08-26 05:23:19 +0000820 "Python utility scripts (Tools/", 9,
Martin v. Löwis8ffe9ab2004-08-22 13:34:34 +0000821 parent = default_feature, attributes=2)
822 testsuite = Feature(db, "Testsuite", "Test suite",
823 "Python test suite (Lib/test/)", 11,
824 parent = default_feature, attributes=2|8)
Tim Peters66cb0182004-08-26 05:23:19 +0000825
Christian Heimes9acba042007-12-04 14:57:30 +0000826def extract_msvcr90():
Martin v. Löwis03dc56c2008-02-28 22:20:50 +0000827 # Find the redistributable files
828 dir = os.path.join(os.environ['VS90COMNTOOLS'], r"..\..\VC\redist\x86\Microsoft.VC90.CRT")
Christian Heimes9acba042007-12-04 14:57:30 +0000829
Martin v. Löwisd9759c42008-02-28 19:57:34 +0000830 result = []
Christian Heimes9acba042007-12-04 14:57:30 +0000831 installer = msilib.MakeInstaller()
Martin v. Löwisd9759c42008-02-28 19:57:34 +0000832 # omit msvcm90 and msvcp90, as they aren't really needed
833 files = ["Microsoft.VC90.CRT.manifest", "msvcr90.dll"]
834 for f in files:
835 path = os.path.join(dir, f)
836 kw = {'src':path}
837 if f.endswith('.dll'):
838 kw['version'] = installer.FileVersion(path, 0)
839 kw['language'] = installer.FileVersion(path, 1)
840 result.append((f, kw))
841 return result
Christian Heimes9acba042007-12-04 14:57:30 +0000842
Martin v. Löwisdcc86202008-05-25 11:56:23 +0000843def generate_license():
844 import shutil, glob
845 out = open("LICENSE.txt", "w")
846 shutil.copyfileobj(open(os.path.join(srcdir, "LICENSE")), out)
847 for dir, file in (("bzip2","LICENSE"),
848 ("db", "LICENSE"),
849 ("openssl", "LICENSE"),
850 ("tcl", "license.terms"),
851 ("tk", "license.terms")):
852 out.write("\nThis copy of Python includes a copy of %s, which is licensed under the following terms:\n\n" % dir)
853 dirs = glob.glob(srcdir+"/../"+dir+"-*")
854 if not dirs:
855 raise ValueError, "Could not find "+srcdir+"/../"+dir+"-*"
856 if len(dirs) > 2:
857 raise ValueError, "Multiple copies of "+dir
858 dir = dirs[0]
859 shutil.copyfileobj(open(os.path.join(dir, file)), out)
860 out.close()
861
862
Martin v. Löwis8ffe9ab2004-08-22 13:34:34 +0000863class PyDirectory(Directory):
864 """By default, all components in the Python installer
865 can run from source."""
866 def __init__(self, *args, **kw):
867 if not kw.has_key("componentflags"):
868 kw['componentflags'] = 2 #msidbComponentAttributesOptional
869 Directory.__init__(self, *args, **kw)
870
871# See "File Table", "Component Table", "Directory Table",
872# "FeatureComponents Table"
873def add_files(db):
874 cab = CAB("python")
875 tmpfiles = []
876 # Add all executables, icons, text files into the TARGETDIR component
877 root = PyDirectory(db, cab, None, srcdir, "TARGETDIR", "SourceDir")
878 default_feature.set_current()
Martin v. Löwise0f780d2004-09-01 14:51:06 +0000879 if not msilib.Win64:
Christian Heimes9acba042007-12-04 14:57:30 +0000880 root.add_file("%s/w9xpopen.exe" % PCBUILD)
Martin v. Löwis8ffe9ab2004-08-22 13:34:34 +0000881 root.add_file("README.txt", src="README")
882 root.add_file("NEWS.txt", src="Misc/NEWS")
Martin v. Löwisdcc86202008-05-25 11:56:23 +0000883 generate_license()
884 root.add_file("LICENSE.txt", src=os.path.abspath("LICENSE.txt"))
Martin v. Löwis8ffe9ab2004-08-22 13:34:34 +0000885 root.start_component("python.exe", keyfile="python.exe")
Christian Heimes9acba042007-12-04 14:57:30 +0000886 root.add_file("%s/python.exe" % PCBUILD)
Martin v. Löwis8ffe9ab2004-08-22 13:34:34 +0000887 root.start_component("pythonw.exe", keyfile="pythonw.exe")
Christian Heimes9acba042007-12-04 14:57:30 +0000888 root.add_file("%s/pythonw.exe" % PCBUILD)
Martin v. Löwis8ffe9ab2004-08-22 13:34:34 +0000889
890 # msidbComponentAttributesSharedDllRefCount = 8, see "Component Table"
Martin v. Löwisd9759c42008-02-28 19:57:34 +0000891 #dlldir = PyDirectory(db, cab, root, srcdir, "DLLDIR", ".")
892 #install python30.dll into root dir for now
893 dlldir = root
894
Martin v. Löwis8ffe9ab2004-08-22 13:34:34 +0000895 pydll = "python%s%s.dll" % (major, minor)
Christian Heimes9acba042007-12-04 14:57:30 +0000896 pydllsrc = os.path.join(srcdir, PCBUILD, pydll)
Martin v. Löwis141f41a2005-03-15 00:39:40 +0000897 dlldir.start_component("DLLDIR", flags = 8, keyfile = pydll, uuid = pythondll_uuid)
Martin v. Löwis8ffe9ab2004-08-22 13:34:34 +0000898 installer = msilib.MakeInstaller()
899 pyversion = installer.FileVersion(pydllsrc, 0)
900 if not snapshot:
901 # For releases, the Python DLL has the same version as the
902 # installer package.
903 assert pyversion.split(".")[:3] == current_version.split(".")
Christian Heimes9acba042007-12-04 14:57:30 +0000904 dlldir.add_file("%s/python%s%s.dll" % (PCBUILD, major, minor),
Martin v. Löwis8ffe9ab2004-08-22 13:34:34 +0000905 version=pyversion,
906 language=installer.FileVersion(pydllsrc, 1))
Martin v. Löwisd9759c42008-02-28 19:57:34 +0000907 DLLs = PyDirectory(db, cab, root, srcdir + "/" + PCBUILD, "DLLs", "DLLS|DLLs")
Martin v. Löwis1e72fec2008-04-07 16:34:04 +0000908
909 # msvcr90.dll: Need to place the DLL and the manifest into the root directory,
910 # plus another copy of the manifest in the DLLs directory, with the manifest
911 # pointing to the root directory
Martin v. Löwis46a8be72008-04-07 14:55:53 +0000912 root.start_component("msvcr90", feature=private_crt)
Martin v. Löwis1e72fec2008-04-07 16:34:04 +0000913 # Results are ID,keyword pairs
914 manifest, crtdll = extract_msvcr90()
915 root.add_file(manifest[0], **manifest[1])
916 root.add_file(crtdll[0], **crtdll[1])
917 # Copy the manifest
918 manifest_dlls = manifest[0]+".root"
919 open(manifest_dlls, "w").write(open(manifest[1]['src']).read().replace("msvcr","../msvcr"))
920 DLLs.start_component("msvcr90_dlls", feature=private_crt)
921 DLLs.add_file(manifest[0], src=os.path.abspath(manifest_dlls))
922
923 # Now start the main component for the DLLs directory;
924 # no regular files have been added to the directory yet.
925 DLLs.start_component()
Tim Peters66cb0182004-08-26 05:23:19 +0000926
Martin v. Löwis38325b72006-08-25 00:03:34 +0000927 # Check if _ctypes.pyd exists
Christian Heimes9acba042007-12-04 14:57:30 +0000928 have_ctypes = os.path.exists(srcdir+"/%s/_ctypes.pyd" % PCBUILD)
Martin v. Löwis38325b72006-08-25 00:03:34 +0000929 if not have_ctypes:
930 print "WARNING: _ctypes.pyd not found, ctypes will not be included"
931 extensions.remove("_ctypes.pyd")
Tim Peters147f9ae2006-08-25 22:05:39 +0000932
Martin v. Löwis8ffe9ab2004-08-22 13:34:34 +0000933 # Add all .py files in Lib, except lib-tk, test
934 dirs={}
935 pydirs = [(root,"Lib")]
936 while pydirs:
937 parent, dir = pydirs.pop()
Martin v. Löwis9ca9f562006-01-03 06:29:53 +0000938 if dir == ".svn" or dir.startswith("plat-"):
Martin v. Löwis8ffe9ab2004-08-22 13:34:34 +0000939 continue
Georg Brandl6634bf22008-05-20 07:13:37 +0000940 elif dir in ["lib-tk", "idlelib", "Icons"]:
Martin v. Löwise0f780d2004-09-01 14:51:06 +0000941 if not have_tcl:
942 continue
Martin v. Löwis8ffe9ab2004-08-22 13:34:34 +0000943 tcltk.set_current()
Martin v. Löwis5c9e55e2004-12-30 14:08:18 +0000944 elif dir in ['test', 'tests', 'data', 'output']:
Martin v. Löwis59c3acc2006-04-03 12:07:46 +0000945 # test: Lib, Lib/email, Lib/bsddb, Lib/ctypes, Lib/sqlite3
Martin v. Löwis5c9e55e2004-12-30 14:08:18 +0000946 # tests: Lib/distutils
947 # data: Lib/email/test
948 # output: Lib/test
Martin v. Löwis8ffe9ab2004-08-22 13:34:34 +0000949 testsuite.set_current()
Martin v. Löwis38325b72006-08-25 00:03:34 +0000950 elif not have_ctypes and dir == "ctypes":
951 continue
Martin v. Löwis8ffe9ab2004-08-22 13:34:34 +0000952 else:
953 default_feature.set_current()
954 lib = PyDirectory(db, cab, parent, dir, dir, "%s|%s" % (parent.make_short(dir), dir))
955 # Add additional files
956 dirs[dir]=lib
957 lib.glob("*.txt")
958 if dir=='site-packages':
Martin v. Löwis6d60c092004-11-21 10:16:26 +0000959 lib.add_file("README.txt", src="README")
Martin v. Löwis8ffe9ab2004-08-22 13:34:34 +0000960 continue
961 files = lib.glob("*.py")
962 files += lib.glob("*.pyw")
963 if files:
964 # Add an entry to the RemoveFile table to remove bytecode files.
965 lib.remove_pyc()
Martin v. Löwis64ed0432006-04-21 10:00:46 +0000966 if dir.endswith('.egg-info'):
967 lib.add_file('entry_points.txt')
968 lib.add_file('PKG-INFO')
969 lib.add_file('top_level.txt')
970 lib.add_file('zip-safe')
971 continue
Martin v. Löwis8ffe9ab2004-08-22 13:34:34 +0000972 if dir=='test' and parent.physical=='Lib':
973 lib.add_file("185test.db")
974 lib.add_file("audiotest.au")
975 lib.add_file("cfgparser.1")
Martin v. Löwisc0fdb182006-09-12 19:49:20 +0000976 lib.add_file("sgml_input.html")
Martin v. Löwis8ffe9ab2004-08-22 13:34:34 +0000977 lib.add_file("test.xml")
978 lib.add_file("test.xml.out")
979 lib.add_file("testtar.tar")
Martin v. Löwis7d3755d2004-09-06 06:31:12 +0000980 lib.add_file("test_difflib_expect.html")
Martin v. Löwis59c3acc2006-04-03 12:07:46 +0000981 lib.add_file("check_soundcard.vbs")
Thomas Heller3bd33152006-04-04 18:41:13 +0000982 lib.add_file("empty.vbs")
Martin v. Löwis8ffe9ab2004-08-22 13:34:34 +0000983 lib.glob("*.uue")
Martin v. Löwis0ffdacd2007-11-20 02:46:02 +0000984 lib.glob("*.pem")
Martin v. Löwis6b449f42007-12-03 19:20:02 +0000985 lib.glob("*.pck")
Martin v. Löwis8ffe9ab2004-08-22 13:34:34 +0000986 lib.add_file("readme.txt", src="README")
987 if dir=='decimaltestdata':
988 lib.glob("*.decTest")
989 if dir=='output':
990 lib.glob("test_*")
991 if dir=='idlelib':
992 lib.glob("*.def")
993 lib.add_file("idle.bat")
994 if dir=="Icons":
995 lib.glob("*.gif")
996 lib.add_file("idle.icns")
Martin v. Löwis64ed0432006-04-21 10:00:46 +0000997 if dir=="command" and parent.physical=="distutils":
Martin v. Löwis023b9f92008-04-09 18:56:20 +0000998 lib.glob("wininst*.exe")
Martin v. Löwis64ed0432006-04-21 10:00:46 +0000999 if dir=="setuptools":
1000 lib.add_file("cli.exe")
1001 lib.add_file("gui.exe")
Martin v. Löwis8ffe9ab2004-08-22 13:34:34 +00001002 if dir=="data" and parent.physical=="test" and parent.basedir.physical=="email":
Martin v. Löwis9ca9f562006-01-03 06:29:53 +00001003 # This should contain all non-.svn files listed in subversion
Martin v. Löwis8ffe9ab2004-08-22 13:34:34 +00001004 for f in os.listdir(lib.absolute):
Martin v. Löwis9ca9f562006-01-03 06:29:53 +00001005 if f.endswith(".txt") or f==".svn":continue
Martin v. Löwis8ffe9ab2004-08-22 13:34:34 +00001006 if f.endswith(".au") or f.endswith(".gif"):
1007 lib.add_file(f)
1008 else:
1009 print "WARNING: New file %s in email/test/data" % f
1010 for f in os.listdir(lib.absolute):
1011 if os.path.isdir(os.path.join(lib.absolute, f)):
1012 pydirs.append((lib, f))
1013 # Add DLLs
1014 default_feature.set_current()
Martin v. Löwisd9759c42008-02-28 19:57:34 +00001015 lib = DLLs
Christian Heimes7e28e492008-01-01 13:52:57 +00001016 lib.add_file("py.ico", src=srcdir+"/PC/py.ico")
Christian Heimese1c6af02008-01-01 13:58:16 +00001017 lib.add_file("pyc.ico", src=srcdir+"/PC/pyc.ico")
Martin v. Löwis8ffe9ab2004-08-22 13:34:34 +00001018 dlls = []
1019 tclfiles = []
1020 for f in extensions:
1021 if f=="_tkinter.pyd":
1022 continue
Christian Heimes9acba042007-12-04 14:57:30 +00001023 if not os.path.exists(srcdir + "/" + PCBUILD + "/" + f):
Martin v. Löwis8ffe9ab2004-08-22 13:34:34 +00001024 print "WARNING: Missing extension", f
1025 continue
1026 dlls.append(f)
1027 lib.add_file(f)
Martin v. Löwis88ef6372006-07-06 06:55:58 +00001028 # Add sqlite
1029 if msilib.msi_type=="Intel64;1033":
1030 sqlite_arch = "/ia64"
1031 elif msilib.msi_type=="x64;1033":
1032 sqlite_arch = "/amd64"
Martin v. Löwis0e795e72008-02-29 20:54:44 +00001033 tclsuffix = "64"
Martin v. Löwis88ef6372006-07-06 06:55:58 +00001034 else:
1035 sqlite_arch = ""
Martin v. Löwis0e795e72008-02-29 20:54:44 +00001036 tclsuffix = ""
Martin v. Löwis88ef6372006-07-06 06:55:58 +00001037 lib.add_file(srcdir+"/"+sqlite_dir+sqlite_arch+"/sqlite3.dll")
Martin v. Löwise0f780d2004-09-01 14:51:06 +00001038 if have_tcl:
Christian Heimes9acba042007-12-04 14:57:30 +00001039 if not os.path.exists("%s/%s/_tkinter.pyd" % (srcdir, PCBUILD)):
Martin v. Löwise0f780d2004-09-01 14:51:06 +00001040 print "WARNING: Missing _tkinter.pyd"
1041 else:
1042 lib.start_component("TkDLLs", tcltk)
1043 lib.add_file("_tkinter.pyd")
1044 dlls.append("_tkinter.pyd")
Martin v. Löwis0e795e72008-02-29 20:54:44 +00001045 tcldir = os.path.normpath(srcdir+("/../tcltk%s/bin" % tclsuffix))
Martin v. Löwise0f780d2004-09-01 14:51:06 +00001046 for f in glob.glob1(tcldir, "*.dll"):
1047 lib.add_file(f, src=os.path.join(tcldir, f))
Martin v. Löwis8ffe9ab2004-08-22 13:34:34 +00001048 # check whether there are any unknown extensions
Christian Heimes9acba042007-12-04 14:57:30 +00001049 for f in glob.glob1(srcdir+"/"+PCBUILD, "*.pyd"):
Martin v. Löwis8ffe9ab2004-08-22 13:34:34 +00001050 if f.endswith("_d.pyd"): continue # debug version
1051 if f in dlls: continue
1052 print "WARNING: Unknown extension", f
Tim Peters66cb0182004-08-26 05:23:19 +00001053
Martin v. Löwis8ffe9ab2004-08-22 13:34:34 +00001054 # Add headers
1055 default_feature.set_current()
1056 lib = PyDirectory(db, cab, root, "include", "include", "INCLUDE|include")
1057 lib.glob("*.h")
1058 lib.add_file("pyconfig.h", src="../PC/pyconfig.h")
1059 # Add import libraries
Christian Heimes9acba042007-12-04 14:57:30 +00001060 lib = PyDirectory(db, cab, root, PCBUILD, "libs", "LIBS|libs")
Martin v. Löwis8ffe9ab2004-08-22 13:34:34 +00001061 for f in dlls:
1062 lib.add_file(f.replace('pyd','lib'))
1063 lib.add_file('python%s%s.lib' % (major, minor))
Martin v. Löwis9fda9312004-12-22 13:41:49 +00001064 # Add the mingw-format library
1065 if have_mingw:
Tim Peters5a9fb3c2005-01-07 16:01:32 +00001066 lib.add_file('libpython%s%s.a' % (major, minor))
Martin v. Löwise0f780d2004-09-01 14:51:06 +00001067 if have_tcl:
1068 # Add Tcl/Tk
Martin v. Löwis0e795e72008-02-29 20:54:44 +00001069 tcldirs = [(root, '../tcltk%s/lib' % tclsuffix, 'tcl')]
Martin v. Löwise0f780d2004-09-01 14:51:06 +00001070 tcltk.set_current()
1071 while tcldirs:
1072 parent, phys, dir = tcldirs.pop()
1073 lib = PyDirectory(db, cab, parent, phys, dir, "%s|%s" % (parent.make_short(dir), dir))
1074 if not os.path.exists(lib.absolute):
1075 continue
1076 for f in os.listdir(lib.absolute):
1077 if os.path.isdir(os.path.join(lib.absolute, f)):
1078 tcldirs.append((lib, f, f))
1079 else:
1080 lib.add_file(f)
Martin v. Löwis8ffe9ab2004-08-22 13:34:34 +00001081 # Add tools
1082 tools.set_current()
1083 tooldir = PyDirectory(db, cab, root, "Tools", "Tools", "TOOLS|Tools")
1084 for f in ['i18n', 'pynche', 'Scripts', 'versioncheck', 'webchecker']:
1085 lib = PyDirectory(db, cab, tooldir, f, f, "%s|%s" % (tooldir.make_short(f), f))
1086 lib.glob("*.py")
1087 lib.glob("*.pyw", exclude=['pydocgui.pyw'])
1088 lib.remove_pyc()
1089 lib.glob("*.txt")
1090 if f == "pynche":
1091 x = PyDirectory(db, cab, lib, "X", "X", "X|X")
1092 x.glob("*.txt")
Martin v. Löwis4d930be2004-12-01 21:46:35 +00001093 if os.path.exists(os.path.join(lib.absolute, "README")):
Martin v. Löwis8ffe9ab2004-08-22 13:34:34 +00001094 lib.add_file("README.txt", src="README")
Martin v. Löwis4d930be2004-12-01 21:46:35 +00001095 if f == 'Scripts':
Martin v. Löwise0f780d2004-09-01 14:51:06 +00001096 if have_tcl:
1097 lib.start_component("pydocgui.pyw", tcltk, keyfile="pydocgui.pyw")
1098 lib.add_file("pydocgui.pyw")
Martin v. Löwis8ffe9ab2004-08-22 13:34:34 +00001099 # Add documentation
1100 htmlfiles.set_current()
1101 lib = PyDirectory(db, cab, root, "Doc", "Doc", "DOC|Doc")
Martin v. Löwis344d0662008-05-09 18:21:55 +00001102 lib.start_component("documentation", keyfile=docfile)
1103 lib.add_file(docfile, src="build/htmlhelp/"+docfile)
Martin v. Löwis8ffe9ab2004-08-22 13:34:34 +00001104
1105 cab.commit(db)
1106
1107 for f in tmpfiles:
1108 os.unlink(f)
1109
1110# See "Registry Table", "Component Table"
1111def add_registry(db):
1112 # File extensions, associated with the REGISTRY.def component
1113 # IDLE verbs depend on the tcltk feature.
1114 # msidbComponentAttributesRegistryKeyPath = 4
1115 # -1 for Root specifies "dependent on ALLUSERS property"
Martin v. Löwise0f780d2004-09-01 14:51:06 +00001116 tcldata = []
1117 if have_tcl:
1118 tcldata = [
Martin v. Löwis1ab4a1f2007-08-31 10:01:07 +00001119 ("REGISTRY.tcl", msilib.gen_uuid(), "TARGETDIR", registry_component, None,
Martin v. Löwisdff68d02004-09-10 09:20:10 +00001120 "py.IDLE")]
Martin v. Löwis8ffe9ab2004-08-22 13:34:34 +00001121 add_data(db, "Component",
1122 # msidbComponentAttributesRegistryKeyPath = 4
Martin v. Löwis1ab4a1f2007-08-31 10:01:07 +00001123 [("REGISTRY", msilib.gen_uuid(), "TARGETDIR", registry_component, None,
Martin v. Löwis8ffe9ab2004-08-22 13:34:34 +00001124 "InstallPath"),
Martin v. Löwis1ab4a1f2007-08-31 10:01:07 +00001125 ("REGISTRY.doc", msilib.gen_uuid(), "TARGETDIR", registry_component, None,
Martin v. Löwis141f41a2005-03-15 00:39:40 +00001126 "Documentation"),
Martin v. Löwis1ab4a1f2007-08-31 10:01:07 +00001127 ("REGISTRY.def", msilib.gen_uuid(), "TARGETDIR", registry_component,
Martin v. Löwise0f780d2004-09-01 14:51:06 +00001128 None, None)] + tcldata)
Martin v. Löwis8ffe9ab2004-08-22 13:34:34 +00001129 # See "FeatureComponents Table".
1130 # The association between TclTk and pythonw.exe is necessary to make ICE59
1131 # happy, because the installer otherwise believes that the IDLE and PyDoc
1132 # shortcuts might get installed without pythonw.exe being install. This
1133 # is not true, since installing TclTk will install the default feature, which
1134 # will cause pythonw.exe to be installed.
Martin v. Löwisdff68d02004-09-10 09:20:10 +00001135 # REGISTRY.tcl is not associated with any feature, as it will be requested
1136 # through a custom action
Martin v. Löwise0f780d2004-09-01 14:51:06 +00001137 tcldata = []
1138 if have_tcl:
Martin v. Löwisdff68d02004-09-10 09:20:10 +00001139 tcldata = [(tcltk.id, "pythonw.exe")]
Martin v. Löwis8ffe9ab2004-08-22 13:34:34 +00001140 add_data(db, "FeatureComponents",
1141 [(default_feature.id, "REGISTRY"),
Martin v. Löwis141f41a2005-03-15 00:39:40 +00001142 (htmlfiles.id, "REGISTRY.doc"),
Martin v. Löwise0f780d2004-09-01 14:51:06 +00001143 (ext_feature.id, "REGISTRY.def")] +
1144 tcldata
1145 )
Martin v. Löwisdff68d02004-09-10 09:20:10 +00001146 # Extensions are not advertised. For advertised extensions,
1147 # we would need separate binaries that install along with the
1148 # extension.
Martin v. Löwis8ffe9ab2004-08-22 13:34:34 +00001149 pat = r"Software\Classes\%sPython.%sFile\shell\%s\command"
1150 ewi = "Edit with IDLE"
1151 pat2 = r"Software\Classes\%sPython.%sFile\DefaultIcon"
1152 pat3 = r"Software\Classes\%sPython.%sFile"
Martin v. Löwiseac02e62004-11-18 08:00:33 +00001153 tcl_verbs = []
1154 if have_tcl:
1155 tcl_verbs=[
1156 ("py.IDLE", -1, pat % (testprefix, "", ewi), "",
1157 r'"[TARGETDIR]pythonw.exe" "[TARGETDIR]Lib\idlelib\idle.pyw" -n -e "%1"',
1158 "REGISTRY.tcl"),
1159 ("pyw.IDLE", -1, pat % (testprefix, "NoCon", ewi), "",
1160 r'"[TARGETDIR]pythonw.exe" "[TARGETDIR]Lib\idlelib\idle.pyw" -n -e "%1"',
1161 "REGISTRY.tcl"),
1162 ]
Martin v. Löwisdff68d02004-09-10 09:20:10 +00001163 add_data(db, "Registry",
1164 [# Extensions
1165 ("py.ext", -1, r"Software\Classes\."+ext, "",
1166 "Python.File", "REGISTRY.def"),
1167 ("pyw.ext", -1, r"Software\Classes\."+ext+'w', "",
1168 "Python.NoConFile", "REGISTRY.def"),
1169 ("pyc.ext", -1, r"Software\Classes\."+ext+'c', "",
1170 "Python.CompiledFile", "REGISTRY.def"),
1171 ("pyo.ext", -1, r"Software\Classes\."+ext+'o', "",
1172 "Python.CompiledFile", "REGISTRY.def"),
1173 # MIME types
1174 ("py.mime", -1, r"Software\Classes\."+ext, "Content Type",
1175 "text/plain", "REGISTRY.def"),
1176 ("pyw.mime", -1, r"Software\Classes\."+ext+'w', "Content Type",
1177 "text/plain", "REGISTRY.def"),
1178 #Verbs
1179 ("py.open", -1, pat % (testprefix, "", "open"), "",
1180 r'"[TARGETDIR]python.exe" "%1" %*', "REGISTRY.def"),
1181 ("pyw.open", -1, pat % (testprefix, "NoCon", "open"), "",
1182 r'"[TARGETDIR]pythonw.exe" "%1" %*', "REGISTRY.def"),
1183 ("pyc.open", -1, pat % (testprefix, "Compiled", "open"), "",
1184 r'"[TARGETDIR]python.exe" "%1" %*', "REGISTRY.def"),
Martin v. Löwiseac02e62004-11-18 08:00:33 +00001185 ] + tcl_verbs + [
Martin v. Löwisdff68d02004-09-10 09:20:10 +00001186 #Icons
1187 ("py.icon", -1, pat2 % (testprefix, ""), "",
Martin v. Löwis1319bb12006-05-12 13:57:36 +00001188 r'[DLLs]py.ico', "REGISTRY.def"),
Martin v. Löwisdff68d02004-09-10 09:20:10 +00001189 ("pyw.icon", -1, pat2 % (testprefix, "NoCon"), "",
Martin v. Löwis1319bb12006-05-12 13:57:36 +00001190 r'[DLLs]py.ico', "REGISTRY.def"),
Martin v. Löwisdff68d02004-09-10 09:20:10 +00001191 ("pyc.icon", -1, pat2 % (testprefix, "Compiled"), "",
Martin v. Löwis1319bb12006-05-12 13:57:36 +00001192 r'[DLLs]pyc.ico', "REGISTRY.def"),
Martin v. Löwisdff68d02004-09-10 09:20:10 +00001193 # Descriptions
1194 ("py.txt", -1, pat3 % (testprefix, ""), "",
1195 "Python File", "REGISTRY.def"),
1196 ("pyw.txt", -1, pat3 % (testprefix, "NoCon"), "",
1197 "Python File (no console)", "REGISTRY.def"),
1198 ("pyc.txt", -1, pat3 % (testprefix, "Compiled"), "",
1199 "Compiled Python File", "REGISTRY.def"),
Martin v. Löwis8ffe9ab2004-08-22 13:34:34 +00001200 ])
Tim Peters66cb0182004-08-26 05:23:19 +00001201
Martin v. Löwis8ffe9ab2004-08-22 13:34:34 +00001202 # Registry keys
1203 prefix = r"Software\%sPython\PythonCore\%s" % (testprefix, short_version)
1204 add_data(db, "Registry",
1205 [("InstallPath", -1, prefix+r"\InstallPath", "", "[TARGETDIR]", "REGISTRY"),
1206 ("InstallGroup", -1, prefix+r"\InstallPath\InstallGroup", "",
1207 "Python %s" % short_version, "REGISTRY"),
1208 ("PythonPath", -1, prefix+r"\PythonPath", "",
Martin v. Löwisf13337d2004-09-19 18:36:45 +00001209 r"[TARGETDIR]Lib;[TARGETDIR]DLLs;[TARGETDIR]Lib\lib-tk", "REGISTRY"),
Martin v. Löwis8ffe9ab2004-08-22 13:34:34 +00001210 ("Documentation", -1, prefix+r"\Help\Main Python Documentation", "",
Martin v. Löwis344d0662008-05-09 18:21:55 +00001211 "[TARGETDIR]Doc\\"+docfile , "REGISTRY.doc"),
Martin v. Löwis8ffe9ab2004-08-22 13:34:34 +00001212 ("Modules", -1, prefix+r"\Modules", "+", None, "REGISTRY"),
1213 ("AppPaths", -1, r"Software\Microsoft\Windows\CurrentVersion\App Paths\Python.exe",
1214 "", r"[TARGETDIR]Python.exe", "REGISTRY.def")
1215 ])
1216 # Shortcuts, see "Shortcut Table"
1217 add_data(db, "Directory",
1218 [("ProgramMenuFolder", "TARGETDIR", "."),
1219 ("MenuDir", "ProgramMenuFolder", "PY%s%s|%sPython %s.%s" % (major,minor,testprefix,major,minor))])
1220 add_data(db, "RemoveFile",
1221 [("MenuDir", "TARGETDIR", None, "MenuDir", 2)])
Martin v. Löwise0f780d2004-09-01 14:51:06 +00001222 tcltkshortcuts = []
1223 if have_tcl:
1224 tcltkshortcuts = [
Martin v. Löwis8ffe9ab2004-08-22 13:34:34 +00001225 ("IDLE", "MenuDir", "IDLE|IDLE (Python GUI)", "pythonw.exe",
Martin v. Löwisac191da2004-12-22 12:55:44 +00001226 tcltk.id, r'"[TARGETDIR]Lib\idlelib\idle.pyw"', None, None, "python_icon.exe", 0, None, "TARGETDIR"),
Martin v. Löwis8ffe9ab2004-08-22 13:34:34 +00001227 ("PyDoc", "MenuDir", "MODDOCS|Module Docs", "pythonw.exe",
Martin v. Löwisac191da2004-12-22 12:55:44 +00001228 tcltk.id, r'"[TARGETDIR]Tools\scripts\pydocgui.pyw"', None, None, "python_icon.exe", 0, None, "TARGETDIR"),
Martin v. Löwise0f780d2004-09-01 14:51:06 +00001229 ]
1230 add_data(db, "Shortcut",
1231 tcltkshortcuts +
1232 [# Advertised shortcuts: targets are features, not files
Martin v. Löwis8ffe9ab2004-08-22 13:34:34 +00001233 ("Python", "MenuDir", "PYTHON|Python (command line)", "python.exe",
1234 default_feature.id, None, None, None, "python_icon.exe", 2, None, "TARGETDIR"),
Martin v. Löwis141f41a2005-03-15 00:39:40 +00001235 # Advertising the Manual breaks on (some?) Win98, and the shortcut lacks an
1236 # icon first.
1237 #("Manual", "MenuDir", "MANUAL|Python Manuals", "documentation",
1238 # htmlfiles.id, None, None, None, None, None, None, None),
Martin v. Löwis8ffe9ab2004-08-22 13:34:34 +00001239 ## Non-advertised shortcuts: must be associated with a registry component
Martin v. Löwis141f41a2005-03-15 00:39:40 +00001240 ("Manual", "MenuDir", "MANUAL|Python Manuals", "REGISTRY.doc",
Martin v. Löwis344d0662008-05-09 18:21:55 +00001241 "[#%s]" % docfile, None,
Martin v. Löwis141f41a2005-03-15 00:39:40 +00001242 None, None, None, None, None, None),
Martin v. Löwis8ffe9ab2004-08-22 13:34:34 +00001243 ("Uninstall", "MenuDir", "UNINST|Uninstall Python", "REGISTRY",
1244 SystemFolderName+"msiexec", "/x%s" % product_code,
1245 None, None, None, None, None, None),
1246 ])
1247 db.Commit()
1248
1249db = build_database()
1250try:
1251 add_features(db)
1252 add_ui(db)
1253 add_files(db)
1254 add_registry(db)
1255 remove_old_versions(db)
1256 db.Commit()
1257finally:
1258 del db