summaryrefslogtreecommitdiffstats
path: root/Mac
Commit message (Collapse)AuthorAgeFilesLines
* Optionally honour #! paths in scripts. Fixes #676358.Jack Jansen2003-02-1714-14/+54
|
* When building an applet clear out the tempfile and dir afterwards.Jack Jansen2003-02-161-0/+5
|
* Moved setupDocs.py to Doc/setup.py and did some cleanup. It now at leastJack Jansen2003-02-141-49/+61
| | | | allows bdist, but it's still one big hack:-(
* Allow opening of alternate databases.Jack Jansen2003-02-141-7/+38
|
* Got building documentation from source to work.Jack Jansen2003-02-141-4/+3
|
* Icons for the package manager.Jack Jansen2003-02-121-0/+0
|
* Photoshop source file for package manager icon.Jack Jansen2003-02-121-0/+0
|
* Use bundlebuilder directly to build applets.Jack Jansen2003-02-121-7/+34
|
* Allow this to run both standalone and as a window in the IDE.Jack Jansen2003-02-121-1/+35
|
* More int() around float arguments.Jack Jansen2003-02-121-1/+1
|
* Create applets slightly differently: by saving the sourcecode to aJack Jansen2003-02-121-1/+11
| | | | | temporary location. This is needed to makethings work with the new buildtools based on bundlebuilder.
* Renamed InstallManager to PackageManager, finished a first stab at theJack Jansen2003-02-122-11/+43
| | | | implementation and integrated it into the IDE.
* In a MultiList select all cells in the row, not only the first one.Jack Jansen2003-02-121-4/+5
|
* An install manager window for the IDE and standalone use. Unfinished.Jack Jansen2003-02-111-0/+251
|
* - More int() calls around floating point numbers passed where integers areJack Jansen2003-02-111-3/+3
| | | | | expected. - Fixed resizing of multi-column lists, somewhat.
* Got rid of macfs.Jack Jansen2003-02-061-5/+4
|
* Got rid of FSSpecs.Jack Jansen2003-02-061-29/+28
|
* Got rid of macfs and FSSpecs in general (pathnames or FSRefs are nowJack Jansen2003-02-069-68/+55
| | | | used everywhere).
* Got rid of macfs and made a bit more OSX-friendly.Jack Jansen2003-02-051-7/+10
|
* removing old junkJust van Rossum2003-02-051-60/+0
|
* Removed unused import of macfs.Jack Jansen2003-02-051-1/+0
|
* I don't think this script serves a useful purpose anymore, and I can'tJack Jansen2003-02-051-0/+0
| | | | be bothered to fix it.
* 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.
* Cast various floats to ints so we don't get warnings.Jack Jansen2003-02-052-1/+3
|
* Added itertools module.Jack Jansen2003-02-053-0/+2
|
* Changed an edit instruction because of a changed parameter name (sigh).Jack Jansen2003-02-042-7/+10
|
* The FSAliasFile routines also have an in/out parameter.Jack Jansen2003-02-022-4/+9
|
* patch #678211 from Robin DunnJust van Rossum2003-02-011-7/+15
|
* Added a missing INCREF in pathname().Jack Jansen2003-01-282-2/+6
|
* Install "python$(VERSION)" into /usr/local as the symlink to the framework,Jack Jansen2003-01-281-2/+4
| | | | | and also create a symlink "python" pointing to "python$(VERSION)". Fixes #675745.
* Use new file dialogs.Jack Jansen2003-01-265-29/+30
|
* Fix an omission in the previous checkin.Jack Jansen2003-01-261-1/+1
|
* Use new file dialogs.Jack Jansen2003-01-2616-78/+72
|
* Use new file dialogs.Jack Jansen2003-01-263-39/+34
|
* FSRef and EasyDialogs pathname support was pretty much broken in ↵Jack Jansen2003-01-262-2/+52
| | | | MacPython-OS9. Fixed.
* Getting rid of StandardGetFileJack Jansen2003-01-223-17/+13
|
* Fix bug #670845: cut & clear in the output window now work, in thatJust van Rossum2003-01-201-0/+6
| | | | | - clear clears the entire buffer - cut doesn't cut, but copies.
* Added a convenience routine pathname() which accepts either a string, unicode,Jack Jansen2003-01-192-3/+37
| | | | FSSpec or FSRef object and returns an 8-bit pathname (utf8 encoded).
* Fixed the first two bugs in the new file dialogs (found by Just):Jack Jansen2003-01-171-10/+11
| | | | | - AskFileForSave didn't work for string return values - filterProc didn't work.
* It turns out that some calls return AEDesc records that are "borrowed",Jack Jansen2003-01-172-3/+69
| | | | | | | the AEDesc data shouldn't be disposed when the Python object is. Added a C call AEDesc_NewBorrowed() to create these objects and a Python method old=AEDesc.AutoDispose(onoff) to change auto-dispose state.
* For reasons unknown previewProc and filterProc were disabled. Enabled them.Jack Jansen2003-01-171-4/+2
|
* Implemented FSCatalogInfo structure support, and used this to implementJack Jansen2003-01-152-12/+2
| | | | FSSpec.SetDates() and GetDates(). Closes #662836.
* Implemented FSCatalogInfo.Jack Jansen2003-01-123-27/+705
|
* Started on implementing support for FSCatalogInfo. Doesn't work yet, don'tJack Jansen2003-01-092-2/+60
| | | | try it.
* interpret utf-8 file names on OSXJust van Rossum2003-01-091-0/+2
|
* removed silly & mask, avoiding FutureWarningJust van Rossum2003-01-091-2/+2
|
* Merging the various tweaks for MacPython-OS9 2.3a1 back into the trunk.Jack Jansen2003-01-0827-290/+220
|
* correct comment (and add newline at end)Just van Rossum2003-01-041-2/+2
|
* Added zipimport and _random module.Jack Jansen2002-12-303-0/+4
|
* Changed sys.path initializer because of addition of Lib/plat-mac and a few minorJack Jansen2002-12-301-4/+3
| | | | things.