PanTilt  1.3.2
RoadNarrows Robotics Pan-Tilt Project
pantilt_console.py File Reference

Package: RoadNarrows Robotics Laelaps System V Init.d Console. More...

Go to the source code of this file.

Classes

class  pantilt_console.window
 Window class supporting application. More...
 
class  pantilt_console.usage
 Unit test command-line exception class. More...
 
class  pantilt_console.application
 Laelaps control panel. More...
 

Variables

string pantilt_console.appVersion = '1.0.0'
 Application version. More...
 
list pantilt_console.imagePath
 Additional image search paths. More...
 
dictionary pantilt_console.fgColors
 Common foreground colors. More...
 
dictionary pantilt_console.statusText
 Status text foreground colors. More...
 
 pantilt_console.reDone = re.compile(r"done", re.IGNORECASE)
 
 pantilt_console.reFail = re.compile(r"fail", re.IGNORECASE)
 
 pantilt_console.reDoneDone = re.compile(r"done.*done", re.DOTALL | re.IGNORECASE)
 
 pantilt_console.reFailDone = re.compile(r"fail.*done", re.DOTALL | re.IGNORECASE)
 
 pantilt_console.reRunning = re.compile(r"\s*is\s*running", re.IGNORECASE)
 
 pantilt_console.reNotRunning = re.compile(r"\s*is\s*not\s*running", re.IGNORECASE)
 
 pantilt_console.app = application();
 

Detailed Description

Package: RoadNarrows Robotics Laelaps System V Init.d Console.

Link: https://github.com/roadnarrows-robotics/laelaps

File: laelaps_init.d

LastChangedDate
2016-03-18 09:57:27 -0600 (Fri, 18 Mar 2016)
Rev
4354

Graphical user interface console to control the Laelaps init.d daemons.

Author
Robin Knight (robin.nosp@m..kni.nosp@m.ght@r.nosp@m.oadn.nosp@m.arrow.nosp@m.s.co.nosp@m.m)
EULA@

—@

Definition in file pantilt_console.py.

Variable Documentation

string pantilt_console.appVersion = '1.0.0'

Application version.

Update as needed.

Definition at line 52 of file pantilt_console.py.

dictionary pantilt_console.fgColors
Initial value:
1 = {
2  'normal': 'black',
3  'ok': '#008800',
4  'focus': '#0000aa',
5  'warning': '#aa6600',
6  'error': '#cc0000'
7 }

Common foreground colors.

Definition at line 67 of file pantilt_console.py.

list pantilt_console.imagePath
Initial value:
1 = [
2  "/prj/share/Laelaps/images",
3  "/prj/share/Laelaps/images/icons",
4  "/prj/share/appkit/images",
5  "/prj/share/appkit/images/icons",
6  "/usr/local/share/Laelaps/images",
7  "/usr/local/share/Laelaps/images/icons"
8  "/usr/local/share/appkit/images",
9  "/usr/local/share/appkit/images/icons"
10 ]

Additional image search paths.

Definition at line 55 of file pantilt_console.py.

dictionary pantilt_console.statusText
Initial value:
1 = {
2  'unknown': fgColors['normal'],
3  'running': fgColors['ok'],
4  'stopped': fgColors['error']
5 }

Status text foreground colors.

Definition at line 76 of file pantilt_console.py.