summaryrefslogtreecommitdiffstats
path: root/Mac/Tools/IDE/PythonIDEMain.py
Commit message (Collapse)AuthorAgeFilesLines
* Merged revisions 46607-46608 via svnmerge fromThomas Wouters2006-06-081-488/+0
| | | | | | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r46607 | neal.norwitz | 2006-06-03 06:49:00 +0200 (Sat, 03 Jun 2006) | 1 line Remove Mac OS 9 support (http://mail.python.org/pipermail/python-dev/2006-June/065538.html) ........ r46608 | martin.v.loewis | 2006-06-03 09:37:13 +0200 (Sat, 03 Jun 2006) | 2 lines Port to OpenBSD 3.9. Patch from Aldo Cortesi. ........
* Whitespace normalization, via reindent.py.Tim Peters2004-07-181-466/+466
|
* Replace backticks with repr() or "%r"Walter Dörwald2004-02-121-3/+3
| | | | From SF patch #852334.
* fixed long standing typoJust van Rossum2003-12-071-13/+13
|
* Forward port of various fixes that were initially only done on theJack Jansen2003-11-191-11/+34
| | | | | | | | | | | | | | | | release23-maint branch: - Remember the scroll position when rebuilding the browser (as we do far too often). Fixes #824430. - Allow for the documentation to be inside PythonIDE as well as in the Python.app inside the framework (the original location for 2.3). - Updated version numbers - In PythonIDE, add the Tools/IDE directory as the second entry in sys.path in stead of as the first, leaving PythonIDE.app/Contents/Resources as the first one. - The code for setting the working directory to $HOME was both incorrect and in the wrong place, fixed. - On OSX the default location for IDE scripts is now $HOME/Library/Python/IDE-Scripts.
* Fix for #731643: allow "lookup in documentation" to also work if theJack Jansen2003-05-061-4/+4
| | | | interactive window is frontmost.
* Fixed age-old beginner's error: don't start the main loop as a sideJust van Rossum2003-05-021-4/+0
| | | | | effect of an import. (This is one step towards threading support in the IDE.)
* Added a File->Generate OSA Suite command.Jack Jansen2003-03-311-0/+5
|
* The MacPython introductory help is now called MacPython Help, and theJack Jansen2003-03-161-15/+22
| | | | optional full documentation Python Documentation.
* Don't call AEInteractWithUser unconditionally on a quit appleevent. TheJack Jansen2003-03-031-2/+0
| | | | | | EasyDIalogs methods will call it if needed. Fixes #684975.
* Removed silly print.Jack Jansen2003-02-281-1/+0
|
* Added an "Open Recent" command. Fixes 607810.Jack Jansen2003-02-251-0/+40
|
* Renamed InstallManager to PackageManager, finished a first stab at theJack Jansen2003-02-121-0/+7
| | | | implementation and integrated it into the IDE.
* Got rid of macfs and FSSpecs in general (pathnames or FSRefs are nowJack Jansen2003-02-061-20/+25
| | | | used everywhere).
* Added "Open File by Name" command which presens a filename dialog. IfJack Jansen2003-02-051-0/+17
| | | | the clipboard contains a filename that filename is used as the default.
* Use new file dialogs.Jack Jansen2003-01-261-6/+7
|
* workaround so the (otherwise still broken) IDE can at least quit in the ↵Just van Rossum2002-11-221-15/+14
| | | | Python 2.2 Jaguar addon install
* cd to users home dir if no current dir has been set. Fixes bug #625734Just van Rossum2002-10-201-0/+5
|
* Pass None to AHGotoPage().Jack Jansen2002-09-111-1/+1
|
* Reorganized order of help menu, and don't show Carbon documentationJack Jansen2002-09-061-3/+4
| | | | | entries on OS9 (where they are never available, and simply disabling them might lead people to think otherwise).
* Implemented the Help menu. The Python manual can be viewed (if installed)Jack Jansen2002-08-311-0/+102
| | | | | | | | and the selection can be looked up, and so can the Carbon manual. From the help menu you can also get to the online documentation, the Python website and the MacPython page. Untested in MacPython-OS9.
* fixed wrong classic MacOS pathname assumptionJust van Rossum2002-07-121-1/+1
|
* repair damage: now works again as a CFM app.Just van Rossum2002-03-291-1/+1
|
* Allow file without filetype as long as they end in ".py".Jack Jansen2002-03-291-1/+11
| | | | | | Added a -D flag (can really only be specified on OSX commandline) to not revector sys.stderr, for debugging the IDE itself. Not sure whether this should stay.
* Don't append quit menu when on OSX, it is special and automatic there.Just van Rossum2002-02-041-2/+13
|
* Changes by Donovan Preston (and a few minor ones by me) to make IDE run underJack Jansen2002-01-211-10/+15
| | | | | | | | 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.
* removed import display hackeryJust van Rossum2001-11-021-2/+1
|
* Import the MacOS toolbox modules from the Carbon package.Jack Jansen2001-08-251-2/+3
|
* Some long overdue maintainance. Made all IDE sources 7-bit-clean, to avoid ↵Just van Rossum2001-06-191-11/+11
| | | | any further encoding conversion troubles.
* Fixed macroman<->latin1 conversion. Some characters don't exist in latin1, ↵Jack Jansen2001-05-171-11/+11
| | | | | | but at least the roundtrip gives the correct macroman characters again.
* Handle the ReopenApplication event (by ignoring it).Jack Jansen2001-03-081-0/+2
|
* Cleaned uthread dependencies (jvr)Just van Rossum2000-10-201-4/+8
|
* added experimental microthread support for use with stackless python -- bw ↵Just van Rossum2000-04-091-3/+9
| | | | compatible (jvr)
* Fixed multi-arg appends.Jack Jansen2000-03-071-1/+1
|
* 1 - added "set default window font" menuJust van Rossum1999-09-261-2/+7
| | | | | 2 - updated scripts folder location (jvr)
* mod from Joe Strout: when quitting, catch errors in window.close() methods ↵Just van Rossum1999-06-221-1/+4
| | | | and ignore them. Otherwise one can never quit.
* changed creator to 'Pide' -- jvrJust van Rossum1999-02-271-1/+1
|
* fixed "crashing" bug when scripts folder as stored in prefs file does not exist.Just van Rossum1999-02-251-1/+1
|
* re-checkin with "ISO-8859 translation" turned on.Just van Rossum1999-02-021-9/+9
|
* First Checked In.Just van Rossum1999-01-301-0/+237