mirror of
https://github.com/Schrolli91/BOSWatch.git
synced 2025-12-06 07:42:03 +01:00
37 lines
538 B
Python
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"
|