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