comparison service/wifi/wifi.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 2b9865bf1737
children f88ff1021ee0
comparison
equal deleted inserted replaced
721:4fa5c6a61282 722:a93fbf0d0daa
250 cyclone.web.Application( 250 cyclone.web.Application(
251 [ 251 [
252 (r"/", Index), 252 (r"/", Index),
253 (r"/build/(bundle\.js)", cyclone.web.StaticFileHandler, {"path": 'build'}), 253 (r"/build/(bundle\.js)", cyclone.web.StaticFileHandler, {"path": 'build'}),
254 (r'/json', Json), 254 (r'/json', Json),
255 (r'/graph', CycloneGraphHandler, {'masterGraph': masterGraph}), 255 (r'/graph/wifi', CycloneGraphHandler, {'masterGraph': masterGraph}),
256 (r'/graph/events', CycloneGraphEventsHandler, {'masterGraph': masterGraph}), 256 (r'/graph/wifi/events', CycloneGraphEventsHandler, {'masterGraph': masterGraph}),
257 (r'/table', Table), 257 (r'/table', Table),
258 (r'/remoteSuspend', RemoteSuspend), 258 (r'/remoteSuspend', RemoteSuspend),
259 #(r'/activity', Activity), 259 #(r'/activity', Activity),
260 ], 260 ],
261 wifi=wifi, 261 wifi=wifi,