Mercurial > templog
annotate web/config.py @ 77:959e88c0bdfa
ui tweaks
author | Matt Johnston <matt@ucc.asn.au> |
---|---|
date | Wed, 04 Jul 2012 22:36:52 +0800 |
parents | 0a8639039453 |
children | c7b6da1adb47 |
rev | line source |
---|---|
28 | 1 |
37
8da0fdadc8d7
- Getting there, update has problems
Matt Johnston <matt@ucc.asn.au>
parents:
33
diff
changeset
|
2 DATA_PATH = '/home/matt/templog/web/data' |
28 | 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 |
77 | 10 ZOOM = 1.5 |
29 | 11 |
12 LINE_WIDTH = 2 | |
13 | |
56 | 14 SENSOR_NAMES = {'sensor_28 CE B2 1A 03 00 00 99': "Wort", |
77 | 15 'sensor_28 CC C1 1A 03 00 00 D4': "Lid", |
61 | 16 'sensor_voltage': 'Voltage', |
17 } | |
29 | 18 |
61 | 19 SENSOR_COLOURS = {'Wort': 'e49222', |
77 | 20 'Lid': '028b3d', |
61 | 21 'Voltage': '7db5d3aa', |
22 } | |
23 | |
31
5e75e08d20ac
- Various fixes for web server, kind of works
Matt Johnston <matt@ucc.asn.au>
parents:
29
diff
changeset
|
24 |
67 | 25 GRAPH_FONT = "Prociono" |
26 #GRAPH_FONT = "URW Gothic L" | |
69 | 27 |
28 # determine by zooming in an image viewer | |
73
0a8639039453
Get rid of axes labels, tidy html
Matt Johnston <matt@ucc.asn.au>
parents:
69
diff
changeset
|
29 GRAPH_LEFT_MARGIN = 63 |