Changeset - d4aff817a304
[Not reviewed]
default
0 3 0
drewp@bigasterisk.com - 18 years ago 2007-03-16 21:10:44
drewp@bigasterisk.com
add compatibility with louie.dispatcher
3 files changed with 12 insertions and 3 deletions:
0 comments (0 inline, 0 general)
bin/curvecalc
Show inline comments
 
@@ -5,13 +5,16 @@ todo: curveview should preserve more obj
 

	
 
"""
 
from __future__ import division
 
import xmlrpclib,time,socket,sys,textwrap,math,glob,random,os,optparse
 
from bisect import bisect_left,bisect,bisect_right
 
import Tkinter as tk
 
from dispatch import dispatcher
 
try:
 
    from dispatch import dispatcher
 
except ImportError:
 
    import louie as dispatcher 
 
from twisted.internet import reactor,tksupport
 
import twisted
 
from twisted.web.xmlrpc import Proxy
 
import logging
 
log = logging.getLogger()
 
logging.basicConfig(format="%(asctime)s %(levelname)-5s %(name)s %(filename)s:%(lineno)d: %(message)s")
light9/curve.py
Show inline comments
 
from __future__ import division
 
import sys,math,glob,random,os
 
from bisect import bisect_left,bisect,bisect_right
 
import Tkinter as tk
 
from dispatch import dispatcher
 
try:
 
    from dispatch import dispatcher
 
except ImportError:
 
    import louie as dispatcher
 

	
 
import run_local
 
from light9 import Submaster, dmxclient, networking, cursors
 
from light9.TLUtility import make_attributes_from_args
 
from light9.dmxchanedit import gradient
 
from light9.zoomcontrol import RegionZoom
light9/zoomcontrol.py
Show inline comments
 
from __future__ import division
 
import Tkinter as tk
 
from dispatch import dispatcher
 
try:
 
    from dispatch import dispatcher
 
except ImportError:
 
    import louie as dispatcher
 
from light9 import cursors 
 

	
 
class Zoomcontrol(object,tk.Canvas):
 

	
 
    mintime=-5
 

	
0 comments (0 inline, 0 general)