Mercurial > templog
annotate web/config.py @ 365:d31a6550d264
- add some atomic guards
- get rid of avrtemp
author | Matt Johnston <matt@ucc.asn.au> |
---|---|
date | Mon, 25 Jun 2012 22:06:03 +0800 |
parents | 8fea6144951b |
children | 62112fc2af21 |
rev | line source |
---|---|
334 | 1 |
344
ea1779d27641
- Getting there, update has problems
Matt Johnston <matt@ucc.asn.au>
parents:
339
diff
changeset
|
2 DATA_PATH = '/home/matt/templog/web/data' |
334 | 3 |
4 HMAC_KEY = 'a hmac key' | |
5 | |
339
449272fc63a3
- Debug log file for server
Matt Johnston <matt@ucc.asn.au>
parents:
337
diff
changeset
|
6 UPDATE_URL = 'https://evil.ucc.asn.au/~matt/templog/update' |
449272fc63a3
- Debug log file for server
Matt Johnston <matt@ucc.asn.au>
parents:
337
diff
changeset
|
7 |
335 | 8 GRAPH_WIDTH = 800 |
337
f575ef538f5d
- Various fixes for web server, kind of works
Matt Johnston <matt@ucc.asn.au>
parents:
335
diff
changeset
|
9 GRAPH_HEIGHT = 400 |
335 | 10 |
11 LINE_WIDTH = 2 | |
12 | |
362 | 13 SENSOR_NAMES = {'sensor_28 CE B2 1A 03 00 00 99': "Wort", |
14 'sensor_28 CC C1 1A 03 00 00 D4': "Board"} | |
335 | 15 |
362 | 16 SENSOR_COLOURS = {'Wort': 'e49222', 'Board': '028b3d'} |
337
f575ef538f5d
- Various fixes for web server, kind of works
Matt Johnston <matt@ucc.asn.au>
parents:
335
diff
changeset
|
17 |
f575ef538f5d
- Various fixes for web server, kind of works
Matt Johnston <matt@ucc.asn.au>
parents:
335
diff
changeset
|
18 GRAPH_FONT = "Courier" |