comparison service/tinyScreen/tiny_screen.py @ 722:a93fbf0d0daa

dep updates; graph url renames; and other build updates Ignore-this: 4603ef3d8db650a13e543dad8580ade8
author drewp@bigasterisk.com
date Wed, 05 Feb 2020 00:23:06 -0800
parents a471688fb7b7
children b87b6e9cedb2
comparison
equal deleted inserted replaced
721:4fa5c6a61282 722:a93fbf0d0daa
161 161
162 port = 10013 162 port = 10013
163 reactor.listenTCP(port, cyclone.web.Application([ 163 reactor.listenTCP(port, cyclone.web.Application([
164 (r"/()", cyclone.web.StaticFileHandler, 164 (r"/()", cyclone.web.StaticFileHandler,
165 {"path": ".", "default_filename": "index.html"}), 165 {"path": ".", "default_filename": "index.html"}),
166 (r"/graph", CycloneGraphHandler, {'masterGraph': masterGraph}), 166 (r"/graph/tinyScreen", CycloneGraphHandler, {'masterGraph': masterGraph}),
167 (r"/graph/events", CycloneGraphEventsHandler, 167 (r"/graph/tinyScreen/events", CycloneGraphEventsHandler,
168 {'masterGraph': masterGraph}), 168 {'masterGraph': masterGraph}),
169 (r'/output', OutputPage), 169 (r'/output', OutputPage),
170 ], screen=screen, masterGraph=masterGraph, debug=arg['-v']), 170 ], screen=screen, masterGraph=masterGraph, debug=arg['-v']),
171 interface='::') 171 interface='::')
172 log.warn('serving on %s', port) 172 log.warn('serving on %s', port)