Mercurial > code > home > repos > homeauto
comparison service/rfid/rfid.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 | c5b13d630d90 |
children | b87b6e9cedb2 |
comparison
equal
deleted
inserted
replaced
1522:040e12a696a9 | 1523:0da337780f22 |
---|---|
175 | 175 |
176 port = 10012 | 176 port = 10012 |
177 reactor.listenTCP(port, cyclone.web.Application([ | 177 reactor.listenTCP(port, cyclone.web.Application([ |
178 (r"/()", cyclone.web.StaticFileHandler, | 178 (r"/()", cyclone.web.StaticFileHandler, |
179 {"path": ".", "default_filename": "index.html"}), | 179 {"path": ".", "default_filename": "index.html"}), |
180 (r"/graph", CycloneGraphHandler, {'masterGraph': masterGraph}), | 180 (r"/graph/rfid", CycloneGraphHandler, {'masterGraph': masterGraph}), |
181 (r"/graph/events", CycloneGraphEventsHandler, | 181 (r"/graph/rfid/events", CycloneGraphEventsHandler, |
182 {'masterGraph': masterGraph}), | 182 {'masterGraph': masterGraph}), |
183 (r'/output', OutputPage), | 183 (r'/output', OutputPage), |
184 (r'/rewrite', Rewrite), | 184 (r'/rewrite', Rewrite), |
185 (r'/stats/(.*)', StatsHandler, {'serverName': 'rfid'}), | 185 (r'/stats/(.*)', StatsHandler, {'serverName': 'rfid'}), |
186 ], masterGraph=masterGraph, debug=arg['-v']), interface='::') | 186 ], masterGraph=masterGraph, debug=arg['-v']), interface='::') |