Plugins/Videomode/VideoHardware.py: remove DVI-PC when not DVI-PC modes are usable
[enigma2.git] / lib / python / Components / DreamInfoHandler.py
index 6004e1f32f83f2e6efa3c3173b77d33b99ebefd5..075c9953af1b72197c8935a4ff2b026d43aaa4f5 100755 (executable)
@@ -50,8 +50,10 @@ class InfoHandler(xml.sax.ContentHandler):
                        prerequisites[name].append(str(attrs["type"]))
 
                if name == "info":
+                       self.foundTranslation = None
+                       self.data = ""
                        if not attrs.has_key("language"):
-                                       self.printError(str(name) + " tag with no language attribute")
+                                       print "info tag with no language attribute"
                        else:
                                if attrs["language"] == 'en': # read default translations
                                        self.foundTranslation = False
@@ -59,9 +61,6 @@ class InfoHandler(xml.sax.ContentHandler):
                                elif attrs["language"] == self.language:
                                        self.foundTranslation = True
                                        self.data = ""
-                               else:
-                                       self.foundTranslation = None
-                                       self.data = ""
 
                if name == "files":
                        if attrs.has_key("type"):
@@ -95,6 +94,8 @@ class InfoHandler(xml.sax.ContentHandler):
                                self.attributes["name"] = str(attrs["name"].encode("utf-8"))
                        if attrs.has_key("packagename"):
                                self.attributes["packagename"] = str(attrs["packagename"].encode("utf-8"))
+                       if attrs.has_key("packagetype"):
+                               self.attributes["packagetype"] = str(attrs["packagetype"].encode("utf-8"))
                        if attrs.has_key("shortdescription"):
                                self.attributes["shortdescription"] = str(attrs["shortdescription"].encode("utf-8"))