summaryrefslogtreecommitdiffstats
path: root/Mac
Commit message (Collapse)AuthorAgeFilesLines
* fixed typoJust van Rossum2003-05-031-2/+2
|
* Install automatic GIL switcher upon IDE startup.Just van Rossum2003-05-031-0/+7
| | | | | (Jack: maybe this could/should be done in Framework.py instead, that way apps don't have to think about it. PackMan springs to mind...)
* Short and sweet module doing something very useful: for event loopJust van Rossum2003-05-031-0/+149
| | | | | based threads, release the GIL when the event loop goes to sleep, and acquire it again when the event loop wakes up again. OSX-only.
* Fixed age-old beginner's error: don't start the main loop as a sideJust van Rossum2003-05-022-5/+2
| | | | | effect of an import. (This is one step towards threading support in the IDE.)
* Rename funny long suite to Disk_File_Folder.Jack Jansen2003-05-011-1/+2
|
* Added a note about Stefan Deibels list of contacts.Jack Jansen2003-04-291-0/+1
|
* The new bundlebuilder-generated applets contain an absolute referenceJack Jansen2003-04-291-1/+10
| | | | | | | to the Python used to create them (in the #! line). Therefore, when your Python installation is moved the applets become invalid. As the binary distribution is installed in a different place than where it was created we need to fix up the #! lines.
* By default be verbose.Jack Jansen2003-04-291-7/+9
|
* Allow setting the auto dispose flag on window objects.Jack Jansen2003-04-222-3/+42
|
* Hiding packages was done incorrectly. Fixed.Jack Jansen2003-04-221-9/+16
|
* Oops, 'k' is the new format code for un unchecked 32 bit quantity,Jack Jansen2003-04-171-4/+4
| | | | not 'K'.
* Converted manually written code to the new K format specifier.Jack Jansen2003-04-172-6/+6
| | | | Untested, but at least it still compiles.
* Refer people to the help pages on failure to load the database.Jack Jansen2003-04-161-1/+3
|
* Added a note on getting 404 Not Found errors when loading the database.Jack Jansen2003-04-161-1/+11
|
* Added support for per-user installs.Jack Jansen2003-04-161-19/+71
| | | | | Don't show psuedo-packages by default, added a button to show them. Cleaned up interface a little (not enough, though).
* Adapted GUI for per-user install. Doesn't do anything yet, thoughJack Jansen2003-04-151-14/+22
|
* The minimal scripting example now actually works.Jack Jansen2003-04-011-8/+10
|
* Added a File->Generate OSA Suite command.Jack Jansen2003-03-311-0/+5
|
* Added 1-page introductions to creating GUIs in Python and the OSAJack Jansen2003-03-313-0/+108
| | | | interface.
* Moved gensuitemodule from Mac/scripts to Lib/plat-mac. DocumentationJack Jansen2003-03-291-1132/+0
| | | | remains to be done.
* - Added an is_scriptable method to test applications for havingJack Jansen2003-03-291-12/+55
| | | | | | | | a scripting dictionary. Made up by me, not guaranteed to be correct (and, indeed, Internet Explorer does not seem to play by the book). - Added the interactive main program as a separate routine, so it can be called from the IDE later. Also made it less interactive by default: only the input app and output package folder are asked for.
* - Prefer using events (in stead of poking around in resource files) toJack Jansen2003-03-291-13/+19
| | | | | | get terminology resources. Unfortunately there doesn't seem to be any application I can ask for the basic StdSuites terminology (?). - Prefer OSX-native versions of applications over OS9 versions.
* Sometimes a class is used as a base class of itself. Obviously there'sJack Jansen2003-03-291-2/+6
| | | | | | something I don't understand, but for now ignore this. Output the file name such that it cannot contain non-ascii characters.
* Sigh: didn't catch all lists that needed to be sorted.Jack Jansen2003-03-281-4/+22
|
* - Sort various lists (list of events, OSA-classes, etc) before generatingJack Jansen2003-03-281-10/+25
| | | | | | | code. This makes it a lot easier to compare the generated code for two different versions of the suite. - Various tweaks to the code to generate suites without looking at resource files manually.
* If GetAppTerminology fails (which seems to be the usual case on OSX?)Jack Jansen2003-03-261-11/+45
| | | | | we try to manually launch the application and send it an ascr/gdte event to get its terminology.
* Modified to accept a command line argument too.Jack Jansen2003-03-261-4/+8
|
* Frank Vercruesse gave an okay on removing the copyright notice:Jack Jansen2003-03-251-1/+1
| | | | | "Hereby I make the script in question available under the terms and conditions of the latest Python License."
* Not all objects have an _propdict and _privpropdict, so cater for that.Jack Jansen2003-03-231-3/+3
|
* Lots of tweaks to make this work in the new setting. Not fully tested yet.Jack Jansen2003-03-222-33/+44
|
* Tools to build a disk image with a binary installer for MacPython-OSX,Jack Jansen2003-03-215-0/+300
| | | | | | | donated by Robin Dunn and the rest of the wxPythonMac crew. These are the versions from cvs.wxwindows.org as of 22-Mar-03, checked in for reference.
* Give a better error message when a string of the wrong size isJack Jansen2003-03-212-5/+9
| | | | passed to RawBitMap.
* Generate all the standard OSA suite packages. Has absolute pathnameJack Jansen2003-03-211-0/+44
| | | | dependencies all over the place, but this is better than nothing, for now.
* Got rid of the "enum not found" interaction, and added code to allowJack Jansen2003-03-211-20/+43
| | | | overriding the creator signature.
* Allow gensuitemodule to be run non-interactively, from the OSX commandJack Jansen2003-03-211-22/+79
| | | | line. 90% of the work is done, missing enums still cause a dialog to appear.
* Added _csv module, and getting rid of macfs.Jack Jansen2003-03-212-2/+4
|
* Getting rid of macfs.Jack Jansen2003-03-211-5/+5
|
* Adding unicode filename support to FSRefs broke things on MacOS9. "Fixed" by ↵Jack Jansen2003-03-212-2/+4
| | | | disabling unicode filenames on OS9.
* Patch 702620 by Donovan Preston: Fix AE inheritance.Jack Jansen2003-03-211-6/+7
|
* GetCreatorAndType and SetCreatorAndType have been undeprecated. Spotted byJack Jansen2003-03-191-2/+2
| | | | Just.
* Get rid of Mac.pth: plat-mac is now added through the normal mechanism.Jack Jansen2003-03-172-4/+0
|
* The MacPython introductory help is now called MacPython Help, and theJack Jansen2003-03-164-25/+41
| | | | optional full documentation Python Documentation.
* - Don't ask for bring-to-front when quitting through an appleevent.Jack Jansen2003-03-161-6/+4
| | | | - Changed checkbox labels as suggested by Kevin Ollivier.
* Lots of textual changes suggested by Matthew Moelter.Jack Jansen2003-03-161-13/+13
|
* Add a simple Apple Help book to the framework.Jack Jansen2003-03-111-5/+14
|
* Adding MacPython online help. Only the basics are installed, with aJack Jansen2003-03-1121-0/+493
| | | | | | placeholder for the full documentation (pointing to the online docs and explaining you can also install them locally to make them searchable, etc).
* This file was terribly outdated. The example is still silly (and won'tJack Jansen2003-03-111-65/+28
| | | | work), but at least the rest of the text is okay now.
* Allow unicode pathnames where FSRefs are expected. Fixes 696253.Jack Jansen2003-03-112-4/+10
|
* Removed unused variableJack Jansen2003-03-071-1/+0
|
* Got PythonStandalone to work again, mainly for debugging purposes (it's much ↵Jack Jansen2003-03-072-6/+6
| | | | easier to debug GUSI errors in a static build).