Package omero :: Package plugins :: Module basics
[hide private]
[frames] | no frames]

Module basics

source code

load, quit, version, help plugins

Plugin read by omero.cli.Cli during initialization. The method(s) defined here will be added to the Cli class for later use.

The load plugin is used to read in files with omero cli commands (omitting the omero). For example,

./omero load some/file.osh

The help, quit, and version plugins are self-explanatory.

Copyright 2008 Glencoe Software, Inc. All rights reserved. Use is subject to license terms supplied in LICENSE.txt

Classes [hide private]
  QuitControl
  VersionControl
  LoadControl
  ShellControl
  HelpControl
Defined here since the background loading might be too slow to have all help available
Variables [hide private]
  controls = {"help":(HelpControl, "Syntax help for all commands...

Imports: sys, FileType, BaseControl, CLI, VERSION


Variables Details [hide private]

controls

Value:
{"help":(HelpControl, "Syntax help for all commands"), "quit":(QuitCon\
trol, "Quit application"), "shell":(ShellControl, """Starts an IPython\
 interpreter session

All arguments not understood vi %(prog)s will be passed to the shell.
Use "--" to end parsing, e.g. '%(prog)s -- --help' for IPython help"""\
), "version":(VersionControl, "Version number"), "load":(LoadControl, \
"""Load file as if it were sent on standard in.
...