2003-03-21 12:30:53 -04:00
|
|
|
# Generate all the standard scripting suite packages.
|
|
|
|
# Note that this module needs *serious* hand-crafting because of all the
|
|
|
|
# absolute paths. It is, however, a great leap forward compared to the time
|
|
|
|
# when this information was only stored in Jack's brain:-)
|
|
|
|
|
|
|
|
import sys
|
|
|
|
import os
|
|
|
|
import gensuitemodule
|
|
|
|
|
2003-04-29 18:46:31 -03:00
|
|
|
verbose=sys.stdout
|
|
|
|
|
2003-03-21 12:30:53 -04:00
|
|
|
DSTDIR="/Users/jack/src/python/Lib/plat-mac/lib-scriptpackages"
|
2003-03-28 20:11:32 -04:00
|
|
|
OS9DISK="/Volumes/Moes"
|
2003-03-21 12:30:53 -04:00
|
|
|
|
2003-03-28 20:11:32 -04:00
|
|
|
APPLESCRIPT=OS9DISK + "/Systeemmap/Extensies/AppleScript"
|
|
|
|
SYSTEMEVENTS="/System/Library/CoreServices/System Events.app"
|
|
|
|
|
|
|
|
CODEWARRIOR=OS9DISK + "/Applications (Mac OS 9)/Metrowerks CodeWarrior 7.0/Metrowerks CodeWarrior/CodeWarrior IDE 4.2.6"
|
|
|
|
EXPLORER="/Applications/Internet Explorer.app"
|
|
|
|
FINDER="/System/Library/CoreServices/Finder.app"
|
|
|
|
NETSCAPE=OS9DISK + "/Applications (Mac OS 9)/Netscape Communicator\xe2\x84\xa2 Folder/Netscape Communicator\xe2\x84\xa2"
|
|
|
|
TERMINAL="/Applications/Utilities/Terminal.app"
|
2003-03-21 12:30:53 -04:00
|
|
|
|
|
|
|
gensuitemodule.processfile_fromresource(APPLESCRIPT,
|
2004-07-18 03:16:08 -03:00
|
|
|
output=os.path.join(DSTDIR, 'StdSuites'),
|
|
|
|
basepkgname='_builtinSuites',
|
|
|
|
edit_modnames=[], verbose=verbose)
|
2003-03-28 20:11:32 -04:00
|
|
|
gensuitemodule.processfile(SYSTEMEVENTS,
|
2004-07-18 03:16:08 -03:00
|
|
|
output=os.path.join(DSTDIR, 'SystemEvents'),
|
|
|
|
basepkgname='StdSuites',
|
|
|
|
edit_modnames=[('Disk_2d_Folder_2d_File_Suite', 'Disk_Folder_File_Suite')],
|
|
|
|
verbose=verbose)
|
2003-03-28 20:11:32 -04:00
|
|
|
gensuitemodule.processfile(CODEWARRIOR,
|
2004-07-18 03:16:08 -03:00
|
|
|
output=os.path.join(DSTDIR, 'CodeWarrior'),
|
|
|
|
basepkgname='StdSuites',
|
|
|
|
edit_modnames=[], verbose=verbose)
|
2003-03-28 20:11:32 -04:00
|
|
|
gensuitemodule.processfile(EXPLORER,
|
2004-07-18 03:16:08 -03:00
|
|
|
output=os.path.join(DSTDIR, 'Explorer'),
|
|
|
|
basepkgname='StdSuites',
|
|
|
|
edit_modnames=[], verbose=verbose)
|
2003-03-28 20:11:32 -04:00
|
|
|
gensuitemodule.processfile(FINDER,
|
2004-07-18 03:16:08 -03:00
|
|
|
output=os.path.join(DSTDIR, 'Finder'),
|
|
|
|
basepkgname='StdSuites',
|
|
|
|
edit_modnames=[], verbose=verbose)
|
2003-03-28 20:11:32 -04:00
|
|
|
gensuitemodule.processfile(NETSCAPE,
|
2004-07-18 03:16:08 -03:00
|
|
|
output=os.path.join(DSTDIR, 'Netscape'),
|
|
|
|
basepkgname='StdSuites',
|
|
|
|
edit_modnames=[('WorldWideWeb_suite_2c__as_d', 'WorldWideWeb_suite')], verbose=verbose)
|
2003-03-28 20:11:32 -04:00
|
|
|
gensuitemodule.processfile(TERMINAL,
|
2004-07-18 03:16:08 -03:00
|
|
|
output=os.path.join(DSTDIR, 'Terminal'),
|
|
|
|
basepkgname='StdSuites',
|
|
|
|
edit_modnames=[], verbose=verbose)
|