X-Git-Url: https://git.cweiske.de/enigma2.git/blobdiff_plain/266d4a5e9cdc02e8fd54481c2101078b5d62a93a..043ef5bb98a2b1605dd3704bb34b813697a66376:/RecordTimer.py diff --git a/RecordTimer.py b/RecordTimer.py index a257b2fa..f9382e84 100644 --- a/RecordTimer.py +++ b/RecordTimer.py @@ -224,7 +224,10 @@ class RecordTimer(timer.Timer): root = doc.childNodes[0] for timer in elementsWithTag(root.childNodes, "timer"): self.record(createTimer(timer)) - + + def strToXML(self, str): + return str.replace('&', '&').replace('<', '<').replace('>', '>').replace("'", '''). replace('"', '&qout;') + def saveTimer(self): #doc = xml.dom.minidom.Document() #root_element = doc.createElement('timers') @@ -277,8 +280,8 @@ class RecordTimer(timer.Timer): list.append(' end="' + str(int(timer.end)) + '"') list.append(' serviceref="' + str(timer.service_ref) + '"') list.append(' repeated="' + str(int(timer.repeated)) + '"') - list.append(' name="' + str(timer.name) + '"') - list.append(' description="' + str(timer.description) + '"') + list.append(' name="' + str(self.strToXML(timer.name)) + '"') + list.append(' description="' + str(self.strToXML(timer.description)) + '"') list.append(' eit="' + str(timer.eit) + '"') list.append('>\n')