BOSWatch/includes/globals.py
JHCD f1f6503198 new functionality: lookUp description in a given csv-file for FMS, ZVEI and POC
you have the possibility to set a discription for every FMS, ZWEI oder RIC address
descriptions will be imported via csv-files
if enabled BOSWatch will look up the description and could be used in the plugins

eMail-plugin extended wildcards to use describtion %DESC%
2015-06-05 21:49:51 +02:00

36 lines
429 B
Python

#!/usr/bin/python
# -*- coding: cp1252 -*-
"""
Global variables
@author: Jens Herrmann
@author: Bastian Schroll
"""
#Global variables
config = 0
script_path = ""
#double alarm
fms_id_old = 0
fms_time_old = 0
zvei_id_old = 0
zvei_time_old = 0
poc_id_old = 0
poc_time_old = 0
#pluginLoader
pluginList = {}
#filter
filterList = []
#idDescribing
fmsDescribtionList = {}
zveiDescribtionList = {}
ricDescribtionList = {}