summaryrefslogtreecommitdiffstats
path: root/Mac/OSX/PythonLauncher
Commit message (Collapse)AuthorAgeFilesLines
* dded cvsignores.Jack Jansen2002-11-203-2/+8
|
* On Jaguar the default mode for files in the installed product is 444 (or 555)Jack Jansen2002-08-301-0/+1
| | | | | in stead of 644 (755). This makes a subsequent install fail. Changed the INSTALL_MODE_FLAG to fix this.
* Added an icon for .pyw files.Jack Jansen2002-08-022-0/+15
|
* Python.app is now a hidden application, deep in the framework. It willJack Jansen2002-08-011-2/+2
| | | | | | | be invoked by PythonLauncher when needed. Also changed the names of various variables in the Makefile to match what the main Makefile has.
* Only show the UI for selecting options if the ALT key was depressed whileJack Jansen2002-08-011-18/+7
| | | | dragging or double-clicking the script.
* Install into /Applications/Python in stead of into /Applications.Jack Jansen2002-07-311-3/+2
|
* Implemented starting Python in a terminal window. The implementation isn'tJack Jansen2002-07-315-6/+177
| | | | optimal, especially if Terminal wasn't running yet, but it works.
* First stab at the launcher application. This will be run when the userJack Jansen2002-07-2924-0/+1413
doubleclicks a .py, .pyw or .pyc file. It runs the file by invoking the relevant interpreter (either the command line Python in a terminal window or a Python.app for GUI-based scripts). Interpreter to use and the options to pass are settable through preferences. If PythonLauncher wasn't running it does its thing for one script and exits. If it was manually started before a dialog is presented where the user can set the options to use, etc. To be done: - option-drag/doubleclick should always open the interactive dialog - Terminal-window isn't done yet - Should be reimplemented in Python, but pyobjc isn't part of the core. - Various menu entries should be disabled.