summaryrefslogtreecommitdiffstats
path: root/Mac
Commit message (Collapse)AuthorAgeFilesLines
...
* Names changedJack Jansen1997-09-012-38/+38
|
* Put all prints inside "if verbose:"Jack Jansen1997-08-271-20/+23
|
* Removed debug printJack Jansen1997-08-271-1/+0
|
* Modified for CW Pro projects and new filenamesJack Jansen1997-08-271-68/+46
|
* Added #include <WETabs.h>, which had somehow gone missingJack Jansen1997-08-273-4/+20
|
* Modified for installer and new names of various applets. Also cleanedJack Jansen1997-08-277-139/+115
| | | | up anything else I saw.
* Modified for new scripting supportJack Jansen1997-08-272-70/+266
|
* Moved suites to their own folderJack Jansen1997-08-2716-2066/+6267
|
* Replaced by ReadMeJack Jansen1997-08-261-142/+0
|
* Adapted from ReadMeOrSuffer for the new installerJack Jansen1997-08-261-0/+149
|
* Handle systemclicks ourselves, in stead of passing them to Sioux. ThisJack Jansen1997-08-261-10/+15
| | | | | fixes (or masks?) a bug with Python becoming unreactive during time.sleep() if you have already switched applications before.
* Removed support_print docs.Jack Jansen1997-08-191-2/+0
|
* Docs on new tcl/tk, new build tree layoutJack Jansen1997-08-191-55/+26
|
* Very sketchy preliminary docs on new applescripting functionality.Jack Jansen1997-08-191-32/+53
|
* Added reopJack Jansen1997-08-191-0/+2
|
* MkPluginAliases now knows about fat PythonCore (and all resource filesJack Jansen1997-08-198-163/+164
| | | | got binhexed again)
* PythonCore is now a fat shared library, the plugin modules aren't fat,Jack Jansen1997-08-1921-4829/+4847
| | | | | | | | unfortunately, this turned out to be too difficult. Plugins.prj now builds all plugin modules, and all the interdependencies between the projects are correct. One exception: plugins don't attempt to build PythonCore (PythonFAT and PythonApplet do).
* RegeneratedJack Jansen1997-08-1513-14/+14
|
* Added support for WCTabHandle, AuxWinHandle, PixPatHandle: no reasonJack Jansen1997-08-153-5/+59
| | | | for blacklisting them.
* Added #include <string.h> for memcpy()Jack Jansen1997-08-152-0/+2
|
* Added support for GDHandle, CTabHandle, ITabHandle and CCrsrHandle: noJack Jansen1997-08-153-4/+348
| | | | reason they were blacklisted, we can handle them as generic Handles.
* Added GetAuxiliaryControlRecord and SetControlColor, there was no goodJack Jansen1997-08-153-2/+39
| | | | reason they were excluded.
* Made AEDesc_{New,Convert} globalJack Jansen1997-08-152-8/+8
|
* mkalias() now has an optional third parameter to create relativeJack Jansen1997-08-081-2/+7
| | | | aliases (Just)
* - Added classes to support class/property generation by gensuitemoduleJack Jansen1997-08-083-17/+111
| | | | - Fixed Property class: selector is a 'type', not an 'enum'
* Added (dummy) PyOS_FiniInterruptsJack Jansen1997-08-081-0/+5
|
* Adapted for 1.5a3: Py_SupressPrintingFlag is gone, andJack Jansen1997-08-081-21/+9
| | | | Py_SetProgramName replaces Py_GetProgramName
* New version number, new tk resources, new error numbers, new GUSIJack Jansen1997-08-087-4316/+4819
|
* Don't define ENOENT when compiling with MSLJack Jansen1997-08-081-2/+0
|
* CW11 projects replaced by CW Pro 1 projects, and all cfm68k/ppcJack Jansen1997-08-0875-16936/+9494
| | | | projects unified (as much as possible: PythonCore is still separate).
* Modified for CW Pro 1 projects. Convention used: .mu files are oldJack Jansen1997-08-083-56/+70
| | | | | | | project files, which have to be cleaned up before checking in, .prj files are CW Pro 1 projects (which are always clean). Prj files are still binhexed, even though they only have a data fork (and, hence, could be checked in in binary mode).
* Generate class, property and comparison code (finally!). The resultingJack Jansen1997-08-081-41/+201
| | | | | | code isn't ideal yet: xxx.Window(1).Paragraph(3).font will only work if all the classes and properties are declared in the same suite, but at least font(Paragraph(3, Window(1))) always works.
* Final set of CW11 projects, before switch to CW Pro 1.Jack Jansen1997-07-2835-9518/+9931
|
* Mods for user mainloop event handlingJack Jansen1997-06-201-2/+3
|
* Added dopendingevents callJack Jansen1997-06-201-0/+31
| | | | Added asyncevents call to enable asynchronous event handling
* Allow specifying own resources for all dialogsJack Jansen1997-06-201-7/+15
| | | | Allow changing labels on yesnocancel dialog
* Module to buffer stdout/stderr until stdin is read. Useful forJack Jansen1997-06-201-0/+110
| | | | | windowing programs, together with option to keep console window closed until needed.
* RegeneratedJack Jansen1997-06-203-3/+3
|
* added SetEventHandlerJack Jansen1997-06-201-12/+25
|
* Adapted to new event handling. It is now also possible to abort out ofJack Jansen1997-06-202-2/+12
| | | | an AESend with command-. (unless specifically disabled, of course).
* Added PyMac_SetEventHandler which allows you to replace complete eventJack Jansen1997-06-201-43/+71
| | | | | | handling in inner loop with python code. Also move (previously machine independent) PyErr_CheckSignals here, so we can propagate exceptions in event handling code.
* Added NewAliasMinimalFromFullPath(), and allow alias.Resolve() to returnJack Jansen1997-06-161-1/+28
| | | | an FSSpec to a non-existing file.
* Make imports faster on the Mac, byJack Jansen1997-06-122-8/+106
| | | | | | | | - Remembering whether sys.path components refer to files or folders, - Using mac-specific code to check for file existence, in stead of trying to fopen() each possible file. These mods need an accompanying mod to import.c.
* Added prototype for PyMac_RestoreMenuBarJack Jansen1997-06-121-0/+1
|
* Replaced MacOS.EnableAppSwitch with MacOS.SchedParamsJack Jansen1997-06-122-5/+5
|
* Added optional preload arg to some routines (which creates reloadedJack Jansen1997-06-121-5/+9
| | | | resources when set)
* Replaced MacOS.EnableAppswitch by MacOS.SchedParamsJack Jansen1997-06-124-6/+6
|
* - Restore SIOUX menubar just before exiting, if the console window is keptJack Jansen1997-06-122-21/+27
| | | | | open (so the user can quit with cmd-Q, print, etc) - Removed a few unused routines
* Added zlibJack Jansen1997-06-031-0/+2
|
* Added USE_ZLIB to nonshared config filesJack Jansen1997-06-033-0/+3
|