comparison service/tinyScreen/tiny_screen.py @ 1523:0da337780f22

dep updates; graph url renames; and other build updates Ignore-this: 4603ef3d8db650a13e543dad8580ade8 darcs-hash:0840491cd6a4e4966f47a2abca0ed30ec434022a
author drewp <drewp@bigasterisk.com>
date Wed, 05 Feb 2020 00:23:06 -0800
parents a2e3a342315c
children b87b6e9cedb2
comparison
equal deleted inserted replaced
1522:040e12a696a9 1523:0da337780f22
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)