BOSWatch/includes/globals.py

32 lines
422 B
Python
Raw Normal View History

#!/usr/bin/python
# -*- coding: UTF-8 -*-
2015-05-27 07:48:24 +02:00
"""
Global variables
2015-05-31 12:40:43 +02:00
@author: Jens Herrmann
2015-05-27 07:48:24 +02:00
@author: Bastian Schroll
"""
2015-07-28 19:44:14 +02:00
# version info
versionNr = "2.1-dev"
buildDate = "2015/07/30"
2015-07-28 19:44:14 +02:00
2015-06-14 20:21:21 +02:00
# Global variables
config = 0
script_path = ""
log_path = ""
2015-06-14 20:21:21 +02:00
# double alarm
doubleList = []
2015-06-14 20:21:21 +02:00
# pluginLoader
pluginList = {}
2015-06-14 20:21:21 +02:00
# filter
filterList = []
2015-06-14 20:21:21 +02:00
# idDescribing
fmsDescribtionList = {}
zveiDescribtionList = {}
2015-07-28 19:44:14 +02:00
ricDescribtionList = {}