85 |
85 |
86 if self.isStartElement(): |
86 if self.isStartElement(): |
87 if self.name() == "ProjectName": |
87 if self.name() == "ProjectName": |
88 project["name"] = self.readElementText() |
88 project["name"] = self.readElementText() |
89 elif self.name() == "ProjectFile": |
89 elif self.name() == "ProjectFile": |
90 project["file"] = Utilities.toNativeSeparators(self.readElementText()) |
90 project["file"] = Utilities.toNativeSeparators( |
|
91 self.readElementText()) |
91 elif self.name() == "ProjectDescription": |
92 elif self.name() == "ProjectDescription": |
92 project["description"] = self.readElementText() |
93 project["description"] = self.readElementText() |
93 else: |
94 else: |
94 self.raiseUnexpectedStartTag(self.name()) |
95 self.raiseUnexpectedStartTag(self.name()) |