summaryrefslogtreecommitdiffstats
path: root/Mac/OSX/PythonLauncher/FileSettings.m
Commit message (Collapse)AuthorAgeFilesLines
* Added a field that allows the user to set sys.argv-style argumentsJack Jansen2003-06-201-1/+9
| | | | to the script. Fixes #757544.
* Optionally honour #! paths in scripts. Fixes #676358.Jack Jansen2003-02-171-1/+25
|
* Changed the input field for the interpreter to use (in the preferencesJack Jansen2002-12-261-2/+4
| | | | window) to a combobox listing the known interpreters.
* Lots of restructuring, mostly suggested by Bill Bumgarner. MainJack Jansen2002-11-251-46/+128
| | | | | | externally visible difference is that the factory defaults are now in a plist file in the bundle, in stead of being hard-coded in the application.
* 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.
* Implemented starting Python in a terminal window. The implementation isn'tJack Jansen2002-07-311-1/+1
| | | | 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-291-0/+182
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.