self.config_parser.set('web','cgiuri','https://www.realraum.at/cgi/status.cgi?pass=jako16&set=')
self.config_parser.set('web','htmlopen','<html><body bgcolor="lime"><center><b>Tür ist Offen</b></center></body></html>')
self.config_parser.set('web','htmlclosed','<html><body bgcolor="red"><b><center>Tür ist Geschlossen</center></b></body></html>')
+ self.config_parser.add_section('debug')
+ self.config_parser.set('debug','enabled',"False")
self.config_mtime=0
if not self.configfile is None:
try:
self.checkConfigUpdates()
def checkConfigUpdates(self):
+ global logger
if self.configfile is None:
return
logging.debug("Checking Configfile mtime: "+self.configfile)
self.config_mtime=os.path.getmtime(self.configfile)
except ConfigParser.ParsingError, pe_ex:
logging.error("Error parsing Configfile: "+str(pe_ex))
+ if self.config_parser.get('debug','enabled') == "True":
+ logger.setLevel(logging.DEBUG)
+ else:
+ logger.setLevel(logging.INFO)
def writeConfigFile(self):
if self.configfile is None:
else:
uwscfg = UWSConfig()
-socket.setdefaulttimeout(10.0) #affects all new Socket Connections (urllib as well)
+#socket.setdefaulttimeout(10.0) #affects all new Socket Connections (urllib as well)
sockhandle = socket.socket(socket.AF_UNIX, socket.SOCK_STREAM)
RE_STATUS = re.compile(r'Status: (\w+), idle')
RE_REQUEST = re.compile(r'Request: (\w+) (?:Card )?(.+)')
self.config_parser.set('xmpp','recipients_nooffline','the-equinox@jabber.org')
self.config_parser.set('xmpp','msg_opened',"Realraum Tür wurde%s geöffnet")
self.config_parser.set('xmpp','msg_closed',"Realraum Tür wurde%s geschlossen")
+ self.config_parser.add_section('debug')
+ self.config_parser.set('debug','enabled',"False")
self.config_mtime=0
if not self.configfile is None:
try:
self.checkConfigUpdates()
def checkConfigUpdates(self):
+ global logger
if self.configfile is None:
return
logging.debug("Checking Configfile mtime: "+self.configfile)
self.config_mtime=os.path.getmtime(self.configfile)
except ConfigParser.ParsingError, pe_ex:
logging.error("Error parsing Configfile: "+str(pe_ex))
+ if self.config_parser.get('debug','enabled') == "True":
+ logger.setLevel(logging.DEBUG)
+ else:
+ logger.setLevel(logging.INFO)
def writeConfigFile(self):
if self.configfile is None: