| Commit message (Collapse) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | Regenerated again, now clases are sorted by code, and with synonyms after | Jack Jansen | 2003-03-30 | 29 | -2046/+8742 |
| | | | | | the primary name. | ||||
| * | Classes have to be sorted by code, not name, and synonyms have to | Jack Jansen | 2003-03-30 | 1 | -2/+19 |
| | | | | | | | | be sorted after the main name, otherwise filling of properties and elements messes up. Sorting is always more difficult than expected:-) | ||||
| * | Moved gensuitemodule from Mac/scripts to Lib/plat-mac. Documentation | Jack Jansen | 2003-03-29 | 1 | -0/+1132 |
| | | | | | remains to be done. | ||||
| * | Regenerated with the new way to get terminology (through AppleEvents), | Jack Jansen | 2003-03-29 | 27 | -2692/+1571 |
| | | | | | | which sometimes seems to result in different terminology. It does seem to be mostly compatible, though. | ||||
| * | On OSX the finder will return from an open() event before the application | Jack Jansen | 2003-03-28 | 1 | -0/+12 |
| | | | | | | has actually entered its event loop. As a stopgap, allow for a 10 second grace period. | ||||
| * | Sigh: didn't catch all lists that needed to be sorted. Regenerated again. | Jack Jansen | 2003-03-28 | 29 | -2508/+2508 |
| | | |||||
| * | Regenerated (from resource files) with sorting version of gensuitemodule. | Jack Jansen | 2003-03-28 | 29 | -3052/+3048 |
| | | | | | | | This is a first step towards regenerating the modules with newer, MacOSX, versions of these programs, and using the programmatic interface to get at the terminology in stead of poking in resource files. | ||||
| * | Allow floating point values in ProgressBar. | Jack Jansen | 2003-03-24 | 1 | -0/+2 |
| | | |||||
| * | Regenerated with Donovan Prestons patch #702620. | Jack Jansen | 2003-03-23 | 45 | -117/+331 |
| | | |||||
| * | use os.path.realpath() instead of os.readlink() | Just van Rossum | 2003-03-21 | 1 | -3/+1 |
| | | |||||
| * | Patch 702620 by Donovan Preston: Fix AE inheritance. | Jack Jansen | 2003-03-21 | 1 | -3/+3 |
| | | |||||
| * | only set $PYTHONHOME when building a standalone app. | Just van Rossum | 2003-03-21 | 1 | -1/+3 |
| | | |||||
| * | Patch #681927 from Robin Dunn: add option to add shared libraries or | Just van Rossum | 2003-03-21 | 1 | -1/+15 |
| | | | | | frameworks to the bundle. | ||||
| * | set $PYTHONHOME in the bootstrap script, for no good reason really, | Just van Rossum | 2003-03-20 | 1 | -0/+1 |
| | | | | | except to avoid getpath.c giving unsollicited advice on stderr. | ||||
| * | Capturing the exit status for the build process didn't work. Using | Jack Jansen | 2003-03-17 | 1 | -6/+7 |
| | | | | | popen2.Popen4() makes it work. Fixes #702180. | ||||
| * | Patch by Andrew Straw: use urllib2 so proxie access works. | Jack Jansen | 2003-03-11 | 1 | -7/+3 |
| | | |||||
| * | Filter out macfs warning. | Jack Jansen | 2003-03-07 | 1 | -0/+2 |
| | | |||||
| * | Two ancient and obscure bugs found and fixed by Donovan Preston (these | Jack Jansen | 2003-03-05 | 1 | -2/+2 |
| | | | | | | | | | | could be responsible for various unexplained problems with Python/OSA interaction over the years): - Enum values were passed as their string counterparts. Most applications don't seem to mind this, but some do (InDesign). - Attributes have never worked (!), as they were incorrectly passed as parameters. Apparently nobody uses them much:-) | ||||
| * | Actually *do* override the type in AppBuilder. | Jack Jansen | 2003-03-05 | 1 | -1/+1 |
| | | |||||
| * | Moved some application-bundle specific code from the BundleBuilder class to | Jack Jansen | 2003-03-05 | 1 | -5/+9 |
| | | | | | | | AppBuilder, and set the default type to BNDL (overridden in AppBuilder). This surfaced when trying to build help bundles. | ||||
| * | Call AEInteractWithUser() before bringing up any of the dialogs (with the | Jack Jansen | 2003-03-03 | 1 | -1/+13 |
| | | | | | | | exception of the ProgressBar, which I think is okay to show in the background). This is a prerequisitite for the fix of #684975. | ||||
| * | Added a deprecation warning. | Jack Jansen | 2003-02-27 | 1 | -0/+3 |
| | | |||||
| * | Changing the window type to movable modal isn't enough to make the dialogs ↵ | Jack Jansen | 2003-02-27 | 1 | -0/+0 |
| | | | | | movable: apprently you also need to set a bit in the dlgx resource. Did this. | ||||
| * | use bare raise so you get the original tb | Just van Rossum | 2003-02-26 | 1 | -1/+1 |
| | | |||||
| * | use the same Python for running the bootstrap script and the main program | Just van Rossum | 2003-02-26 | 1 | -1/+9 |
| | | |||||
| * | remove sitecustomize hack, will be solved elsewhere | Just van Rossum | 2003-02-26 | 1 | -25/+0 |
| | | |||||
| * | Let's try making the dialogs at least Movable Modal. | Jack Jansen | 2003-02-25 | 1 | -0/+0 |
| | | |||||
| * | If a resource file cannot be decoded because the directory is readonly | Jack Jansen | 2003-02-25 | 2 | -44/+41 |
| | | | | | | | | | | | | 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. | ||||
| * | Reverted the rev. 1.8 change: the magic for decoding resourcefiles | Jack Jansen | 2003-02-25 | 1 | -4/+0 |
| | | | | | is now in buildtools. | ||||
| * | tweak error message | Just van Rossum | 2003-02-25 | 1 | -2/+2 |
| | | |||||
| * | - renamed the --copyfile option to --file. | Just van Rossum | 2003-02-25 | 1 | -4/+6 |
| | | | | | | - tweaked the help text a little. (Jack: up to you to change your client code.) | ||||
| * | added some comments, minor tweaks | Just van Rossum | 2003-02-25 | 1 | -3/+34 |
| | | |||||
| * | Resolving parts of #688907: | Just van Rossum | 2003-02-25 | 1 | -9/+29 |
| | | | | | | | | | | | | | - Replaced bootstrap shell script with Python script. This means standalone apps built with bundlebuilder will not work on MacOS < 10.1, since we depend (again) on an installed Python. - Add a hack to set sys.executable; the bootstrap script does os.execve() with an argv[0] that's different from the actual Python executable (it has to match the CFBundleExecutable entry in the Info.plist to make the app work both from the Finder and the command line, and it has to be the bootstrap script), yet a proper sys.executable is needed to spawn auxiliary processes. | ||||
| * | Workaround for bug #644243 (which is actually an Apple bug, I think): URLs | Jack Jansen | 2003-02-25 | 1 | -0/+4 |
| | | | | | | of the form file:/path/to/file don't work whereas file:///path/to/file works fine. We convert the former to the latter. | ||||
| * | Added a -c (--copyfile) option with argument src:dst which copies file src | Jack Jansen | 2003-02-24 | 2 | -3/+12 |
| | | | | | into dst in the bundle. The Python API already had this functionality | ||||
| * | Getting rid of macfs. | Jack Jansen | 2003-02-21 | 3 | -8/+6 |
| | | |||||
| * | Get rid of macfs. | Jack Jansen | 2003-02-21 | 1 | -60/+59 |
| | | |||||
| * | Enable argv emulation if required. | Jack Jansen | 2003-02-18 | 1 | -2/+4 |
| | | | | | Fixed a bug for applets with their own plist files. | ||||
| * | Added an argv_emulation option (command line option: --argv or -a) which | Jack Jansen | 2003-02-18 | 1 | -2/+36 |
| | | | | | | creates the sys.argv emulation wrapper for droplets. Also updates the plist, if needed, and the includedModules (but this last is untested). | ||||
| * | Argvemulator still used the old Alias API. Fixed. | Jack Jansen | 2003-02-18 | 1 | -2/+2 |
| | | |||||
| * | Use "$@" to pass arguments to Python in stead of "${1}". This passes all | Jack Jansen | 2003-02-18 | 1 | -1/+1 |
| | | | | | arguments, and also does the right thing for the no argument case. | ||||
| * | When installing resource files whose name ends in .rsrc use the | Jack Jansen | 2003-02-17 | 2 | -5/+45 |
| | | | | | | "copy anything to a data fork based resource file" trick of macresource. Fixes #688007. | ||||
| * | - Added support for zip archives | Jack Jansen | 2003-02-17 | 1 | -3/+13 |
| | | | | | - Better messages in case of a crash of the install-test script | ||||
| * | Better error messages and warnings. | Jack Jansen | 2003-02-16 | 1 | -7/+11 |
| | | |||||
| * | Factored out classes for handling source and binary distributions. Source | Jack Jansen | 2003-02-14 | 1 | -40/+126 |
| | | | | | | now means "distutils-based source", binary "bdist format archive". Also fixed various lurking bugs. | ||||
| * | - Use distutils to find site-python (suggested by Thomas Heller, thanks!) | Jack Jansen | 2003-02-12 | 1 | -7/+3 |
| | | | | | - Fixed a bug for packages without MD5 checksum. | ||||
| * | Thank you sir, can I have another. | Just van Rossum | 2003-02-12 | 1 | -3/+3 |
| | | |||||
| * | When in MacPython-OSX use bundlebuilder to create .app bundles. | Jack Jansen | 2003-02-12 | 4 | -181/+53 |
| | | |||||
| * | - Better way to find site-packages | Jack Jansen | 2003-02-12 | 1 | -3/+43 |
| | | | | | | | | - Catch stderr as well as stdout - Fixed a bug with non-installable packages - Parse .pth files after installing, so you don't have to restart Python (or the IDE) after installing. | ||||
| * | Changed database format to make fields adhere to PEP 241 where | Jack Jansen | 2003-02-11 | 1 | -116/+113 |
| | | | | | | | applicable, and use a similar naming scheme for other fields. This has drastically changed the structure, as the PEP241 names aren't identifiers. | ||||
