summaryrefslogtreecommitdiffstats
path: root/Mac/Tools
Commit message (Collapse)AuthorAgeFilesLines
* Backport of 1.25:Jack Jansen2002-10-251-5/+1
| | | | 'Replace all' in the find dialog didn't properly update the text view (it used to, though...). Fixed.
* Backport of 1.15 and 1.14:Jack Jansen2002-03-261-4/+149
| | | | | | | Make object browser work in OSX (by rewriting the old browser LDEF in Python). If at all possible, this should go into 2.2.1. Use the Carbon scrap manager interface if the old interface isn't available.
* Backport of 1.12:Jack Jansen2002-03-261-0/+4
| | | | | Make object browser work in OSX (by rewriting the old browser LDEF in Python). If at all possible, this should go into 2.2.1.
* Backport of 1.9 (missed last time around):Jack Jansen2002-03-101-2/+4
| | | | | | Changes by Donovan Preston (and a few minor ones by me) to make IDE run under MachoPython. Mainly making sure we don't call routines that don't exist and representing pathnames in a os.separator-neutral format.
* Backport of 1.17:Jack Jansen2002-02-271-2/+8
| | | | Use the Carbon scrap manager interface if the old interface isn't available.
* Backport of 1.12:Jack Jansen2002-02-271-2/+7
| | | | Use the Carbon scrap manager interface if the old interface isn't available.
* Backport of 1.13:Jack Jansen2002-02-271-27/+11
| | | | added support for live feedback in scrollbars
* Backport of 1.15 and 1.16:Jack Jansen2002-02-242-26/+55
| | | | | | | | | | - Added minimal support for floating windows. - Changes by Donovan Preston (and a few minor ones by me) to make IDE run under MachoPython. Mainly making sure we don't call routines that don't exist and representing pathnames in a os.separator-neutral format. These shouldn't interfere too much with Just's work on the next generation IDE, I hope.
* Backport of 1.15 and 1.16:Jack Jansen2002-02-241-12/+28
| | | | | | | | | | - Don't append quit menu when on OSX, it is special and automatic there. - Changes by Donovan Preston (and a few minor ones by me) to make IDE run under MachoPython. Mainly making sure we don't call routines that don't exist and representing pathnames in a os.separator-neutral format. These shouldn't interfere too much with Just's work on the next generation IDE, I hope.
* Backport of 1.27 and 1.28:Jack Jansen2002-02-241-3/+11
| | | | | | | | | | - Added minimal support for floating windows. - Changes by Donovan Preston (and a few minor ones by me) to make IDE run under MachoPython. Mainly making sure we don't call routines that don't exist and representing pathnames in a os.separator-neutral format. These shouldn't interfere too much with Just's work on the next generation IDE, I hope.
* Backport of 1.9:Jack Jansen2002-02-242-6/+12
| | | | | | | | | Changes by Donovan Preston (and a few minor ones by me) to make IDE run under MachoPython. Mainly making sure we don't call routines that don't exist and representing pathnames in a os.separator-neutral format. These shouldn't interfere too much with Just's work on the next generation IDE, I hope.
* Backport of 1.9-1.11:Jack Jansen2002-02-241-5/+15
| | | | | | | | | | | | | - Flush screen buffer upon console.flush() and output.flush(). This fixes bug #511992. - Changes by Donovan Preston (and a few minor ones by me) to make IDE run under MachoPython. Mainly making sure we don't call routines that don't exist and representing pathnames in a os.separator-neutral format. These shouldn't interfere too much with Just's work on the next generation IDE, I hope. - Modified version of patch #496882: echo SimpleStdin readline() input to stdout.
* Backport of 1.13:Jack Jansen2002-02-241-0/+9
| | | | half-hearted stab at supported the 2.2 object model better.
* backport of 1.3:Jack Jansen2002-02-241-9/+10
| | | | made radio button labels readable under OSX
* OSX workaround: don't crash if the extentions folder can't be found.Just van Rossum2001-12-131-2/+6
| | | | Not sure how to properly solve this.
* re-checkin as AppleSingleJust van Rossum2001-12-132-0/+0
|
* OSX tweak.Just van Rossum2001-12-081-1/+3
|
* Don't do App.DrawThemeListBoxFrame() upon activate: it startsJust van Rossum2001-12-081-2/+2
| | | | | | | looking worse and worse if you deactivate/activate the window a few times. I don't know how to fix this properly, but I'm beginning to think that it's almost impossible to support the Appearance manager properly due to the way W works. Time for W2?...
* Patch by Jason Harper to allow IDE to work again under MacOS 8.1. Plus ↵Jack Jansen2001-12-043-35/+145
| | | | appearance support for Wlist frames and focussing. Plus commented-out appearance support for the same for Wtext, which still needs some work.
* removed some dead code.Just van Rossum2001-12-031-15/+0
|
* Removed old and broken AE-based browser controller, use webbrowser.pyJust van Rossum2001-12-031-31/+11
| | | | instead. This fixes bug #488420.
* Merged changes made on r22b2-branch between r22b2 and r22b2-mac (theJack Jansen2001-11-301-0/+0
| | | | changes from start of branch upto r22b2 were already merged, of course).
* a whole bunch of OSX tweaksJust van Rossum2001-11-1810-69/+105
|
* Rewritten the List Definition for the traceback window in Python,Just van Rossum2001-11-051-9/+112
| | | | which makes it work under Carbon. Next stop: the object browser.
* macdinkingJust van Rossum2001-11-022-10/+9
|
* use 32bit APIs for control values, refactor slightlyJust van Rossum2001-11-021-42/+28
|
* use proper APIs for activate/deactivateJust van Rossum2001-11-021-17/+5
|
* wintertime bluesJust van Rossum2001-11-021-0/+0
|
* removed import display hackeryJust van Rossum2001-11-022-66/+5
|
* some support for syntax coloring, disabled for nowJust van Rossum2001-11-022-42/+149
|
* changed the default fontJust van Rossum2001-11-021-1/+1
|
* fixed a non-Carbon Carbon importJust van Rossum2001-11-021-1/+1
|
* - rearranged some importsJust van Rossum2001-11-021-29/+3
| | | | | | - removed default button drawing code: this doesn't work well under OSX. Needs to be replaced by SetWindowDefaultButton() calls, once we have those.
* rearranged some importsJust van Rossum2001-11-024-23/+8
|
* call the correct base method (found due to better inheritance checking in 2.2)Just van Rossum2001-10-311-1/+1
|
* Fixed old bug (caused by careless Carbonizing) that noone noticed untilJust van Rossum2001-09-241-1/+1
| | | | this week (apparently me and Bob Heeter at more or less the same time).
* Patch by Mark Day to allow from __future__ imports. Looks harmlessJack Jansen2001-09-071-3/+5
| | | | | | | enough, but may have side-effects because it preallocates a single codeop.Compiler() to compile all statements the user enters. Just: please review and retract/modify if necessary.
* Updated the Popt resources for the applets to the newest version.Jack Jansen2001-09-013-0/+0
|
* Use the new macresource module to open the accompanying resource file (if ↵Jack Jansen2001-08-272-27/+11
| | | | needed).
* When we're freezing to sourcecode and one of the modules is a dynamic module ↵Jack Jansen2001-08-271-0/+4
| | | | that is in a package we freeze that module at toplevel (outside any package). Not optimal, but there is little more we can do as config.c has no way to specify a builtin module has to be dumped into a package.
* - A forgotten "from Carbon".Jack Jansen2001-08-271-2/+3
| | | | | - Made the "killed unknown window" code dependent on a global var, so you can easily turn the behaviour off for IDE debugging.
* A few forgotten "from Carbon"s.Jack Jansen2001-08-272-2/+2
|
* Import the MacOS toolbox modules from the Carbon package.Jack Jansen2001-08-2527-90/+95
|
* Temporarily disabled the import hook. It breaks with the package-basedJack Jansen2001-08-191-1/+2
| | | | Carbon and its workaround.
* Show the MacPython IDE version in the interactive banner.Just van Rossum2001-08-061-1/+4
|
* Use string.ascii_letters instead of string.letters (SF bug #226706).Fred Drake2001-07-201-2/+1
|
* - fixed some re usage, partly so it'll still work when re uses pre insteadJust van Rossum2001-07-104-43/+38
| | | | | of sre, and partly fixing re -> regex porting oversights - fixed PyFontify.py so it actually *works* again..
* - minor cleanup, removed bogus commentsJust van Rossum2001-07-051-9/+13
| | | | | - make method reload handle __private attrs correctly - fixed whole word search
* don't crash when encountering bad marshal dataJust van Rossum2001-07-051-1/+2
|
* don't blow up when the charno SyntaxError value is NoneJust van Rossum2001-06-211-1/+3
|