add hg and python
This commit is contained in:
parent
3a742c699f
commit
458120dd40
3709 changed files with 1244309 additions and 1 deletions
463
sys/lib/python/msilib/__init__.py
Normal file
463
sys/lib/python/msilib/__init__.py
Normal file
|
@ -0,0 +1,463 @@
|
|||
# -*- coding: iso-8859-1 -*-
|
||||
# Copyright (C) 2005 Martin v. Löwis
|
||||
# Licensed to PSF under a Contributor Agreement.
|
||||
from _msi import *
|
||||
import sets, os, string, re
|
||||
|
||||
Win64=0
|
||||
|
||||
# Partially taken from Wine
|
||||
datasizemask= 0x00ff
|
||||
type_valid= 0x0100
|
||||
type_localizable= 0x0200
|
||||
|
||||
typemask= 0x0c00
|
||||
type_long= 0x0000
|
||||
type_short= 0x0400
|
||||
type_string= 0x0c00
|
||||
type_binary= 0x0800
|
||||
|
||||
type_nullable= 0x1000
|
||||
type_key= 0x2000
|
||||
# XXX temporary, localizable?
|
||||
knownbits = datasizemask | type_valid | type_localizable | \
|
||||
typemask | type_nullable | type_key
|
||||
|
||||
class Table:
|
||||
def __init__(self, name):
|
||||
self.name = name
|
||||
self.fields = []
|
||||
|
||||
def add_field(self, index, name, type):
|
||||
self.fields.append((index,name,type))
|
||||
|
||||
def sql(self):
|
||||
fields = []
|
||||
keys = []
|
||||
self.fields.sort()
|
||||
fields = [None]*len(self.fields)
|
||||
for index, name, type in self.fields:
|
||||
index -= 1
|
||||
unk = type & ~knownbits
|
||||
if unk:
|
||||
print "%s.%s unknown bits %x" % (self.name, name, unk)
|
||||
size = type & datasizemask
|
||||
dtype = type & typemask
|
||||
if dtype == type_string:
|
||||
if size:
|
||||
tname="CHAR(%d)" % size
|
||||
else:
|
||||
tname="CHAR"
|
||||
elif dtype == type_short:
|
||||
assert size==2
|
||||
tname = "SHORT"
|
||||
elif dtype == type_long:
|
||||
assert size==4
|
||||
tname="LONG"
|
||||
elif dtype == type_binary:
|
||||
assert size==0
|
||||
tname="OBJECT"
|
||||
else:
|
||||
tname="unknown"
|
||||
print "%s.%sunknown integer type %d" % (self.name, name, size)
|
||||
if type & type_nullable:
|
||||
flags = ""
|
||||
else:
|
||||
flags = " NOT NULL"
|
||||
if type & type_localizable:
|
||||
flags += " LOCALIZABLE"
|
||||
fields[index] = "`%s` %s%s" % (name, tname, flags)
|
||||
if type & type_key:
|
||||
keys.append("`%s`" % name)
|
||||
fields = ", ".join(fields)
|
||||
keys = ", ".join(keys)
|
||||
return "CREATE TABLE %s (%s PRIMARY KEY %s)" % (self.name, fields, keys)
|
||||
|
||||
def create(self, db):
|
||||
v = db.OpenView(self.sql())
|
||||
v.Execute(None)
|
||||
v.Close()
|
||||
|
||||
class _Unspecified:pass
|
||||
def change_sequence(seq, action, seqno=_Unspecified, cond = _Unspecified):
|
||||
"Change the sequence number of an action in a sequence list"
|
||||
for i in range(len(seq)):
|
||||
if seq[i][0] == action:
|
||||
if cond is _Unspecified:
|
||||
cond = seq[i][1]
|
||||
if seqno is _Unspecified:
|
||||
seqno = seq[i][2]
|
||||
seq[i] = (action, cond, seqno)
|
||||
return
|
||||
raise ValueError, "Action not found in sequence"
|
||||
|
||||
def add_data(db, table, values):
|
||||
v = db.OpenView("SELECT * FROM `%s`" % table)
|
||||
count = v.GetColumnInfo(MSICOLINFO_NAMES).GetFieldCount()
|
||||
r = CreateRecord(count)
|
||||
for value in values:
|
||||
assert len(value) == count, value
|
||||
for i in range(count):
|
||||
field = value[i]
|
||||
if isinstance(field, (int, long)):
|
||||
r.SetInteger(i+1,field)
|
||||
elif isinstance(field, basestring):
|
||||
r.SetString(i+1,field)
|
||||
elif field is None:
|
||||
pass
|
||||
elif isinstance(field, Binary):
|
||||
r.SetStream(i+1, field.name)
|
||||
else:
|
||||
raise TypeError, "Unsupported type %s" % field.__class__.__name__
|
||||
try:
|
||||
v.Modify(MSIMODIFY_INSERT, r)
|
||||
except Exception, e:
|
||||
raise MSIError("Could not insert "+repr(values)+" into "+table)
|
||||
|
||||
r.ClearData()
|
||||
v.Close()
|
||||
|
||||
|
||||
def add_stream(db, name, path):
|
||||
v = db.OpenView("INSERT INTO _Streams (Name, Data) VALUES ('%s', ?)" % name)
|
||||
r = CreateRecord(1)
|
||||
r.SetStream(1, path)
|
||||
v.Execute(r)
|
||||
v.Close()
|
||||
|
||||
def init_database(name, schema,
|
||||
ProductName, ProductCode, ProductVersion,
|
||||
Manufacturer):
|
||||
try:
|
||||
os.unlink(name)
|
||||
except OSError:
|
||||
pass
|
||||
ProductCode = ProductCode.upper()
|
||||
# Create the database
|
||||
db = OpenDatabase(name, MSIDBOPEN_CREATE)
|
||||
# Create the tables
|
||||
for t in schema.tables:
|
||||
t.create(db)
|
||||
# Fill the validation table
|
||||
add_data(db, "_Validation", schema._Validation_records)
|
||||
# Initialize the summary information, allowing atmost 20 properties
|
||||
si = db.GetSummaryInformation(20)
|
||||
si.SetProperty(PID_TITLE, "Installation Database")
|
||||
si.SetProperty(PID_SUBJECT, ProductName)
|
||||
si.SetProperty(PID_AUTHOR, Manufacturer)
|
||||
if Win64:
|
||||
si.SetProperty(PID_TEMPLATE, "Intel64;1033")
|
||||
else:
|
||||
si.SetProperty(PID_TEMPLATE, "Intel;1033")
|
||||
si.SetProperty(PID_REVNUMBER, gen_uuid())
|
||||
si.SetProperty(PID_WORDCOUNT, 2) # long file names, compressed, original media
|
||||
si.SetProperty(PID_PAGECOUNT, 200)
|
||||
si.SetProperty(PID_APPNAME, "Python MSI Library")
|
||||
# XXX more properties
|
||||
si.Persist()
|
||||
add_data(db, "Property", [
|
||||
("ProductName", ProductName),
|
||||
("ProductCode", ProductCode),
|
||||
("ProductVersion", ProductVersion),
|
||||
("Manufacturer", Manufacturer),
|
||||
("ProductLanguage", "1033")])
|
||||
db.Commit()
|
||||
return db
|
||||
|
||||
def add_tables(db, module):
|
||||
for table in module.tables:
|
||||
add_data(db, table, getattr(module, table))
|
||||
|
||||
def make_id(str):
|
||||
#str = str.replace(".", "_") # colons are allowed
|
||||
str = str.replace(" ", "_")
|
||||
str = str.replace("-", "_")
|
||||
if str[0] in string.digits:
|
||||
str = "_"+str
|
||||
assert re.match("^[A-Za-z_][A-Za-z0-9_.]*$", str), "FILE"+str
|
||||
return str
|
||||
|
||||
def gen_uuid():
|
||||
return "{"+UuidCreate().upper()+"}"
|
||||
|
||||
class CAB:
|
||||
def __init__(self, name):
|
||||
self.name = name
|
||||
self.files = []
|
||||
self.filenames = sets.Set()
|
||||
self.index = 0
|
||||
|
||||
def gen_id(self, file):
|
||||
logical = _logical = make_id(file)
|
||||
pos = 1
|
||||
while logical in self.filenames:
|
||||
logical = "%s.%d" % (_logical, pos)
|
||||
pos += 1
|
||||
self.filenames.add(logical)
|
||||
return logical
|
||||
|
||||
def append(self, full, file, logical):
|
||||
if os.path.isdir(full):
|
||||
return
|
||||
if not logical:
|
||||
logical = self.gen_id(file)
|
||||
self.index += 1
|
||||
self.files.append((full, logical))
|
||||
return self.index, logical
|
||||
|
||||
def commit(self, db):
|
||||
from tempfile import mktemp
|
||||
filename = mktemp()
|
||||
FCICreate(filename, self.files)
|
||||
add_data(db, "Media",
|
||||
[(1, self.index, None, "#"+self.name, None, None)])
|
||||
add_stream(db, self.name, filename)
|
||||
os.unlink(filename)
|
||||
db.Commit()
|
||||
|
||||
_directories = sets.Set()
|
||||
class Directory:
|
||||
def __init__(self, db, cab, basedir, physical, _logical, default, componentflags=None):
|
||||
"""Create a new directory in the Directory table. There is a current component
|
||||
at each point in time for the directory, which is either explicitly created
|
||||
through start_component, or implicitly when files are added for the first
|
||||
time. Files are added into the current component, and into the cab file.
|
||||
To create a directory, a base directory object needs to be specified (can be
|
||||
None), the path to the physical directory, and a logical directory name.
|
||||
Default specifies the DefaultDir slot in the directory table. componentflags
|
||||
specifies the default flags that new components get."""
|
||||
index = 1
|
||||
_logical = make_id(_logical)
|
||||
logical = _logical
|
||||
while logical in _directories:
|
||||
logical = "%s%d" % (_logical, index)
|
||||
index += 1
|
||||
_directories.add(logical)
|
||||
self.db = db
|
||||
self.cab = cab
|
||||
self.basedir = basedir
|
||||
self.physical = physical
|
||||
self.logical = logical
|
||||
self.component = None
|
||||
self.short_names = sets.Set()
|
||||
self.ids = sets.Set()
|
||||
self.keyfiles = {}
|
||||
self.componentflags = componentflags
|
||||
if basedir:
|
||||
self.absolute = os.path.join(basedir.absolute, physical)
|
||||
blogical = basedir.logical
|
||||
else:
|
||||
self.absolute = physical
|
||||
blogical = None
|
||||
add_data(db, "Directory", [(logical, blogical, default)])
|
||||
|
||||
def start_component(self, component = None, feature = None, flags = None, keyfile = None, uuid=None):
|
||||
"""Add an entry to the Component table, and make this component the current for this
|
||||
directory. If no component name is given, the directory name is used. If no feature
|
||||
is given, the current feature is used. If no flags are given, the directory's default
|
||||
flags are used. If no keyfile is given, the KeyPath is left null in the Component
|
||||
table."""
|
||||
if flags is None:
|
||||
flags = self.componentflags
|
||||
if uuid is None:
|
||||
uuid = gen_uuid()
|
||||
else:
|
||||
uuid = uuid.upper()
|
||||
if component is None:
|
||||
component = self.logical
|
||||
self.component = component
|
||||
if Win64:
|
||||
flags |= 256
|
||||
if keyfile:
|
||||
keyid = self.cab.gen_id(self.absolute, keyfile)
|
||||
self.keyfiles[keyfile] = keyid
|
||||
else:
|
||||
keyid = None
|
||||
add_data(self.db, "Component",
|
||||
[(component, uuid, self.logical, flags, None, keyid)])
|
||||
if feature is None:
|
||||
feature = current_feature
|
||||
add_data(self.db, "FeatureComponents",
|
||||
[(feature.id, component)])
|
||||
|
||||
def make_short(self, file):
|
||||
parts = file.split(".")
|
||||
if len(parts)>1:
|
||||
suffix = parts[-1].upper()
|
||||
else:
|
||||
suffix = None
|
||||
prefix = parts[0].upper()
|
||||
if len(prefix) <= 8 and (not suffix or len(suffix)<=3):
|
||||
if suffix:
|
||||
file = prefix+"."+suffix
|
||||
else:
|
||||
file = prefix
|
||||
assert file not in self.short_names
|
||||
else:
|
||||
prefix = prefix[:6]
|
||||
if suffix:
|
||||
suffix = suffix[:3]
|
||||
pos = 1
|
||||
while 1:
|
||||
if suffix:
|
||||
file = "%s~%d.%s" % (prefix, pos, suffix)
|
||||
else:
|
||||
file = "%s~%d" % (prefix, pos)
|
||||
if file not in self.short_names: break
|
||||
pos += 1
|
||||
assert pos < 10000
|
||||
if pos in (10, 100, 1000):
|
||||
prefix = prefix[:-1]
|
||||
self.short_names.add(file)
|
||||
assert not re.search(r'[\?|><:/*"+,;=\[\]]', file) # restrictions on short names
|
||||
return file
|
||||
|
||||
def add_file(self, file, src=None, version=None, language=None):
|
||||
"""Add a file to the current component of the directory, starting a new one
|
||||
one if there is no current component. By default, the file name in the source
|
||||
and the file table will be identical. If the src file is specified, it is
|
||||
interpreted relative to the current directory. Optionally, a version and a
|
||||
language can be specified for the entry in the File table."""
|
||||
if not self.component:
|
||||
self.start_component(self.logical, current_feature, 0)
|
||||
if not src:
|
||||
# Allow relative paths for file if src is not specified
|
||||
src = file
|
||||
file = os.path.basename(file)
|
||||
absolute = os.path.join(self.absolute, src)
|
||||
assert not re.search(r'[\?|><:/*]"', file) # restrictions on long names
|
||||
if self.keyfiles.has_key(file):
|
||||
logical = self.keyfiles[file]
|
||||
else:
|
||||
logical = None
|
||||
sequence, logical = self.cab.append(absolute, file, logical)
|
||||
assert logical not in self.ids
|
||||
self.ids.add(logical)
|
||||
short = self.make_short(file)
|
||||
full = "%s|%s" % (short, file)
|
||||
filesize = os.stat(absolute).st_size
|
||||
# constants.msidbFileAttributesVital
|
||||
# Compressed omitted, since it is the database default
|
||||
# could add r/o, system, hidden
|
||||
attributes = 512
|
||||
add_data(self.db, "File",
|
||||
[(logical, self.component, full, filesize, version,
|
||||
language, attributes, sequence)])
|
||||
#if not version:
|
||||
# # Add hash if the file is not versioned
|
||||
# filehash = FileHash(absolute, 0)
|
||||
# add_data(self.db, "MsiFileHash",
|
||||
# [(logical, 0, filehash.IntegerData(1),
|
||||
# filehash.IntegerData(2), filehash.IntegerData(3),
|
||||
# filehash.IntegerData(4))])
|
||||
# Automatically remove .pyc/.pyo files on uninstall (2)
|
||||
# XXX: adding so many RemoveFile entries makes installer unbelievably
|
||||
# slow. So instead, we have to use wildcard remove entries
|
||||
if file.endswith(".py"):
|
||||
add_data(self.db, "RemoveFile",
|
||||
[(logical+"c", self.component, "%sC|%sc" % (short, file),
|
||||
self.logical, 2),
|
||||
(logical+"o", self.component, "%sO|%so" % (short, file),
|
||||
self.logical, 2)])
|
||||
return logical
|
||||
|
||||
def glob(self, pattern, exclude = None):
|
||||
"""Add a list of files to the current component as specified in the
|
||||
glob pattern. Individual files can be excluded in the exclude list."""
|
||||
files = glob.glob1(self.absolute, pattern)
|
||||
for f in files:
|
||||
if exclude and f in exclude: continue
|
||||
self.add_file(f)
|
||||
return files
|
||||
|
||||
def remove_pyc(self):
|
||||
"Remove .pyc/.pyo files on uninstall"
|
||||
add_data(self.db, "RemoveFile",
|
||||
[(self.component+"c", self.component, "*.pyc", self.logical, 2),
|
||||
(self.component+"o", self.component, "*.pyo", self.logical, 2)])
|
||||
|
||||
class Binary:
|
||||
def __init__(self, fname):
|
||||
self.name = fname
|
||||
def __repr__(self):
|
||||
return 'msilib.Binary(os.path.join(dirname,"%s"))' % self.name
|
||||
|
||||
class Feature:
|
||||
def __init__(self, db, id, title, desc, display, level = 1,
|
||||
parent=None, directory = None, attributes=0):
|
||||
self.id = id
|
||||
if parent:
|
||||
parent = parent.id
|
||||
add_data(db, "Feature",
|
||||
[(id, parent, title, desc, display,
|
||||
level, directory, attributes)])
|
||||
def set_current(self):
|
||||
global current_feature
|
||||
current_feature = self
|
||||
|
||||
class Control:
|
||||
def __init__(self, dlg, name):
|
||||
self.dlg = dlg
|
||||
self.name = name
|
||||
|
||||
def event(self, event, argument, condition = "1", ordering = None):
|
||||
add_data(self.dlg.db, "ControlEvent",
|
||||
[(self.dlg.name, self.name, event, argument,
|
||||
condition, ordering)])
|
||||
|
||||
def mapping(self, event, attribute):
|
||||
add_data(self.dlg.db, "EventMapping",
|
||||
[(self.dlg.name, self.name, event, attribute)])
|
||||
|
||||
def condition(self, action, condition):
|
||||
add_data(self.dlg.db, "ControlCondition",
|
||||
[(self.dlg.name, self.name, action, condition)])
|
||||
|
||||
class RadioButtonGroup(Control):
|
||||
def __init__(self, dlg, name, property):
|
||||
self.dlg = dlg
|
||||
self.name = name
|
||||
self.property = property
|
||||
self.index = 1
|
||||
|
||||
def add(self, name, x, y, w, h, text, value = None):
|
||||
if value is None:
|
||||
value = name
|
||||
add_data(self.dlg.db, "RadioButton",
|
||||
[(self.property, self.index, value,
|
||||
x, y, w, h, text, None)])
|
||||
self.index += 1
|
||||
|
||||
class Dialog:
|
||||
def __init__(self, db, name, x, y, w, h, attr, title, first, default, cancel):
|
||||
self.db = db
|
||||
self.name = name
|
||||
self.x, self.y, self.w, self.h = x,y,w,h
|
||||
add_data(db, "Dialog", [(name, x,y,w,h,attr,title,first,default,cancel)])
|
||||
|
||||
def control(self, name, type, x, y, w, h, attr, prop, text, next, help):
|
||||
add_data(self.db, "Control",
|
||||
[(self.name, name, type, x, y, w, h, attr, prop, text, next, help)])
|
||||
return Control(self, name)
|
||||
|
||||
def text(self, name, x, y, w, h, attr, text):
|
||||
return self.control(name, "Text", x, y, w, h, attr, None,
|
||||
text, None, None)
|
||||
|
||||
def bitmap(self, name, x, y, w, h, text):
|
||||
return self.control(name, "Bitmap", x, y, w, h, 1, None, text, None, None)
|
||||
|
||||
def line(self, name, x, y, w, h):
|
||||
return self.control(name, "Line", x, y, w, h, 1, None, None, None, None)
|
||||
|
||||
def pushbutton(self, name, x, y, w, h, attr, text, next):
|
||||
return self.control(name, "PushButton", x, y, w, h, attr, None, text, next, None)
|
||||
|
||||
def radiogroup(self, name, x, y, w, h, attr, prop, text, next):
|
||||
add_data(self.db, "Control",
|
||||
[(self.name, name, "RadioButtonGroup",
|
||||
x, y, w, h, attr, prop, text, next, None)])
|
||||
return RadioButtonGroup(self, name, prop)
|
||||
|
||||
def checkbox(self, name, x, y, w, h, attr, prop, text, next):
|
||||
return self.control(name, "CheckBox", x, y, w, h, attr, prop, text, next, None)
|
1007
sys/lib/python/msilib/schema.py
Normal file
1007
sys/lib/python/msilib/schema.py
Normal file
File diff suppressed because it is too large
Load diff
126
sys/lib/python/msilib/sequence.py
Normal file
126
sys/lib/python/msilib/sequence.py
Normal file
|
@ -0,0 +1,126 @@
|
|||
AdminExecuteSequence = [
|
||||
(u'InstallInitialize', None, 1500),
|
||||
(u'InstallFinalize', None, 6600),
|
||||
(u'InstallFiles', None, 4000),
|
||||
(u'InstallAdminPackage', None, 3900),
|
||||
(u'FileCost', None, 900),
|
||||
(u'CostInitialize', None, 800),
|
||||
(u'CostFinalize', None, 1000),
|
||||
(u'InstallValidate', None, 1400),
|
||||
]
|
||||
|
||||
AdminUISequence = [
|
||||
(u'FileCost', None, 900),
|
||||
(u'CostInitialize', None, 800),
|
||||
(u'CostFinalize', None, 1000),
|
||||
(u'ExecuteAction', None, 1300),
|
||||
(u'ExitDialog', None, -1),
|
||||
(u'FatalError', None, -3),
|
||||
(u'UserExit', None, -2),
|
||||
]
|
||||
|
||||
AdvtExecuteSequence = [
|
||||
(u'InstallInitialize', None, 1500),
|
||||
(u'InstallFinalize', None, 6600),
|
||||
(u'CostInitialize', None, 800),
|
||||
(u'CostFinalize', None, 1000),
|
||||
(u'InstallValidate', None, 1400),
|
||||
(u'CreateShortcuts', None, 4500),
|
||||
(u'MsiPublishAssemblies', None, 6250),
|
||||
(u'PublishComponents', None, 6200),
|
||||
(u'PublishFeatures', None, 6300),
|
||||
(u'PublishProduct', None, 6400),
|
||||
(u'RegisterClassInfo', None, 4600),
|
||||
(u'RegisterExtensionInfo', None, 4700),
|
||||
(u'RegisterMIMEInfo', None, 4900),
|
||||
(u'RegisterProgIdInfo', None, 4800),
|
||||
]
|
||||
|
||||
InstallExecuteSequence = [
|
||||
(u'InstallInitialize', None, 1500),
|
||||
(u'InstallFinalize', None, 6600),
|
||||
(u'InstallFiles', None, 4000),
|
||||
(u'FileCost', None, 900),
|
||||
(u'CostInitialize', None, 800),
|
||||
(u'CostFinalize', None, 1000),
|
||||
(u'InstallValidate', None, 1400),
|
||||
(u'CreateShortcuts', None, 4500),
|
||||
(u'MsiPublishAssemblies', None, 6250),
|
||||
(u'PublishComponents', None, 6200),
|
||||
(u'PublishFeatures', None, 6300),
|
||||
(u'PublishProduct', None, 6400),
|
||||
(u'RegisterClassInfo', None, 4600),
|
||||
(u'RegisterExtensionInfo', None, 4700),
|
||||
(u'RegisterMIMEInfo', None, 4900),
|
||||
(u'RegisterProgIdInfo', None, 4800),
|
||||
(u'AllocateRegistrySpace', u'NOT Installed', 1550),
|
||||
(u'AppSearch', None, 400),
|
||||
(u'BindImage', None, 4300),
|
||||
(u'CCPSearch', u'NOT Installed', 500),
|
||||
(u'CreateFolders', None, 3700),
|
||||
(u'DeleteServices', u'VersionNT', 2000),
|
||||
(u'DuplicateFiles', None, 4210),
|
||||
(u'FindRelatedProducts', None, 200),
|
||||
(u'InstallODBC', None, 5400),
|
||||
(u'InstallServices', u'VersionNT', 5800),
|
||||
(u'IsolateComponents', None, 950),
|
||||
(u'LaunchConditions', None, 100),
|
||||
(u'MigrateFeatureStates', None, 1200),
|
||||
(u'MoveFiles', None, 3800),
|
||||
(u'PatchFiles', None, 4090),
|
||||
(u'ProcessComponents', None, 1600),
|
||||
(u'RegisterComPlus', None, 5700),
|
||||
(u'RegisterFonts', None, 5300),
|
||||
(u'RegisterProduct', None, 6100),
|
||||
(u'RegisterTypeLibraries', None, 5500),
|
||||
(u'RegisterUser', None, 6000),
|
||||
(u'RemoveDuplicateFiles', None, 3400),
|
||||
(u'RemoveEnvironmentStrings', None, 3300),
|
||||
(u'RemoveExistingProducts', None, 6700),
|
||||
(u'RemoveFiles', None, 3500),
|
||||
(u'RemoveFolders', None, 3600),
|
||||
(u'RemoveIniValues', None, 3100),
|
||||
(u'RemoveODBC', None, 2400),
|
||||
(u'RemoveRegistryValues', None, 2600),
|
||||
(u'RemoveShortcuts', None, 3200),
|
||||
(u'RMCCPSearch', u'NOT Installed', 600),
|
||||
(u'SelfRegModules', None, 5600),
|
||||
(u'SelfUnregModules', None, 2200),
|
||||
(u'SetODBCFolders', None, 1100),
|
||||
(u'StartServices', u'VersionNT', 5900),
|
||||
(u'StopServices', u'VersionNT', 1900),
|
||||
(u'MsiUnpublishAssemblies', None, 1750),
|
||||
(u'UnpublishComponents', None, 1700),
|
||||
(u'UnpublishFeatures', None, 1800),
|
||||
(u'UnregisterClassInfo', None, 2700),
|
||||
(u'UnregisterComPlus', None, 2100),
|
||||
(u'UnregisterExtensionInfo', None, 2800),
|
||||
(u'UnregisterFonts', None, 2500),
|
||||
(u'UnregisterMIMEInfo', None, 3000),
|
||||
(u'UnregisterProgIdInfo', None, 2900),
|
||||
(u'UnregisterTypeLibraries', None, 2300),
|
||||
(u'ValidateProductID', None, 700),
|
||||
(u'WriteEnvironmentStrings', None, 5200),
|
||||
(u'WriteIniValues', None, 5100),
|
||||
(u'WriteRegistryValues', None, 5000),
|
||||
]
|
||||
|
||||
InstallUISequence = [
|
||||
(u'FileCost', None, 900),
|
||||
(u'CostInitialize', None, 800),
|
||||
(u'CostFinalize', None, 1000),
|
||||
(u'ExecuteAction', None, 1300),
|
||||
(u'ExitDialog', None, -1),
|
||||
(u'FatalError', None, -3),
|
||||
(u'UserExit', None, -2),
|
||||
(u'AppSearch', None, 400),
|
||||
(u'CCPSearch', u'NOT Installed', 500),
|
||||
(u'FindRelatedProducts', None, 200),
|
||||
(u'IsolateComponents', None, 950),
|
||||
(u'LaunchConditions', None, 100),
|
||||
(u'MigrateFeatureStates', None, 1200),
|
||||
(u'RMCCPSearch', u'NOT Installed', 600),
|
||||
(u'ValidateProductID', None, 700),
|
||||
]
|
||||
|
||||
tables=['AdminExecuteSequence', 'AdminUISequence', 'AdvtExecuteSequence', 'InstallExecuteSequence', 'InstallUISequence']
|
129
sys/lib/python/msilib/text.py
Normal file
129
sys/lib/python/msilib/text.py
Normal file
|
@ -0,0 +1,129 @@
|
|||
import msilib,os;dirname=os.path.dirname(__file__)
|
||||
|
||||
ActionText = [
|
||||
(u'InstallValidate', u'Validating install', None),
|
||||
(u'InstallFiles', u'Copying new files', u'File: [1], Directory: [9], Size: [6]'),
|
||||
(u'InstallAdminPackage', u'Copying network install files', u'File: [1], Directory: [9], Size: [6]'),
|
||||
(u'FileCost', u'Computing space requirements', None),
|
||||
(u'CostInitialize', u'Computing space requirements', None),
|
||||
(u'CostFinalize', u'Computing space requirements', None),
|
||||
(u'CreateShortcuts', u'Creating shortcuts', u'Shortcut: [1]'),
|
||||
(u'PublishComponents', u'Publishing Qualified Components', u'Component ID: [1], Qualifier: [2]'),
|
||||
(u'PublishFeatures', u'Publishing Product Features', u'Feature: [1]'),
|
||||
(u'PublishProduct', u'Publishing product information', None),
|
||||
(u'RegisterClassInfo', u'Registering Class servers', u'Class Id: [1]'),
|
||||
(u'RegisterExtensionInfo', u'Registering extension servers', u'Extension: [1]'),
|
||||
(u'RegisterMIMEInfo', u'Registering MIME info', u'MIME Content Type: [1], Extension: [2]'),
|
||||
(u'RegisterProgIdInfo', u'Registering program identifiers', u'ProgId: [1]'),
|
||||
(u'AllocateRegistrySpace', u'Allocating registry space', u'Free space: [1]'),
|
||||
(u'AppSearch', u'Searching for installed applications', u'Property: [1], Signature: [2]'),
|
||||
(u'BindImage', u'Binding executables', u'File: [1]'),
|
||||
(u'CCPSearch', u'Searching for qualifying products', None),
|
||||
(u'CreateFolders', u'Creating folders', u'Folder: [1]'),
|
||||
(u'DeleteServices', u'Deleting services', u'Service: [1]'),
|
||||
(u'DuplicateFiles', u'Creating duplicate files', u'File: [1], Directory: [9], Size: [6]'),
|
||||
(u'FindRelatedProducts', u'Searching for related applications', u'Found application: [1]'),
|
||||
(u'InstallODBC', u'Installing ODBC components', None),
|
||||
(u'InstallServices', u'Installing new services', u'Service: [2]'),
|
||||
(u'LaunchConditions', u'Evaluating launch conditions', None),
|
||||
(u'MigrateFeatureStates', u'Migrating feature states from related applications', u'Application: [1]'),
|
||||
(u'MoveFiles', u'Moving files', u'File: [1], Directory: [9], Size: [6]'),
|
||||
(u'PatchFiles', u'Patching files', u'File: [1], Directory: [2], Size: [3]'),
|
||||
(u'ProcessComponents', u'Updating component registration', None),
|
||||
(u'RegisterComPlus', u'Registering COM+ Applications and Components', u'AppId: [1]{{, AppType: [2], Users: [3], RSN: [4]}}'),
|
||||
(u'RegisterFonts', u'Registering fonts', u'Font: [1]'),
|
||||
(u'RegisterProduct', u'Registering product', u'[1]'),
|
||||
(u'RegisterTypeLibraries', u'Registering type libraries', u'LibID: [1]'),
|
||||
(u'RegisterUser', u'Registering user', u'[1]'),
|
||||
(u'RemoveDuplicateFiles', u'Removing duplicated files', u'File: [1], Directory: [9]'),
|
||||
(u'RemoveEnvironmentStrings', u'Updating environment strings', u'Name: [1], Value: [2], Action [3]'),
|
||||
(u'RemoveExistingProducts', u'Removing applications', u'Application: [1], Command line: [2]'),
|
||||
(u'RemoveFiles', u'Removing files', u'File: [1], Directory: [9]'),
|
||||
(u'RemoveFolders', u'Removing folders', u'Folder: [1]'),
|
||||
(u'RemoveIniValues', u'Removing INI files entries', u'File: [1], Section: [2], Key: [3], Value: [4]'),
|
||||
(u'RemoveODBC', u'Removing ODBC components', None),
|
||||
(u'RemoveRegistryValues', u'Removing system registry values', u'Key: [1], Name: [2]'),
|
||||
(u'RemoveShortcuts', u'Removing shortcuts', u'Shortcut: [1]'),
|
||||
(u'RMCCPSearch', u'Searching for qualifying products', None),
|
||||
(u'SelfRegModules', u'Registering modules', u'File: [1], Folder: [2]'),
|
||||
(u'SelfUnregModules', u'Unregistering modules', u'File: [1], Folder: [2]'),
|
||||
(u'SetODBCFolders', u'Initializing ODBC directories', None),
|
||||
(u'StartServices', u'Starting services', u'Service: [1]'),
|
||||
(u'StopServices', u'Stopping services', u'Service: [1]'),
|
||||
(u'UnpublishComponents', u'Unpublishing Qualified Components', u'Component ID: [1], Qualifier: [2]'),
|
||||
(u'UnpublishFeatures', u'Unpublishing Product Features', u'Feature: [1]'),
|
||||
(u'UnregisterClassInfo', u'Unregister Class servers', u'Class Id: [1]'),
|
||||
(u'UnregisterComPlus', u'Unregistering COM+ Applications and Components', u'AppId: [1]{{, AppType: [2]}}'),
|
||||
(u'UnregisterExtensionInfo', u'Unregistering extension servers', u'Extension: [1]'),
|
||||
(u'UnregisterFonts', u'Unregistering fonts', u'Font: [1]'),
|
||||
(u'UnregisterMIMEInfo', u'Unregistering MIME info', u'MIME Content Type: [1], Extension: [2]'),
|
||||
(u'UnregisterProgIdInfo', u'Unregistering program identifiers', u'ProgId: [1]'),
|
||||
(u'UnregisterTypeLibraries', u'Unregistering type libraries', u'LibID: [1]'),
|
||||
(u'WriteEnvironmentStrings', u'Updating environment strings', u'Name: [1], Value: [2], Action [3]'),
|
||||
(u'WriteIniValues', u'Writing INI files values', u'File: [1], Section: [2], Key: [3], Value: [4]'),
|
||||
(u'WriteRegistryValues', u'Writing system registry values', u'Key: [1], Name: [2], Value: [3]'),
|
||||
(u'Advertise', u'Advertising application', None),
|
||||
(u'GenerateScript', u'Generating script operations for action:', u'[1]'),
|
||||
(u'InstallSFPCatalogFile', u'Installing system catalog', u'File: [1], Dependencies: [2]'),
|
||||
(u'MsiPublishAssemblies', u'Publishing assembly information', u'Application Context:[1], Assembly Name:[2]'),
|
||||
(u'MsiUnpublishAssemblies', u'Unpublishing assembly information', u'Application Context:[1], Assembly Name:[2]'),
|
||||
(u'Rollback', u'Rolling back action:', u'[1]'),
|
||||
(u'RollbackCleanup', u'Removing backup files', u'File: [1]'),
|
||||
(u'UnmoveFiles', u'Removing moved files', u'File: [1], Directory: [9]'),
|
||||
(u'UnpublishProduct', u'Unpublishing product information', None),
|
||||
]
|
||||
|
||||
UIText = [
|
||||
(u'AbsentPath', None),
|
||||
(u'bytes', u'bytes'),
|
||||
(u'GB', u'GB'),
|
||||
(u'KB', u'KB'),
|
||||
(u'MB', u'MB'),
|
||||
(u'MenuAbsent', u'Entire feature will be unavailable'),
|
||||
(u'MenuAdvertise', u'Feature will be installed when required'),
|
||||
(u'MenuAllCD', u'Entire feature will be installed to run from CD'),
|
||||
(u'MenuAllLocal', u'Entire feature will be installed on local hard drive'),
|
||||
(u'MenuAllNetwork', u'Entire feature will be installed to run from network'),
|
||||
(u'MenuCD', u'Will be installed to run from CD'),
|
||||
(u'MenuLocal', u'Will be installed on local hard drive'),
|
||||
(u'MenuNetwork', u'Will be installed to run from network'),
|
||||
(u'ScriptInProgress', u'Gathering required information...'),
|
||||
(u'SelAbsentAbsent', u'This feature will remain uninstalled'),
|
||||
(u'SelAbsentAdvertise', u'This feature will be set to be installed when required'),
|
||||
(u'SelAbsentCD', u'This feature will be installed to run from CD'),
|
||||
(u'SelAbsentLocal', u'This feature will be installed on the local hard drive'),
|
||||
(u'SelAbsentNetwork', u'This feature will be installed to run from the network'),
|
||||
(u'SelAdvertiseAbsent', u'This feature will become unavailable'),
|
||||
(u'SelAdvertiseAdvertise', u'Will be installed when required'),
|
||||
(u'SelAdvertiseCD', u'This feature will be available to run from CD'),
|
||||
(u'SelAdvertiseLocal', u'This feature will be installed on your local hard drive'),
|
||||
(u'SelAdvertiseNetwork', u'This feature will be available to run from the network'),
|
||||
(u'SelCDAbsent', u"This feature will be uninstalled completely, you won't be able to run it from CD"),
|
||||
(u'SelCDAdvertise', u'This feature will change from run from CD state to set to be installed when required'),
|
||||
(u'SelCDCD', u'This feature will remain to be run from CD'),
|
||||
(u'SelCDLocal', u'This feature will change from run from CD state to be installed on the local hard drive'),
|
||||
(u'SelChildCostNeg', u'This feature frees up [1] on your hard drive.'),
|
||||
(u'SelChildCostPos', u'This feature requires [1] on your hard drive.'),
|
||||
(u'SelCostPending', u'Compiling cost for this feature...'),
|
||||
(u'SelLocalAbsent', u'This feature will be completely removed'),
|
||||
(u'SelLocalAdvertise', u'This feature will be removed from your local hard drive, but will be set to be installed when required'),
|
||||
(u'SelLocalCD', u'This feature will be removed from your local hard drive, but will be still available to run from CD'),
|
||||
(u'SelLocalLocal', u'This feature will remain on you local hard drive'),
|
||||
(u'SelLocalNetwork', u'This feature will be removed from your local hard drive, but will be still available to run from the network'),
|
||||
(u'SelNetworkAbsent', u"This feature will be uninstalled completely, you won't be able to run it from the network"),
|
||||
(u'SelNetworkAdvertise', u'This feature will change from run from network state to set to be installed when required'),
|
||||
(u'SelNetworkLocal', u'This feature will change from run from network state to be installed on the local hard drive'),
|
||||
(u'SelNetworkNetwork', u'This feature will remain to be run from the network'),
|
||||
(u'SelParentCostNegNeg', u'This feature frees up [1] on your hard drive. It has [2] of [3] subfeatures selected. The subfeatures free up [4] on your hard drive.'),
|
||||
(u'SelParentCostNegPos', u'This feature frees up [1] on your hard drive. It has [2] of [3] subfeatures selected. The subfeatures require [4] on your hard drive.'),
|
||||
(u'SelParentCostPosNeg', u'This feature requires [1] on your hard drive. It has [2] of [3] subfeatures selected. The subfeatures free up [4] on your hard drive.'),
|
||||
(u'SelParentCostPosPos', u'This feature requires [1] on your hard drive. It has [2] of [3] subfeatures selected. The subfeatures require [4] on your hard drive.'),
|
||||
(u'TimeRemaining', u'Time remaining: {[1] minutes }{[2] seconds}'),
|
||||
(u'VolumeCostAvailable', u'Available'),
|
||||
(u'VolumeCostDifference', u'Difference'),
|
||||
(u'VolumeCostRequired', u'Required'),
|
||||
(u'VolumeCostSize', u'Disk Size'),
|
||||
(u'VolumeCostVolume', u'Volume'),
|
||||
]
|
||||
|
||||
tables=['ActionText', 'UIText']
|
Loading…
Add table
Add a link
Reference in a new issue