summaryrefslogtreecommitdiffstats
path: root/Lib/plat-mac/buildtools.py
Commit message (Collapse)AuthorAgeFilesLines
* If not icon file is specified use the default Python Applet icons.Jack Jansen2003-04-221-0/+4
| | | | Fixes 719303.
* Detabbed.Jack Jansen2003-04-091-352/+352
|
* If a resource file cannot be decoded because the directory is readonlyJack Jansen2003-02-251-1/+3
| | | | | | | | | | | create a temporary file. This fixes #688011. Got rid of the install() method in macresource, and replaced it with a resource_filename() method which will optionally decode a given resourcefile (which may be applesingle-encoded) and return the real resourcefile. Use this new method in buildtools to copy the correct resource file to the bundle. This fixes #688007.
* Added a -c (--copyfile) option with argument src:dst which copies file srcJack Jansen2003-02-241-1/+4
| | | | into dst in the bundle. The Python API already had this functionality
* Enable argv emulation if required.Jack Jansen2003-02-181-2/+4
| | | | Fixed a bug for applets with their own plist files.
* When in MacPython-OSX use bundlebuilder to create .app bundles.Jack Jansen2003-02-121-145/+29
|
* Fixed a few typos, and changed FSCreateResourceFile filename argument to ↵Jack Jansen2003-02-051-3/+3
| | | | unicode.
* Getting rid of macfs usage and almost all FSSpecs. Untested on MacOS9.Jack Jansen2003-02-021-18/+22
|
* add newline to source before compilationJust van Rossum2003-01-091-1/+1
|
* Moved most of Mac/Lib hierarchy to Lib/plat-mac: it can be used bothJack Jansen2002-12-301-0/+521
in MacPython-OS9 and MacPython-OSX (or the equivalent unix Python on Mac OS X). The only items remaining in Mac/Lib are modules that are meaningful only for MacPython-OS9 (CFM stuff, MacPython preferences in resources, etc).