#! /usr/bin/env python # A simple script to test controls interactively. from plugin.Interface import Interface from main import HOME from plugin import Permission import sys import os import code import __builtin__ if "." not in sys.path: sys.path.append(".") if HOME not in sys.path: sys.path.append(HOME) try: path = os.path.abspath(sys.argv[1]) folder, base = os.path.split(path) except: sys.exit("Usage: test-control.py ") cwd = os.getcwd() os.chdir(folder) try: module = __import__(base) os.chdir(base) clss = module.get_class() ctrl = clss() except IOError: sys.exit("Could not load control %s." % (path)) print print Interface.text_describe(clss) __builtin__.ctrl = ctrl code.InteractiveConsole().interact("Use 'ctrl' to access the control. " "Press Ctrl+D to quit.")