typo fix and copyright notice

This commit is contained in:
n0mjs710 2018-12-09 07:52:50 -06:00
parent f6ae338fc5
commit 8e7e12bb36
2 changed files with 9 additions and 3 deletions

View File

@ -82,7 +82,7 @@
<hr> <hr>
<center> <center>
Copyright (c) 2016, 2027, 2018<br>The Regents of the K0USY Group. All rights reserved. Copyright (c) 2016, 2027, 2018<br>The Founding Members of the K0USY Group. All rights reserved.
<!-- THIS COPYRIGHT NOTICE MUST BE DISPLAYED AS A CONDITOIN OF THE LICENCE GRANT FOR THIS SOFTWARE. ALL DERIVATEIVES WORKS MUST CARRY THIS NOTICE --> <!-- THIS COPYRIGHT NOTICE MUST BE DISPLAYED AS A CONDITION OF THE LICENCE GRANT FOR THIS SOFTWARE. ALL DERIVATEIVES WORKS MUST CARRY THIS NOTICE -->
</body> </body>
</html> </html>

View File

@ -391,10 +391,16 @@ def rts_update(p):
if system in CTABLE['PEERS']: if system in CTABLE['PEERS']:
bgcolor = GREEN bgcolor = GREEN
if trx == 'RX':
bgcolor = GREEN
color = BLACK
else:
bgcolor = RED
color = WHITE
if action == 'START': if action == 'START':
CTABLE['PEERS'][system][timeSlot]['TS'] = True CTABLE['PEERS'][system][timeSlot]['TS'] = True
CTABLE['PEERS'][system][timeSlot]['COLOR'] = BLACK CTABLE['PEERS'][system][timeSlot]['COLOR'] = color
CTABLE['PEERS'][system][timeSlot]['BGCOLOR'] = bgcolor CTABLE['PEERS'][system][timeSlot]['BGCOLOR'] = bgcolor
CTABLE['PEERS'][system][timeSlot]['TYPE'] = callType CTABLE['PEERS'][system][timeSlot]['TYPE'] = callType
CTABLE['PEERS'][system][timeSlot]['SUB'] = sourceSub CTABLE['PEERS'][system][timeSlot]['SUB'] = sourceSub