summaryrefslogtreecommitdiffstats
path: root/Mac/Tools
Commit message (Collapse)AuthorAgeFilesLines
* macfsn should always be included, like exceptions and site.Jack Jansen2000-05-171-1/+1
|
* minor tweak (jvr)Just van Rossum2000-04-091-1/+1
|
* added experimental microthread support for use with stackless python -- bw ↵Just van Rossum2000-04-092-13/+77
| | | | compatible (jvr)
* added popup control (jvr)Just van Rossum2000-04-091-4/+60
|
* added setbound() method, some cleanups (jvr)Just van Rossum2000-04-091-9/+12
|
* oops, keyword list missed exec... doh! thanks to Maik Roeder (jvr)Just van Rossum2000-04-091-2/+2
|
* small fix: don't depend on the exact location of PythonCGISlave within the ↵Just van Rossum2000-03-281-1/+3
| | | | Python tree. (jvr)
* - new version of PythonCGISlaveJust van Rossum2000-03-285-0/+383
| | | | | | | - new script/applet BuildCGIApplet This largely supercedes :Mac:Demos:cgi, except for the html doc file. Should it move here? Merged with CGI_README.txt? Todo: fullbuild support. (jvr)
* Fixed multi-arg appends.Jack Jansen2000-03-073-4/+4
|
* skip CVS folders when building the Scripts menu -- jvrJust van Rossum1999-12-231-1/+7
|
* updated copyright stringJust van Rossum1999-12-231-1/+1
|
* changed the "method find" algorithm so the function/class/method popup menu ↵Just van Rossum1999-12-231-3/+8
| | | | also works with space-indented source files -- jvr
* Adapted to new macmudulefinder.process() API. (jvr)Just van Rossum1999-11-042-8/+18
|
* - changed the API of process() so it will return a list of missing modules ↵Just van Rossum1999-11-041-6/+8
| | | | | | | instead of raising an exception. - minor cleanups (jvr)
* - windowbounds() now works with multiple screens (window position prefs!)Just van Rossum1999-10-301-5/+12
| | | | | - Minor tab behavior tweak -- jvr
* Very minor little things... -- jvrJust van Rossum1999-10-301-4/+13
|
* New __version__ number (1.0!) -- jvrJust van Rossum1999-10-302-1/+1
|
* Minor indentation cleanup -- jvrJust van Rossum1999-10-301-1/+1
|
* String values will now always be shown with quotes, so one can see the ↵Just van Rossum1999-10-301-3/+1
| | | | difference between the value 2 and the value '2'. -- jvr
* Optionally bracket all external declarations of init functions with "ifndef"s.Jack Jansen1999-10-012-4/+4
|
* Added module "ce" to list of modules known not to exist on the mac.Jack Jansen1999-09-301-1/+1
|
* Added support for global default font settings. (jvr)Just van Rossum1999-09-262-23/+33
|
* 1) added "typingcasesens" keyword arg to constructor, and support for case ↵Just van Rossum1999-09-261-8/+20
| | | | | | | sensitive typing in lists. 2) minor cleanups (jvr)
* added do_setwindowfont() menu callback: brings up a font selection dialog. (jvr)Just van Rossum1999-09-261-1/+9
|
* added getdefaultfont() function. Returns default font settings. (jvr)Just van Rossum1999-09-261-0/+6
|
* 1 - added "set default window font" menuJust van Rossum1999-09-261-2/+7
| | | | | 2 - updated scripts folder location (jvr)
* minor cleanup, avoiding rare traceback (jvr)Just van Rossum1999-09-261-1/+1
|
* Don't set type of application, it's taken care of elsewhere -- jvrJust van Rossum1999-06-301-2/+0
|
* 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.
* Added an "optional" directive, that will include a module if it is availableJack Jansen1999-06-042-3/+6
| | | | but not complain if it isn't (giving an ImportError when the frozen code is run).
* Oliver Steele writes:Just van Rossum1999-05-211-2/+20
| | | | | | | """Despite the best intentions of Anarchie and Internet Explorer, I often end up with Python source files (and other text files that I'd like to edit with PythonIDE) that use '\n' instead of '\r' as a line separator (and therefore sh
* added 'org.python.core' to the maymiss list (pickly.py tries to import it, ↵Just van Rossum1999-04-241-1/+2
| | | | probably for JPython support) -- jvr
* - made "Save options..." dialog more generic, so it's also usable from RoboFogJust van Rossum1999-04-221-4/+5
| | | | | - mark file as dirty after changing the creator of the file so we can_save... -- jvr
* fixed glitch when scrolling very long files -- jvrJust van Rossum1999-04-221-1/+1
|
* improved scrollbar delay behavior -- jvrJust van Rossum1999-04-211-2/+5
|
* added hasclosebox attr (jstrout) -- jvrJust van Rossum1999-03-031-1/+2
|
* added "Save options" menu to popup so users can set the creator of scripts ↵Just van Rossum1999-02-271-0/+56
| | | | -- jvr
* changed creator to 'Pide' -- jvrJust van Rossum1999-02-271-1/+1
|
* added kludge so edit menus work in W.ModalDialogs -- jvrJust van Rossum1999-02-271-1/+1
|
* updated 'vers' resource -- jvrJust van Rossum1999-02-271-0/+0
|
* reverted Jack's mod: no longer neccesary since all BNDL & icon info is in ↵Just van Rossum1999-02-271-13/+0
| | | | the IDE's resource file, just like the other applets -- jvr
* added Jack's ad-hoc icon plus a BNDL resource, so the creator of the IDE ↵Just van Rossum1999-02-271-0/+0
| | | | will be 'Pide' -- jvr
* Set the signature for the IDE "by hand", the bundle is already included in theJack Jansen1999-02-271-0/+13
| | | | PythonEngine applet template.
* added "dummy" makeopenwindowsmenu method to simplify making a standalone W ↵Just van Rossum1999-02-261-0/+7
| | | | app -- jvr
* open res file(s) read only; upped __version__ -- jvrJust van Rossum1999-02-261-4/+4
|
* added slight delay in Scrollbar.click() for more intuitive response -- jvrJust van Rossum1999-02-251-0/+2
|
* fixed "crashing" bug when scripts folder as stored in prefs file does not exist.Just van Rossum1999-02-251-1/+1
|
* fixed problem with "reloading" sub-sub-modules -- jvrJust van Rossum1999-02-051-3/+4
|
* re-checkin with "ISO-8859 translation" turned on.Just van Rossum1999-02-0212-58/+58
|
* added some commentsJust van Rossum1999-02-021-1/+10
|