BOSWatch/includes/globals.py
2015-07-13 09:42:54 +02:00

37 lines
538 B
Python

#!/usr/bin/python
# -*- coding: cp1252 -*-
"""
Global variables
@author: Jens Herrmann
@author: Bastian Schroll
"""
# Global variables
config = 0
script_path = ""
log_path = ""
# double alarm
doubleList = []
# pluginLoader
pluginList = {}
# filter
filterList = []
# idDescribing
fmsDescribtionList = {}
zveiDescribtionList = {}
ricDescribtionList = {}
# returns the version or build date
# function -> read only in script
def getVers(mode="vers"):
if mode == "vers":
return "2.0"
elif mode == "date":
return " 2015/07/13"