Mercurial > templog
annotate web/config.py @ 36:a670a67ba489
- decrease measurement interval, measure at start
- fix integer sizes or format strings
author | Matt Johnston <matt@ucc.asn.au> |
---|---|
date | Sat, 16 Jun 2012 09:07:38 +0800 |
parents | 024f5571df8c |
children | 8da0fdadc8d7 |
rev | line source |
---|---|
28 | 1 |
2 DATA_PATH = 'data' | |
3 | |
4 HMAC_KEY = 'a hmac key' | |
5 | |
33 | 6 UPDATE_URL = 'https://evil.ucc.asn.au/~matt/templog/update' |
7 | |
29 | 8 GRAPH_WIDTH = 800 |
31
5e75e08d20ac
- Various fixes for web server, kind of works
Matt Johnston <matt@ucc.asn.au>
parents:
29
diff
changeset
|
9 GRAPH_HEIGHT = 400 |
29 | 10 |
11 LINE_WIDTH = 2 | |
12 | |
31
5e75e08d20ac
- Various fixes for web server, kind of works
Matt Johnston <matt@ucc.asn.au>
parents:
29
diff
changeset
|
13 SENSOR_NAMES = {'sensor_test1': "First Test"} |
29 | 14 |
15 SENSOR_COLOURS = {} | |
31
5e75e08d20ac
- Various fixes for web server, kind of works
Matt Johnston <matt@ucc.asn.au>
parents:
29
diff
changeset
|
16 |
5e75e08d20ac
- Various fixes for web server, kind of works
Matt Johnston <matt@ucc.asn.au>
parents:
29
diff
changeset
|
17 GRAPH_FONT = "Courier" |