| Home | Trees | Indices | Help |
|
|---|
|
|
module 'tpar.py' -- main module for generating the tpar task editor
tpar is curses based parameter editing similar to epar. Tpar has the primary goal of simplicity similar to IRAF's CL epar and as such is missing many PyRAF epar features. The primary advantage of tpar is that it works in a simple terminal window (rather than requiring full X-11 and Tk); this is an improvement for low bandwidth network contexts or for people who prefer text interfaces to GUIs.
$Id: $
Todd Miller, 2006 May 30 derived from epar.py and IRAF CL epar.
|
|||
| FakeModule | |||
| FakeClass | |||
|
Binder The Binder class manages keypresses for urwid and adds the ability to bind specific inputs to actions. |
|||
|
PyrafEdit PyrafEdit is a text entry widget which has keybindings similar to IRAF's CL epar command. |
|||
| StringTparOption | |||
| NumberTparOption | |||
| BooleanTparOption | |||
| EnumTparOption | |||
| PsetTparOption | |||
| TparHeader | |||
| TparDisplay | |||
|
|||
|
|||
|
|||
urwid = FakeModule()
|
|||
TPAR_HELP_EMACS = """ EDIT COMM
|
|||
TPAR_BINDINGS_EMACS = {"ctrl c": "quit", "ctrl C": "quit", "ct
|
|||
TPAR_HELP_VI = """ EDIT COMMAND
|
|||
TPAR_BINDINGS_VI = {"ctrl c": "quit", "ctrl d": "exit", "ctrl
|
|||
Imports: os, sys, string, commands, re, iraf, irafpar, irafhelp, cStringIO, wutil, iraffunctions, pyrafDir, userWorkingHome, IrafError
|
|||
TPAR_HELP_EMACS
|
TPAR_BINDINGS_EMACS
|
TPAR_HELP_VI
|
TPAR_BINDINGS_VI
|
| Home | Trees | Indices | Help |
|
|---|
| Generated by Epydoc 3.0.1 on Mon Feb 18 14:41:18 2008 | http://epydoc.sourceforge.net |